/**
 * 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;
	}

@media print {
	#jquery-overlay,
	#jquery-lightbox {
		display: none;
		}
	}

	#lightbox-container-image-box {
	position: relative;
		background-color: White;
		width: 250px;
		height: 250px;
		margin: 0 auto;
		}

		#lightbox-container-image {
			padding: 10px;
			}

			#lightbox-nav {
				position: absolute;
				top: 0;
				left: 0;
				z-index: 10;
				width: 100%;
				height: 100%;
				}

				#lightbox-nav a {
					outline: none;
					}
				a#lightbox-nav-btnPrev,
				a#lightbox-nav-btnNext {
					display: block;
					width: 50%;
					height: 100%;
					}
				a#lightbox-nav-btnPrev { 
					float: left;
					}
				a#lightbox-nav-btnNext { 
					float: right;
					}

			#lightbox-loading {
				position: absolute;
				top: 50%;
				left: 0;
				margin-top: -25px;
				width: 100%;
				height: 25%;
				text-align: center;
				line-height: 0;
				}

	#lightbox-container-image-data-box {
		font-size: 11px;
		background-color: White;
		overflow: auto;
		margin: 0 auto;
		line-height: 1.4;
		width: 100%;
		padding: 0 10px;
		}

		#lightbox-container-image-data {
			color: #545960; 
			padding-left: 10px; 
			}
			#lightbox-image-details { 
				width: 70%;
				float: left;
				text-align: left;
				}
				#lightbox-image-details-caption {
					display: block;
					font-weight: bold;
					margin-bottom: -5px;
					}
				#lightbox-image-details-currentNumber {
					display: block;
					margin-top: 5px;
					padding-bottom: 1em;
					}

			#lightbox-secNav {
				float: right;
				padding-bottom: .8em;
				}
				#lightbox-secNav a {
					outline: none;
					}
				#lightbox-secNav img {
					padding: 8px 10px;
					}