/**
 * 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;
	width:100%;
	height:500px;
	background:#000;
	z-index:90;
    }

#jquery-lightbox
    {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	text-align:center;
	line-height:0;
	z-index:100;
    }

#jquery-lightbox a img
    {
    border:none;
    }

#lightbox-container-image-box
    {
	position:relative;
	width:400px;
	height:300px;
	margin:0 auto;
	background:#1a1a1a;
	border:1px solid #44559a;
    }

#lightbox-container-image
    {
    padding:10px;
    }

#lightbox-loading
    {
	position:absolute;
	top:40%;
	left:0%;
	width:100%;
	height:25%;
	text-align:center;
	line-height:0;
    }

#lightbox-loading a
    {
    border:none;
    }

#lightbox-loading a img
    {
    display:inline;
    }

#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
    {
    border:none;
    outline:none;
    }

#lightbox-nav-btnPrev, #lightbox-nav-btnNext
    {
	display:block;
	width:49%;
	height:100%;
	background:transparent url(/sitegraphics/lightbox/lightbox-blank.gif) no-repeat; /* Trick IE into showing hover */
    }

#lightbox-nav-btnPrev
    { 
	left:0; 
	float:left;
    }

#lightbox-nav-btnNext
    { 
	right:0; 
	float:right;
    }

#lightbox-nav-btnPrev:hover
    {
	background:url(/sitegraphics/lightbox/prevlabel.gif) left 15% no-repeat;
	}

#lightbox-nav-btnNext:hover
    { 
	background:url(/sitegraphics/lightbox/nextlabel.gif) right 15% no-repeat;
    }

#lightbox-container-image-data-box
    {
	position:relative;
	top:-1px; /* hides the bottom border of #lightbox-container-image-box after rollout */ 
	width:100%;
	margin:0px auto;
	padding:0 10px 0;
	font:10px Verdana, Helvetica, sans-serif;
	line-height:1.4em;
	background-color:#1a1a1a;
	border-right:1px solid #44559a;
	border-bottom:1px solid #44559a;
	border-left:1px solid #44559a;
	overflow:hidden;
    }

#lightbox-container-image-data
    {
	padding:0 10px; 
	color:#b0b0b0; 
    }

#lightbox-container-image-data #lightbox-image-details
    { 
	float:left;
	width:70%;
	padding-bottom:1em;
	text-align:left; 
    }
	
#lightbox-image-details-caption
    {
    font-weight:bold;
    color:#b0b0b0;
    }

#lightbox-image-details-currentNumber
    {
	display:block; 
	color:#b0b0b0;
	clear:left;
    }
			
#lightbox-secNav-btnClose
    {
	display:block;
	float:right;
	width:66px;
	height:22px;
	margin-bottom:1em;
	background:url(/sitegraphics/lightbox/closelabel.gif) left top no-repeat;
	border:none;
	/*border-bottom:1px solid #3eb49f;*/
    }

#lightbox-secNav-btnClose span
    {
	visibility:hidden;
    }

#lightbox-secNav-btnClose:hover
    {
	background:url(/sitegraphics/lightbox/closelabel.gif) left bottom no-repeat;
	/*border-bottom:1px solid #ffffff;*/
    }