/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 800px;
  height: 392px;
  position: relative;
}

#horizontal_carousel .container {
  float: left;
  width: 800px;
  height: 392px;
  top: -2px;
  position: relative;    
  overflow: hidden;
}

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

#horizontal_carousel ul li {
  width: 800px;
  height: 392px;
  text-align: center; 
  list-style:none;   
  float:left;
}

#horizontal_carousel .previous_button {
	text-decoration: none;
	color: #FFFFFF;
	font-family: Arial, Verdana, sans-serif;
	font-size: 1em;
  cursor: pointer;
  z-index: 101;
  cursor: pointer;
	font-weight: bold;
}

#horizontal_carousel .previous_button_over {
	text-decoration: underline;
	color: #FFFFFF;
	font-family: Arial, Verdana, sans-serif;
	font-weight: bold;
	font-size: 1em;
}

#horizontal_carousel .previous_button_disabled {
  visibility: hidden;
  cursor: default;
}

#horizontal_carousel .next_button {
	text-decoration: none;
	color: #FFFFFF;
	font-family: Arial, Verdana, sans-serif;
	font-size: 1em;
  cursor: pointer;
  z-index: 101;
  cursor: pointer;
	font-weight: bold;
}

#horizontal_carousel .next_button_over {
	text-decoration: underline;
	color: #FFFFFF;
	font-family: Arial, Verdana, sans-serif;
	font-size: 1em;
	font-weight: bold;
}

#horizontal_carousel .next_button_disabled {
  visibility: hidden;
  cursor: default;
}


