.carousel {
	width: 500px;
	height: 350px;
	overflow: hidden;
	position: relative;
}

.carousel ul {
	position: absolute;
	left: 0;
	top: 0;
}

.carousel ul li.slider {
	float: left;
	width: 500px;
	height: 350px;
}

.carousel ul li.fade {
	width: 500px;
	height: 350px;
	position: absolute;
	left: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
}

.carousel .btn {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 80px;
	margin-top: -40px;
}
.carousel .btn span {
	display: inline-block;
	width: 100%;
	height: 100%;
}
.carousel .pre-btn {
	left: 0;
}
.carousel .pre-btn span {
	background: url('../images/btn_pre.png') no-repeat center center;
}
.carousel .next-btn {
	right: 0;
}
.carousel .next-btn span {
	background: url('../images/btn_next.png') no-repeat center center;
}
.carousel .btn:hover {
	background: #000;
	opacity: 0.7;
	filter: alpha(opacity=70);
}

.carousel .pagination {
	position: absolute;
	left: 0;
	bottom: 10px;
	width: 100%;
	text-align: center;
	z-index: 10;
}
.carousel .pagination .pag-btn {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 5px;
	border-radius: 100%;
	background: #fff;
	opacity: 0.3;
	cursor: pointer;
}
.carousel .pagination .pag-btn.active {
	opacity: 1;
	background: #007aff;
}