* { margin:0; padding:0; }
body, html, input { color:#333; font-size:12px; line-height:2em; font-family:Verdana, Arial, Helvetica, sans-serif; }
.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=60);
/* 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/submaskBG.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:2px solid #000; background:#fff; }
#popupFrame {
margin:0px;
width:100%;
height:100%;
z-index:202;
position:relative;
}
#popupTitleBar {
color:#fff;
padding:5px;
z-index:203;
height:1.3em;
line-height:1.3em;
font-weight:bold;
position:relative;
background:#486cae;
border-bottom:2px solid #000;
border-top:1px solid #78a3f2;
border-left:1px solid #78a3f2;
border-right:1px solid #204095;
}
#popupTitle { float:left; font-size:1.1em; }
#popupControls { float:right; cursor:pointer; cursor:hand; }