/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 800px;
  height: 463px;
  margin-bottom: 0px;
  position: relative;
  top: 3px;
  z-index:100;
   left: 0px;
}

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

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

#horizontal_carousel ul li {
  width: 245px;
  height: 463px;
  text-align: center; 
  list-style:none;   
  float:left;
}
#horizontal_carousel ul div {
  width: 245px;
  height: 463px;
  text-align: center; 
  list-style:none;   
  float:left;
}
#horizontal_carousel .previous_button {
  padding-top:0px;
  float:left;  
  width: 20px;
  height: 230px;
  background: url(images/left.png);
  background-repeat:no-repeat;
  background-position:bottom;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(images/left_over.png);
  background-repeat:no-repeat;
  background-position:bottom;
}

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

#horizontal_carousel .next_button {
  padding-top:0px;
  float:left;  
  width: 20px;
  height: 230px;
  background: url(images/right.png);
  background-repeat:no-repeat;
  background-position:bottom;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(images/right_over.png);
  background-repeat:no-repeat;
  background-position:bottom;
}

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