
/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image:url(../file/layout/overlay_bkgnd.png);
	/* dimensions after the growing animation finishes  */
	width:850px;
	height:450px;/* this is useless in most browser*/		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding: 0 0 0 0;
	margin: 0;
	top: 0px;
}
#wrapper-overlay{
	width: 100%;/*850px*/
	padding: 30px 0 0 0;
	
}
/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(../file/layout/close.png);
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:36px;
	width:36px;
	background-repeat: no-repeat;
}

