
/* the overlayed element */
div.overlay { 
	
	/* growing background image */
	background-image:url(../images/green.png);
	position:absolute;
	right:0px;
	top:0px;
	

	
	/* dimensions after the growing animation finishes  */
	width:565px;
	height:300px;	
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding-top:50px;
	padding-left:50px;
	padding-bottom:100px;
	padding-right:50px;

}


div.overlay div.image { 
	
	/* growing background image */
	position:absolute;
	right:0px;
	top:0px;
	

	
	/* dimensions after the growing animation finishes  */
	width:556px;
	height:343px;	
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding-top:0px;
	padding-left:0px;


}


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