﻿* { margin:0; padding:0; }

.info { color:#666; font-size:0.9em; font-style:italic; }
/* POPUP CONTAINER STYLES */
#popupMask {
top:0;
left:0;
width:100%;
height:100%;
opacity:.4;
z-index:200;
position:absolute;
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:#333;
/*
* 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("../images/maskBG.png") !important; // For browsers Moz, Opera, etc.
background-image:none;
background-repeat:repeat;
display:none;
}
#popupContainer { top:0; left:0; padding:0; z-index:201; display:none; position:absolute; }
#popupInner { border:1px solid #AAAAAA; background:#fff; }/*#8DB1D3*/
#popupFrame {
margin:0px;
width:100%;
height:100%;
z-index:202;
position:relative;
}
#popupTitleBar {
color:#000;
padding:5px;
z-index:203;
height:1.3em;
line-height:1.3em;
font-weight:bold;
position:relative;
background:#D1D1D1; /*#8DB1D3*/
border-bottom:1px solid #AAAAAA; /*#8DB1D3*/

}
#popupTitle { float:left; font-size:1.1em; }
#popupControls { float:right; cursor:pointer; cursor:hand; }