@charset "utf-8";
/***** popup ****/
html, body {
	width:100%;
	height:100%;
}
#backgroundPopup {
	display: none;
	position: fixed;
	_position: absolute; /* hack for internet explorer 6*/
	height:100%;
	width: 100%;
	min-height:900px;
	top: 0;
	left: 0;
	background: #000000;
	border: 1px solid #cecece;
	z-index: 10000;
}
#updatePopupBox {
	display: block;
	/*** position: fixed; ***/
	_position: absolute; /* hack for internet explorer 6 */
	top:50px;
	width:370px;
	margin:50px auto;
	background: #FFFFFF;
	border: 2px solid #ff0000;
	z-index: 20000;
	padding: 0;
	text-align:center;
}
#updatePopupBox {
	font-size:16px;
}
.updateTitle {
	color: #ff0000;
	font-weight: bold;
	font-size: 16px;
	padding: 5px;
	display: block;
}
.updateBody {
	color: #000000;
	font-size: 12px;
	padding: 10px;
}
#popupClose {
	display: none;
	font-size: 14px;
	line-height: 14px;
	position: absolute;
	right: 0;
	top: 0;
	color: #ffffff;
	font-weight: 700;
	display: block;
	background: #ff0000;
	width: 20px;
	height: 20px;
	text-align: center;
	cursor: pointer;
}
*html #backgroundPopup {/* hack for internet explorer 6*/
	position: absolute;
	width: 1300px;
 top: expression(eval(document.compatMode &&  document.compatMode=='CSS1Compat') ?  documentElement.scrollTop  +((documentElement.clientHeight-this.clientHeight)/2) 		: document.body.scrollTop  +((document.body.clientHeight-this.clientHeight)/2));
}

