/**
 * 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
 
* Edits changelog by Stanley Watt:
	first edited : 	2009 10
	revisions:		2013 03 19

	Note: I believe this style sheet pertains to the clicked-on layout of icons, 
	and the galleries that contain them, whilst the lightbox_layout_custom.css pertains to the 
	pre-clicked-on layout
**/

#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: #000;
	width: 250px; /* this defines the beginning-of-animation box size */
	height: 250px;
	margin: 0 auto;
}
#lightbox-container-image { padding: 10px; }
#lightbox-loading {
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}
#lightbox-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	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 { 
	left: 0; 
	float: left;
}
#lightbox-nav-btnNext { 
	right: 0; 
	float: right;
}
#lightbox-container-image-data-box { /* affects the (entire?) text display area*/
	font: 12px "Trebuchet MS", Arial, Helvetica, sans-serif; /*doesn't seem to work */
	background-color: #000;
	margin: 0 auto; /*auto; if off will not align with image box */
	line-height: 1.2em; /* works: line spacing */
	overflow: auto; /* default is "auto" if "off" text backing will go transparent, not nice */
	width: 100%; /* default is 100%. Not for text width (see below) */
	padding: 0 10px 10px 10px; /* works: box outline (10px matches image border I'm using) */
	color: #0F0;		/* (custom) doesn't seem to work*/

}
#lightbox-container-image-data {
	padding: 0 10px; /* this defines the outline border of the image area */
	color: #666; 
}
#lightbox-container-image-data #lightbox-image-details {
	width: 90%; /* default is 70% defines CAPTION TEXT WIDTH (will make text display wider / narrower). If 100% will displace X button, beware */
	float: left;
	text-align: left;
	color: #444;		/* (custom) defines IMAGE COUNT text color*/
}	
#lightbox-image-details-caption { /* affects caption text, child of above */
	font-weight: bold; /* doesn't seem to work */
	width: 85%; 		/* (custom) doesn't seem to work */
	color: #777			/* (custom) defines CAPTION TEXT color */;
	
} 
#lightbox-image-details-currentNumber {
	display: block; /*deafult is "block" */ 
	clear: left; 
	color: #666			/* (custom) doesn't seem to work */
	padding-bottom: 1.0em;	
}			
#lightbox-secNav-btnClose {
	width: 20px; /* default is 66px */
	float: right;
	padding-bottom: 10px;	/* default is 0.7 em */	
}
