
/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#F6F6F6;
	
	width:85%;	
	min-height:300px;
	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(Images/closeoverlay.png);
	position:absolute;
	right:-25px;
	top:-25px;
	cursor:pointer;
	height:35px;
	width:35px;
}



/* styling for elements inside overlay */
.simple_overlay img {
		cursor:pointer;
		margin:0px 5px 10px 5px;
		background-color:#fff;
		border:1px solid #ccc;
		padding:2px;
		
		-moz-border-radius:4px;
		-webkit-border-radius:4px;
		
	}

.details {
		
		margin:15px;

	}
	
.details h3 {
		color:#004B91;
		font-size:16px;
		text-align:center;
		border:none !important;
		
	}
.details p{

	font-size:11px !important;
	line-height: 18px;
	margin-top: 18px;
	margin-bottom: 0em; 
}

.details ol{
	font-size:11px !important;
	line-height:18px;
	margin-left:20px;
}