/* Horizontal Carousel */
#horizontal_carousel {
  width: 350px;
  height: 240px;
  padding:0px;
  margin-left:5px;
}

#horizontal_carousel .container {
  width: 350px;
  height:247px;
  overflow: hidden;
}

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

#horizontal_carousel ul li {
  width: 350px;
  height: 90px;
  text-align: left; 
  list-style:none;   
  float:left;
}

#horizontal_carousel .buttons{
	display:block;
 	clear:both;
	text-align:center;
	width:100px;
	margin-left:125px;
}
#horizontal_carousel .previous_button {
  float:left;  
  width: 40px;
  height: 25px;
  background: url(../images/2_box.gif) no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(../images/2_hover.gif) no-repeat;}

#horizontal_carousel .previous_button_disabled {
  background: url(../images/2_non.gif) no-repeat;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:right;  
  width: 40px;
  height: 25px;
  background: url(../images/1_box.gif) no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(../images/1_hover.gif) no-repeat;
}

#horizontal_carousel .next_button_disabled {
  background: url(../images/1_non.gif) no-repeat;
  cursor: default;
}
