/* Horizontal Carousel */
#horizontal_carousel {
  float: right;
  width: 870px;
  height: 80px;
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
}

#horizontal_carousel .container {
  float: left;
  width: 800px;
  height: 70px;
  position: relative;    
  overflow: hidden;
 background: transparent;
}

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

#horizontal_carousel ul li {
  width: 160px;
  height: 70px;
  text-align: center; 
  list-style:none;   
  float:left;
  background: transparent;
}

#horizontal_carousel .previous_button {
  float:left;  
  background: transparent url(ui/aleft.png) no-repeat center center;
  height: 74px;
  width: 21px;
  z-index: 100;
  cursor: pointer; 
}

#horizontal_carousel .previous_button_over {
  background: transparent url(ui/hleft.png) no-repeat center center;
  
}

#horizontal_carousel .previous_button_disabled {
  background: transparent url(ui/dleft.png) no-repeat center center;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;  
  background: transparent url(ui/aright.png) no-repeat center center;
  z-index: 100;
  height: 74px;
  width: 21px;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: transparent url(ui/hright.png) no-repeat center center;
}

#horizontal_carousel .next_button_disabled {
  background: transparent url(ui/dright.png) no-repeat center center;
  cursor: default;
}