/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 300px;
  height: 160px;
  margin-bottom: 0px;
  position: relative;
  z-index:100;
  left: 15px;
}

#horizontal_carousel .container {
  float: left;
  width: 260px;
  height: 150px;
  position: relative;    
  overflow: hidden;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 20px;
  left: 4px;
  height: 150px;
}                      

#horizontal_carousel ul li {
  width: 129px;
  height: 125px;
  text-align: center; 
  list-style:none;   
  float:left;
}
#horizontal_carousel ul div {
  width: 110px;
  height: 150px;
  text-align: center; 
  list-style:none;   
  float:left;
}
#horizontal_carousel .previous_button {
  padding-top:20px;
  float:left;  
  width: 20px;
  height: 150px;
  background: url(prototype-ui/horizontal/fleche-gauche.jpg);
  background-repeat:no-repeat;
  background-position:center;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(prototype-ui/horizontal/fleche-gauche.jpg);
  background-repeat:no-repeat;
  background-position:center;
}

#horizontal_carousel .previous_button_disabled {
  background: url(prototype-ui/horizontal/fleche-gauche.jpg);
  background-repeat:no-repeat;
  background-position:center;
  cursor: default;
}

#horizontal_carousel .next_button {
  padding-top:20px;
  float:left;  
  width: 20px;
  height: 150px;
  background: url(prototype-ui/horizontal/fleche-droite.jpg);
  background-repeat:no-repeat;
  background-position:center;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(prototype-ui/horizontal/fleche-droite.jpg);
  background-repeat:no-repeat;
  background-position:center;
}

#horizontal_carousel .next_button_disabled {
  background: url(prototype-ui/horizontal/fleche-droite.jpg);
  background-repeat:no-repeat;
  background-position:center;
  cursor: default;
}

