@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;
	padding-bottom:20px;
	z-index: 9999;
}
.popup_block{
	display: none; /*--hidden by default--*/
	position:absolute;
	background: #fff;
	border: 20px solid #ddd;
	padding:20px;
	top:30px;
	font-size: 1.2em;
	left: 50%;
	z-index: 99999;
	/*--CSS3 Box Shadows--*/
	-webkit-box-shadow: 0px 0px 20px #000;
	-moz-box-shadow: 0px 0px 20px #000;
	box-shadow: 0px 0px 20px #000;
	/*--CSS3 Rounded Corners--*/
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
img.btn_close { 
	float: right;
	margin: -55px -55px 0 0;
	border: 0px;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .popup_block {
	position: relative;
}

#popup_link {
	position: absolute;
	bottom: 50%;
	width: 100%;
	margin:auto;
	text-align: center;
	}
a { text-decoration:none;
	border:none;
	outline:none;}