/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	/* place overlay on top of other elements */
	z-index:10000;
	padding: 0px;
	border:0px;
	border-width:0;
	/* styling */
	background-color:#333;		
	min-height:200px;
	border:0.5px solid #666;
	float: center;
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 10px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

img.simple_overlay {
	position:absolute;
	float: center;
	width:100%;
}


/* close button positioned on upper right corner */
.simple_overlay .close {
	background-color:transparent;
	background-image:url('/images/close.png');
	background-repeat:no-repeat;
	position:absolute;
	padding:0px;
	border:0px;
	top:-30px;
	left:-30px;
	cursor:pointer;
	height:35px;
	width:35px;
	border:0px;
}


/* styling for elements inside overlay */
.details {
	padding:0px;
	border:0px;
	background-color:transparent;
	position:relative;
	font-size:14px;
	color:#000;
	width:200px;
}


.details h3 {
	color:#aba;
	font-size:15px;
	margin:0 0 -10px 0;
}
