/* New Popup */
#lightbox_fade {
	display: none;
	background: #000;
	position: fixed;
	left: 0; top: 0;
	z-index: 10;
	width: 100%; 
	height: 100%;
	 /* IE 8 */
	  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	  /* IE 5-7 */
	  filter: alpha(opacity=80);
	  /* Netscape */
	  -moz-opacity: 0.8;
	  /* Safari 1.x */
	  -khtml-opacity: 0.8;
	  /* Good browsers */
	  opacity: 0.8;
	z-index: 9999;
}
.lightbox_popup_block{
	width:auto;height:auto; 
	margin-top: -160px; 
	margin-left: -290px;
	display: none;
	background: #fff;
	padding: 20px;
	border: 2px solid #ddd;
	float: left;
	font-size: 1.2em;
	position: fixed;
	top: 50%; 
	left: 50%;
	z-index: 99999;
	-webkit-box-shadow: 0px 0px 20px #000;
	-moz-box-shadow: 0px 0px 20px #000;
	box-shadow: 0px 0px 20px #000;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

img.lightbox_btn_close {
	float: right; 
	margin: -40px -40px 0 0;
	border:0px;
}
.lightbox_popup p {
	padding: 5px 10px;
	margin: 5px 0;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .lightbox_popup_block {
	position: absolute;
}
.lightbox_title{ 
	float:left; 
	font-size:14px; 
	font-weight:bold;
	color:#FFF; 
	position:relative; 
	margin:-40px 0 10px -20px; 
	z-index:9999;
}
/* End Shadow Box */