/*** POPUP CONTAINER STYLES ***/
#splashMask {
	position: absolute;
	z-index: 10000;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .4;
	filter: alpha(opacity=40);
	background-color: #333333;
	display:none;
}
#popupMask {
	position: absolute;
	z-index: 10000;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .4;
	filter: alpha(opacity=40);
	background-color: #333333;
	display:none;
}

/* THIS HAS BEEN MOVED TO THE PRIMARY css...
#popupCallout {background-image:url('http://pictures.replaypreview.com/images/callout-modal.png'); width:74px; height:33px; top:1px;}
*/

#popupContainer {
	position: absolute;
	z-index: 10001;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
}

/* css browser hack to identify Chrome */
@media screen and (-webkit-min-device-pixel-ratio:0) { 
	#popupContainer { position: fixed; }
	#popupMask { position: fixed; }
	#splashMask {	position: fixed; }
}


#popupInner {
	border: 1px solid #333333;
	background-color: #ffffff;
}
#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 10002;
}
#popupTitleBar {
	background-color: #85B1D9;
	color: #ffffff;
	font-weight: bold;
	height: 1.2em;
	padding: 4px;
	border-bottom: 1px solid #333333;
	border-top: 1px solid #BBD3E9;
	border-left: 1px solid #BBD3E9;
	border-right: 1px solid #709AC0;
	position: relative;
	z-index: 10003;
}
#popupTitle {
	float:left;
	font-size: 1em;
	font-family:Arial, Helvetica, sans-serif;
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
}