
/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#FFF;
	
	width:700px;	
	height:550px;
	border:1px solid #666;*/
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #666;
	-webkit-box-shadow: 0 0 90px #666;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../images/close.png);
	background-repeat:no-repeat;
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}



/* "next image" and "prev image" links */
.next, .prev {
	/* absolute positioning relative to the overlay */
	position:absolute;
	top:90%;	
	cursor:pointer;
	display:block;
	padding:10px 20px;
	color:#333;
	text-align:center;
	font-size:15px;
	font-weight:bold;
	color:#797368;
	font-family:Georgia, "Times New Roman", Times, serif;
	z-index:2000;
}

.prev {
	left:100px;
}

.next {
	left:200px;
}

a.next:hover, a.prev:hover {
	text-decoration:underline;
}

/* when there is no next or previous link available this class is added */
.disabled {
	visibility:hidden;		
}

/* the "information box" */
.info {
	position:absolute;
	bottom:0;
	left:0;	
	padding:10px 15px;
	font-size:12px;
	background-color:#fff;	
	color:#333;
	font-family:Georgia, "Times New Roman", Times, serif;
}

