/* Horizontal Carousel */
#horizontal_carousel {
  width: 470px;
  height: 100px;
  margin: 0 0 0 20px;
  padding:45px 45px 30px 45px;
  float:left;
  background:transparent;
  position:relative;
  border:0px solid red;
}

#horizontal_carousel .container {
  width: 480px;
  overflow: hidden;
  border:0px solid red;
  position:relative;
}

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

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

#horizontal_carousel ul li a {
  width: 100px;
  height: 100px;
  padding:5px;
  display:block;
  background:white;
}

#horizontal_carousel .buttons{
  width: 500px;
  height: 10px;
  padding:0 30px;
  display:block;
  position:absolute;
  top:145px;
  left:0;
  border:0px solid red;
}
#horizontal_carousel .previous_button {
  float:left;  
  width: 23px;
  height: 7px;
  background: url(img/but_prev.png) no-repeat center left;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(img/but_prev_hover.png) no-repeat center left;}

#horizontal_carousel .previous_button_disabled {
  background: url(img/but_prev_dis.png) no-repeat center left;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:right;  
  width: 23px;
  height: 7px;
  background: url(img/but_next.png) no-repeat center right;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(img/but_next_hover.png) no-repeat center right;
}

#horizontal_carousel .next_button_disabled {
  background: url(img/but_next_dis.png) no-repeat center right;
  cursor: default;
}
