/* container for external content. uses vertical scrollbar, if needed */ 
div.wrap { 
    height:592px; 
	width: 590px;
    overflow: hidden; 
	margin:0px;
	padding:0px;
	position:relative;
	top:35px;
	left:35px;
}
/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image:url(images/popup-w.png);
	
	/* dimensions after the growing animation finishes  */
	width:656px;
	height:642px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding: 0px;
}
/* default close button positioned on upper right corner */ 
div.overlay div.close { 
    position:absolute; 
    right:35px; 
    top:35px; 
    cursor:pointer; 
	width:18px;
	height:18px;
	background:url(images/close.png) no-repeat;
} 
div.overlay div.close:hover { 
	background-position:0px -18px;		
} 