@charset "UTF-8";
/* CSS Document */

#fade { /*--Transparent background layer--*/
	display: none; /*--hidden by default--*/
	background: #000;
	position: fixed; left: 0; top: 0;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 9999;
        padding: 0px;
        margin: 0px;
}
.popup_block{
	display: none; /*--hidden by default--*/
	background: #fff;
	padding: 20px;
	border: 10px solid #ddd;
	float: left;
	font-size: 1em;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 99999;
	
}
img.btn_close {
	float: right;
	margin: -20px -20px 0 0;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .popup_block {
	position: absolute;
}
#title_modals {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	font-style: normal;
	font-weight: bold;
	color: #F90;
	text-decoration: none;
	margin-bottom: 5px;
	margin-top: 1px;
	padding-left: 30px;
	padding-top: 4px;
}
#p_modal {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	font-style: normal;
	font-weight: normal;
	color: #999;
	text-decoration: none;
	padding-left: 0px;
	padding-right: 30px;
	padding-bottom: 10px;
}

