/* Horizontal Carousel */
#horizontal_carousel {
  width: 250px;
  height: 100px;
}

#horizontal_carousel .container 
{
  position:relative;
  width: 255px;
  overflow: hidden;
}

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

#horizontal_carousel ul li {
  width: 240px;
  height: 100px;
  text-align: center; 
  list-style:none;   
  float:left;
  background-image: none;border:solid 1px #cccccc;
}

#horizontal_carousel .buttons{
	display:block;
 	clear:both;
}
#horizontal_carousel .previous_button {
  float:left;  
  width: 15px;
  height: 15px;
  background: url(../images/icon_slideshow_prev.gif) no-repeat;
  z-index: 100;
  cursor: pointer;border:solid 1px #cccccc;
}

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

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

#horizontal_carousel .next_button {
  float:right;  
  width: 15px;
  height: 15px;
  background: url(../images/icon_slideshow_next.gif) no-repeat;
  z-index: 100;
  cursor: pointer;border:solid 1px #cccccc;
}

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

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