/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
	z-index: 1011;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .7;
	filter: alpha(opacity=70);
	/* 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: #000;
	/* 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;
	z-index: 10201;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
}
#popupInner {
	border: 1px solid #d9d9d9;
	background-color: #fff; padding-bottom: 6px;
	position: fixed;
	-moz-border-radius: 8px 8px 8px 8px;
	-webkit-border-radius: 8px 8px 8px 8px; 
	border-radius: 8px 8px 8px 8px;
}

#popupFrame {
	margin: 0px;
	//width: 100%;
	height: 100%;
	position: relative;
	z-index: 10202;
}
#popupTitleBar {
	background: url(../pics/main/popup_title_bar.png) repeat-x top left;
	color: #555555; cursor: move;
	font-weight: bold;
	height: 21px; padding-top: 12px; padding-left: 10px; padding-right: 10px;
	border-bottom: 1px solid #c5c5c5;
	position: relative;
	z-index: 10203;
	-moz-border-radius: 8px 8px 0 0;
	-webkit-border-radius: 8px 8px 0 0; 
	border-radius: 8px 8px 0 0;
}
#popupTitle {
	float:left;
	font-size: 1.1em;
}
.popupControls:hover { background: transparent url(../pics/main/ico/ico_close_red.png) no-repeat scroll center center; }
.popupControls {
	float: right;
	cursor: pointer;
	background: transparent url(../pics/main/ico/ico_close.png) no-repeat scroll center center;
	width: 12px;
	height: 12px;
}
