/*
Stylesheet: Slideshow.css
	Slideshow.css - CSS for Slideshow.

License:
	MIT-style license.

Copyright:
	Copyright (c) 2008 [Aeron Glemann](http://www.electricprism.com/aeron/).
*/

/*
These styles are set by the Slideshow script.
You can override any of them with the !important keyword but the slideshow probably will not work as intended.
*/

.slideshow {
	display: block;
	position: relative;
}
.slideshow-images {
	display: block;
	/* height: height_of_slideshow_or_default_image */
	overflow: hidden;
	position: relative;
	/* width: width_of_slideshow_or_default_image */
}
.slideshow-images img {
	display: block;
	position: absolute;
	z-index: 1;
}
.slideshow-thumbnails {
	overflow: hidden;
}

/*
The images div is where the slides are shown.
Customize these classes to effect the slideshow transitions: fading, wiping, etc.
*/

.slideshow {
  background: url(/images/slideshow.gif) no-repeat;
	width: 480px;
  height: 360px;
}
.slideshow-images-visible {
	left: 0;
	opacity: 1;
	top: 0;
}
.slideshow-images-next {
	left: 0;
	opacity: 0;
	top: 360px;
}
.slideshow-images-prev {
	left: 0;
	opacity: 0;
	top: -360px;
}

/*
These user-defined styles.
Customize these classes to your usage of Slideshow.
*/

.slideshow a img {
	border: 0;
}
.slideshow-captions {
	background: #000;
	bottom: 0;
	color: #FFF;
	font: normal 12px/22px Arial, sans-serif;
	left: 0;
	overflow: hidden;
	position: absolute;
	text-indent: 10px;
	width: 100%;
	z-index: 10000;
}
.slideshow-captions-hidden {
	height: 0;
	opacity: 0;
}
.slideshow-captions-visible {
	height: 22px;
	opacity: .7;
}
.slideshow-controller {
	background: url(/images/Slideshow2/controller.png) no-repeat;
	height: 42px;
	left: 50%;
	margin: -21px 0 0 -119px;
	overflow: hidden;
	position: absolute;
	top: 10%;
	width: 238px;
	z-index: 10000;
}
.slideshow-controller * {
	margin: 0;
	padding: 0;
}
.slideshow-controller-hidden {
	opacity: 0;
}
.slideshow-controller-visible {
	opacity: 1;
}
.slideshow-controller a {
	cursor: pointer;
	display: block;
	height: 18px;
	overflow: hidden;
	position: absolute;
	top: 12px;
}
.slideshow-controller a.active {
	background-position: 0 18px;
}
.slideshow-controller li {
	list-style: none;
}
.slideshow-controller li.first a {
	background-image: url(/images/Slideshow2/controller-first.gif);
	left: 33px;
	width: 19px;
}
.slideshow-controller li.last a {
	background-image: url(/images/Slideshow2/controller-last.gif);
	left: 186px;
	width: 19px;
}
.slideshow-controller li.next a {
	background-image: url(/images/Slideshow2/controller-next.gif);
	left: 145px;
	width: 28px;
}
.slideshow-controller li.pause a {
	background-image: url(/images/Slideshow2/controller-pause.gif);
	left: 109px;
	width: 20px;
}
.slideshow-controller li.play a {
	background-image: url(/images/Slideshow2/controller-play.gif);
}
.slideshow-controller li.prev a {
	background-image: url(/images/Slideshow2/controller-prev.gif);
	left: 65px;
	width: 28px;
}
.slideshow-images img {
	float: left;
}
.slideshow-loader {
	height: 28px;
	right: 0;
	position: absolute;
	top: 0;
	width: 28px;
	z-index: 10001;
}
.slideshow-loader-hidden {
	opacity: 0;
}
.slideshow-loader-visible {
	opacity: 1;
}
.slideshow-thumbnails {
	bottom: -100px;
	height: 100px;
	left: 0;
	position: absolute;
	width: 133px;
}
.slideshow-thumbnails * {
	margin: 0;
	padding: 0;
}
.slideshow-thumbnails ul {
	height: 65px;
	left: 0;
	position: absolute;
	top: 0;
	width: 10000px;
}
.slideshow-thumbnails li {
	float: left;
	list-style: none;
	margin: 5px 5px 5px 0;
	position: relative;
}
.slideshow-thumbnails a {
	display: block;
	padding: 5px;
	position: relative;
}
.slideshow-vertical-thumbnails {
	height: 360px;
	position: absolute;
	right: -115px;
	top: 0px;
	width: 110px;
}
.slideshow-vertical-thumbnails * {
	margin: 0;
	padding: 0;
}
.slideshow-vertical-thumbnails ul {
	height: 500px;
	left: 0;
	position: absolute;
	top: 0;
	width: 70px;
}
.slideshow-vertical-thumbnails li {
	float: left;
	list-style: none;
	margin: 0 0 5px 0;
	position: relative;
}
.slideshow-vertical-thumbnails a {
	background: url(thumbnails-a.gif);
	display: block;
	opacity: .5;
	padding: 10px;
	position: relative;
}
.slideshow-vertical-thumbnails a:hover {
	opacity: 1 !important;
}
.slideshow-vertical-thumbnails a img {
	border: 0;
}
.slideshow-vertical-thumbnails img {
	display: block;
}
.slideshow-vertical-thumbnails-active {
	opacity: 1;
}
.slideshow-vertical-thumbnails-inactive {
	opacity: .5;
}
.slideshow-vertical-thumbnails .overlay {
	left: 0;
	height: 60px;
	position: absolute;
	width: 100%;
	z-index: 10000;
}
.slideshow-vertical-thumbnails .overlay.a {
	background: url(vertical-thumbnails-a.png);
	top: 0;
}
.slideshow-vertical-thumbnails .overlay.b {
	background: url(vertical-thumbnails-b.png);
	bottom: 0;
}

/* Use the !important keyword to override any on-going javascript FX without affecting performance. */

.slideshow-thumbnails a:hover {
	background-color: #FF9 !important;
	opacity: 1 !important;
}
.slideshow-thumbnails img {
	display: block;
}
.slideshow-thumbnails-active {
	background-color: #F9F;
	opacity: 1;
}
.slideshow-thumbnails-inactive {
	background-color: #FFF;
	opacity: .5;
}
.slideshow-vertical-thumbnails a:hover {
	background-color: #393 !important;
	opacity: 1 !important;
}
.slideshow-vertical-thumbnails img {
	display: block;
}
.slideshow-vertical-thumbnails-active {
	background-color: #FF9;
	opacity: 1;
}
.slideshow-vertical-thumbnails-inactive {
	background-color: #FFF;
	opacity: .5;
}
/* CSS-based transitions: Infinite effects */

.slideshow-alternate {
	left: 30px;
	height: 400px;
	top: 39px;
	width: 500px;
}
.slideshow-alternate img {
	float: left;
}
.slideshow-alternate-visible {
	left: 0;
	opacity: 1;
	top: 0;
}
.slideshow-alternate-next {
	left: 0;
	opacity: 0;
	top: 400px;
}
.slideshow-alternate-prev {
	left: 0;
	opacity: 0;
	top: -400px;
}


/* lightbox styles */

a:hover .photos {
	border: 1px solid #999;
}
.lbLoading {
	background: #fff url(/images/lightboxloader.gif) no-repeat center;
}
.photos {
	border: 1px solid #fff;
	padding: 3px;
}
.lightboxDesc {
	display: none;
}
#lbOverlay {
	background-color: #000;
	cursor: pointer;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 100000;
}
#lbCenter, #lbBottomContainer {
	background-color: #fff;
	left: 50%;
	overflow: hidden;
	position: absolute;
	z-index: 100001;
}
#lbImage {
	border: 10px solid #fff;
	cursor: pointer;
}
#lbBottom {
	border: 10px solid #fff;
	border-top-style: none;
	color: #000;
	font: normal 11px/16px Arial, sans-serif;
	text-align: left;

