/* container for external content. uses vertical scrollbar, if needed */ 
div.wrap { 
    height:510px; 
	width:510px;
    overflow: hidden; 
	margin:0px;
	padding:0px;
	position:relative;
	top:45px;
	left:45px;
}
/* the overlayed element */
div.overlay {

	/* growing background image */
	background-image:url(img/popup-h.png);
	
	/* dimensions after the growing animation finishes  */
	width:600px;
	height:600px;
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding: 0px;
}
/* close button positioned on upper right corner */ 
div.close { 
    background-image:url(img/close.png); 
	background-position: 0px 0px; 
    position:absolute; 
    right:32px; 
    top:32px; 
    cursor:pointer; 
    height:9px; 
    width:9px; 
}
div.close:hover { 
	background-position: 0px -9px; 
}
