/* Horizontal Carousel */
#horizontal_carousel {
  float:left;
  width: 531px;
  height: 200px;
  margin-bottom: 10px;
  position: relative;  
}         

#horizontal_carousel .container {
  position: absolute;
  top: 5px;
  left: 27px;  
  width: 460px;
  height: 142px;
  overflow:hidden;   
  background: #ffffe1;
  border-top: #eae992 1px solid;
  border-bottom: #eae992 1px solid;
}            

#horizontal_carousel .previous_button {
	position: absolute;
	top: 5px;
	left: 0px;
	width: 25px;
	height: 144px;
	background: url(classic/horizontal/left.gif);
	z-index: 100;
	cursor:pointer;
}        

#horizontal_carousel .previous_button_disabled {
  background: url(classic/horizontal/left-disabled.gif);
  cursor:default;
}

#horizontal_carousel .next_button {
	position: absolute;
	top: 5px;
	right: 20px;
	width: 25px;
	height: 144px;
	background: url(classic/horizontal/right.gif);
	z-index: 100;
	cursor:pointer;
}   

#horizontal_carousel .next_button_disabled {
  background: url(classic/horizontal/right-disabled.gif);
  cursor:default;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0;
  height: 144px;
}                      

#horizontal_carousel ul li img {
  border:4px solid #DFDFDF;
  display:block;             
  background:#E3EDFA;  
}                               

#horizontal_carousel ul li {
  font-family:arial,sans-serif;
  font-size:11px;
  
}                               

#horizontal_carousel ul li {
  border:0px solid green;
  color:#000000;
  margin:0pt;
  padding:15px 10px 10px;
  width:106px;
  list-style:none;   
  float:left;
}

