/* Horizontal Carousel */
#horizontal_carousel {
  width: 550px;
  height: 70px;
  padding:10px;
  background:transparent;
}

#horizontal_carousel .container {
  width: 550px;
  overflow: visible;
  text-align: center;
}
/*
#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: -10px;
  height: 90px;
}                      
*/
#horizontal_carousel ul li {
  width: auto;
  height: 90px;
  text-align: center; 
  list-style:none;   
  float:left;
  padding-left: 5px;
  margin-left: 5px;
  margin-right: 5px;
}

#horizontal_carousel ul li img {
	border: 0;
	padding: 5px;
	border: 1px solid #efefef;
	display:block;
	margin-left: 0 auto;
	background-color: #FFFFFF;

}
/*
#horizontal_carousel ul li {
	float: left;
	height: 100px;
	width: 100px;
}
*/
#horizontal_carousel .buttons{
	display:block;
 	clear:both;
}
#horizontal_carousel .previous_button {
  float:left;  
  width: 23px;
  height: 7px;
  background: url(img/but_prev.png) no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(img/but_prev_hover.png) no-repeat;}

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

#horizontal_carousel .next_button {
  float:right;  
  width: 23px;
  height: 7px;
  background: url(img/but_next.png) no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(img/but_next_hover.png) no-repeat;
}

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

