/*
//-------------------------------------------------------------------------
//					   Kevin De Souza - Lightbox 2.03.3
//	         Source - http://www.huddletogether.com/projects/lightbox2/
// ------------------------------------------------------------------------
*/

#lightbox{
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	line-height: 0;
	z-index: 100;
}
	#outerImageContainer{
		position: relative;
		background-color: #000;
		width: 250px;
		height: 250px;
		margin: 0 auto;
		padding: 20px;
	}
		#imageContainer{
			background-color: #FFF;
		}	
			#lightbox a img{ border: 0; }

			#hoverNav{
				position: absolute;
				top: 0;
				left: 0;
				height: 100%;
				width: 100%;
				z-index: 10;
			}
				#imageContainer>#hoverNav{ left: 0;}
				#hoverNav a{ outline: none;}
				#prevLink, #nextLink{
					display: block;
					width: 49%;
					height: 100%;
					margin: 0;
					background: transparent url(blank.gif) no-repeat; /* Trick IE into showing hover */
				}
				#prevLink { 
					float: left;
					position: relative;
					left: 30px !important;
					left: 40px; /* IE6 */
				}
				#nextLink { 
					float: right;
					position: relative;
					right: 30px !important;
					right: 0; /* IE6 */
					
				}
				#prevLink:hover, #prevLink:visited:hover {
					background-image: url(prev.png) !important;
					background-image: url(prev.gif); /* IE6 */
					background-position: left center;
					background-repeat: no-repeat;
				}
				#nextLink:hover, #nextLink:visited:hover { 
					background-image: url(next.png) !important;
					background-image: url(next.gif); /* IE6 */
					background-position: right center;
					background-repeat: no-repeat;
				}
			#loading{
				position: absolute;
				top: 40%;
				left: 0%;
				width: 100%;
				height: 25%;
				text-align: center;
				line-height: 0;
				background-image: url(loading.gif);
				background-position: center center;
				background-repeat: no-repeat;
			}

	#imageDataContainer{
		width: 100%;
		margin: 0 auto;
		padding: 0 20px 20px 20px;
		line-height: 1.4em;		
		background-color: #000;
		font-family: Verdana, Arial, Helvetica, sans-serif;
		overflow: auto;
	}
		#imageData{	color: #FFF; }
			#imageData #imageDetails{ float: left; width: 70%;  text-align: left; }	
				#imageData #caption{ font-weight: bold;	}
				#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em; font-size: .9em;	}			
			#imageData #bottomNavClose{ 
				float: right; 
				display: block;
				width: 60px;
				height: 16px;
				padding-bottom: 0em;
				background-image: url(closelabel.gif);
				background-position: left bottom;
				background-repeat: no-repeat;
				cursor: pointer;
			}	
		
#overlay{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
	background-color: #000;
}