/**
 * 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: 900;
	width: 100%;
	height: 500px;
}
#jquery-lightbox
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	text-align: center;
}
	#jquery-lightbox a img 
	{
		border: none;
	}
#lightbox-container-image-box
{
	position: relative;
	margin: 0 auto;
	padding: 0 15px;
	width: 250px;
	height: 250px;
	background-color:#fff;
}
	#lightbox-right-top-btnClose
	{
		width: 11px;
		height: 11px;
		background: url(Images/ClosePopUp.gif) no-repeat;
	}
	#lightbox-container-topshadow 
	{
		margin: 0 -15px;
		height: 15px;
	}
		#shadow-left-top, #shadow-center-top, #shadow-right-top
		{
			position: absolute;
			top: 0px;
			height: 15px;
		}
		#shadow-left-top
		{
			position: absolute;
			left: 0px;
			width: 15px;
			background: url(Images/PopupShadowLeftTop.png) no-repeat;
		}
		#shadow-center-top
		{
			left: 15px;
			right: 15px;
			background: url(Images/PopupShadowCenterTop.png) repeat-x;
		}
		#shadow-right-top
		{
			right: 0px;
			width: 15px;
			background: url(Images/PopupShadowRightTop.png) no-repeat;
		}
	#lightbox-container-bottomshadow
	{
		position: absolute;
		left: 0;
		bottom: 0;
		height: 15px;
		width: 100%;
	}
		#shadow-left-bottom, #shadow-center-bottom, #shadow-right-bottom
		{
			position: absolute;
			top: 0px;
			height: 15px;
		}
		#shadow-left-bottom
		{
			position: absolute;
			left: 0px;
			width: 15px;
			background: url(Images/PopupShadowLeftBottom.png) no-repeat;
		}
		#shadow-center-bottom
		{
			left: 15px;
			right: 15px;
			background: url(Images/PopupShadowCenterBottom.png) repeat-x;
		}
		#shadow-right-bottom
		{
			right: 0px;
			width: 15px;
			background: url(Images/PopupShadowRightBottom.png) no-repeat;
		}
	#shadow-left-y
	{
		position: absolute;
		left: 0;
		top: 15px;
		bottom: 15px;
		width: 15px;
		background: url(Images/PopupShadowLeftY.png) repeat-y;
	}
	#shadow-right-y
	{
		position: absolute;
		right: 0;
		top: 15px;
		bottom: 15px;
		width: 15px;
		background: url(Images/PopupShadowRightY.png) repeat-y;
	}
	#lightbox-container-image-data 
	{
		height: 73px;
		background-color: #fff;
	}
		#lightbox-container-image-data h2 
		{
			padding-top: 3px;
			float: left;
			display: inline;
		}
		#lightbox-image-details-currentNumber
		{
			margin: 8px 0 0 4px;
			font-family: Georgia, Times New Roman, Serif;
			font-size: 15px;
			font-style: italic;
			color: #666;
			float: left;
			display: inline;
		}
		#lightbox-image-details-caption 
		{
			margin-top: 8px;
			font-size: 12px;
			color: #000;
			text-align: left;
			display: block;
		}
	#lightbox-loading
	{
		position: absolute;
		top: 40%;
		left: 0%;
		height: 25%;
		width: 100%;
		text-align: center;
		line-height: 0;
	}
	#lightbox-container-image-data-box
	{
		margin: 0 auto;
		height: 83px;
		background-color: #fff;
	}
		#lightbox-nav 
		{
			width: 100%;
			background:#fff;
		}
			#lightbox-nav-btnPrev, #lightbox-nav-btnNext
			{
				margin: 7px 0 3px;
				padding-left: 11px;
				text-decoration: underline;
				outline: none;
				zoom: 1;
			}
			#lightbox-nav-btnPrev
			{ 
				float: left;
				background: url(Images/ActionLinkArrowRe.gif) no-repeat 3px 4px;
			}
			#lightbox-nav-btnNext
			{ 
				float: right;
				background: url(Images/ActionLinkArrow.gif) no-repeat 2px 4px;
			}
		#lightbox-secNav-btnClose
		{ 
			margin-top: 14px;
			float: right;
		}



