
/* the overlayed element */
div.overlay {

	/* growing background image */
	background-image:url(white.png);

	/* dimensions after the growing animation finishes  */
	width:1100px;
	height:700px;

	/* initially overlay is hidden */
	display:none;

	/* some padding to layout nested elements nicely  */
    padding: 30px 30px 0px 50px;
	
	text-align: left;
	font-size: 12px;
	line-height: 1.3em;
}

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




