/**
Stylesheet: Slideshow.css
	CSS for Slideshow.

License:
	MIT-style license.

Copyright:
	Copyright (c) 2008 [Aeron Glemann](http://www.electricprism.com/aeron/).
	
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 five rules are required for Slideshow to work correctly.
	Override at your own risk.
*/

.slideshow {
	display: block; position: relative; z-index: 0;
}
.slideshow-images {
	display: block; overflow: hidden; position: relative;
}		
.slideshow-images img {
	display: block; position: absolute; z-index: 1;
}
.slideshow-thumbnails {
width:224px;
height:52px;
position: relative;
z-index:200;
top:0;
display:block;
margin:279px 0 10px 473px;
overflow: hidden;
}
.slideshow-thumbnails ul {
	position: relative; 
	left: 0; 
	top: 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:700px; 
height:340px;
border:1px solid #fee4e5;
}		
.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: auto; margin: 0 auto; width: 700px;
}
.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: #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;
}


/**
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 {
height:52px;
left: 0; 
position: absolute; 
width:100%;
}
.slideshow-thumbnails * {
margin: 0; 
padding: 0;
}
.slideshow-thumbnails li {
float: left; 
margin:0 4px 0 0;
width:52px;
height:52px;
float: left; 
}
.slideshow-thumbnails a {
display: block; 
outline: none; 
}
.slideshow-thumbnails a:link,
.slideshow-thumbnails a:visited {border:1px solid #ffffff;}
.slideshow-thumbnails a:hover,
.slideshow-thumbnails a:active {border:1px solid #ff7687;}
/*
.slideshow-thumbnails a:hover {
	background-color: #FF9 !important; opacity: 1 !important;
}
*/
.slideshow-thumbnails img {
display: block;
}
.slideshow-thumbnails-hidden {
	opacity: 0;
}
.slideshow-thumbnails-inactive {
	opacity: .6;
}
.slideshow-thumbnails-active {
	opacity: 1;
}