/* Horizontal Carousel */
#horizontal_carousel {
	float: left;
  width: 469px;
  height: 145px;
  margin-bottom: 10px;
  padding-left: 10px;
  position: relative;
  /*
  background: url(../img/bg_carousel_palloncini.gif);
  background-repeat: no-repeat;
  background-position:left center;*/
}

#horizontal_carousel .container {
  float: left;
  width: 405px;
  height: 145px;
  position: relative;    
  overflow: hidden;
}


#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 10000px;
  position: relative;
  top: 0;
  left: 0;
  height: 145px;
} 
                     


#horizontal_carousel ul li {
  width: 135px;
  height: 143px;
  text-align: center; 
  list-style-type:none;   
  float:left;
  
}


#horizontal_carousel ul li a {
  width: 120px;
  height: 143px;
  border: 1px solid #cccccc;
  display:block;
  margin: 0px auto;
}

#horizontal_carousel ul li a span {
	
		background-color: #009900;
		padding: 4px;
		color:#ffffff;
		font-weight:bold;
		margin-top: 100px;

	}

#horizontal_carousel .previous_button {
  float:left;  
  width: 32px;
  height: 145px;
  border:0px solid #000000;  
  background: url(../images/left.png);
  background-repeat: no-repeat;
  background-position:center center;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(../images/left_over.png);
    background-repeat: no-repeat;
  background-position:center center;
}

#horizontal_carousel .previous_button_disabled {
  background: url(../images/left_disabled.png);
    background-repeat: no-repeat;
  background-position:center center;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;  
  width: 32px;
  height: 145px;
  background: url(../images/right.png);
  background-repeat: no-repeat;
  background-position:center center;  
  z-index: 100;
  cursor: pointer;
  border:0px solid #000000;
}

#horizontal_carousel .next_button_over {
  background: url(../images/right_over.png);
    background-repeat: no-repeat;
  background-position:center center;
}

#horizontal_carousel .next_button_disabled {
  background: url(../images/right_disabled.png);
    background-repeat: no-repeat;
  background-position:center center;
  cursor: default;

}