/* Horizontal Carousel */
#horizontal_carousel {
	position: relative;
	width: 500px;
	height: 225px;
	float:left;
	background: url(../images/carousel/background.jpg) repeat-x 0 0;
}

#horizontal_carousel .container {
	width: 420px;
	height: 225px;
	position: relative;
	overflow: hidden;
	float:left;
}

#horizontal_carousel ul {
	margin: 0;
	padding: 0;
	width: 100000px;
	position: relative;
	top: 0;
	left: 0;
	height: 225px;
}                      

#horizontal_carousel ul li {
	width: 420px;
	height: 225px;
	text-align: center; 
	list-style:none;   
	float:left;
}

#horizontal_carousel .previous_button {
	float:left;  
	width: 40px;
	height: 225px;
	background: url(../images/carousel/previous.jpg) no-repeat 0 0;
	z-index: 100;
	cursor: pointer;
}

#horizontal_carousel .previous_button_over {
	background: url(../images/carousel/previous.jpg) no-repeat -40px 0;
}

#horizontal_carousel .previous_button_disabled {
	background: url(../images/carousel/previous.jpg) no-repeat -80px 0;
	cursor: default;
}

#horizontal_carousel .next_button {
	float:left;  
	width: 40px;
	height: 225px;
	background: url(../images/carousel/next.jpg) no-repeat 0 0;
	z-index: 100;
	cursor: pointer;
}

#horizontal_carousel .next_button_over {
	background: url(../images/carousel/next.jpg) no-repeat -40px 0;
}

#horizontal_carousel .next_button_disabled {
	background: url(../images/carousel/next.jpg) no-repeat -80px 0;
	cursor: default;
}



