/* POPUP CONTAINER STYLES */
#popupMask {
top:0;
left:0;
width:100%;
height:100%;
opacity:.4;
z-index:200;
position:absolute;
filter:alpha(opacity=95);
/* 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("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:none; }
#popCloseBox { width:100%; height:100%; }