/* Horizontal Carousel */
#horizontal_carousel {
  width: 255px;
  height: 100px;
  padding: 0;
  background:#f6f6f6;
  border:solid 1px #e9e9e9;
  margin: 0 auto 0 auto;
  text-align:center;	
  float:left;
}

#horizontal_carousel .container {
  float:left;
  position:relative;
  width: 250px;
  overflow: hidden;
  margin: 0;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0px;
  height: 90px;
  float:left;
}                      

#horizontal_carousel ul li {
  width: 90px;
  height: 90px;
  margin: 0 3px 0 3px;
  text-align: center; 
  list-style:none;   
  float:left;
  background-image: url('/images/thumb_bkg.gif');
}
/*
#horizontal_carousel ul li .test {width: 90px; height:90px; padding-top:5px; background-image:url('/images/sprite_2.png'); background-position: -360px -250px; background-repeat:no-repeat;}*/


#horizontal_carousel .buttons{
	display:block;
}
#horizontal_carousel .previous_button {
  float:left;
  width: 215px;
  height: 7px;  
  background: url(/img/but_prev.png) no-repeat;
  z-index: 100;
  cursor: pointer;
  margin-right: 3px
}

#horizontal_carousel .previous_button_over {
  background: url(/img/but_prev_hover.png) no-repeat;}

#horizontal_carousel .previous_button_disabled {
  background: url(/img/but_prev_dis.png) no-repeat;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;  
  width: 23px;
  height: 7px;
  background: url(/img/but_next.png) no-repeat;
  z-index: 100;
  cursor: pointer;
  margin-left: 6px;
}

#horizontal_carousel .next_button_over {
  background: url(/img/but_next_hover.png) no-repeat;
}

#horizontal_carousel .next_button_disabled {
  background: url(/img/but_next_dis.png) no-repeat;
  cursor: default;
}   
      