/* Horizontal Carousel */
#horizontal_carousel {
  width: 600px;
  height: 100px;
  padding: 0px;
  border: 0px;
}

#horizontal_carousel .container {
  width: 528px;
  overflow: hidden;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0px;
  height: 100px;
}                      

#horizontal_carousel ul li {
  width: 88px;
  height: 100px;
  text-align: center; 
  list-style:none;   
  float:left;
}

#horizontal_carousel .buttons{
	display:block;
 	clear:both;
}
#horizontal_carousel .previous_button {
  float: left;  
  width: 24px;
  height: 19px;
  background: url(../images/arrow.black.left.png) no-repeat;
  z-index: 2;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(../images/arrow.red.left.png) no-repeat;
}
#horizontal_carousel .previous_button_disabled {
  background: url(../images/arrow.gray.left.png) no-repeat;
  cursor: default;
}

#horizontal_carousel .next_button {
  float: right;  
  width: 24px;
  height: 19px;
  background: url(../images/arrow.black.right.png) no-repeat;
  z-index: 2;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(../images/arrow.red.right.png) no-repeat;
}

#horizontal_carousel .next_button_disabled {
  background: url(../images/arrow.gray.right.png) no-repeat;
  cursor: default;
}
