
/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image: url(query.png);
	
	/* dimensions after the growing animation finishes  */
	width: 629px;
	height: 324px;		
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:0px;
}

/* default close button positioned on upper right corner */

div.overlay div.close {
	background-image: url(closeButton.png);
	position:absolute;
	left:590px;
	top:-5px;
	cursor:pointer;
	height:43px;
	width:43px;
}

div.overlay a.close {
	color: #12afdf;
	text-decoration: underline;
	cursor: pointer;
}