/************************************************************
*****
*****	Website:		Townsend Bay Marine
*****	Filename:		lightbox.css
*****	Version:		2.04
*****	Author:			Lokesh Dhakar
*****	Source:			http://www.lokeshdhakar.com/projects/lightbox2/
*****	Last modified: 	24 April 2008
*****	Changes by:		Kevin Browne
*****	E-mail:			kevin@workpump.com
*****	Copyright:		Workpump, Inc.: 2005-2008
*****	
*****	http://www.lokeshdhakar.com/projects/lightbox2/
*****	This file controls styling of implementation of lightbox
*****
************************************************************
*****
*****	CHANGELOG
*****
*****	2008.04.24 - Changed z-index
*****
*****
************************************************************
*****
*****	Flow:
*****
*****	#overlay
*****	#lightbox
*****	    #outerImageContainer
*****	        #imageContainer
*****	            #lightboxImage
*****	            #hoverNav
*****	                #prevLink
*****	                #nextLink
*****	            #loading
*****	                #loadingLink
*****	    #imageDataContainer
*****	        #imageData
*****	            #imageDetails
*****	                #caption
*****	                #numberDisplay
*****	            #bottomNav
*****	                #bottomNavClose
*****	
************************************************************/



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

	#hoverNav a {
		outline: none;
	}

#imageContainer {
	padding: 10px;
}

	#imageContainer>#hoverNav {
		left: 0;
	}

#imageData{
	color: #666;
	padding:0 10px;
}

	#imageData #bottomNavClose {
		float: right;
		outline: none;
		padding-bottom: 0.7em;
		width: 66px;
	}

	#imageData #caption {
		font-weight: bold;	
	}

	#imageData #imageDetails {
		float: left;
		text-align: left;
		width: 70%;
	}

	#imageData #numberDisplay {
		clear: left;
		display: block;
		padding-bottom: 1.0em;	
	}

#imageDataContainer {
	background-color: #fff;
	font: 10px Verdana, Helvetica, sans-serif;
	line-height: 1.4em;
	margin: 0 auto;
	overflow: auto;
	width: 100%	;
}

#lightbox {
	left: 0;
	line-height: 0;
	position: fixed;
	text-align: center;
	top: 20px !important;
	width: 100%;
	z-index: 99999;
}

	#lightbox img {
		height: auto;
		width: auto;
	}

		#lightbox a img {
			border: none;
		}

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

#nextLink  {
	background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */
	display: block;
	height: 100%;
	float: right;
	right: 0;
	width: 49%;
}

	#nextLink:hover,
	#nextLink:visited:hover  {
		background: url(../graphics/nextlabel.gif) right 15% no-repeat;
	}

#overlay {
	background-color: #000;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99990;
}

#outerImageContainer {
	background-color: #fff;
	height: 250px;
	margin: 0 auto;
	position: relative;
	width: 250px;
}

#prevLink  {
	background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */
	display: block;
	float: left;
	height: 100%;
	left: 0;
	width: 49%;

}

#prevLink:hover,
#prevLink:visited:hover  {
	background: url(../graphics/prevlabel.gif) left 15% no-repeat;
}



