body {

	position: relative;
}

#hideshow {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
#fade {
	background: #000; 
	position: fixed; 
	width: 100%;
	height: 100%;
	filter:alpha(opacity=80);
	opacity: .80;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /*--IE 8 Transparency--*/
	left: 0;
	z-index: 10;
}
.popup_block {
	border: 5px none #fff;
	float: left;
	width: 775px;
	position: fixed;
	top: 7%;
	left: 50%;
	z-index: 100;
	background-color: #FFF;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: -387px;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
}
.popup_block .popup {
	float: left;
	width: 100%;
	text-align: left;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	background-color: #F5F5F5;
}
.popup_block .popup .banner {
	margin-bottom: 10px;
}
.popup #popup_inner {
	float: left;
	width: 750px;
	margin: 10px;
	height: 350px;
	overflow-x: hidden;
	overflow-y: auto;
}
.popup h3 {
	font-size: .8em;
	font-weight: bold;
	text-align: left;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 2px;
	margin-left: 0;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
}
.popup p {
	font-size: .8em;
	margin-right: 15px;
	margin-left: 0;
	padding-right: 15px;
	padding-left: 15px;
	line-height: 1.4em;
	margin-bottom: 10px;
}

.popup ul {
	margin-left: 15px;
	padding-left: 15px;
	margin-bottom: 15px;
	margin-right: 15px;
}

.popup ul li {
	font-size: .8em;
	margin-bottom: .65em;
	line-height: 1.3em;
}

.popup ol {
	margin-left: 18px;
	padding-left: 18px;
	margin-bottom: 5px;
	margin-right: 15px;
}

.popup ol li {
	font-size: .8em;
	margin-bottom: .65em;
	line-height: 1.3em;
}

.close {
	float: right;
	position: absolute;
	top: -15px;
	right: -15px;
	border: 2px solid #FFF;
}

.popup img.cntrl {
	position: absolute;
	right: -20px;
	top: -20px;
}
 
/*--Making IE6 Understand Fixed Positioning--*/
 
*html #fade {
	position: absolute;
	top:expression(eval(document.compatMode &&
	document.compatMode=='CSS1Compat') ?
	documentElement.scrollTop : document.body.scrollTop);
}
 
*html .popup_block {
	position: absolute;
	top:expression(eval(document.compatMode &&
	document.compatMode=='CSS1Compat') ?
	documentElement.scrollTop
	+((documentElement.clientHeight-this.clientHeight)/2)
	: document.body.scrollTop
	+((document.body.clientHeight-this.clientHeight)/2));
	
	left:expression(eval(document.compatMode &&
	document.compatMode=='CSS1Compat') ?
	documentElement.scrollLeft 
	+ (document.body.clientWidth /2 ) 
	: document.body.scrollLeft 
	+ (document.body.offsetWidth /2 ));
}
 
/*--IE 6 PNG Fix--*/
 
img{ behavior: url(/css/iepngfix.htc) }

