/* Horizontal Carousel */
#horizontal_carousel {
  height: 220px;
  margin:auto;
  overflow:hidden;
}

#horizontal_carousel .container {
	position:relative;
	width: 590px;
	overflow: hidden;
	height:158px;
	float:left;
}

#horizontal_carousel ul {
  margin: 0;
  padding: 0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0px;
  height: 103px;
}

#horizontal_carousel ul li {
  width: 105px;
  height: 80px;
  text-align: left;
  list-style:none;
  float:left;
}

#horizontal_carousel ul li img, #horizontal_carousel ul li img a{
	border:1px solid #FFFFFF;
	width:74px;
	width: 100px;
}

#horizontal_carousel .buttons{
	display:block;
 	clear:both;
}
#horizontal_carousel .previous_button {
  clear:both;
  float:left;
  width: 88px;
  height: 29px;
  background: url(../gfx/but_prev_hover.png) no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(../gfx/but_prev.png) no-repeat;
  width: 88px;
  height: 29px;
}

#horizontal_carousel .previous_button_disabled {
  background: url(../gfx/but_prev_dis.png) no-repeat;
  cursor: default;
  width: 88px;
  height: 29px;
}

#horizontal_carousel .next_button {
  float:right;
  width: 88px;
  height: 29px;
  background: url(../gfx/but_next_hover.png) no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(../gfx/but_next.png) no-repeat;
}

#horizontal_carousel .next_button_disabled {
  background: url(../gfx/but_next_dis.png) no-repeat;
  cursor: default;
}

