/**
 * POPUP CONTAINER STYLES
 */

body {
overflow: auto;
}
#popupMask{
	position: absolute;
	z-index: 1000;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	
	/* 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:#000000 !important;
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
	/* 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/**/: url("maskBG.png") !important; /* For browsers Moz, Opera, etc.*/
	background-image:none;
	background-repeat: repeat;
	display:none;
	
}

#popupContainer {
	position: absolute;
	z-index: 1000;
	top: 0px;
	width: 100%;
	height: 100%;
	overflow-x: hidden; 
	overflow-y: hidden;

	left: 0px;
	display:none;
	padding: 0px;
	
}
#popupInner {
	/*border: 2px solid #000000;*/
	background-color: transparent !important;
	width: 100%;
	height: 100%;
	overflow-x: hidden; 
	overflow-y: hidden;

}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
}

#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
}

