
/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#F8F7D9;
	
	width:569px;	

	border:1px solid #D0DBBA;
	padding: 9px;

	
	/* CSS3 styling for latest browsers */
	-moz-border-radius:10px;
	-webkit-border-radius:10px;		
	-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/bt-close.png);
	position:absolute;
	right:-17px;
	top:-14px;
	cursor:pointer;
	height:52px;
	width:52px;
}
.simple_overlay  .details{
	background: #fff;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;	
	padding: 20px;		
}
.simple_overlay  .details h3{
	color: #EBA100;
	font-size: 14px;
	font-weight: normal;
	padding: 0 0 20px 0;
}
.simple_overlay  .details ul{
	
}
.simple_overlay  .details ul li{
	color:#61551D;		
	font-size: 12px;
	line-height: 1.5;	
	background: url(../images/li.gif) no-repeat 2px 8px;
	padding: 0 0 5px 15px
}