/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
	z-index: 200;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .4;
	filter: alpha(opacity=40);
	/* 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("../images/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: 0;
	margin: 0;
	border-bottom: 2px solid #000000;
	overflow: hidden;
}
#popupFrame {
	border-top: 2px solid #000000;
	background-color: #eff9fe !important;
	padding: 0;
	margin: 0;
}

#popupFrame {
	float:left;
	display: inline;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
	overflow: hidden;
}
#popupTitleBar {
	float: left;
	display: inline;
	overflow: hidden;
	/*background-color: #486CAE;*/
	color: #ffffff;
	font-weight: bold;
	height: 27px;
	/*border-bottom: 2px solid #000000;
	border-top: 1px solid #78A3F2;
	border-left: 1px solid #78A3F2;
	border-right: 1px solid #204095;*/
	z-index: 203;
	background: url(../images/popup_title_bg.gif) repeat-x !important;
	padding: 0;
	margin: 0;
}
#popupTitleCornerLeft {
	float:left;
	display: inline;
	background: url(../images/popup_title_left_corner.gif) no-repeat !important;
	overflow: hidden;
	width: 9px !important;
	height: 27px !important;
	margin: 0;
	padding: 0;
	border: none;
	z-index: 204;
}
#popupTitle {
	font-size: 1.1em;
	text-align: left;
	height: 27px;
	padding: 7px 0 0 0;
	margin: 0;
}
#popupTitleCornerRight {
	float:right;
	display: inline;
	overflow: hidden;
	background: url(../images/popup_title_right_corner.gif) no-repeat !important;
	width: 9px;
	height: 27px;
	margin: 0;
	padding: 0;
	border: none;
	z-index: 204;
}
#popupControls {
	float: right;
	display: inline;
	position: relative;
	cursor: pointer;
	width: 15px;
	margin: 7px 0 0 0;
	z-index: 205;
}
#popCloseBox {
	background: url(../images/close.gif) no-repeat !important;
	width: 15px;
	height: 15px;
	z-index: 206;
}
#popupContentBar {
	clear: both;
	overflow: hidden;
}
#popupBorderLeft {
	float: left;
	display: inline;
	background: url(../images/popup_left_border.gif) repeat-y !important;
	width: 2px !important;
	overflow: hidden;
	height: 100%;
	z-index: 204;
}
#popupBorderRight {
	float: right;
	display: inline;
	background: url(../images/popup_right_border.gif) repeat-y !important;
	width: 2px;
	height: 100%;
	overflow: hidden;
	z-index: 204;
}
