/* the overlayed element */
.simple_overlay {
 
    /* must be initially hidden */
    display:none;
 
    /* place overlay on top of other elements */
    z-index:999999;
      
    width:300px;   
 
    /* CSS3 styling for latest browsers */
    -moz-box-shadow:0 0 90px 5px #000;
    -webkit-box-shadow: 0 0 90px #000;
    
    opacity: 50%;
    border-radius: 6px 6px 6px 6px;
    border: medium none;
    background: url(../images/top_section_tile.gif) repeat-x scroll 0% 0% rgb(255, 255, 255);
    padding: 32px 32px 32px 32px;
    
}
 
/* close button positioned on upper right corner */
.simple_overlay .close {
    background-image:url(../images/overlayClose.png);
    position:absolute;
    right:4px;
    top:-12px;
    cursor:pointer;
    height:27px;
    width:27px;
}
