
/* the overlayed element */

a img {border:0px}

.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#333;
	width:810px;	
	min-height:200px;
	border:1px solid #666;
	background:#fff; 
	text-align:center; 
	padding:25px; 
	-moz-border-radius:5px;
	-webkit-border-radius:5px;

	
	/* CSS3 styling for latest browsers 
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	*/
}

.simple_overlay img{
	margin:25px auto;
	margin-bottom:2px; 
	 	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background:url(img/home_overlayClose.jpg) no-repeat;
	position:absolute;
	right:10px;
	top:10px;
	cursor:pointer;
	height:19px;
	width:19px;
}

.simple_overlay a.arrows {width:43px; height:42px; overflow:hidden; display:block; position:absolute; margin-top:-240px; border:0px solid #f00}
.simple_overlay a.right {float:right; background:url(img/right_arrow_in.png) no-repeat; right:20px}
.simple_overlay a.right:hover	{background:url(img/right_arrow.png)}

.simple_overlay a.left 			{background:url(img/left_arrow_in.png) no-repeat}
.simple_overlay a.left:hover	{background:url(img/left_arrow.png)}
