﻿/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#333;
	
	width:750px;
	margin-right:20px;
	min-height:540px;
	border:1px solid #666;
	
	/* 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(../overlay/close.png);
	right: 15px;
	top: 15px;
	cursor: hand;
	height: 35px;
	width: 35px;
	cursor:pointer;
	position:absolute;
	z-index: 8000000;


}
.simple_overlay .close:hover {
	background-image: url(../overlay/close-on.png);
}
.overlayDetails {
	position:absolute;
	top:15px;
	right:15px;
	font-size:11px;
	color:#fff;
	width: 95%;
}

.overlayDetails h3 {
	color:#548f1b;
	background: url(../overlay/notice.png) no-repeat;
	font-size:15px;
	height:50px;
	margin:0 0 0 0;
	width: 200px;
}

.overlayDetails h4 {
	color:#666;
	font-size:14px;
	margin:0 0 0 0;
}

.overlayDetails p
{
	color: White;
	margin:5px 0 15px 0;
}

