/**
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 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 {
	height: 530px;
	width: 930px;
	display: block;
	margin:10px 10px 10px 10px;
	position:relative;
	z-index:100;
}
.slideshow-images {
	background-color:#534e4a;
	display: block;
	overflow: hidden;
	border: #42352e solid 1px;
	
}		
.slideshow-images img {
	display: block;
	
}		
.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: 400px;
	width: 640px;
}		
.slideshow-images-visible { 
	filter:alpha(opacity=100);
	-moz-opacity:1;
	-khtml-opacity: 1;
	opacity:1;
}	
.slideshow-images-prev { 
	filter:alpha(opacity=0);
	-moz-opacity:0;
	-khtml-opacity: 0;
	opacity: 0;
}
.slideshow-images-next { 
	filter:alpha(opacity=0);
	-moz-opacity:0;
	-khtml-opacity: 0;
	opacity: 0; 
}
.slideshow-images img {
	float: left;
	left: 0;
	top: 0;
}	


.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:url(../../images/interface/background_content_white.png) repeat;
	border: #ccc solid 1px;
	overflow: auto;
	position: relative;
	left: 650px;
	top:-402px;
	width: 278px;
	height: 400px;
	padding: 0px;

}

.slideshow-captions p{
	font-family:'Trebuchet MS', Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#42352e;
	padding: 5px;
	margin:2px;
}

.slideshow-captions #header {
	font-weight:bold;
	

}
.slideshow-captions-hidden {
	height: 400px;
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}
.slideshow-captions-visible {
	height: 400px;
	filter:alpha(opacity=100);
	-moz-opacity:1;
	-khtml-opacity: 1;
	opacity:1;
}

/**
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 {
	top: 412px;
	height: 124px;
	left: 0;
	position: absolute;
	width: 100%;
}

.slideshow-thumbnails * {
	margin: 0;
	padding: 0;
}
.slideshow-thumbnails ul {
	height: 124px;
	left: 0;
	position: absolute; /*this allows thumbnails to scroll*/
	top: 0;
	width: 10000px;
}
.slideshow-thumbnails li {
	float: left;
	list-style: none;
	margin: 0px 5px 0px 0px;

}
.slideshow-thumbnails a {
	display: block;
	float: left;
	padding: 2px;

}
.slideshow-thumbnails a:hover {
	background-color: #257c96 !important; 
	filter:alpha(opacity=100)!important;
	-moz-opacity:1 !important;
	-khtml-opacity: 1 !important;
	opacity:1 !important;
}
.slideshow-thumbnails img {
	display: block;
}
.slideshow-thumbnails-active {
	background-color: #FFF;
	filter:alpha(opacity=100);
	-moz-opacity:1;
	-khtml-opacity: 1;
	opacity:1;
}
.slideshow-thumbnails-inactive {
	background-color: #FFF;
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity:0.5;
}

/**
HTML:
	<div class="slideshow-controller">
		<ul>
			<li class="first"><a /></li>
			<li class="prev"><a /></li>
			<li class="pause play"><a /></li>
			<li class="next"><a /></li>
			<li class="last"><a /></li>
		</ul>
	</div>
	
Notes:
	Customize the hidden / visible classes to affect the controller animation.
*/

.slideshow-controller {
	background: url(controller.png) no-repeat;
	height: 35px;
	width: 220px;
	left: 50%;
	margin: -21px 0 0 -100px;
	position: relative;
	bottom: 230px;
	z-index:100;

}

.slideshow-controller * {
	margin: 0;
	padding: 0;
}
.slideshow-controller-hidden { 
	opacity: 1;
}
.slideshow-controller-visible {
	opacity: 1;
}
.slideshow-controller a {
	cursor: pointer;
	display: block;
	height: 18px;
	overflow: hidden;
	position: absolute;
	top: 8px;
	left:8px;
}
.slideshow-controller a.active {
	background-position: 0 18px;
}
.slideshow-controller li {
	list-style: none;
}
.slideshow-controller li.first a {
	background-image: url(controller-first.gif);
	left: 24px;
	width: 19px;
}
.slideshow-controller li.last a {
	background-image: url(controller-last.gif);
	left: 177px;
	width: 19px;
}
.slideshow-controller li.next a {
	background-image: url(controller-next.gif);
	left: 136px;
	width: 28px;
}
.slideshow-controller li.pause a {
	background-image: url(controller-pause.gif);
	left: 100px;
	width: 20px;
}
.slideshow-controller li.play a {
	background-position: 18px 0;
}
.slideshow-controller li.play a.active {
	background-position: 18px 18px;
}
.slideshow-controller li.prev a {
	background-image: url(controller-prev.gif);
	left: 56px;
	width: 28px;
}



/**
HTML:
	<div class="slideshow-loader" />
	
Notes:
	Customize the hidden / visible classes to affect the loader animation.
*/

.slideshow-loader {
	height: 28px;
	right: 50%;
	position: absolute;
	top: 50%;
	width: 28px;
}
.slideshow-loader-hidden {
	filter:alpha(opacity=0);
	-moz-opacity:0;
	-khtml-opacity: 0;
	opacity: 0; 
}
.slideshow-loader-visible {
	filter:alpha(opacity=100);
	-moz-opacity:1;
	-khtml-opacity: 1;
	opacity:1;
}




