/*
	AnythingSlider v1.5.10+ Default (base) theme
	By Chris Coyier: http://css-tricks.com
	with major improvements by Doug Neiner: http://pixelgraphics.us/
	based on work by Remy Sharp: http://jqueryfordesigners.com/
*/

/******* SET DEFAULT DIMENSIONS HERE ********/
div.anythingSlider {
	display: block;
	width: 100%;
	height: 210px;
	margin: 0 auto;
	padding: 0px;
	/* needed for Opera and Safari */
	overflow: hidden; 
	/*
	-moz-box-shadow: -2px 2px 10px #262626;
	-webkit-box-shadow: -2px 2px 10px #262626;
	box-shadow: -2px 2px 10px #262626;
	*/
}

/****** SET COLORS HERE *******/
/* Default State */
div.anythingSlider .thumbNav a.cur, div.anythingSlider .thumbNav a {
	background: #B07833;
	color: #000;
}
div.anythingSlider .anythingWindow {
	/*border-top: 3px solid #777;
	border-bottom: 3px solid #777;*/
	border: 3px solid black;
	width: 99% !important;
	background-color: white !important;
}
div.anythingSlider .start-stop {
	background-color: #040;
	color: #fff;
	display: none;
}
div.anythingSlider .start-stop.playing {
	background-color: #800;
}
div.anythingSlider .start-stop:hover, div.anythingSlider .start-stop.hover {
	color: #ddd;
}

/* Active State */
div.anythingSlider.activeSlider .anythingWindow {
	border: 1px solid black;
}
div.anythingSlider.activeSlider .thumbNav a.cur {
	background-color: rgba(255, 255, 255, 0.5);
	color: black;
}
div.anythingSlider.activeSlider .thumbNav a {
	background-color: rgba(0, 0, 0, 0.5);
}
div.anythingSlider .start-stop {
	background-color: #080;
	color: #fff;
}
div.anythingSlider .start-stop.playing {
	background-color: #d00;
}
div.anythingSlider .start-stop:hover, div.anythingSlider .start-stop.hover {
	color: #fff;
}

/**** DO NOT CHANGE BELOW THIS LINE ****/
/* anythingSlider viewport window */
div.anythingSlider .anythingWindow {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
/* wrapper: 45px right & left padding for the arrows, 28px @ bottom for navigation */
div.anythingSlider {
	position: relative;
	/*padding: 0 45px 28px 45px;*/
	padding: 0 0px 28px 0px;
}
/* anythingSlider base UL */
ul.anythingBase {
	background: transparent;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
}
ul.anythingBase li.panel {
	background: transparent;
	display: block;
	overflow: hidden;
	float: left;
	padding: 0;
	margin: 0;
}

/* Navigation Arrows */
div.anythingSlider .arrow {
	top: 50%;
	position: absolute;
	display: block;
}
div.anythingSlider .arrow a {
	display: block;
	height: 120px;
	margin: -60px 0 0 0; /* half height of image */
	width: 45px;
	text-align: center;
	outline: 0;
	background: url(../../images/slider/arrows-default.png) no-repeat;
}
div.anythingSlider .arrow a span { display: block; text-indent: -9999px; }
div.anythingSlider .forward { right: 0; }
div.anythingSlider .back { left: 0; }
div.anythingSlider .forward a { background-position: 0 -40px; }
div.anythingSlider .back a { background-position: -88px -40px; }
div.anythingSlider .forward a:hover, div.anythingSlider .forward a.hover { background-position: 0 -240px; }
div.anythingSlider .back a:hover, div.anythingSlider .back a.hover { background-position: -88px -240px; }
div.anythingSlider .forward.disabled { display: none; } /* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); */
div.anythingSlider .back.disabled { display: none; }

/* Navigation Links */
div.anythingSlider .anythingControls { outline: 0; display: none; }
div.anythingSlider .thumbNav { 
	margin: 0; 
	position: relative;
	display: block;
	top: -28px;
	float: right;
	z-index: 1000;
	margin-right: 5px;
}
div.anythingSlider .thumbNav li { display: inline; }
div.anythingSlider .thumbNav a {
	color: white;
	font: 11px/18px sans-serif;
	display: inline-block;
	text-decoration: none;
	padding: 2px 8px;
	height: 18px;
	margin: 0 5px 0 0;
	/*background-image: url(../../images/slider/cellshade.png);*/
	background-repeat: repeat-x;
	text-align: center;
	outline: 0;
	border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
}
div.anythingSlider .thumbNav a:hover {
	background-image: none;
}

/* slider autoplay right-to-left, reverse order of nav links to look better */
div.anythingSlider.rtl .thumbNav a { float: right; } /* reverse order of nav links */
div.anythingSlider.rtl .thumbNav { float: left; }    /* move nav link group to left */
div.anythingSlider.rtl .anythingWindow {
	direction: ltr;
	unicode-bidi: bidi-override;
}
/* div.anythingSlider.rtl .start-stop { float: right; } */ /* move start/stop button - in case you want to switch sides */

/* Autoplay Start/Stop button */
div.anythingSlider .start-stop {
	background-image: url(../../images/slider/cellshade.png);
	background-repeat: repeat-x;
	background-position: center top;
	padding: 2px 5px;
	width: 40px;
	text-align: center;
	text-decoration: none;
	float: right;
	z-index: 100;
	outline: 0;
	border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
}
div.anythingSlider .start-stop:hover, div.anythingSlider .start-stop.hover { background-image: none; }

div.anythingSlider, div.anythingSlider .anythingWindow, div.anythingSlider .thumbNav a, div.anythingSlider .arrow a, div.anythingSlider .start-stop {
	transition-duration: 0;
	-o-transition-duration: 0;
	-moz-transition-duration: 0;
	-webkit-transition-duration: 0;
}

/** SLIDER DA PAGINA PRINCIPAL **/
/* expand image */
#slider img           { width: 100%; height: 100%; position: relative; }
#slider .panel        { position: relative; }

/* position close button */
.caption-top .close,
.caption-right .close,
.caption-bottom .close,
.caption-left .close   { font-size: 80%; cursor: pointer; float: right; display: inline-block; }

 /* captions */
 /* set to position: relative here in case javascript is disabled, script sets captions to position: absolute */
#slider .caption-top,
#slider .caption-right,
#slider .caption-bottom,
#slider .caption-left { background-color: rgba(0, 0, 0, 0.6); color: #fff; padding: 10px; margin: 0; position: relative; z-index: 10; }

#slider .caption-top a,
#slider .caption-right a,
#slider .caption-bottom a,
#slider .caption-left a { color: #C0C0C0; text-decoration: none; }

#slider .caption-top a:hover,
#slider .caption-right a:hover,
#slider .caption-bottom a:hover,
#slider .caption-left a:hover { text-decoration: underline; }

/* Top caption - padding is included in the width (480px here, 500px in the script), same for height */
#slider .caption-top    { left: 0; top: 0; width: 100%; height: 30px; }

/* Right caption - padding is included in the width (130px here, 150px in the script), same for height */
#slider .caption-right  { right: 0; bottom: 0; width: 130px; height: 180px;  }

/* Bottom caption  - padding is included in the width (480px here, 500px in the script), same for height */
#slider .caption-bottom { left: 0; bottom: 0; width: 100%; }

/* Left caption - padding is included in the width (130px here, 150px in the script), same for height */
#slider .caption-left   { left: 0; bottom: 0; width: 130px; height: 180px;  }
