/*** Overall MovingBoxes Slider ***/
.slider {
  width: 500px; /* default, this is overridden by script settings */
  border: 5px solid #ccc;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 10px #888;
  -moz-box-shadow: 0 0 10px #888;
  -webkit-box-shadow: 0 0 10px #888;
}
.scrollContainer, .scroll {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.slider {
  border-radius: 1em;
  -moz-border-radius: 1em;
  -webkit-border-radius: 1em;
}

/* active slider border highlight */
.active-slider {
  border-color: #f5f5f5;
  /*border-color: #999bff;*/
  
}
/* inside shadow */
.left-shadow {
/*  background: url(../images/leftshadow.png) left top repeat-y; */
}
.right-shadow {
/*  background: url(../images/rightshadow.png) right top repeat-y; */
}

/*** Slider panel ***/
.slider div.panel {
  width: 200px;  /* default, this is overridden by script settings */
  margin: 5px 0;
  padding: 5px;
  cursor: pointer;
}
.slider div.panel.current {
 cursor: auto;
}

/*** Inside the panel ***/
.inside {
  padding: 10px;
  border: 2px solid #259;
}

.inside img {
  display: block;
  border: 2px solid #666;
  margin: 0 0 0px 100;
  width: 100%;
}

.inside h2 {
  font-weight: normal;
  color: #000;
  font-size: 100px;
  margin: 0 0 8px 0;
}

.inside p {
  font-size: 10px;
  color: #444;
}

.inside a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
}

.inside a:hover {
  border-bottom: 1px solid #999;
}

/*** Left & Right Navigation Arrows ***/
a.scrollButtons {
  display: block;
  width: 55px;
  height: 65px;
  /*background: transparent no-repeat top center;*/
  position: absolute;
  top:40%; /* if you change the arrow images, you may have to adjust this (distance from top) */
  cursor: pointer;
  text-decoration: none;
  outline: 0;
  border: 0;

}
a.scrollButtons:hover {
 background-position: bottom center;
}
.scrollButtons.left {
   background-image: url(/TemplateSets/territorio_portale/images/leftarrow.gif);
  left: -40px;
}
.scrollButtons.right {
   background-image: url(/TemplateSets/territorio_portale/images/rightarrow.gif);
  right: -40px;
}

.controls {
  margin: 0 auto;
  text-align: center;
  background: #ccc;
}
.controls a {
  color: #444;
  font: 12px Georgia, Serif;
  display: inline-block;
  text-decoration: none;
  padding: 2px;
  height: 18px;
  margin: 0 5px 0 0;
  text-align: center;
  outline: 0;
}
.controls a.current, .controls a:hover {
  color: #fff;
}
.active-slider .controls {
  /*background: #999bff; */
	background: #f5f5f5;
  
}