/* the overlayed element */ 
div.overlay { 
    /* growing background image */ 
    background-image:url("../images/nl/bg_overlay.gif"); 
     
    /* dimensions after the growing animation finishes  */ 
    width:400px; 
    height:350px;         
     
    /* initially overlay is hidden */ 
    display:none; 
     
    /* some padding to layout nested elements nicely  */ 
    color: #ffffff;
    padding-top: 22px;
    
    background-color: #3b0084;
    border: black;
} 
 
/* default close button positioned on upper right corner */ 
a.close {     
    position: absolute; 
    right: 8px; 
    top: 8px; 
    cursor: pointer; 
} 
