
/* the overlayed element */
div.overlay {
	/* dimensions after the growing animation finishes  */
	width:720px;
	height:500px;
	/* initially overlay is hidden */
	display:none;
	/* some padding to layout nested elements nicely  */
	padding:75px 80px 75px 75px;
	background: url(javascript/overlay/white.png);
}

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

