.carousel {
	position: relative;
	width: 715px;
	height: 476px;
}

.carousel .container {
	width: 715px;
	height: 476px;
	position: relative;
	top: 0;
	left: 0;
	overflow: hidden;
}

.carousel ul {
	position: relative;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	width: 100000px;
	height: 75px;
	list-style:none;
}                      

.carousel ul li {
	float: left;
	width: 715px;
}

.carousel .previous_button {
	position: absolute;
	top: 15px;
	left: 15px;
	cursor: pointer;
	display: block;
	width: 20px;
	height: 20px;
	text-indent: 20px;
	overflow: hidden;
	background: url(images/btn_back.png) no-repeat 0 0;
}

.carousel .previous_button_disabled {
	background: url(images/btn_back.png) no-repeat 0 -20px;
	cursor: default;
}

.carousel .next_button {
	position: absolute;
	top: 15px;
	left: 45px;
	cursor: pointer;
	display: block;
	width: 20px;
	height: 20px;
	text-indent: 20px;
	overflow: hidden;
	background: url(images/btn_next.png) no-repeat 0 0;
}

.carousel .next_button_disabled {
	background: url(images/btn_next.png) no-repeat 0 -20px;
	cursor: default;
}