/* container for external content. uses vertical scrollbar, if needed */ 
div.wrap { 
    overflow: hidden; 
	margin:0px;
	padding:0px;
	position:relative;
	top:20px;
	left:20px;
}
/* the overlayed element */
div.overlay {
	background-image:url(images/popup-w.png);
	width:940px;
	height:120px;
	display:none;
	padding: 0px;
}
/* default close button positioned on upper right corner */ 
div.overlay div.close { 
    position:absolute; 
    right:8px; 
    top:8px; 
    cursor:pointer; 
	width:10px;
	height:10px;
	background:url(images/close.png) no-repeat;
} 
div.overlay div.close:hover { 
	background-position:0px -10px;		
} 