/* Horizontal Carousel */
/*
largeur totale : 675
hauteur totale : 272
hauteur div image : 136
largeur boutons : 32
largeur hors boutons : 611
largeur HB / 4 : 152.75 -> 153
hauteur d'une image : 121
*/



#horizontal_carousel {
  float: left;
  width: 675px;
  height: 272px;
  margin-bottom: 10px;
  position: relative;
}

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

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

#horizontal_carousel ul li {
  width: 152px;
  height: 100%;
  text-align: center;
  list-style:none;
  float:left;
}

#horizontal_carousel .previous_button {
  float:left;
  width: 32px;
  height: 175px;
  background: url(noir/left-out.png);
  z-index: 100;
  cursor: pointer;
  margin-top:52px;
  /* behavior: url(http://ns355466.ovh.net/espace_commu/public/javascript/carousel/iepngfix/iepngfix.htc); */
  behavior:url(../../../public/javascript/iepngfix/iepngfix.htc);
}

#horizontal_carousel .previous_button_over {
  background: url(noir/left-on.png);
  behavior:url(../../../public/javascript/iepngfix/iepngfix.htc);
}

#horizontal_carousel .previous_button_disabled {
  background: url(noir/left-off.png);
  cursor: default;
  behavior:url(../../../public/javascript/iepngfix/iepngfix.htc);
}

#horizontal_carousel .next_button {
  position:relative !important;
  position:absolute;
  float:left;
  width: 32px;
  height: 175px;
  background: url(noir/right-out.png);
  z-index: 100;
  cursor: pointer;
  margin-top:52px;
  behavior:url(../../../public/javascript/iepngfix/iepngfix.htc);
}

#horizontal_carousel .next_button_over {
  background: url(noir/right-on.png);
  behavior:url(../../../public/javascript/iepngfix/iepngfix.htc);
}

#horizontal_carousel .next_button_disabled {
  background: url(noir/right-off.png);
  cursor: default;
  behavior:url(../../../public/javascript/iepngfix/iepngfix.htc);
}

#horizontal_carousel a img{
	border:none;
}

