/**
 * 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;
	background: #ffffff;
}


#jquery-lightbox-navbar{
	position: absolute;
	top: 15px;
	left: 0;
	width: 100%;
	background: #eef2f8 url('../../images/lightbox/bg_teaserplayer.jpg') center left repeat-x;
	border: solid #bcc0ce;
	border-width: 1px 0 1px 0;
	height: 40px;
	z-index: 100;
	}
	#lightbox-navbar-container{
		position: relative;
		width: 100px;
		margin: 0 auto 0 auto;
		text-align: center;
		}
	#lightbox-navbar-btnPrev{
		position: absolute;
		top: 9px;
		left: -22px;
		display: none;
		width: 22px;
		height: 22px;
		background: transparent url('../../images/lightbox/previous.png') center no-repeat;
		}
	#lightbox-navbar-btnNext{
		position: absolute;
		top: 9px;
		right: -22px;
		display: none;
		width: 22px;
		height: 22px;
		background: transparent url('../../images/lightbox/next.png') center no-repeat;
		}
	#lightbox-navbar-currentNumber{
		color: #69717E;
		display: block;
		padding-top: 12px;
		}



#jquery-lightbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
}
#jquery-lightbox a img {
	border-width: 0;
	}
#lightbox-container-image-box {
	position: relative;
	background: #ffffff;
	width: 250px;
	height: 250px;
	margin: 0 auto 0 auto;
	border: 1px solid #bfbfbf;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 6px 6px 20px #444444;
	-webkit-box-shadow: 6px 6px 20px #444444;
	box-shadow: 6px 6px 20px #444444;
	}
#lightbox-container-image{
	margin: 10px;
	}
#lightbox-loading{
	position: absolute;
	width: 50px;
	height: 50px;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	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%;
	display: block;
}
#lightbox-nav-btnPrev { 
	left: 0; 
	float: left;
}
#lightbox-nav-btnNext { 
	right: 0; 
	float: right;
}
#lightbox-container-image-data-box {
	font: 10pt Arial, Helvetica, sans-serif;
	background-color: #4a4d53;
	margin: 0;
	line-height: 1.4em;
	overflow: hidden;
	width: 100%;
	padding: 10px 10px 0 10px;
	margin: 20px 0 0 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 6px 6px 20px #444444;
	-webkit-box-shadow: 6px 6px 20px #444444;
	box-shadow: 6px 6px 20px #444444;
	}
#lightbox-container-image-data {
	color: #ffffff; 
}
#lightbox-container-image-data #lightbox-image-details { 
	padding: 5px 0 0 0;
	width: 70%; 
	float: left; 
	text-align: left; 
	line-height: 100%;
}	
#lightbox-image-details-caption {
	font-weight: normal;
	color: #ffffff;
	}
#lightbox-image-details-currentNumber {
	display: block; 
	clear: left; 
	padding-bottom: 1.0em;
	color: #ffffff;
	}			
#lightbox-secNav-btnClose {
	display: block;
	width: 109px; 
	height: 23px;
	padding: 5px 0 0 0;
	margin: 0 0 10px 0;
	overflow: hidden;
	float: right;
	background: transparent url('../../images/lightbox/close_sprite.png') left top no-repeat;
	color: #ffffff;
	}
	#lightbox-secNav-btnClose:hover{
		background-position: bottom left;
		background-repeat: no-repeat;
		}
	
	
