﻿#popup_ad {
	position: absolute;
	z-index: 200;
	width: 500px;
	height: 300px;
	top: 90px;
	left: 250px;
	background-color: #fff;
	border: 4px solid #000000;
	overflow: hidden;
	cursor: pointer;
	cursor: hand;
}

#popup_ad_header {
	height: 60px;
	background-color: #3C2E68;
	text-align:center;
	border-bottom: 2px solid #000;
}

#popup_ad_inner {
	padding: 20px;
	text-align: center;
}
#popup_ad_inner table {
	width: 100%;
}
#popup_ad_inner table td {
	font-size: 1.3em;
	text-align:center;
	height: 2em;
	padding: 5px;
	vertical-align: middle !important;
}

#popup_ad_inner table td.hlt {
	font-weight: bold;
}

/**
 * POPUP CONTAINER STYLES
 */
#popup_mask {
	cursor: pointer;
	cursor: hand;
	position: absolute;
	z-index: 200;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	/* Opacity for ffox */
	opacity: .6;
	/* Opacity for IE */
	filter: alpha(opacity=60);
	/* this hack is so it works in IE
	 * I find setting the color in the css gives me more flexibility 
	 * than the PNG solution.
	 */
	background-color: #000;
	/* this hack is for opera support
	 * you can uncomment the background-image if you don't care about opera.
	 * this gives you the flexibility to use any bg color that you want, instead of the png
	 */
	/*
	background-image: url("/engine_files/substruct/images/maskBG.png") !important; 
	*/
	background-image:none;
	background-repeat: repeat;
	display: block;
}
