﻿/* Interstitial Ad */
#fade_iad { /*--Transparent background layer--*/
	display: none; /*--hidden by default--*/
	background: #000;
	position: fixed; 
	left: 0; top: 0;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 999;
}

.popup_block_iad{
	display: none; /*--hidden by default--*/
	height: 505px;
	width: 640px;
	background: #fff;
	border: none;
	float: left;
	position: fixed;
	top: 50%; left: 50%;
	margin-top: -240px;
	margin-left: -325px;
	padding: 10px;
	z-index: 9999999;
	/*--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;
}

a.close_iad {
/*	float: right;
	margin: -25px -25px 0 0;
*/
    margin: 0 0 0 570px;
}

/*--Making IE6 Understand Fixed Positioning--*/
*html #fade_iad {
	position: absolute;
}
*html .popup_block_iad {
	position: absolute;
}

