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








/* PARA POSICIONARLO HORIZONTAL */

/*
.slideshow-thumbnails {
	height: 65px;  
	left: 8px;
	position: absolute;
	width: 98%; 
	top: 3px;
	z-index: 10002;
}
.slideshow-thumbnails ul {
	height: 65px;       
	left: 0;
	position: absolute;
	top: 0;
	width: 10000px; 
}
*/



/* PARA POSICIONARLO VERTICAL */


.slideshow-thumbnails {
	
	height: 82%;  
	right: 0px; 
	position: absolute;
	width: 131px;
	top: 9%;
	bottom:9%;
	z-index: 10002;
}
.slideshow-thumbnails ul {
	height: 10000px;       
	left: 0;
	position: absolute;
	top: 0;
	width: 131px;    
}




















*						{BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px; PADDING-TOP: 0px}
/*	overflow: hidden;*/
#supersize				{
	POSITION:fixed;
	TOP: 0px;
	LEFT: 0px;
	z-index: -1;
	height: 100%;
	width: 100%;
	overflow: hidden;
}


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


.slideshow {
	height: 100%;
	margin: 0 auto;
	width: 100%;
	display: block;
	position:absolute;
}


.slideshow-images {
	display: block;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}		


.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: 100px;
	width: 100%;
	position: absolute;
	background-color: #ffffff;
}		
.slideshow-images-visible { 
	opacity: 1;
}	
.slideshow-images-prev { 
	opacity: 0; 
}
.slideshow-images-next { 
	opacity: 0; 
}
.slideshow-images img {
	float: left;
	left: 0;
	top: 0;
}	
.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: 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;
}


.slideshow-controller {
	height:100%;
	width:108px;
	top:0px;
	right:0px;
	position: absolute;
	z-index: 10000;
	background-image:url(../images/black_bg.png);
}

.slideshow-controller * {
	margin: 0;
	padding: 0;
}

.slideshow-controller-hidden { 
	opacity: 1;
}

.slideshow-controller-visible {
	opacity: 1;
}

.slideshow-controller a {
	cursor: pointer;
	display: block;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.slideshow-controller div {
	list-style: none;
}

.slideshow-controller div.first a {
	position:fixed;
	top:12%;
    right: 10px;
	width: 19px;
	height: 20px;
	visibility:hidden;
}

.slideshow-controller div.last a {
	position:fixed;
	top:12%;
    right: 10px;
	width: 19px;
	height: 20px;
	visibility:hidden;
}

.slideshow-controller div.next a {
	background-image: url(../css/controller-next.png);
	position:absolute;
	bottom:5%;
    right:32px;
	width:41px;
	height:20px;
}

.slideshow-controller div.next a.active {
	background-position: 0px 20px;
	position:absolute;
	bottom:5%px;
    right:32px;
	width:41px;
	height:20px;
}

.slideshow-controller div.pause a {
	background-image: url(../css/controller-pause.png);
	position: absolute;
	bottom:0px;
    left:0px;
	width:108px;
	height:20px;
}

.slideshow-controller div.play a {
	background-position: 0px 20px;
	position: absolute;
	bottom:0px;
    left:0px;
	width:108px;
	height:20px;

}

.slideshow-controller div.play a.active {
	background-position: 0px 20px;
	position: absolute;
	bottom:0px;
	width:108px;
	height:20px;
}

.slideshow-controller div.prev a {
	background-image: url(../css/controller-prev.png);
	position:absolute;
	top:5%;
    right:32px;
	width: 41px;
	height: 20px;
}

.slideshow-controller div.prev a.active {
	background-position: 0px 20px;
	position:absolute;
	top:5%;
    right:32px;
	width: 41px;
	height: 20px;
}

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

.slideshow-loader {
	height: 28px;
	right: 0;
	position: absolute;
	top: 45%;
	width: 28px;
	z-index: 10001;
	left: 45%;
}
.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 * { /* espacio entre imagenes */
	margin: 0;
	padding: 0;

}

.slideshow-thumbnails li {
	float: left;
	list-style: none;
	margin: 0px 0px 0px 0px;
	position: relative;
}
.slideshow-thumbnails a {
	display: block;
	float: left;
	padding: 1px;
	position: relative; 
}
.slideshow-thumbnails a:hover {
	background-color: #6F3 !important;
	opacity: 1 !important;
}
.slideshow-thumbnails img {
	display: block;
}
.slideshow-thumbnails-active {
	opacity: 1;
}
.slideshow-thumbnails-inactive {
	opacity: 1;
}
	body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}


