#lightbox {
	background-color: #FFF;
	padding: 10px;
	z-index:500;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px; /* future proofing */
	-khtml-border-radius: 10px; /* for old Konqueror browsers */
}
#lightboxImage{
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px; /* future proofing */
	-khtml-border-radius: 10px; /* for old Konqueror browsers */	
	}
#nextLink{}
#prevink{}
#closeButton{opacity:0.7;}
#closeButton:hover{opacity:1;}
#lightboxCaption {
	font-family:Verdana, Geneva, sans-serif;	
	color: #000;
	background-color: #FFF;
	font-size: 16px;
	text-align: center;
	padding:10px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	
	-moz-border-radius-topleft: 0;
	-moz-border-radius-topright: 0;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	
	border-radius: 0px 0px 10px 10px;		
				
	-webkit-border-top-left-radius: 0;
	-webkit-border-top-right-radius: 0;
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
}
/* TELA DO ZOOM */
#lightboxIndicator { 
	border: 1px solid white;
}
/* BG E DENTRO TELA DO ZOOM */
#lightboxOverallView,
#overlay {
	background-color: #000;
	opacity: 0.5;
	width:100%;
	height:100%;
}
* html #lightboxOverallView,
* html #overlay {
	background-color: #000;
	filter: Alpha(opacity=50);
	width:100%;
	height:100%;
	z-index:400;
}
