/**
 * POPUP CONTAINER STYLES
 */
 #popupMask {
	position: absolute;
	
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	/*opacity: 40% ;*/
	/*filter:alpha(opacity=0);*/

	/* 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;*/
	
	/*background-color: #b8b8b8;*/
	
	background-color: #000;
	color: #b8b8b8;
	opacity: 0.3;
	filter: alpha(opacity = 60);
	
	
	/* 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;
	display:none;
}
.popupMask {
	position: absolute;
	
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	/*opacity: 40% ;*/
	/*filter:alpha(opacity=0);*/

	/* 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;*/
	
	/*background-color: #b8b8b8;*/
	
	background-color:#D2EAE0;
	color: #b8b8b8;
	opacity: 0.8;
	filter: alpha(opacity = 60);
	
	
	/* 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;
	display:none;
}
.popupContainer {
	position: absolute;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
}
.popupInner 
{
	margin:0 0 0 0;
	padding: 0 0 0 0;
	/*border-width: 2px;
	border-style:groove;*/
	background-color: #ffffff;
	border-radius: 15px;
	/*
	
	
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;				
	background-color: #cccccc;
	color: #aaaaaa;
	opacity: .4;
	filter: alpha(opacity = 50);
    */
				
}
.popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
}
.popupTitleBar 
{
    /*
	background-color: #ebedf2;
	color: #ffffff;
	font-weight: bold;
	height: 1.1em;
	padding-left: 5px;
	border-bottom-width: 2px;
	border-bottom-style:ridge ;
	border-top-width: 0px;
	border-left-width: 0px;
	border-right-width: 0px;
  
    background-image:url(../subModal/Popup_01.png);
*/
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    
	position: relative;
	z-index: 203;
	border-bottom-color:rgba(204, 204, 204, 1);
	border-bottom-style:solid;
	border-bottom-width:1px;
}
.popupTitle {
	float:left;
	font-size: 1em;
}
.popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
}
.popupTitleText {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 25px;
	color: rgba(55, 109, 127, 1);
	float: left;
	cursor: pointer;
	cursor: hand;
	text-align:center; 
	vertical-align:middle;
	margin : 5 10 0 10;
}
.popupControls_AR {
	float: left;
	cursor: pointer;
	cursor: hand;
}
.popupTitleText_AR {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 25px;
	color: rgba(255, 255, 255, 1);
	float: right;
	cursor: pointer;
	cursor: hand;
	text-align:center; 
	vertical-align:middle;
	margin : 5 10 0 10;
}