/* Horizontal Carousel */
#horizontal_carousel {
  width: 900px;
  height: 350px; margin:auto;


}

#horizontal_carousel .container {
  width: 900px;
  overflow: hidden;
}

.container img { border: #CCC 3px solid;}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0px;
  height: 340px;
}                      

#horizontal_carousel ul li { width:auto; margin-right:40px;
  height: 311px;
  text-align: center; 
  list-style:none;   
  float:left;
}

#horizontal_carousel .buttons{
	display:block;
 	clear:both;
}
#horizontal_carousel .previous_button {
  float:left;  
  width: 23px;
  height: 23px;
  background: url(/assets/js/images/but_prev.png) no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(/assets/js/images/but_prev_hover.png) no-repeat;}

#horizontal_carousel .previous_button_disabled {
  background: url(/assets/js/images/but_prev_dis.png) no-repeat;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:right;  
  width: 23px;
  height: 23px;
  background: url(/assets/js/images/but_next.png) no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(/assets/js/images/but_next_hover.png) no-repeat;
}

#horizontal_carousel .next_button_disabled {
  background: url(/assets/js/images/but_next_dis.png) no-repeat;
  cursor: default;
}