/*CSS for top thumbnail preview gallery*/

div.content {
	/* The display of content is enabled using jQuery so that the slideshow content won't display unless javascript is enabled. */
	display: none;
	float: left;
	width: 550px;
	}

div.content a, div.navigation a { /*text for inactive tabs, "Show Details" link*/
	text-decoration: none;
	color: #669999; /*#777*/
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
}

div.content a:focus, div.content a:hover, div.content a:active {
	text-decoration: none; /*underline*/
	color: #EBEBEB;
}

div.controls { /*for navigational controls that's positioned above the left preview area*/
	margin-top: 0px; /*5px, Can control the y-position of preview area*/
	height: 0px; /*23px*/
}

div.controls a {
	padding: 5px;
}

div.ss-controls {
	float: left;
}

div.nav-controls {
	float: right;
}

div.slideshow-container {
	position: relative;
	clear: both;
	height: 512px; /* This should be set to be at least the height of the largest image in the slideshow */
}

div.loader {
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('loaderWhite.gif');
	background-repeat: no-repeat;
	background-position: center;
	width: 550px;
	height: 512px; /* This should be set to be at least the height of the largest image in the slideshow */
}

div.slideshow {

}

div.slideshow span.image-wrapper {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

div.slideshow a.advance-link {
	display: block;
	width: 550px;
	height: 512px; /* This should be set to be at least the height of the largest image in the slideshow */
	line-height: 512px; /* This should be set to be at least the height of the largest image in the slideshow */
	text-align: center;
}

div.slideshow a.advance-link:hover, div.slideshow a.advance-link:active, div.slideshow a.advance-link:visited {
	text-decoration: none;
}

div.slideshow img { /*settings for preview container*/
	vertical-align: top;
	background-color: #41464D;
	border: solid #41464D;
	border-width: 12px 14px 18px 14px;
}

div.download { /*controls positioning for "View Larger Image" link*/
	float: right;
}

div.caption-container {
}

span.image-caption { /*Controls positiion for "Details" box on preview image*/
	display: block;
	position: absolute;
	margin: 0% 0% 5% -1.65%; /*Balance out equation in jquery.gallery.js line 739's "left" by accounting for border listed on line 81 above*/
}

div.caption { /*"Details" text box*/
	background-color: #000;
	padding: 12px;
	color: #EBEBEB;
}

div.caption a { /*In "Details" text box, "View Larger Size" link*/
	color: #669999;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	/*border-width: 1px 0px 1px 0px;
	border-style: solid;*/
}

div.image-title {
	font-weight: bold;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 1.4em;
}

div.image-desc {
	line-height: 1.3em;
	padding-top: 7px; /*12px*/
}

div.navigation { /*for overall tabs and thumbnail container*/
	/* The navigation style is set using jQuery so that the javascript specific styles won't be applied unless javascript is enabled. */
}

ul.thumbs { /*settings for overall thumbnail container*/
	clear: both;
	margin: 15px 0px 0px 0px;
	padding: 0;
}

ul.thumbs li { /*settings for individual thumbnails*/
	float: left;
	padding: 0px;
	margin: 15px 38px 20px 0px; /*5px 10px 5px 0px*/
	list-style: none;
}

a.thumb { /*settings for container around each thumbnail*/
	padding: 7px 8px 10px 8px;
	display: block;
	border: 2px solid #669999; /*#ccc*/
	width: 75px;
	height: 75px;
}

a.thumb:hover {
	border-color: #EBEBEB;
	}

/* border color for thumbs -Mic
ul.thumbs li.selected a.thumb {
	background: #000;
}
*/

a.thumb:focus {
	outline: none;
}

ul.thumbs img {
	border: none;
	display: block;
}

div.pagination {
	clear: both;
}

div.navigation div.top {
	margin-bottom: 12px;
	height: 11px;
}

div.navigation div.bottom {
	margin-top: 12px;
}

div.pagination a, div.pagination span.current, div.pagination span.ellipsis { /*inactive tab*/
	display: block;
	float: left;
	margin-right: 0px; /*2px*/
	padding: 0px 12px 0px 0px; /*4px 7px 2px 7px*/
	/*border: 1px solid #669999; /*#CCC*/
}

div.pagination a:hover { /*mouseover tab*/
	/*background-color: #669999; /*#EEE*/
	color: #EBEBEB; /*#FFF*/
	text-decoration: none;
}

div.pagination span.current { /*active tab*/
	font-weight: bold;
	/*background-color: #669999; /*#000*/
	/*border-color: #669999; /*#000*/
	font-family: Helvetica, Arial, sans-serif;
	color: #EBEBEB;
	font-size: 16px;
	}

div.pagination span.ellipsis { /*for when # of tabs exceeds "maxPagesToShow" in index.html*/
	border: none;
	padding: 5px 0 3px 2px;
}

#captionToggle a { /*Settings for "Show Details" text and bg-image*/
	float: right;
	display: block;
	background-image: url('caption1.png');
	background-repeat: no-repeat;
	background-position: right;
	vertical-align: middle;
	margin-top: 35px; /*5px*/
	padding: 10px 30px 10px 5px; /*5px 30px 5px 5px, for text*/
	letter-spacing: +3px;
	word-spacing: +5px;
	position: relative;
}

