/**
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="images" />
		<div class="captions" />
		<div class="controller" />
		<div class="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 {
	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 {
	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: 300px;
	width: 400px;
}
.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.
*/
#homearea {
  background: url(../../_img/slideshow/bg.gif) no-repeat bottom left;
}
#slideshow-holder {
  position: relative;
  width: 458px;
  height: 335px;
  overflow: hidden;
  float: left;
}
#slideshow a img {
	border: 0;
}
#slidenav {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 600;
}
#slidenav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#slidenav ul li {
  float: left;
  margin-left: 2px;
}
#slidenav ul li a {
  display: block;
  width: 12px;
  height: 11px;
  font-size: 0;
  text-indent: -9999px;
  background: url(../../_img/slideshow/circles.gif) no-repeat;
  outline: 0;
}
#slidenav ul li#arrowleft a {
  background: url(../../_img/slideshow/arrowleft.gif) no-repeat;
}
#slidenav ul li#arrowright a {
  background: url(../../_img/slideshow/arrowright.gif) no-repeat;
}
#slidenav ul li a:hover {
  opacity: 0.7;
}
#slidenav ul li.active a {
  background: url(../../_img/slideshow/circles.gif) no-repeat 0 -11px;
  opacity: 1 !important;
}
#overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 500;
}

#news-holder {
  float: left;
  width: 156px;
  height: 335px;
  background: url(../../_img/slideshow/news.gif) no-repeat -26px 0;
  border-left: 2px solid #fff;
  position: relative;
}
#news-holder h2 {
  font-size: 0;
  text-indent: -9999px;
  height: 35px;
  width: 156px;
  margin: 0;
  padding: 0;
}
.newsitem {
  height: 75px;
  color: #fff;
  font-size: 11px;
  position: relative;
}
.newsitem p {
  margin: 0;
  padding: 12px 0 0 32px;
  width: 110px;
  height: 40px;
  overflow: hidden;
}
.newsitem a {
  position: absolute;
  bottom: 9px;
  right: 20px;
  text-decoration: underline;
  font-size: 11px;
  color: #D9DADB;
}
.newsitem a:hover {
  text-decoration: none;
}

#bannerholder {
  width: 439px;
  padding-left: 20px;
  margin-top: 12px;
  padding-bottom: 6px;
  float: left;
  position: relative;
}
#bannerholder p { margin: 0; }
#bannerholder a {
  display: block;
  cursor: pointer;
  width: 439px;
  height: 135px;
  margin-bottom: 6px;
}
#bannerholder img {
  border: none;
}
#bannerholder a:hover img {
  opacity: 0.8;
}
#buttonholder {
  float: left;
  width: 131px;
  margin-top: 5px;
  padding-left: 22px;
  z-index: 9999;
  height: 400px;
}
#buttonholder p { margin: 0; position: relative; }
#buttonholder a {
  display: block;
  width: 115px;
  height: 115px;
  margin-bottom: -10px;
  font-size: 0;
  text-indent: -9999px;
  position: relative;
}
#buttonholder img { border: none; display: block; }
#buttonholder a:hover { opacity: 0.8; }

#buttonholder a#registerbtn {
  background: url(../../_img/slideshow/buttons/register.gif) no-repeat 9px 9px;
}
#buttonholder a#coursesbtn {
  background: url(../../_img/slideshow/buttons/courses.gif) no-repeat 9px 9px;
}
#buttonholder a#upgradebtn {
  background: url(../../_img/slideshow/buttons/upgrade.gif) no-repeat 9px 9px;
}
#buttonholder a#supportbtn {
  background: url(../../_img/slideshow/buttons/support.gif) no-repeat 9px 9px;
}


/**
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-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(images/slideshow/controller.png) no-repeat;
	height: 42px;
	left: 50%;
	margin: -21px 0 0 -119px;
	overflow: hidden;
	position: absolute;
	top: 50%;
	width: 238px;
	z-index: 10000;
}
.slideshow-controller * {
	margin: 0;
	padding: 0;
}
.slideshow-controller-hidden {
	opacity: 0;
}
.slideshow-controller-visible {
	opacity: 1;
}
.slideshow-controller a {
	cursor: pointer;
	display: block;
	height: 18px;
	overflow: hidden;
	position: absolute;
	top: 12px;
}
.slideshow-controller a.active {
	background-position: 0 18px;
}
.slideshow-controller li {
	list-style: none;
}
.slideshow-controller li.first a {
	background-image: url(images/slideshow/controller-first.gif);
	left: 33px;
	width: 19px;
}
.slideshow-controller li.last a {
	background-image: url(images/slideshow/controller-last.gif);
	left: 186px;
	width: 19px;
}
.slideshow-controller li.next a {
	background-image: url(images/slideshow/controller-next.gif);
	left: 145px;
	width: 28px;
}
.slideshow-controller li.pause a {
	background-image: url(images/slideshow/controller-pause.gif);
	left: 109px;
	width: 20px;
}
.slideshow-controller li.play a {
	background-position: 20px 0;
}
.slideshow-controller li.play a.active {
	background-position: 20px 18px;
}
.slideshow-controller li.prev a {
	background-image: url(images/slideshow/controller-prev.gif);
	left: 65px;
	width: 28px;
}

/**
HTML:
	<div class="slideshow-loader" />

Notes:
	Customize the hidden / visible classes to affect the loader animation.
*/

.slideshow-loader {
	height: 28px;
	left: 10px;
	position: absolute;
	top: 10px;
	width: 28px;
	z-index: 10001;
}
.slideshow-loader-hidden {
	opacity: 0;
}
.slideshow-loader-visible {
	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 {
	bottom: -65px;
	height: 65px;
	left: 0;
	position: absolute;
	width: 100%;
}
.slideshow-thumbnails * {
	margin: 0;
	padding: 0;
}
.slideshow-thumbnails ul {
	height: 65px;
	left: 0;
	position: absolute;
	top: 0;
	width: 10000px;
}
.slideshow-thumbnails li {
	float: left;
	list-style: none;
	margin: 5px 5px 5px 0;
	position: relative;
}
.slideshow-thumbnails a {
	display: block;
	padding: 5px;
	position: relative;
}
.slideshow-thumbnails a:hover {
	background-color: #FF9 !important;
	opacity: 1 !important;
}
.slideshow-thumbnails img {
	display: block;
}
.slideshow-thumbnails-active {
	background-color: #9FF;
	opacity: 1;
}
.slideshow-thumbnails-inactive {
	background-color: #FFF;
	opacity: .5;
}