/* Horizontal Carousel */
#horizontal_carousel {
	background:#fff8e8;
  float: left;
  width: 400px;
  height: 150px;
  margin-bottom: 10px;
  position: relative;
  border:dotted 1px #666;
}

#horizontal_carousel .container {
  float: left;
  width: 300px;
  padding:0px;
  height: 150px;
  position: relative;    
  overflow: hidden;
}

#horizontal_carousel ul {
  margin: 0;
  padding:30px 0 0 10px;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0;
  height: 130px;
}                      

#horizontal_carousel ul li {
  width: 80px;
  height: 150px;
  text-align: center; 
  list-style:none;   
  float:left;
  background:none;
  padding:10px;
}

#horizontal_carousel .previous_button {
  float:left;
  margin-top:50px;
  width: 32px;
  height: 150px;
  background: url(/img/left.png) no-repeat;
  z-index: 100;
  cursor: pointer;
  
}

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

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

#horizontal_carousel .next_button {
  float:left; 
  margin-top:50px;
  width: 32px;
  height: 150px;
  background: url(/img/right.png) no-repeat;
  z-index: 100;
  cursor: pointer;
}

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

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



