/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 460px;
  height: 220px;
  margin-bottom: 10px;
  position: relative;
}

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

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

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

#horizontal_carousel .previous_button {
  float:left;  
  width: 44px;
  height: 50px;
  background: url(images/arrowLeft.png) no-repeat;
  z-index: 100;
  cursor: pointer;
  position: absolute;
  top:110px;
  left:5px;
}

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

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

#horizontal_carousel .next_button {
  float:left;  
  width: 44px;
  height: 50px;
  background: url(images/arrowRight.png) no-repeat;
  z-index: 100;
  cursor: pointer;
  position: absolute;
  right:5px;
  top: 110px;
}

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

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



