/**
 * POPUP CONTAINER STYLES
 */
#popupMask, #progressBackgroundFilter, #progressBackgroundFilter2, #progressBackgroundFilter3, #progressBackgroundFilter4, #progressBackgroundFilter5, #progressBackgroundFilter6 {
	position: absolute;
	z-index: 200;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .7;
	/*filter: alpha(opacity=70);*/ /*cause 100% cpu for ie7*/
	_filter: alpha(opacity=70); /*IE6 hack*/
	/* 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: #7e7e7e;
	/* 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;
}
#progressBackgroundFilter6 {
z-index: 300;
}

#popupContainer, #processMessage, #processMessage2, #processMessage3, #processMessage4, #processMessage5, #processMessage6 {
	position: absolute;
	z-index: 201;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
}
#processMessage6 {
	z-index: 301;
}

#popupInner {
	border-bottom: 1px solid #333;
	/*border-left: 1px solid #333;*/
	/*border-right: 1px solid #333;*/
	background-color: transparent;
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
}
#popupTitleBar {
	height: 28px;
	border-bottom: 0px solid #ffffff;
	position: relative;
	z-index: 203;
	background:url(../images/modal_horizontal.png) no-repeat;
/* -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px;*/
/* -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px;*/
}
#popupTitle {
	float:left;
	font-size: 10pt;
    font-family: sans-serif,Arial, Helvetica;
    font-weight: bold;
    color: #111;
margin-top: 7px;
margin-left: 8px;
}
#popupStat {
	float:right;
	font-size: 8pt;
    font-family: sans-serif,Arial, Helvetica;
/*    font-weight: bold;*/
    color: #111;
margin-top: 7px;
margin-right: 8px;
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
margin-top: 4px;
margin-right: 6px;
}
#popCloseBox {
	display:inline-block;
	width:16px; height:16px; top:3px;
	background:url(../images/modal_buttons.png) 0px 0px;
}
#popCloseBox:hover {
	background:url(../images/modal_buttons.png) 0px -16px;
}

#popupTitleBar.disabled {
	background:url(../images/modal_horizontal2.png) no-repeat;
/* -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px;*/
/* -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px;*/
}
#popupTitleBar.disabled #popupTitle {
    color: #222;
}
#popupTitleBar.disabled #popupStat {
    color: #222;
}
#popupTitleBar.disabled #popupControls {
	cursor: default;
}
#popupTitleBar.disabled #popCloseBox {
	background:url(../images/modal_buttons2.png) 0px 0px;
}
