/* Horizontal Carousel */
#horizontal_carousel {
  margin:0 auto 0 auto;
  width: 650px;
  height: 200px;
  position: relative;
  padding-bottom:20px;
}

#horizontal_carousel .carouselcont {
  float: left;
  width: 550px;
  height: 175px; /* 200px; */
  position: relative;    
  overflow: hidden;
	
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0;
  height: 200px;
}                      

#horizontal_carousel ul li { 
  height: 170px; /* 200px; */
  text-align: left; 
  list-style:none;   
  float:left;
	margin-top:10px;
}

#horizontal_carousel .previous_button {
  float:left;  
  width: 30px;
  height: 175px;
  background: url(left.png);
  z-index: 100;
  cursor: pointer;
	margin-right:1px;
}

#horizontal_carousel .previous_button_over {
  background: url(left_over.gif);
}

#horizontal_carousel .previous_button_disabled {
  background: url(left_disabled.png);
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;  
  width: 32px;
  height: 175px;
  background: url(right.png);
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(right_over.gif);
}

#horizontal_carousel .next_button_disabled {
  background: url(right_disabled.png);
  cursor: default;
}
