/**
 * POPUP CONTAINER STYLES
 */

/* layer to hide calling page */
#popupMask {
	position: absolute;
	z-index: 200;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .7;
	filter: alpha(opacity=70);
	/* this hack is so it works in IE
	 * I find setting the color in the css gives me more flexibility 
	 * than the PNG solution.
	 */
	xbackground-color:transparent !important;
	background-color: #666;
	/* 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
	 */
	xbackground-image/**/: url("maskBG.png") !important; // For browsers Moz, Opera, etc.
	xbackground-image:none;
	xbackground-repeat: repeat;
	display:none;
}
/* container for inner DIV and IFRAME */
#popupContainer {
	position: absolute;
	z-index: 201;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
	overflow: none;
	xcolor: white;
}
/* whole popup */
#popupInner {
	border: 0px solid white;
	background-color: white;
	overflow: none;
}

/* popup text section */
#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
}
/* popup title bar */
#popupTitleBar {
	background-color: #0066f7;
	color: white;
	background-image: url(../../images/menuback.png);
	background-repeat: repeat-x;
	font-weight: bold;
	height: 1.5em;
	padding: 5px;
	border-bottom: 2px solid #0066f7;
	position: relative;
	z-index: 203;
}
/* title inside title bar */
#popupTitle {
	float: left;
	width: 100%;
	height: 1.3em;
	font-size: 1.1em;
	xcolor: black;
	overflow: hide;
	margin: 0.25em;
}
/* close button inside title bar */
#popupControls {
	position: absolute;
	top: 4px;
	right: 4px;
	xfloat: right;
	cursor: pointer;
	cursor: hand;
	margin: 0.25em;
}
div.buttons {
	margin-top: 20px;
	text-align: center;
}
div.buttons button, div.buttons input[type='button'] {
	width: 100px;
	margin: 4px;
	font-weight: bold;
	background-color: #E1C4FF;
	color: black;
	border: 3px double #480091;
}
