/**
 * jQuery lightBox plugin
 * @version 0.5
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
 */
#jquery-overlay {
	z-index: 1000;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 500px;
	cursor: pointer;
}
#jquery-lightbox {
	z-index: 1100;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	line-height: 0;
	cursor: pointer;
}
#jquery-lightbox a img {
	border: none;
}
#lightbox-container-image-box {
	z-index: 1200;
	position: relative;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	background-color: #FFF;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	-khtml-border-radius: 15px;
	cursor: default;
}
#lightbox-container-image {
	padding: 15px;
}
#lightbox-loading {
	position: absolute;
	top: 40%;
	left: 0%;
	width: 100%;
	height: 25%;
	text-align: center;
	line-height: 0;
}
#lightbox-nav {
	z-index: 1250;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
#lightbox-container-image-box > #lightbox-nav {
	left: 0;
}
#lightbox-nav a {
	outline: none;
}
#lightbox-nav-btnPrev,
#lightbox-nav-btnNext {
	display: block;
	width: 49%;
	height: 100%;
	zoom: 1;
}
#lightbox-nav-btnPrev { 
	left: 0;
	float: left;
}
#lightbox-nav-btnNext { 
	right: 0;
	float: right;
}
#lightbox-container-image-data-box {
	position: absolute;
	left: 0;
	bottom: 5px;
	width: 100%;
	height: 30px;
	margin: 0 auto;
	line-height: 1.4em;
	font: 11px Verdana, Helvetica, sans-serif;
	background-color: #FFF;
	overflow: auto;
	border-radius: 0 0 15px 15px;
	-moz-border-radius: 0 0 15px 15px;
	-webkit-border-radius: 0 0 15px 15px;
	-khtml-border-radius: 0 0 15px 15px;
}
#lightbox-container-image-data {
	color: #666;
}
#lightbox-container-image-data #lightbox-image-details { 
	float: left;
	width: 50%;
	padding-left: 15px;
	text-align: left;
}	
#lightbox-image-details-caption a {
	color: #44ABDD;
}
#lightbox-image-details-currentNumber {
	display: block;
	clear: left;
	padding-bottom: 1.0em;	
}			
#lightbox-secNav-btnClose {
	float: right;
	width: 79px;
	padding: 5px 15px 0 0;	
}
