/* Horizontal Carousel */
#horizontal_carousel {
  height: 150px;
  margin:auto;
  overflow:hidden;
}

#horizontal_carousel .container {
	position:relative;
	width: 310px;
	overflow: hidden;
	height:145px;
	float:left;
	padding-left:8px;
}

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

#horizontal_carousel ul li {
  width: 105px;
  height: 120px;
  text-align: left;
  list-style:none;
  float:left;
}

#horizontal_carousel ul li img, #horizontal_carousel ul li img a{
  border:solid 1px #622520;
}

#horizontal_carousel .buttons{
	display:block;
 	clear:both;
}
#horizontal_carousel .previous_button {
  float:left;
  width: 20px;
  height: 82px;
  background: url(../gfx/but_prev_hover.png) no-repeat;
  *background: url(../gfx/but_prev_hover.png) no-repeat;
  _background: url(../gfx/but_prev_hover.jpg) no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(../gfx/but_prev.png) no-repeat;
  *background: url(../gfx/but_prev.png) no-repeat;
  _background: url(../gfx/but_prev.jpg) no-repeat;
}

#horizontal_carousel .previous_button_disabled {
  background: url(../gfx/but_prev_dis.png) no-repeat;
  *background: url(../gfx/but_prev_dis.png) no-repeat;
  _background: url(../gfx/but_prev_dis.jpg) no-repeat;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;
  width: 20px;
  height: 82px;
  background: url(../gfx/but_next_hover.png) no-repeat;
  *background: url(../gfx/but_next_hover.png) no-repeat;
  _background: url(../gfx/but_next_hover.jpg) no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(../gfx/but_next.png) no-repeat;
  *background: url(../gfx/but_next.png) no-repeat;
  _background: url(../gfx/but_next.jpg) no-repeat;
}

#horizontal_carousel .next_button_disabled {
  background: url(../gfx/but_next_dis.png) no-repeat;
  *background: url(../gfx/but_next_dis.png) no-repeat;
  _background: url(../gfx/but_next_dis.jpg) no-repeat;
  cursor: default;
}

