/* Horizontal Carousel */
#horizontal_carousel {
  height: 180px;
  margin:auto;
  overflow:hidden;
}

#horizontal_carousel .container {
	position:relative;
	width: 510px;
	overflow: hidden;
	height:138px;
	float:left;
	padding-left:11px;
	margin-left:10px;
}

#horizontal_carousel ul {
  margin: 0;
  padding: 0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0px;
  height: 103px;
}

#horizontal_carousel ul li {
  width: 100px;
  height: 120px;
  text-align: left;
  list-style:none;
  float:left;
}

#horizontal_carousel ul li img, #horizontal_carousel ul li img a{
	border:1px solid #FFFFFF;
	width:80px;
}

#horizontal_carousel .buttons{
	display:block;
 	clear:both;
}
#horizontal_carousel .previous_button {
  clear:both;
  float:left;
  width: 71px;
  height: 24px;
  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;
  height:24px;
  width:71px;
}

#horizontal_carousel .previous_button_disabled {
  background: url(../gfx/but_prev_dis.png) no-repeat;
  cursor: default;
  height:24px;
  width:71px;
}

#horizontal_carousel .next_button {
  float:right;
  width: 51px;
  height: 24px;
  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;
}

