/**
 * POPUP CONTAINER STYLES
 */

#popupMask {
	position: absolute;
	z-index: 200;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .4;
	filter: alpha(opacity=40);
	/* 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: #ffffff;
	/* 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(../submodal/maskBG.png)!important; // For browsers Moz, Opera, etc.
	background-image:none;
	background-repeat: repeat;
	display:none;
}
#popupContainer {
	position: absolute;
	width:100%;
	height:100%;
	z-index: 201;
	top: 0px;
	left: 0px;
	display: none;
	padding: 0px;
	
}

#popupInner {
	width: 100%;
	height: 100%;
	float: left;
	border: 1px solid #cac9c9;
	background-color: #ffffff;
	background:url(../images/products/_popups/titlebar_bg.gif);
	background-repeat: repeat-x;
	

}

#popupWrapper {
		width: 100%;
		height: 100%;
		background-color: #ffffff;
}


#popupTitleBar {
	width: 100%;
	height: 22px;
	float:right;
	vertical-align:middle;
	font-weight: bold;
	height: 1.3em;
	margin: 0px;
	padding: 0px;
	position: relative;
	
}

#popupControls {
	float: none;
	vertical-align:top;
	cursor: pointer;
	cursor: hand;
	margin:0px;
	padding:0px;
	width: 100%;
	height:22px;
	background-image:url(../images/products/_popups/titlebar_bg.gif);
	background-repeat:repeat-x;
	
}


#popupFrame {
	height:100%;
	margin:0px; 
	padding:0px;
	vertical-align: top;
}

#popCloseBox {
	float:right;
	vertical-align:top;
	margin-top:1px;
	height:20px;
}

#popHeadingBox {
	float:left;
	vertical-align:top;
	margin-top:1px;
	height:20px;
}