/* CSS Document */
/* the overlayed element */
div.overlay3 {
	
	/* growing background image */
	background-image:url(blue2.png);
	
	/* dimensions after the growing animation finishes  */
	width:700px;
	height:700px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:50px;
	color:#fff;	
}

div.overlay3 p {
	font-size:16px;	
}

/* 
	image is contained on the overlay background image. 
	the closing button is thus just a transparent container. 
*/
div.overlay3 div.close {
	background:none;
	position:absolute;
	left:8px;
	top:8px;
	cursor:pointer;
	height:35px;
	width:35px;
}


