/* Horizontal Carousel */
#horizontal_carousel {
	float: left;
	height: 50px;
	margin-bottom: 10px;
	margin-top: 0px;
	position: absolute;
	width: 664px;
}

#horizontal_carousel .container {
	float: left;
	height: 44px;
	overflow: hidden;
	position: relative;
	width: 560px;
}

#horizontal_carousel ul {
	height: 240px;
	left: 0;
	margin: 0;
	padding: 0;
	position: relative;
	top: 0;
	width: 100000px;
}
                      
#horizontal_carousel ul li {
	float: left;
	height: 44px;
	list-style: none;
	text-align: center;
	width: 112px;
}

#horizontal_carousel .previous_button {
	background: url(prototype-ui/horizontal/left.png);
	cursor: pointer;
	float: left;
	height: 44px;
	width: 23px;
	z-index: 100;
}

#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 {
	background: url(prototype-ui/horizontal/right.png);
	cursor: pointer;
	float: left;
	height: 44px;
	width: 23px;
	z-index: 100;
}

#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;
}

