/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 306px;
  height: 218px;
  position: relative;
}

#horizontal_carousel .container {
  float: left;
  width: 240px;
  height: 218px;
  position: relative;
  overflow: hidden;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 1000px;
  position: relative;
  top: 0;
  left: 0;
  height: 218px;
}                      

#horizontal_carousel ul li {
  width: 120px;
  height: 110px;
  list-style:none;   
  float:left;
}

#horizontal_carousel .previous_button {
  float:left;  
  width: 33px;
  height: 218px;
  background: url(../images/viewer/horizontal/gauche.jpg) center left no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(../images/viewer/horizontal/gauche_over.jpg) center left no-repeat;
}

#horizontal_carousel .previous_button_disabled {
  background: url(../images/viewer/horizontal/gauche_disabled.jpg) center left no-repeat;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;  
  width: 33px;
  height: 218px;
  background: url(../images/viewer/horizontal/droite.jpg) center right no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(../images/viewer/horizontal/droite_over.jpg) center right no-repeat;
}

#horizontal_carousel .next_button_disabled {
  background: url(../images/viewer/horizontal/droite_disabled.jpg) center right no-repeat;
  cursor: default;
}