/**
 * POPUP CONTAINER STYLES
 */
#popupMask { background-color: #000 !important; position: absolute; z-index: 100; top: 0; left: 0; width: 100%; height: 100%; opacity: .5; filter: alpha(opacity=50);
	/* 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-repeat: repeat; display: none; }
#popupContainer {
	position: absolute;
	z-index: 101;
	top: 0;
	left: 0;
	display:none;
	padding: 0;
}
#popupInner {
	border: solid 2px #808080;
	background-color: #ffffff;
}

#popupFrame {
	margin: 0;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 102;
}
#popupTitleBar { color: #ffffff; font-weight: bold; background-color: #069 !important; height: 1.3em; padding: 5px; position: relative; z-index: 103; border-color: #78a3f2 #204095 #000000 #78a3f2; border-style: solid; border-width: 1px 1px 2px; }
#popupTitle {
	float:left;
	font-size: 1.1em;
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
}