/* Horizontal Carousel */


#horizontal_carousel {
  width: 152px;
  height: 37px;
  padding: 0;
  background:#fff;
  border: none;
  margin: 0 auto 0 auto;
}

#horizontal_carousel .container {
  float:left;
  position:relative;
  width: 126px;
  overflow: hidden;
  margin: 0;
}

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

#horizontal_carousel ul li {
  width: 37px;
  height: 37px;
  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: 6px;
  height: 37px;  background: url('/images/lt_arrow.gif') no-repeat;
  z-index: 100;
  cursor: pointer;
  margin-right: 3px
}

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

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

#horizontal_carousel .next_button {
  float:left;  
  width: 7px;
  height: 37px;
  background: url('/images/rt_arrow.gif') no-repeat;
  z-index: 100;
  cursor: pointer;
  margin-left: 6px
}

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

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