/* Horizontal Carousel */
#horizontal_carousel {
  float:left;
  width: 670px;
  height: 150px;
  margin: 15px 0px 15px 0px;
  position: relative;  
}         

#horizontal_carousel .container {
  position: absolute;
  /*top: 5px;*/
  left: 20px;  
  width: 630px;
  height: 150px;
  overflow:hidden;   
  background: #FFF;
}            

#horizontal_carousel .previous_button {
  position: absolute;
  /*top: 5px;*/
  left: 0px;
  width: 20px;
  height: 150px;
  background: url("../images/left.png");
  z-index: 20;    
  cursor:pointer;
}        

#horizontal_carousel .previous_button_disabled {
  background: url("../images/left-disabled.png");
  cursor:default;
}

#horizontal_carousel .next_button {
  position: absolute;
  /*top: 5px;*/
  right: 0px;
  width: 20px;
  height: 150px;
  background: url("../images/right.png");
  z-index: 20;
  cursor:pointer;
}   

#horizontal_carousel .next_button_disabled {
  background: url("../images/right-disabled.png");
  cursor:default;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0;
  height: 150px;
}                      

#horizontal_carousel ul li img {
  border: none;
  display:block;             
  background:#FFF;  
  margin: 0px ;
  padding: 0px;
}    


#horizontal_carousel ul li {
	font-size: 15px;
	color: #333;
	font-weight: bold;
	text-transform: lowercase;
}                               

#horizontal_carousel ul li {
  border: none;
  color: #333;
  margin:0pt;
  padding: 10px 0px 10px 10px;
  list-style:none;   
  float:left;
}


