/* Horizontal Carousel */

#horizontal_carousel {
	padding-top: 10px;
	padding-left: 15px;
	text-align: center;
	float: left;
	width: 680px;
	height: 80px;
	position: relative;
}

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

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

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

#horizontal_carousel .previous_button {
	margin-top: 30px;
	margin-right: 10px;
	float: left;
	width: 18px;
	height: 18px;
	background: url(/images/left.png) no-repeat;
	z-index: 100;
	cursor: pointer;
}

#horizontal_carousel .previous_button_over {
	background-position: 0px -18px;
}

#horizontal_carousel .previous_button_disabled {
	cursor: default;
}

#horizontal_carousel .next_button {
	margin-top: 30px;
	margin-left: 10px;
	float: left;
	width: 18px;
	height: 18px;
	background: url(/images/right.png) no-repeat;
	z-index: 100;
	cursor: pointer;
}

#horizontal_carousel .next_button_over {
	background-position: 0px -18px;
}

#horizontal_carousel .next_button_disabled {
	cursor: default;
}