
/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image: url(back.gif);
	
	/* dimensions after the growing animation finishes  */
	width: 508px;
	height: 602px;
	
	
		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:0px;
}


div.overlay2 {
	
	/* growing background image */
	background-image: url(back2.gif);
	
	/* dimensions after the growing animation finishes  */
	width: 601px;
	height: 748px;
	
	
		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:0 0px  0 0px;
}


/* default close button positioned on upper right corner */

.contentInOverlay{ margin:20px 0 0  20px}

div.overlay div.close {
	background-image: url(close.jpg);
	background-repeat:no-repeat;
	position:absolute;
	right:20px;
	top:30px;
	cursor:pointer;
	height:30px;
	width:33px;
}

div.overlay a.close {
	color: #12afdf;
	text-decoration: underline;
	cursor: pointer;
}

div.overlay2 div.close {
	background-image: url(close.jpg);
	background-repeat:no-repeat;
	position:absolute;
	right:20px;
	top:30px;
	cursor:pointer;
	height:30px;
	width:33px;
}

div.overlay2 a.close {
	color: #12afdf;
	text-decoration: underline;
	cursor: pointer;
}


