
#horizontal_carousel {
	color: white;
	position: relative;
	width: 100%;
}

#horizontal_carousel .container {
	width: 800px;
	position: relative;
	overflow: hidden;
	left: 100px;
	margin-left: -30px;
}

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

#horizontal_carousel ul li {
	float: left;
	width: 200px;
	color: #b3b3b3;
	list-style:none;  
}

#horizontal_carousel .previous_button { 
	position: relative; 
	margin-top: -18px;
	top: -10px;
	left: 15px;
	cursor: pointer;
	cursor: hand;
	width: 18px;
}

#horizontal_carousel .previous_button_over {
  background: url(prototype-ui/horizontal/left_over.png);
}

#horizontal_carousel .previous_button_disabled {
  background: url(prototype-ui/horizontal/left_disabled.png);
  cursor: default;
}

#horizontal_carousel .next_button {
	position: relative; 
	margin-top: -18px; 
	top: -10px;
	right: 15px;
	cursor: pointer;
	cursor: hand;
	width: 18px;
}

#horizontal_carousel .next_button_over {
  background: url(prototype-ui/horizontal/right_over.png);
}

#horizontal_carousel .next_button_disabled {
  background: url(prototype-ui/horizontal/right_disabled.png);
  cursor: default;
}


