/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image:url('images/overlay.jpg');
	
	/* dimensions after the growing animation finishes  */
	width:600px;
	height:600px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:55px;
	
	color:#000;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url('images/btn-close.gif');
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:25px;
	width:25px;
}

div.overlay p {
	margin-bottom:5px;}
