/* use a semi-transparent image for the overlay */
#overlay {
    height:550px;
	width:800px;
	padding:10px;
	background-color:#FFF;
	border-radius:10px;
	display:none;
	-webkit-box-shadow: 0px 0px 25px 0px #666;
	-moz-box-shadow: 0px 0px 25px 0px #666;
	box-shadow: 0px 0px 25px 0px #666; 	
}

#overlay .close {  
	background: url(/images/icons/logout.png) no-repeat center center; 
	display:block; float:left;
	width:24px; height:24px;
	cursor:pointer;
}

/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
    height:550px;
    overflow-y:auto;
}