
/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background:#333333;
	width:675px;	
	min-height:200px;
	border:2px solid #ffffff;
}
/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../images/apple-close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:28px;
	width:28px;
}
#gallery{
	margin:0;
	padding:0;
}
