/* the pop-up */ 
#popup { 
     
    /* initially overlay is hidden */ 
    display: none;
    cursor: default;
     
    /*  
        width after the growing animation finishes 
        height is automatically calculated 
    */ 
    width: 700px;         
     
    /* some padding to layout nested elements nicely  */ 
    padding: 0px; 
 
    /* a little styling */     
    font-size: 11px; 
    z-index: 500;
} 
 
/* default close button positioned on upper right corner */ 
#popup div.close { 
    background-image:url(../images/overlay/apple-close.png); 
    position:absolute; right:-14px; top:-12px; 
    cursor:pointer; 
    height:28px; 
    width:28px; 
}