
/* the overlayed element */

#gallery {
	z-index:10000 !important;
	position:absolute !important;
	top:1em !important;
}

.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000 !important;
	position:absolute !important;
	top:1em !important;
	
	/* styling */
	background-color:#080807;
	
	width:675px;	
	min-height:200px;
	border:1em solid #FFF;
	
	/* CSS3 styling for latest browsers */
	-webkit-box-shadow:0 0 6em #080807;
	-moz-box-shadow:0 0 6em #080807;
	box-shadow:0 0 6em #080807;
}

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