/*------------------POPUPS------------------------*/
#fade {
	display: none;
	background: #000; 
	position: fixed; left: 0; top: 0; 
	z-index: 10;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 999;
}
.popup_block{
	width:900px !important;
	height:600px !important;
	display: none;
	background: #fff; 	
	border: 20px solid #ddd;
	float: left;
	font-size: 1.2em;
	position: fixed;
	top: 53%; left: 50%;
	z-index: 9999;
	-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;
	padding:0 !important;
	
}
img.btn_close {
	float: right; 
	margin: -55px -35px 0 0;
	z-index: 99999;
	position:fixed;
}
.popup p {
	padding: 5px 10px;
	margin: 5px 0;
	
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .popup_block {
	position: absolute;
}