/* Horizontal Carousel */
#horizontal_carousel {
  width: 878px;
  height: 110px;
  padding:10px;
  background:#FFFFFF;
 border:1px solid #F0F0F0;border-top:none;
}

#horizontal_carousel .container {
  width: 890px;
  overflow: hidden;
}

#horizontal_carousel .container {
position:relative;
width: 100%;
overflow: hidden;
}
#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0px;
  height: 100px;
}                      

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

#horizontal_carousel .buttons{
	display:block;
 	clear:both;
}
#horizontal_carousel .previous_button {
  float:left;  
  width: 57px;
  height: 7px;
  background: url(images/but_prev.gif) no-repeat;
  z-index: 100;
  cursor: pointer;
}

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

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

#horizontal_carousel .next_button {
  float:right;  
  width: 57px;
  height: 7px;
  background: url(images/but_next.gif) no-repeat;
  z-index: 100;
  cursor: pointer;
}

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

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