/* the overlayed element */ 
div.overlay { 
     
    /* growing background image */ 
    background-image:url('../images/Overlay-Background.png'); 
     
    /* dimensions after the growing animation finishes  */ 
    width:600px; 
    height:490px;         
     
    /* initially overlay is hidden */ 
    display:none; 
     
    /* some padding to layout nested elements nicely  */ 
    padding:40px; 

} 
 

/* default close button positioned on upper right corner */ 
div.overlay div.close { 
    background-image:url('../images/close.png'); 
    position:absolute; 
    right:5px; 
    top:5px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
}

div.wrap {
    height:460px;
    width: 600px;
    overflow-y:auto;
    color: #0; font-family: Arial, Helvetica, Verdana, sans-serif;
    letter-spacing: 0.01em;
    font-size: 1.1em;
    font-weight: 800
    margin-bottom: 0;
    margin-top: 0; } 
}


/* text used within the overlay */
p.overlay { color: #0; font-family: Arial, Helvetica, Verdana, sans-serif;
        letter-spacing: 0.01em;
        font-size: 1.1em;
        font-weight: 800
        margin-bottom: 0;
        margin-top: 0; }


