/* Horizontal Carousel */
#horizontal_carousel {
  width: 540px;
  height: 180px;
  padding-top:38px;
  background: #2ba4db url(../../images/scroller_bg.jpg) no-repeat fixed top;
}

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

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

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

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

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

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

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

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

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