/* the overlayed element */
div.overlay {
    
    /* growing background image */

    
    /* dimensions after the growing animation finishes  */
    width:400px;        
    
    /* initially overlay is hidden */
    display:none;
    
    /* some padding to layout nested elements nicely  */
    padding:55px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
    background-image:url(../images/overlay/close.png);
    position:absolute;
    right:39px;
    top:36px;
    cursor:pointer;
    height:35px;
    width:35px;
    z-index:100;
}
/* use a semi-transparent image for the overlay */ 
#overlay { 
    
    color:#000; 
    z-index: 33000; 
} 
/* container for external content. uses vertical scrollbar, if needed */ 
div.wrap { 
    
    overflow-y:auto;
    background: #FFF; 
}
