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

#horizontal_carousel .container {
	position:relative;
	width: 251px;
	overflow: hidden;
	height:178px;
	float:left;
}

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

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

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

#horizontal_carousel .buttons{
	margin:0px 0px 0px 10px;
}
#horizontal_carousel .previous_button {
  float:left;
  width: 18px;
  height: 34px;
  background: url(../gfx/but_prev.png) no-repeat;
  *background: url(../gfx/but_prev.png) no-repeat;
  _background: url(../gfx/but_prev.jpg) no-repeat;
  z-index: 100;
  cursor: pointer;
  margin-top:72px;
}

#horizontal_carousel .previous_button_over {
  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;
}

#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: 18px;
  height: 34px;
  background: url(../gfx/but_next.png) no-repeat;
  *background: url(../gfx/but_next.png) no-repeat;
  _background: url(../gfx/but_next.jpg) no-repeat;
  z-index: 100;
  cursor: pointer;
  margin-right:5px;
  margin-top:72px;
}

#horizontal_carousel .next_button_over {
  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;
}

#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;
}

