/**
 * 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 CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/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;
	z-index: 90;
	width: 100%;
	height: 500px;
}

#jquery-lightbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
}
	#jquery-lightbox a img { border: none; }
	#lightbox-container-image-box {
		position: relative;
		background-color:#fff;
		width: 250px;
		height: 250px;
		margin: 0 auto;
		border-left:1px solid #b3b3b3;
		border-right:1px solid #b3b3b3;
		border-top:1px solid #b3b3b3;
	}
		#lightbox-container-image-box > #lightbox-nav { left: 0; }
		#lightbox-secNav {
			position: absolute;
			top: -12px;
			right: -12px;
		}
			#lightbox-secNav-btnClose {
				width: 24px; 
				padding-bottom: 0.7em;	
			}
		#lightbox-container-image {
			padding: 32px 0px 0px;
//			padding: 32px 30px 0;
		}
			#lightbox-loading {
				position: absolute;
				top: 40%;
				left: 0%;
				height: 25%;
				width: 100%;
				text-align: center;
				line-height: 0;
			}


	#lightbox-container-image-data-box {
		background-color: #fff;
		overflow: auto;
		width: 100%;
		margin: 0 auto;
		line-height: 1.6;
		border-left:1px solid #b3b3b3;
		border-right:1px solid #b3b3b3;
		border-bottom:1px solid #b3b3b3;
	}
		#lightbox-nav {
			overflow: hidden;
			height: 26px;
		}
			#lightbox-nav a {
				outline: none;
			}
			#lightbox-nav-btnPrev,
			#lightbox-nav-btnNext {
				display: inline;
				height: 25px;
				zoom: 1;
			}
			#lightbox-nav-btnPrev {
				float: left;
				width: 25px;
				margin-left: 20px;
			}
			#lightbox-nav-btnNext {
				float: right;
				width: 25px;
				margin-right: 20px;
			}
		#lightbox-container-image-data {
			padding:22px 30px 30px; 
			color: #585757; 
		}

	
			#lightbox-container-image-data #lightbox-image-details {
				display: block;
				min-height: 1%;
			}
			#lightbox-container-image-data #lightbox-image-details:after {
				clear: both;
				content:".";
				display: block;
				height: 0;
				visibility: hidden;
			}
			* html #lightbox-container-image-data #lightbox-image-details {
				height: 1%;
				/*\*//*/
				height: auto;
				overflow: hidden;
				/**/
			}
			#lightbox-container-image-data #lightbox-image-details {
				display:none;
				overflow: hidden;
				position: relative;
				margin: -26px 30px 0;
				background: url(/menu/js/customlightbox/img/line_dotX.gif) repeat-x left bottom;
				text-align: left; 
				line-height: 26px;
			}	
				#lightbox-image-details-caption {
					float: left;
					width: 49%;
					margin: 0;
					padding: 0;
					font-weight: bold;
				}
				#lightbox-image-details-currentNumber {
					float: right;
					width: 49%;
					margin: 0;
					padding: 0;
					text-align: right;
				}			
			#imageCaptionWrap {
				text-align: left;
			}
				#imageCaptionWrap p {
					font-size:13px;
					line-height: 23px;
				}
	
	
	