/* Slideshow 2: a Javascript class for Mootools to stream and animate the presentation of images on your website <http://electricprism.com/aeron/slideshow> */
/* CSS for Slideshow 2, Copyright (c) 2008 Aeron Glemann <http://electricprism.com/aeron> */

/**
 * These styles are set by the slideshow script
 * you can override any of them with the !important keyword but the slideshow probably won't work as intended
 */

.slideshow {
	display: block;
	position: relative;
}
.images {
	display: block;
	/* height: height_of_slideshow_or_default_image */
	overflow: hidden;
	position: relative;
	/* width: width_of_slideshow_or_default_image */
}		
.images img {
	display: block;
	position: absolute;
	z-index: 1;
}		
.thumbnails {
	overflow: hidden;
}

/**
 * These are examples of user-defined styles
 */

* {
	margin: 0;
	padding: 0;
}

.captions {
	background: #000;
	bottom: 0;
	color: #FFF;
	font: normal 12px/22px Arial, sans-serif;
    font: normal 10px/20px Arial, sans-serif;
	height: 22px;
    height: 20px;
	left: 0;
	overflow: hidden;
	position: absolute;
	/* text-indent: 10px; */
	width: 100%;
	z-index: 10000;
}
.captions-hidden {
	height: 0;
	opacity: 0;
}
.captions-visible {
	height: 22px;
	opacity: .7;
}

.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;
}
.controller-hidden { 
	opacity: 0;
}
.controller-visible {
	opacity: 1;
}
.controller a {
	cursor: pointer;
	display: block;
	height: 18px;
	overflow: hidden;
	position: absolute;
	top: 12px;
}
.controller a.hover {
	background-position: 0 18px;
}
.controller .first a {
	background-image: url(controller-first.gif);
	left: 33px;
	width: 19px;
}
.controller .prev a {
	background-image: url(controller-prev.gif);
	left: 65px;
	width: 28px;
}
.controller .pause a {
	background-image: url(controller-pause.gif);
	left: 109px;
	width: 20px;
}
.controller .next a {
	background-image: url(controller-next.gif);
	left: 145px;
	width: 28px;
}
.controller .last a {
	background-image: url(controller-last.gif);
	left: 186px;
	width: 19px;
}
.controller .play a {
	background-image: url(controller-play.gif);
}

/**
 * The images div is where the slides are shown, customize these classes to affect how the slideshow is displayed
 */

.images-visible { 
	left: 0; 
	opacity: 1; 
	top: 0; 
}	
.images-next { 
	left: 0; 
	opacity: 0; 
	top: 375px; 
}
.images-prev { 
	left: 0; 
	opacity: 0; 
	top: -375px; 
}

.loader {
	background: #FFF url(loader-2.gif) no-repeat 50% 50%;
	height: 22px;
	right: 0;
	position: absolute;
	width: 22px;
	z-index: 10001;
}
.loader-hidden {
	opacity: 0;
	top: -22px;
}
.loader-visible {
	opacity: 1;
	top: 0;
}

.slideshow {
	height: 375px;
    height: 120px;
	margin: 0 auto;
	width: 500px;
    width: 100px;
}

.thumbnails {
	bottom: -65px;
	height: 65px;
	left: 0;
	position: absolute;
	width: 100%;
}
.thumbnails ul {
	height: 65px;
	left: 0;
	position: absolute;
	top: 0;
	width: 2000px;
}
.thumbnails li {
	float: left;
	list-style: none;
	margin: 5px 5px 5px 0;
	position: relative;
}
.thumbnails a {
	background-color: #FFF;
	display: block;
	opacity: .5;
	padding: 5px;
	position: relative; 
}
.thumbnails a:hover {
	background-color: #FF9 !important;
	opacity: 1 !important;
}
.thumbnails img {
	display: block;
}
.thumbnails-active {
	background-color: #9FF;
	opacity: 1;
}
.thumbnails-hidden {
	top: 60px;
}
.thumbnails-inactive {
	background-color: #FFF;
	opacity: .5;
}
.thumbnails-visible {
	top: 0;
}
