/* the overlayed element */
.simple_overlay {
    
    /* must be initially hidden */
    display:none;
    
    /* place overlay on top of other elements */
    z-index:1000000;
    
    /* styling */
    background-color:#FFFFFF;
    position:absolute;
    min-width:100px;    
    min-height:100px;
    border:8px solid #FFFFFF;
    
    /* CSS3 styling for latest browsers */
    -moz-box-shadow:0 0 90px 5px #000;
    -webkit-box-shadow: 0 0 90px #000;  
}

/* close button positioned on upper right corner */
.simple_overlay .close {
    background-image:url(../images/close.png);
    position:absolute;
    right:-20px;
    top:-20px;
    cursor:pointer;
    height:35px;
    width:35px;
}


.details {
font-size:13px;font-family:Arial,Helvetica,Verdana,sans-serif;line-height:19px;
    color:#000000;
    background-image:url(../images/overlay_bg.png);
    background-position: left top;
    background-repeat: no-repeat;
    padding: 5px 0 0 100px;
    min-height: 45px;
}

.details h3 {
    color:#aba;
    font-size:15px;
    margin:0 0 -10px 0;
}

:focus {
  -moz-outline-style:none;
}
