/**
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;
}
.slideshow-thumbnails ul {
	left: 0; position: absolute; top: 0; width: 100000px;
}
/**
HTML:
	<div class="slideshow-images">
		<img />
		<img />
	</div>
	
Notes:
	The images div is where the slides are shown. width and height over ride within  options
	Customize the visible / prev / next classes to effect the slideshow transitions: fading, wiping, etc.

*/
.slideshow-images {
	height: 400px;
	width: 450px;
}		
.slideshow-images-visible { 
	opacity: 1;
}	
.slideshow-images-prev { 
	opacity: 0; 
}
.slideshow-images-next { 
	opacity: 0; 
}
.slideshow-images img {
	float: left;
	left: 0;
	top: 0;
}	
/*

grow
*/

.grow .slideshow-images {
	left: 0px;
	height: 400px;
	top: 0px;
	width: 450px;
}		
.grow .slideshow-images-visible { 
	top: 0; 
	opacity: 1; 
	left: 0; 

}	
.grow .slideshow-images-prev { 
	top: -200px;
	opacity: 0.5; 
	left: 600px;
}
.grow .slideshow-images-next { 
	top: -200px;
	opacity: 0.5; 
	left: -600px; 
}
.slideshow-images img {
	float: left;
}

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

.slideshow
{
	height: 400px;
	width: 450px;
	margin: 0 auto 190px auto;
	border: 1px solid #86D0FF;
}

.slideshow a img {
	border: 0;
	padding: 0px;
	margin:0px;
}
/**
Short code:
	If you were to add a show_class = "mini" to your short code, 
	you would then add a css class of family as bellow.
	This will add to or over ride the class slideshow above.
*/
.mini{
	border: 2px solid #999;
	padding: 5px;
	height: 150px;
	width: 150px;
	margin: 20px;
	float: left;
}
.small{
    height:100px;
    margin:20px;
    border: 2px solid #999;
	padding: 5px;
	}

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

.slideshow-captions {
	background: #86d0ff;
	bottom: 0;
	color: #2c5a80;
	font: normal 12px/22px Arial, sans-serif;
	left: 0;
	overflow: hidden;
	position: absolute;	
	width: 100%;
	z-index: 1000;
	border-top: 1px solid #fff;
	line-height: 1.3em;
}
.slideshow-captions-hidden {
	height: 0px;
	opacity: 0;
	
}
.slideshow-captions-visible {
	height: 100px;
	opacity: .7;
	
}
.slideshow-captions h3 {
    margin: 6px 6px 0px !important;
    padding:0;
    display: inline;
}
.slideshow-captions p {
    margin:4px 6px !important;
}
.slideshow-captions a {
    float:right;
    margin-right:20px;
}
/**/

/**
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.
*/
html > body .slideshow-controller li {
	list-style: none;
}
.slideshow-controller {
	background: url(images/controller.png) no-repeat;
	height: 42px;
	left: 50%;
	margin: -21px 0 0 -119px;
	overflow: hidden;
	position: absolute;
	top: 50%;
	width: 238px;
	z-index: 10100;
}
.slideshow-controller * {
	margin: 0;
	padding: 0;
}
.slideshow-controller-hidden { 
	opacity: 0;
	margin-top: 0;
	z-index: -10;
}
.slideshow-controller-visible {
	opacity: 1;
	margin-top: 65px;
	z-index: 10100;
}
/* control buttons*/
.slideshow-controller a{
	cursor: pointer;
	display: block;
	height: 18px;
	overflow: hidden;
	position: absolute;
	top: 12px;
	background-repeat: no-repeat;
}
.slideshow-controller a.active {

}
html > body .entry .slideshow-controller li {
	list-style: none;
}
.slideshow-controller li.first a{
	background-image: url(images/controller_buttons.png);
	left: 36px;
	width: 20px;
	background-position: 4px 0; }
.slideshow-controller li.first a.active{
	background-position: 4px -18px;}

.slideshow-controller li.last a {
	background-image: url(images/controller_buttons.png);
	left: 182px;
	width: 20px;
	background-position: -98px 0; }
.slideshow-controller li.last a.active{
	background-position: -98px -18px;}

.slideshow-controller li.next a {
	background-image: url(images/controller_buttons.png);
	left: 145px;
	width: 24px;
	background-position: -74px 0;}
.slideshow-controller li.next a.active{
	background-position: -74px -18px;}

.slideshow-controller li.pause a {
	background-image: url(images/controller_buttons.png);
	left: 110px;
	width: 20px;
	background-position: -37px 0; }
.slideshow-controller li.pause a.active{
	background-position: -37px -18px;}

.slideshow-controller li.play a {
	background-position: -54px 0; }
.slideshow-controller li.play a.active {
	background-position: -54px -18px; }
	
.slideshow-controller li.prev a {
	background-image: url(images/controller_buttons.png);
	left: 72px;
	width: 24px;
	background-position: -16px 0px; }
.slideshow-controller li.prev a.active{
	background-position: -16px -18px;}

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

.slideshow-loader {
	background: url(images/loader.png); height: 30px; right: 45%; position: absolute; top: 45%; width: 30px; z-index: 10001;
}
.slideshow-loader-hidden {
	opacity: 0;
	margin: -14px 0 0 -14px;
}
.slideshow-loader-visible {
	opacity: .9;
	margin: -14px 0 0 -14px;
}

/**
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: -180px;
	height: 170px;
	left: 0;
	position: absolute;
	width: 100%;
}
.slideshow-thumbnails * {
	margin: 0;
	padding: 0;
}


/*	To use thumb vertical switch in the following classes. uncomment to activate
	Overriding the default Slideshow thumbnails for the vertical presentation
*/
/*height of your slideshow*/
/*
    
    .slideshow-thumbnails {
    	height: 300px; 
    	left: auto;
    	right: -80px;
    	top: 0;
    	width: 70px; 
    }
 /*width of your thumbs plus slideshow-thumbnails li margins*/
 /*
    .slideshow-thumbnails ul {
    	height: 700px;
    	width: 70px;
    }    

*/

html > body .slideshow-thumbnails ul {
	position: absolute;
	text-indent: 0px;
	margin: 0;
	padding: 0;
}
html > body .slideshow-thumbnails li {
	float: left;
	list-style: none;
	margin: 0px;
	position: relative;
}
html > body .slideshow li:before{
	content: "";
}
.slideshow-thumbnails a:link, .slideshow-thumbnails-hidden {
	display: block;
	padding: 5px;
	margin: 5px;
	position: relative; 
	overflow:hidden;
}
.slideshow-thumbnails a:visited:hover, .slideshow-thumbnails a:link:hover {
	background-color: #86d0ff !important;
	opacity: 1 !important;
}
.slideshow-thumbnails img {
	display: block;
}
.slideshow-thumbnails-active {
	background-color: #4fa1e5;
	opacity: 1;
}
.slideshow-thumbnails-inactive {
	background-color: #4287c1;
	opacity: .5;
}

/*	these are the dynamically inserted thumb strip covers, set to each end*/
.slideshow-thumbnails .overlay {
	top: 0px;
	height: 170px;
	position: absolute;
	width: 30px;
	z-index: 1000;
}
.slideshow-thumbnails .overlay.a {
	background: url(images/thumbnails_overlay.png) repeat-y top left ;
	left: 0;
}
.slideshow-thumbnails .overlay.b {
	background: url(images/thumbnails_overlay.png) repeat-y top right ;
	right: 0;
	}
/*.slideshow-thumbnails .thumbframe {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 150px;
    height: 150px;
    background: url(images/thumbframe.png) no-repeat top;
    overflow: hidden;
    }*/

/*
The following only applies when using the featured option
*/
.featured .slideshow-thumbnails .overlay {
	height: 100px!important;
}

.featured {
    color:#666666;
    height: 250px;
    width: 450px;
    margin: 30px auto 130px;
    border: 2px solid #333;
    padding:10px;
    -moz-border-radius:10px;
	-webkit-border-radius:10px;	
	border-radius:10px;
}

/* */   
.featured .slideshow-images {
    border: 1px inset #254c6c;
}

.slideshow-featured-captions h3 {
    color: #D6C281;
    margin:15px 0;
    padding:0;
}

.slideshow-featured-captions a
{
	position: absolute;
	right: 0px;
	bottom: 0px;
	margin: 6px;
	padding: 3px 12px;
	background: #6D93C9;
	border: 2px outset #10161e;
	color: #e9f5ff;
	font-size: 1.1em;
	-moz-border-radius:12px;
	-webkit-border-radius:12px;
	
	border-radius:12px;
}
.slideshow-featured-captions a:hover {
    color:#000;
    background: #D6C281 ;
}
.featured .slideshow-featured-captions{
    visibility: hidden;
    background: #fff;
	bottom: 0;
	color: #666;
	
	right: 0;
	left:auto;
	overflow: hidden;
	position: absolute;
	text-indent: 0px;
	height: 230px;
	width: 0px;
	z-index: 2000;
	border: 20px solid #fff;
	text-align:left;
}
.slideshow-featured-captions-hidden {

	opacity: 0;
	width: 0px;
}
.slideshow-featured-captions-visible {

	opacity: .8;
	width: 150px;
}

.featured .slideshow-thumbnails {
    bottom: -110px;
	height: 100px;
}

.featured .slideshow-thumbnails ul{
	height: 100px;
	width:1000px;
}

.featured .slideshow-thumbnails-hidden{
     -moz-border-radius:8px;
	-webkit-border-radius:8px;
	
	border-radius:8px;	
	background-color: #254C6C !important;
}

/* sscategory */
.sscategory {
    color:#666666;
    height: 250px;
    width: 450px;
    margin: 30px auto 230px;
    border: 2px solid #333;
    padding:10px;
    -moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
}

.sscategory .slideshow-images{
    border: 1px inset #254c6c;
}

.sscategory .slideshow-thumbnails {
    bottom: -220px;
	height: 200px;
	width: 470px;
}
.sscategory .slideshow-thumbnails ul{
	/*height: 300px;
	width: 1000px;*/
}
.sscategory .slideshow-thumbnails .overlay {
	height: 200px!important;
}

.slideshow-sscategory-captions {
    visibility: hidden;
    background: #fff;
	bottom: 0;
	color: #666;	
	right: 0;
	left:0;
	overflow: hidden;
	position: absolute;
	text-indent: 8px;
	height: 30px;
	width: 100%;
	z-index: 2000;
}
.slideshow-sscategory-captions h3{
    color:#666;
    display:inline;
    margin: 0px;
    padding: 3px;
    text-transform: capitalize;
}
.slideshow-sscategory-captions a{
    padding: 0px 6px;
}
.slideshow-sscategory-captions-hidden {
	opacity: 0;
	height: 0px;
}
.slideshow-sscategory-captions-visible{
    opacity: .8;
	height: 30px;
}


/*	
	Slide zoomer on template function
*/
.slideclosed {cursor:pointer; width: 60px; height: 60px; margin: 10px; padding: 0px; border: 0px solid #4fa1e5;}
.slideclosed:hover{margin: 9px;}
.slideopener {font-size:0.8em;height:60px;padding:5px 8px;background: url(images/slide_empty.png) no-repeat;}

/* slideshow holder , destination on the zoom*/
.slideopen{ padding: 10px; border: 8px solid #4fa1e5;}

/*	closer button bottom right */
.closeshow
{
	cursor: pointer;
	bottom: -20px;
	left: 100%;
	width: 20px;
	height: 20px;
	background: transparent url(images/close_ball.png) no-repeat;
	position: relative;
}

.closeshow:hover { background: transparent url(images/close_ball_over.png) no-repeat; }

