/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index: 9999999 !important;
	
	/* styling */
	background-color:#333;
	
	/*position: relative;*/
	position: absolute;
	position: fixed;
	border: 0px solid;
	left: 15% !important;
	top: 10% !important;
	width: 825px !important;	
	/*min-height:200px;*/
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 10px 2px #000;
	-webkit-box-shadow: 0 0 10px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(/App_Themes/Bennington/scrollTray/images/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}



/* styling for elements inside overlay */
	.details {
		position:absolute;
		top:15px;
		right:15px;
		font-size:11px;
		color:#fff;
		width:150px;
	}
	
	.details h3 {
		color:#aba;
		font-size:15px;
		margin:0 0 -10px 0;
	}

