/* Horizontal Carousel */
#horizontal_carousel {
	float: left;
	width: 800px;
	height: 300px;
	position: relative;
	margin: 0px;
	padding: 0px;
}

#horizontal_carousel .container {
	float: left;
	width: 720px;
	height: 300px;
	position: relative;
	overflow: hidden;
	margin: 0px;
	padding: 0px;
}

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

#horizontal_carousel ul li {
	width: 240px;
	height: 300px;
	text-align: center;
	list-style:none;
	float:left;
	margin: 0px;
	padding: 0px;
}

#horizontal_carousel .previous_button {
	float:left;
	width: 40px;
	height: 278px;
	background: url(images/nav_arrow_prev_up.png);
	z-index: 100;
	cursor: pointer;
}

#horizontal_carousel .previous_button_over {
	background: url(images/nav_arrow_prev_over.png);
}

#horizontal_carousel .previous_button_disabled {
	background: url(images/nav_arrow_disabled.png);
	cursor: default;
}

#horizontal_carousel .next_button {
	float:left;
	width: 40px;
	height: 278px;
	background: url(images/nav_arrow_next_up.png);
	z-index: 100;
	cursor: pointer;
}

#horizontal_carousel .next_button_over {
	background: url(images/nav_arrow_next_over.png);
}

#horizontal_carousel .next_button_disabled {
	background: url(images/nav_arrow_disabled.png);
	cursor: default;
}
