.slideshow 
{
	display: block;
	position: relative;
	z-index: 0;
	background-color: Black;
}
.slideshow-images 
{
	display: block;
	overflow: hidden;
	position: relative;
}		
.slideshow-images img 
{
	display: block;
	position: absolute;
	z-index: 1;
}		
.slideshow-thumbnails 
{
	overflow: hidden;
}

/**
Notes:
	These are examples of user-defined styles.
	Customize these classes to your usage of Slideshow.
*/

.slideshow 
{
	width: 496px;
	height: 441px;
	margin: 0 auto;
}
.slideshow a img 
{
	border: 0;
}
/**
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 
{
	width: 496px;
	height: 300px;
}		
.slideshow-images-visible 
{ 
	opacity: 1;
}	
.slideshow-images-prev
{ 
	opacity: 0; 
}
.slideshow-images-next 
{ 
	opacity: 0; 
}
.slideshow-images img 
{
	float: left;
	left: 0;
	top: 0;
	position: static;
}
/**
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 * 
{
	margin: 0;
	padding: 0;
}
.slideshow-thumbnails li
{
	float: left;
	margin: 0 5px 5px 0;
	position: relative;
}
.slideshow-thumbnails a 
{
	display: block;
	float: left;
	position: relative; 
}
.slideshow-thumbnails a:hover 
{
	background-color: #CCC !important;
	opacity: 1 !important;
}
.slideshow-thumbnails img 
{
	display: block;
}
.slideshow-thumbnails-active 
{
	background-color: #7A7A7A;
	opacity: 1;
}
.slideshow-thumbnails-inactive 
{
	background-color: #FFF;
	opacity: .3;
}
.slideshow-thumbnails 
{
	bottom: -22px;
	height: 110px;
	left: 0;
	position: absolute;
	width: 100%;
	overflow: auto;
}
.slideshow-thumbnails ul 
{
	height: 90px;
	left: 0;
	position: absolute;
	top: 0;
	width: 500px;
}

/*
HTML:
	<div class="slideshow-captions">
		...
	</div>
	
Notes:
	Customize the hidden / visible classes to affect the captions animation.


.slideshow-captions 
{
	background: #000;
	bottom: 70px;
	color: #FFF;
	font-family: Arial;
	font-size: 12pt;
	overflow: hidden;
	position: absolute;
	text-indent: 10px;
	width: 496px;	
	z-index: 10000;
}
.slideshow-captions-hidden 
{
	height: 0;
	opacity: 0;
}
.slideshow-captions-visible 
{
	height: 60px;
	opacity: .7;
}

*/
