/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
	z-index: 200;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .2;
	filter: alpha(opacity=20);
	/* 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:none;
	background-repeat: repeat;
	display:none;
}
#popupContainer {
	position: absolute;
	z-index: 201;
	top: 0px;
	left: 0px;
	display: none;
	padding: 0px;
	margin: 0px;
	background-color: #FFFFFF;  /* #D4D0C8  #770000 #ffffff*/;
	width: 100%;
	height: 100%; 
	border-color: #D4D0C8;
	border-style: outset;
	border-width: 3px;
}

#popupInner {
	background-color: #FFFFFF; /* #D4D0C8  */;
	width: 100%;
	height: 100%; 
	position: relative;
	z-index: 202;
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 203;
	top:0px;
	left:0px;
}

.popupTable {
	padding: 0px;
	border-style: none;
	border-spacing: 0px;
	border: none;
	width: 100%;
	height: 100%; 
}

.popupHeaderTable {
	padding: 0px;
	border-spacing: 0px;
	border-style: none;
	border: none;
	width: 100%;
	height: 100%; 
}

.popupHeaderColumn {
	text-align: center;
	vertical-align: middle;
	background-repeat:repeat-x;
	background-position:top;
	background-color:#003399; /* #5B81A5;  #E2E0E1;*/
	font-family:tahoma;
	font-size:11px;
	color:#FFFFFF; /*#003D70;*/
	cursor: move; 
	padding-left: 5px;
	font-weight: bold;
	vertical-align: middle;
	height: 23px;
}

.popupHeaderButtonColumn {
	background-repeat:repeat-x;
	background-position:top;
	background-color:#003399; /*#5B81A5;  #E2E0E1;*/
	width: 16px;
	height: 23px;
	text-align: right;
	vertical-align: middle;
	padding-top: 3px;
	padding-right: 3px;
}
	

.popupContentsRow {
	font-size: 8pt;
	width: 100%;
	height: 100%;
	cursor: pointer; 
}



