/* Horizontal Carousel */
#carousel {
	width: 790px;
	padding: 10px;
	border: 1px solid #CCCCCC;
	float: left;
	margin-top: 10px;
	color: #666666;
}

#carousel .container {
	width: 800px;
	overflow: hidden;
}

#carousel ul {
	margin: 0;
	padding: 0;
	width: 100000px;
	position: relative;
	top: 0;
	left: -10px;
	height: 90px;
}                      

#carousel ul li {
	width: 112px;
	text-align: center; 
	list-style: none;   
	float: left;
	padding-bottom: 10px;
}

#carousel img {
	border: 1px solid #333333;
}

#carousel .buttons {
	display:block;
 	clear:both;
}

#carousel .previous_button {
  float:left;  
  width: 23px;
  height: 7px;
  background: url(images/but_prev.png) no-repeat;
  z-index: 100;
  cursor: pointer;
}

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

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

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

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

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