
/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#DA002A;
	border:#9A002D 5px solid;
	
	width:575px;	
	
	/* 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/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:36px;
	width:36px;
}


.details {
	position:absolute;
	top:15px;
	left:15px;
	font-size:11px;
	color:#fff;
	width:300px;
}

.details h3 {
	color:#fff;
	font-size:24px;
	margin:0 0 10px 0;
}
.details h4 {
	color:#aba;
	font-size:14px;
	margin:0 0 5px 0;
}

.simple_overlay img{
float:right;
}

.thumb img{ cursor:pointer;}