/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 870px;
  height: 135px;
  margin-bottom: 0;
  position: relative;
  background: #9E0000;
  padding: 15px;
}

#horizontal_carousel .container {
  float: left;
  width: 870px;
  height: 135px;
  position: relative;    
  overflow: hidden;
  margin: 0 0 0 0;
}

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

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

#horizontal_carousel .previous_button {
  position: absolute; 
  left: -10px;
  top: 75px;
  width: 24px;
  height: 24px;
  background: url(../images/left.png) 0 0 no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(../images/left.png) 0 0 no-repeat;
}

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

#horizontal_carousel .next_button {
  position: absolute;  
  right: -10px;
  top: 75px;
  width: 24px;
  height: 24px;
  background: url(../images/right.png) 0 0 no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(../images/right.png) 0 0 no-repeat;
}

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