/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
	z-index: 200;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .75;
	filter: alpha(opacity=75);
	/* 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("/core_elements/includes/div_manager/maskBG.png") !important; // For browsers Moz, Opera, etc.
	background-image:none;
	background-repeat: repeat;
	display:none;
}
#popupContainer {
	position: absolute;
	z-index: 201;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
}
#popupInner {
	border: 2px solid #000000;
	background-color: #ffffff;
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
	
}
#popupTitleBar {
	/*background: url("/includes/phone_details/images/top_bar_bg.jpg") repeat-x;
	
	border-top: 1px solid #DDDDDD;
	border-left: 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;*/
	border-bottom:2px solid #E6E6E6;
	position: relative;
	z-index: 203;
	height:18px;
	background-color:#E9E9E9;
	font-weight: bold;
	padding: 10px 5px 5px 5px;
	overflow:hidden;
}
#popupTitleBar:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
	}
#popupTitle {
	float:left;
	text-align:left;
	font-size: 12px;
	width:auto;
	height: 18px;
}
#popupRight{
	float:right;
	margin-left:20px;
	width: 130px;
overflow:hidden;
}
#popupPrint{
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	color:#666666;
	float: left;
	text-align: left;
margin-right:20px;
	cursor:pointer;
}
#popupControls {
	width:20px;
	height:20px;
	float: right;
	cursor: pointer;
}

