/**
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.
*/

.banner {
	display: block;
	/*position: relative;*/
	position:absolute;
	top:-245px;
	left:311px;
	z-index:0;

}

* html div.banner {
	top:-223px;
	left:312px;
	

}


.banner-images {
	display: block;
	overflow: hidden;
	position: relative;
}		
.banner-images img {
	display: block;
	position: absolute;
	z-index: 1;
}		

/**
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.
*/

.banner-images {
	height: 60px;
	width: 150px;
}		
.banner-images-visible { 
	opacity: 1;
}	
.banner-images-prev { 
	opacity: 0; 
}
.banner-images-next { 
	opacity: 0; 
}
.banner-images img {
	float: left;
	left: 0;
	top: 0;
}	

/**
Notes:
	These are examples of user-defined styles.
	Customize these classes to your usage of Slideshow.
*/

.banner {
	height:140px; /* height is images height sum thumbnails height */
	margin: 0 auto;
	width: 650px;
}
.banner a img {
	border: 0;
}

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

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

.banner-loader {
	height: 28px;
	right: 0;
	position: absolute;
	top: 0;
	width: 28px;
	z-index: 10001;
}
.banner-loader-hidden {
	opacity: 0;
}
.banner-loader-visible {
	opacity: 1;
}


	
    .banner-images-visible { 
    	margin-left: 0;
    }	
    .banner-images-prev { 
    	margin-left: 650px;
    }
    .banner-images-next { 
    	margin-left: -650px;
    }
	

