/**
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
{
    display: block;
    position: relative;
    z-index: 0;
    right:100px;
    left: auto;
}
.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;
}
.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: 310px;
    margin: 0 auto;
    width: 400px;
}
.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: 0px;
    overflow: hidden;
    position: absolute;
    width: 500px;
    z-index: 10000;
}*/
.slideshow-captions
{
    background: #000;
    opacity:0.4;
    filter:alpha(opacity=40);
    bottom: 0;
    color: #FFF;
    font: bold 25px/22px Arial, sans-serif;
    left: 0px;
    overflow: hidden;
    position: absolute;
    width: 495px;
    z-index: 10000;
    padding-left :5px; 
    padding-top :4px; 
    
}
.slideshow-thumbnails
{
    bottom: -75px;
    height: 75px;
    left: 0px;
    position: absolute;
    width: 100%;
}
.slideshow-thumbnails *
{
    margin: 0;
    padding: 0px;
}
.slideshow-thumbnails ul
{
    height: 75px;
    left: 5px;
    position: absolute;
    top: 0;
    width: 100px;
}
.slideshow-thumbnails li
{
    float: left;
    list-style: none;
    position: relative;
    padding-bottom:5px;
}
.slideshow-thumbnails a
{
    display: block;
    float: left;
    position: relative;
}
.slideshow-thumbnails a:hover
{
    opacity: 1 !important;
}
.slideshow-thumbnails img
{
    display: block;
}
.slideshow-thumbnails-active
{
    opacity: 1;
}
.slideshow-thumbnails-inactive
{
    opacity: .5;
}
/*new*/

 

 /** jQuery Gallery Plugin 
.gallery{
  position: relative;
  overflow: hidden;
  background-color: #666;
  padding: 12px;
  height: 340px;
  width: 470px;
}
.galleryBar {
  position: absolute;
  left: 0;
  margin: 0;
  padding: 0 7px;
  display:none;
}

.galleryBar li {
  position: relative;
  margin: 0 7px 0 0;
  padding: 0;
  overflow: hidden;
  float: left;
  list-style: none;
}
.galleryScreen, .galleryInfo {
  position: absolute;
}
.galleryScreen {
 background-color: #222;
}
.galleryInfo {
 background-color: transparent;
 color: #fff;
 padding: 12px;
}
.galleryTitle {
 font-size: 135%;
 font-weight: bold;
}**/
