/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
	z-index: 1000;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .65;
	filter: alpha(opacity=65);
	/* 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: #FFFFFF;
	/* 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("bg.png") !important; // For browsers Moz, Opera, etc.
	background-image:none;
	background-repeat: repeat;
	display:none;
}
#popupContainer {
	position: absolute;
	z-index: 1001;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
}
#popupInner {
	border: 4px solid #FFFFFF;
	background-color: #E2EBF2;
	color:#546B9E;
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1002;
}
#popupTitleBar {
	background-color: #FF6600;
	color: #FFFFFF;
	font-weight: bold;
	height: 22px;
	position: relative;
	z-index: 1003;
}
#popupTitle {
	float:left;
	font-size: 11px;
	padding:4px 0 2px 10px;
}
#popupControls {
	float: right;
	cursor: pointer;
	padding:3px 3px 3px 0;
}