/* START : Div Overlay */
.div_overlay {
	background-color:#000;
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	text-align:center;
	vertical-align:middle;
	z-index:100;
	display:block;
	
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}
* html .div_overlay { /* ie6 hack */
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

div.overlay_msg_box {
	position: fixed;
	background: #ffffff;
	z-index: 102;
	color:#000000;
	display:none;
	border: 4px solid #525252;
	text-align:left;
	top:50%;
	left:50%;
	
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}
* html div.overlay_msg_box  { /* ie6 hack */
    position: absolute;
    /*top: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight/2 : document.body.offsetHeight/2 + 'px');*/
    top: expression(350 / 2 + (document.documentElement.clientHeight - 350) / 2 + document.documentElement.scrollTop + 'px');
}

a.btn_close { 
	position:absolute;
	right:1px;
	top:1px;
	color:#fff;
	font-size:16px;
	font-weight:bold;
	background-color:#000;
	background-color:#000;
	height:17px;
	width:18px;
	text-decoration:none;
	background: url(../img/btn_close.gif) no-repeat top center;
}

#home_overlay 
{
	display:none; 
	position:absolute; 
	z-index:99; 
	top:0; 
	left:50%; 
	width:720px; 
	height:620px; 
	margin-left:-260px;  }
