/*------------------POPUPS------------------------*/
#fade {
	display: none;
	background: #000; 
	position: fixed; left: 0; top: 0; 
	z-index: 10;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 8999;
}
.popup_block{
	display: none;
	margin-top:0px;
	background:#fe7e95;
	padding-left:10px;
	padding-bottom:10px; 	
	border: 5px solid #ddd;
	float: left;
	font-size: 12px;
	position: fixed;
	top: 50%; left: 50%;
	z-index: 99999;
	-webkit-box-shadow: 0px 0px 0px #000;
	-moz-box-shadow: 0px 0px 0px #000;
	box-shadow: 0px 0px 0px #000;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0x;
	border-radius: 10px;
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	color:#FFF;
}
img.btn_close {
	float: right; 

}
.popup p {
	padding: 5px;

}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .popup_block {
	position: absolute;
}
 