/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
	z-index: 10010;
	hasLayout:-1;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .4;
	filter: alpha(opacity=0);
	/* 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: #333333;
	/* 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("PopWinmaskBG.png") !important; // For browsers Moz, Opera, etc.
	background-image:none;
	background-repeat: repeat;
	
	overflow:hidden;
	overflowX:hidden;
	overflowY:hidden;
	display:none;
}
#popupContainer {
	position: absolute;
	z-index: 10020;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
	cursor:default;
	font-family:Tahoma, Helvetica, Arial, sans-serif;
	font-size:11px;
}
#popupInner {
	
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 10020;
}
#popupTitleBar {
	height: 25px;
	width:100%;
	padding: 0px;
	position: relative;
	z-index: 10020;
	cursor:move;
}
#popupTitle {
	float:left;
	color: #ffffff;
	font-weight: bold;
}

#popupTitleLeft {
	width:3px;
	background-image: url("PopWindialogLeft.gif") !important;
	background-repeat:no-repeat;
}

#popupTitleCenter {
	background-image: url("PopWindialogCenter.gif") !important;
	padding-left:5px;
}

#popupTitleClose {
	width:20px;
	background-image: url("PopWindialogCenter.gif") !important;
}

#popupTitleRight {
	width:4px;
	background-image: url("PopWindialogRight.gif") !important;
	background-repeat:no-repeat;
}

#popupBottomLeft {
	background-image: url("PopWindialogBottomLeft.gif") !important;
	background-position:left;
	background-repeat:no-repeat;
}

#popupBottomCenter {
	background-image: url("PopWindialogBottomCenter.gif") !important;
	background-position:center;
	height:5px;
}

#popupBottomRight {
	background-image: url("PopWindialogBottomRight.gif") !important;
	background-position:right;
	background-repeat:no-repeat;
}

#popupControls {
	float: left;
	cursor: pointer;
	cursor: hand;
}
