/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image:url(../../images/design/space.png);
	
	/* dimensions after the growing animation finishes  */
	width:577px;
	height:446px;		
	/* initially overlay is hidden */
	display: none;
	/* some padding to layout nested elements nicely  */
	padding: 0px;
	border: 0px;
	overflow: hidden;
}
/* default close button positioned on upper right corner */
div.overlay div.close {
	background-position: top left;
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:17px;
	width:53px;
}


/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
	height:446px;
	overflow:hidden;
	border: 0px;
	padding: 0px;
}

