

div.overlay { 
     
    /* growing background image */ 
    background-image:url(overlay/indexoverlay.png);
	

    /* dimensions after the growing animation finishes  */ 
    width:750px; 
    height:550px;         
     
    /* initially overlay is hidden */ 
    /* display:none;  */
     display:none;
    /* some padding to layout nested elements nicely  */ 
    padding:45px; 
} 
/* use a semi-transparent image for overlay */ 

 
/* container for external content. uses vertical scrollbar if needed */ 
.overlaywrap{ 
    height:530px; 
    overflow-y:auto;
	overflow-x: hidden;
	top:16px;
	position:relative;
	
}

div.close { 
    position:absolute; 
    right:50px; 
    top:40px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
	
}


/* the overlayed element */ 






div.saving { 
     
    /* growing background image */ 
    background-image:url(overlay/white.png); 
     
    /* dimensions after the growing animation finishes  */ 
    width:300px; 
    height:80px;         
     
    /* initially overlay is hidden */ 
    /* display:none;  */
     display:none;
    /* some padding to layout nested elements nicely  */ 
    padding:20px;
	text-align:center;
	vertical-align:middle;
} 



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