/* Horizontal Carousel */
#horizontal_carousel {
	float: left;
	width: 870px;
	height: 135px;
	margin: 0 0 15px 19px;
	position: relative;
	background-color: #1a1a1a;
	padding: 15px;
}
#horizontal_carousel .container {
	float: left;
	width: 870px;
	height: 135px;
	position: relative;
	overflow: hidden;
	margin: 0 0 0 0;
}
#horizontal_carousel ul {
	margin: 0;
	padding:0;
	width: 100000px;
	position: relative;
	top: 0;
	left: 0;
	height: 135px;
}
#horizontal_carousel ul li {
	width: 145px;
	height: 135px;
	text-align: center;
	list-style:none;
	float:left;
}
#horizontal_carousel .previous_button {
	position: absolute;
	left: -22px;
	top: 65px;
	width: 24px;
	height: 42px;
	z-index: 100;
	cursor: pointer;
}
#horizontal_carousel .previous_button_over {
	background: url(../images/carousel-left-button.png) 0 0 no-repeat;
}
#horizontal_carousel .previous_button_disabled {
	background: url(../images/carousel-left-button.png) 0 0 no-repeat;/*cursor: default;*/
}
#horizontal_carousel .next_button {
	position: absolute;
	right: -23px;
	top: 65px;
	width: 24px;
	height: 42px;
	background: url(../images/carousel-right-button.png) 0 0 no-repeat;
	z-index: 100;
	cursor: pointer;
}
#horizontal_carousel .next_button_over {
	background: url(../images/carousel-right-button.png) 0 0 no-repeat;
}
#horizontal_carousel .next_button_disabled {
	background: url(../images/carousel-right-button.png) 0 0 no-repeat;/*cursor: default;*/
}

