.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#fff;
	
	text-align:center;
	padding:45px 45px 45px 45px;
	width:600px;
	border:3px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #666;
	-webkit-box-shadow: 0 0 90px #666;	
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

.simple_overlay ol {
	margin-left:20px;
}

.simple_overlay p, .simple_overlay li {
	font-size:11pt;
	line-height:1.3em;
	margin-bottom:12px;
}

.simple_overlay blockquote {
	margin-left:40px;
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../Images/overlay/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}

/* use a semi-transparent image for the overlay
#overlay {
	background-image:url(../Images/overlay/white-square.gif);
	color:#efefef;
	height:450px;
} */

/* container for external content. uses vertical scrollbar, if needed */
.contentWrap {
	height:441px;
	overflow-y:auto;
}


