
/* the overlayed element */
div.overlay {
	margin:0 auto;
	/* growing background image
	background:url(../images/transparent.png) no-repeat;*/

	/* dimensions after the growing animation finishes */
	width:1280px;
	height:760px;
	max-width:100%;

	/* initially overlay is hidden */
	display:none;

	/* some padding to layout nested elements nicely  */
	padding:0px 0px 0px 0px;
	margin-left: 0px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(../images/close.png);
	position:absolute;
	/* right: 5px; */
	left:1250px;
	top:0px;
	cursor:pointer;
	height:35px;
	width:35px;
}

