/**
Stylesheet: Slideshow.css
	CSS for Slideshow.

HTML:
	<div class="slideshow">
		<div class="slideshow-images" />
		<div class="slideshow-captions" />
		<div class="slideshow-controller" />
		<div class="slideshow-loader" />
		<div class="slideshow-thumbnails" />
	</div>
	
Notes:
	These next four rules 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;
	z-index: 0;
}

.slideshow-images {
	display: block;
	overflow: hidden;
	position: relative;
}		

html>body .slideshow-images {
	display: block;
	overflow: hidden;
	position: relative;
	left: -49px;
}
.slideshow-images img {
	display: block;
	position: absolute;
	z-index: 1;
}		
.slideshow-thumbnails {
	overflow: hidden;
}

/**
HTML:
	<div class="slideshow-images">
		<img />
		<img />
	</div>
	
Notes:
	The images div is where the slides are shown.
	Customize the visible / prev / next classes to effect the slideshow transitions: fading, wiping, etc.
*/

.slideshow-images {
	height: 315px;
	width: 500px;
}		
.slideshow-images-visible { 
	opacity: 1;
}	
.slideshow-images-prev { 
	opacity: 0; 
}
.slideshow-images-next { 
	opacity: 0; 
}
.slideshow-images img {
	float: left;
	left: 0;
	top: 0;
}	

/**
Notes:
	These are examples of user-defined styles.
	Customize these classes to your usage of Slideshow.
*/

.slideshow {
	height: 300px;
	margin: 0 auto;
	width: 400px;
	position: relative;
	/*BORDER-BOTTOM: gray 2px solid;
	BORDER-top: gray 2px solid;
	BORDER-left: gray 2px solid;
	BORDER-right: gray 2px solid;*/
}
.slideshow a img {
	border: 0;
}

/**
HTML:
	<div class="slideshow-captions">
		...
	</div>
	
Notes:
	Customize the hidden / visible classes to affect the captions animation.
*/

.slideshow-captions {
	background: black;
	bottom: 5px;
	color: #FFF;
	font: normal 12px/22px Verdana;
	left: 0;
	overflow: hidden;
	position: absolute;
	text-indent: 10px;
	width: 500px;
	height: 42px;
    /* for IE */
	filter:alpha(opacity=70);
    /* CSS3 standard */
    opacity: 0.7;
    moz-opacity: .7;	
    z-index: 10000;
    TEXT-ALIGN: center;
}

html>body .slideshow-captions {
	background: black;
	bottom: 5px;
	color: #FFF;
	font: normal 12px/22px Verdana;
	overflow: hidden;
	position: absolute;
	text-indent: 10px;
	width: 500px;
	height: 42px;
    /* for IE */
	filter:alpha(opacity=70);
    /* CSS3 standard */
    opacity: 0.7;
    moz-opacity: .7;	
    z-index: 10000;
	left: -49px;
    TEXT-ALIGN: center;
}

.slideshow-captions A:active
{
    COLOR: white;
    TEXT-DECORATION: underline
	font: normal 12px/22px Verdana;
}
.slideshow-captions A:link
{
    COLOR: white;
    TEXT-DECORATION: underline
	font: normal 12px/22px Verdana;
}
.slideshow-captions A:visited
{
    COLOR: white;
    TEXT-DECORATION: underline
	font: normal 12px/22px Verdana;
}
.slideshow-captions A:hover
{
    COLOR: white;
    TEXT-DECORATION: underline
	font: normal 12px/22px Verdana;
}

/*.slideshow-captions-hidden {
	height: 42px;
	opacity: .7;
}
.slideshow-captions-visible {
	height: 42px;
	opacity: .7;
}*/

/**
HTML:
	<div class="slideshow-thumbnails">
		<ul>
			<li><a class="slideshow-thumbnails-active" /></li>
			<li><a class="slideshow-thumbnails-inactive" /></li>
			...
			<li><a class="slideshow-thumbnails-inactive" /></li>
		</ul>
	</div>
	
Notes:
	Customize the active / inactive classes to affect the thumbnails animation.
	Use the !important keyword to override FX without affecting performance.
*/

.slideshow-thumbnails {
	bottom: -65px;
	height: 55px;
	left: 0;
	position: absolute;
	width: 100%;
	/*BORDER-BOTTOM: gray 2px solid;
	BORDER-top: gray 2px solid;
	BORDER-left: gray 2px solid;
	BORDER-right: gray 2px solid;*/
}
.slideshow-thumbnails * {
	margin: 0;
	padding: 0;
}
.slideshow-thumbnails ul {
	height: 315px;
	left: 0;
	position: absolute;
	top: 0;
	/*width: 10000px;*/
}
.slideshow-thumbnails li {
	float: left;
	list-style: none;
	margin: 2px 2px 2px 0;
	position: relative;
}
.slideshow-thumbnails a {
	display: block;
	float: left;
	padding: 2px;
	position: relative; 
}
.slideshow-thumbnails a:hover {
	background-color: #000 !important;
	opacity: 1 !important;
}
.slideshow-thumbnails img {
	display: block;
}
.slideshow-thumbnails-active {
	background-color: #000;
	opacity: 1;
}
.slideshow-thumbnails-inactive {
	background-color: #FFF;
	opacity: .65;
}