#screen
{
position: absolute;
top: 0px;
left: 0px;
z-index: 90;
width: 100%;
height: 100%;
background-color:#000; /* this is the bg of the page - typically #000 */
-moz-opacity: 0.8;
opacity:.80;
filter: alpha(opacity=80);
}

* html #screen 
{
background-color: #000; /* this is the bg of the page - typically #000 */
background-color: transparent;
background-image: url('/img/blank.gif');
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='/img/overlay.png', sizingMethod="scale");
}

#box 
{
color: #FFF;
width: 330px;
background: #FFF; /* This is the bg of the box - 2d2d2d or F3E093 */
padding: 5px;
border: 2px solid #eee;
}

#box2 
{
color: #FFF;
width: 834px;
background: #FFF;
padding: 0px;
border: 2px solid #eee;
}

.close 
{
position: absolute;
background-image: url('img/close.gif');
width: 13px;
height: 13px;
top: 0px;
right: 0px;
margin: 10px 10px 0 0;
cursor: pointer;
}