/**
Stylesheet: Slideshow.css
	CSS for Slideshow.
License:
	MIT-style license.
Copyright:
	Copyright (c) 2008 [Aeron Glemann](http://www.electricprism.com/aeron/).
HTML:
	<div class="welcome_splash">
		<div class="welcome_splash-images" />
		<div class="welcome_splash-captions" />
		<div class="welcome_splash-controller" />
		<div class="welcome_splash-loader" />
		<div class="welcome_splash-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.
*/
.welcome_splash {
	display: block;
	position: relative;
	z-index: 0;
	background-color: #ffffff;
}
.welcome_splash-images {
	display: block;
	overflow: hidden;
	position: relative;
}		
.welcome_splash-images img {
	display: block;
	position: absolute;
	z-index: 1;
}		
.welcome_splash-thumbnails {
	overflow: hidden;
}
/**
HTML:
	<div class="welcome_splash-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.
*/
.welcome_splash-images {
	height: 360px;
	width: 900px;
}		
.welcome_splash-images-visible { 
	opacity: 1;
}	
.welcome_splash-images-prev { 
	opacity: 0; 
}
.welcome_splash-images-next { 
	opacity: 0; 
}
.welcome_splash-images img {
	float: left;
	left: 0;
	top: 0;
}	
/**
Notes:
	These are examples of user-defined styles.
	Customize these classes to your usage of Slideshow.
*/
.welcome_splash {
	background:#000;
	max-height: 550px;
	width: 900px;
}
.welcome_splash a img {
	border: 0;
}
/**
HTML:
	<div class="welcome_splash-captions">
		...
	</div>
Notes:
	Customize the hidden / visible classes to affect the captions animation.
*/
.welcome_splash-captions {
	background: #000000;
	bottom: 0;
	color: #ccc;
	font-family: Tahoma;
	font-size: 18.0px;
	font-weight: bold;
	font-style: italic;
	left: 0;
	overflow: hidden;
	position: absolute;
	padding: 5px 10px 0px 10px;
	width: 880px;
	z-index: 10000;
}
.welcome_splash-captions-hidden {
	height: 0;
	opacity: 0;
}
.welcome_splash-captions-visible {
	height: 39px;
	opacity: 0.7;
}
/**
HTML:
	<div class="welcome_splash-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.
*/
.welcome_splash-controller {
	background: url(controller.png) no-repeat;
	height: 42px;
	left: 50%;
	margin: -21px 0 0 -119px;
	overflow: hidden;
	position: absolute;
	top: 50%;
	width: 238px;
	z-index: 10000;
}
.welcome_splash-controller * {
	margin: 0;
	padding: 0;
}
.welcome_splash-controller-hidden { 
	opacity: 0;
}
.welcome_splash-controller-visible {
	opacity: 1;
}
.welcome_splash-controller a {
	cursor: pointer;
	display: block;
	height: 18px;
	overflow: hidden;
	position: absolute;
	top: 12px;
}
.welcome_splash-controller a.active {
	background-position: 0 18px;
}
.welcome_splash-controller li {
	list-style: none;
}
.welcome_splash-controller li.first a {
	background-image: url(controller-first.gif);
	left: 33px;
	width: 19px;
}
.welcome_splash-controller li.last a {
	background-image: url(controller-last.gif);
	left: 186px;
	width: 19px;
}
.welcome_splash-controller li.next a {
	background-image: url(controller-next.gif);
	left: 145px;
	width: 28px;
}
.welcome_splash-controller li.pause a {
	background-image: url(controller-pause.gif);
	left: 109px;
	width: 20px;
}
.welcome_splash-controller li.play a {
	background-position: 20px 0;
}
.welcome_splash-controller li.play a.active {
	background-position: 20px 18px;
}
.welcome_splash-controller li.prev a {
	background-image: url(controller-prev.gif);
	left: 65px;
	width: 28px;
}
/**
HTML:
	<div class="welcome_splash-loader" />
Notes:
	Customize the hidden / visible classes to affect the loader animation.
*/
.welcome_splash-loader {
	height: 28px;
	right: 0;
	position: absolute;
	top: 0;
	width: 28px;
	z-index: 10001;
}
.welcome_splash-loader-hidden {
	opacity: 0;
}
.welcome_splash-loader-visible {
	opacity: 1;
}
