

/**
 * POPUP CONTAINER STYLES
 */
#popupMask {

    position:fixed;
	display:none;
	background-color: Gray;
	filter: alpha(opacity=50);
	opacity: 0.5;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	z-index:100;

}
#popupContainer {
	position: absolute;
	z-index: 101;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
}
#popupInner {
	border:1px solid #999999;
	background-color: #ffffff;
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 102;
}
#popupTitleBar {
	background: url(/ModalUC/images/titleBGModal.png);
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight: bold;
	height: 1.3em;
	padding: 5px;
	border-bottom: 1px solid #999999;
	position: relative;
	z-index: 103;
}

#popupTitle {
	float:left;
	font-size: 1.1em;
	color: #333333;
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
	text-decoration: none
}
