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

#horizontal_carousel .container {
  position: absolute;
  top: 4px;
  left: 25px;
  height: 200px;
  overflow:hidden;   
  background: #FFFFFF;
  width: 100%;
}             
#horizontal_carousel .previous_button {
  position: absolute;
  top: 65px;
  width: 19px;
  height: 19px;
  background: url(classic/horizontal/left.gif);
  z-index: 100;    
  cursor:pointer;
}        

#horizontal_carousel .previous_button_disabled {
  background: url(classic/horizontal/left-disabled.gif);
  cursor:default;
}

#horizontal_carousel .next_button {
  position: absolute;
  top: 65px;
  right: -50px;
  width: 19px;
  height: 19px;
  background: url(classic/horizontal/right.gif);
  z-index: 100;
  cursor:pointer;
}   

#horizontal_carousel .next_button_disabled {
  background: url(classic/horizontal/right-disabled.gif);
  cursor:default;
}
#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0;
  height: 207px;
}                      

#horizontal_carousel ul li img {
  display:block;             
}                                                           

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

