/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000000;
	
	/* styling */
	width:auto;
	border:1px solid #d0d9dd;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 180px 20px #000;
	-webkit-box-shadow: 0 0 720px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../../img/close.png);
	position:absolute;
	top:5px;
	right:5px;
	cursor:pointer;
	height:30px;
	width:30px;
}

.simple_overlay .details{ /*caption for images*/
	background:url(../../img/content-bg.png) top left repeat;
	width:auto%;
	position:relative;
	margin-top:-35px;
	font-size:13px;
	height:35px;
	text-align:right;
	}
	.simple_overlay .details p{
		padding:9px 20px 0 0;
		}