/**
  CSS for the slideshow wrapper
*/
#weaverpix-page5-slideshow-wrapper {
	width: 740px;
	height: 525px;
}

/**
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 five rules are required for Slideshow to work correctly.
	Override at your own risk.
*/

.slideshow-page5 {
	display: block; position: relative; z-index: 0;
}
.slideshow-page5-images {
	display: block; overflow: hidden; position: relative;
}		
.slideshow-page5-images img {
	display: block; position: absolute; z-index: 1;
}		
.slideshow-page5-thumbnails {
	overflow: hidden;
}
.slideshow-page5-thumbnails ul {
	left: 0; position: absolute; top: 0;
}

/**
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-page5-images {
	height: 525px; width: 740px;
}		
.slideshow-page5-images-visible { 
	opacity: 1;
}	
.slideshow-page5-images-prev { 
	opacity: 0;
}
.slideshow-page5-images-next { 
	opacity: 0;
}
.slideshow-page5-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-page5 {
	height: auto; margin: 0 auto; width: 740px;
}
.slideshow-page5 a img {
	border: 0;
}

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

.slideshow-page5-loader {
	background: url(loader.png); height: 30px; right: 2px; position: absolute; top: 2px; width: 30px; z-index: 10001;
}
.slideshow-page5-loader-hidden {
	opacity: 0;
}
.slideshow-page5-loader-visible {
	opacity: 1;
}

