/**
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.css
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CCAttribution-ShareAlike 2.5 Brazil - http://creativecommons.org/licenses/by-sa/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */
#jquery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom:0;
	right:0;
	z-index: 999;
	background: white !important;
}

#jquery-lightbox {
	position: absolute;
	top: 0;
	left: 0;
	right:0;
	z-index: 9999;
	text-align: center;
	line-height: 0;
}

#lightbox-container-image-box {
	background-color: #fff; /*colorfondo*/
	margin: 0 auto;
}

#lightbox-container-image-box {
	position: relative;
	width: 300px;
	height: 300px;
	padding: 10px;
}


#lightbox-loading {
	position: absolute;
	top: 47%;
	left: 0;
	right: 0;
	text-align: center;
	line-height: 0;
}

#lightbox-nav { /*click sobre la foto*/
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	border: 0;
	z-index: 10;
}
	#lightbox-container-image-box > #lightbox-nav { left: 0;}
	#lightbox-nav a { outline: none; }

	#lightbox-nav-btnPrev,
	#lightbox-nav-btnNext {
		width: 49%;
		height: 100%;
		zoom: 1;
		display: block;
	}
	#lightbox-nav-btnPrev {
		float: left;
		background-position: left 50% !important;
	}

	#lightbox-nav-btnNext {
		float: right;
		background-position: right 50% !important;
	}


#lightbox-container-image-data-box {
-webkit-box-sizing: content-box;
   -moz-box-sizing: content-box;
	box-sizing: content-box;
	background-color: #fff; /*colorfondo*/
	margin: 0 auto;
	font: 12px Arial, sans-serif;
	line-height: 20px;
	overflow: auto;
	padding: 0 10px;
	color: #666; /*color texto*/
}
	#lightbox-container-image-data {
		overflow: hidden;
	}
	#lightbox-image-details {
		width: 90%;
		float: left;
		text-align: left;
		overflow: hidden
	}
		#lightbox-image-details-currentNumber { /*numeros*/
			width: 10%;
			float: left;
			text-align: center;
		}
		#lightbox-image-details-caption { /*title*/
			width: 80%;
			float: left;
			font-weight: bold;
			overflow: hidden;
		}
	#lightbox-secNav{
		overflow: hidden;
		width: 10%;
	}
		#lightbox-secNav-btnClose {
			width: 24px;
			float: right;
			padding-bottom: 0.7em;
		}