/**
 * 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("PopWin/maskBG.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; }
#popupTitle { float:left; color: #ffffff; font-weight: bold; font-size:12px; }
#popupTitleLeft { width:3px; background-image: url("PopWin/dialogLeft.gif") !important; background-repeat:no-repeat; }
#popupTitleCenter { background-image: url("PopWin/dialogCenter.gif") !important; padding-left:5px; }
#popupTitleClose { width:20px; background-image: url("PopWin/dialogCenter.gif") !important; }
#popupTitleRight { width:4px; background-image: url("PopWin/dialogRight.gif") !important; background-repeat:no-repeat; }
#popupBottomLeft { background-image: url("PopWin/dialogBottomLeft.gif") !important; background-position:left; background-repeat:no-repeat; }
#popupBottomCenter { background-image: url("PopWin/dialogBottomCenter.gif") !important; background-position:center; height:5px; }
#popupBottomRight { background-image: url("PopWin/dialogBottomRight.gif") !important; background-position:right; background-repeat:no-repeat; }
#popupControls { float: left; cursor: pointer; cursor: hand; }

