/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-image:url(/img/blank.gif);
	/*background-color:url(/img/blank.gif);*/
	
	width:435px;	
	min-height:200px;
	border:none;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(/img/close.gif);
	position:absolute;
	right:5px;
	top:13px;
	cursor:pointer;
	height:10px;
	width:48px;
}

/* use a semi-transparent image for the overlay */
	#overlay {
		color:#efefef;
		/*height:800px;*/
		width:435px;
	}
	
	/* container for external content. uses vertical scrollbar, if needed */
	div.contentWrap {
		width: 435px;
		/*height:800px;*/
		overflow-y:auto;
	}
