/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
	z-index: 20000;
	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("maskBG.png") !important; /* For browsers Moz, Opera, etc. */
	background-image:none;
	background-repeat: repeat;
	display:none;
}
#popupContainer {
	position: absolute;
	z-index: 20001;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
}
#popupInner {
	border: 2px solid #BBBBBB;
	/*background-color: #ffffff;*/	
	background-image: url('background_660.gif'); 
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 20002;
}
#popupTitleBar {
	font-weight: bold;
	border-bottom: 0px solid #BBBBBB;
	border-top: 0px solid #BBBBBB;
	border-left: 0px solid #BBBBBB;
	border-right: 0px solid #BBBBBB;
	position: relative;
	z-index: 20003;
	height: 35px; 
	padding-right: 0.5em;
	padding-top: 0.4em;
	padding-bottom: 0.4em;
	overflow: hidden; 
	cursor: default;
	cursor: default;
	line-height: 1.4em;
	color: #000000;
	text-indent: 15px;
	background: url('bg_modal_900.png');
}
#popupTitle {
	float:left;
	font-size: 14px;
	font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
}

#popupControls {
	float: right;
	margin: 0; padding: 0;
	width: 15px; height: 15px;
}
#popCloseBox{
	cursor: pointer;
	cursor: auto;	
	background: transparent url('close.gif') scroll top right no-repeat;
	width: 15px; height: 15px;
	margin: 0; padding: 0;
}

