/**
 * POPUP CONTAINER STYLES
 */



#popupMask {
	position: absolute;
	z-index: 2000;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .6;
	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:transparent !important;
	background-color: #333333;
	/* 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("maskBG.png") !important; // For browsers Moz, Opera, etc.
	background-image:none;
	background-repeat: repeat;
}
#popupContainer {
	position: absolute;
	z-index: 2001;
	top: 0px;
	left: 0px;
	padding: 0px;
}
#popupInner {

}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2002;
}
#popupTitleBar {
	position: relative;
	z-index: 2003;
}
#popupTitle {
	padding-top:25px;
	padding-left:10px;
	font-size:24px;
	font-weight:bold;
	white-space:normal;
	width:100%;
}

#popupControls {
	cursor: pointer;
	cursor: hand;
}

#popPrintBox{
	/* background-image:url(images/overlay_print_button.png); */
	background-repeat:no-repeat;
	cursor: pointer; 
	border:none;
	margin-top:25px;
	width:144px;
	height:41px;
}


#popCloseBox{
	background-image:url(images/overlay_close_button.png);
	background-repeat:no-repeat;
	cursor: pointer; 
	border:none;
	margin-top:25px;
	width:82px;
	height:41px;
	
}

#overlay_iframe_div{
	position:absolute;
	top:60px;
	left:19px;
	background-color:#fff;
	z-index: 2009;
}

#overlay_top_left {
	background-image:url(images/overlay_top_left_corner.png);
	background-repeat:no-repeat;
	margin:0;
	padding:0;
}

#overlay_top_title {
	background-image:url(images/overlay_top_title_bg.png); 
	background-repeat:repeat-x;
	margin:0;
	padding:0;
}

#overlay_top_right {
	background-image:url(images/overlay_top_right_corner.png); 
	background-repeat:no-repeat;
	margin:0;
	padding:0;
}

#overlay_side_left {
	background-image:url(images/overlay_side_left_bg.png);
	margin:0;
	padding:0;
	background-repeat:repeat-y;
}

#overlay_center {
	background-color:#fff;
	margin:0;
	padding:0;
}
#overlay_side_right {
	background-image:url(images/overlay_side_right_bg.png);
		background-repeat:repeat-y;
	margin:0;
	padding:0;

}

#overlay_bottom_left {
	background-image:url(images/overlay_bottom_left_corner.png); 
	background-repeat:no-repeat;
	margin:0;
	padding:0;
}

#overlay_bottom_center {
	background-image:url(images/overlay_bottom_bg.png); 
	background-repeat:repeat-x;
	margin:0;
	padding:0;
	
}
#overlay_bottom_right {
	background-image:url(images/overlay_bottom_right_corner.png); 
	background-repeat:no-repeat;
	margin:0;
	padding:0;
	
}


html #popCloseBox, html #popPrintBox, html #overlay_top_left, html #overlay_top_title, html #overlay_top_right, html #overlay_side_left, html #overlay_side_right, html #overlay_bottom_left, html #overlay_bottom_center, html #overlay_bottom_right {
	behavior: url(/iepngfix.htc); 
}
