


/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background:url(../media/images/white.png);
	
	/* dimensions after the growing animation finishes  */
	width:700px;
	height:600px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:5px;
}

div.overlay span {	
	position:static;

}

div.overlay img {
	border:none;

}

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


