/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
	z-index: 5000;
	top: 0px;
	left: 0px;
	width: 100% !important;
	height: 100%;
	opacity: .1;
	filter: alpha(opacity=40);
	/* 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("maskBG.png") !important; /* For browsers Moz, Opera, etc.*/	
	background-image:none;
	background-repeat: repeat;
	display:none;
}
#popupContainer {
	position: absolute;
	z-index: 5000;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
	  
}
#popupInner {
	
    border:solid 5px #eaeaea;
/*    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;*/
    background-color:#ffffff;
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 5000;
}

#popupTitle {
	float:left;
	font-size: 14px;
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor:default;
}

#popupTitleBar{
    height:24px;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0a86cd), color-stop(1, #046ca9));
	background:-moz-linear-gradient(top, #3a3b3d 5%, #3a3b3d 100%);
	background:-webkit-linear-gradient(top, #3a3b3d 5%, #3a3b3d 100%);
	
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0a86cd', endColorstr='#046ca9',GradientType=0);
	
	background-color:#3a3b3d;
	behavior: url(pie/PIE.htc);

    color:#ffffff !important ;
    font-family:"myriad-pro","Myriad Pro",Helvetica,Arial,sans-serif;
    font-size:18px;
    font-weight:bold;
    padding-top:7px;
    padding-bottom:5px;
    padding-left:5px;
    position:relative;
    z-index:203;
}

.popupClose, .popupClose:hover
{
    background-image:url('close.gif');
    background-repeat:no-repeat;
    width:15px;
    height:15px;
    margin-bottom:2px;
    margin-right:5px;
    border:1px solid #fff;
}

.popupClose:hover
{
   background-image:url('close.gif');
   border:1px solid #89d5fc;
             
}

