﻿#slider {
	position: relative;
	width: 600px;
	height:369px;
	/* overflow: hidden; */
	/* margin: 70px auto 80px auto;*/
}

#slider li {
	position: absolute;
	top: 0;
	left: 0;
	
}

.caption {
	opacity: 0.6;
	background: #F8F9E9;
	height: 26px;
	padding: 5px 0 0 0;
	color: #9D0A0A;
	text-align: center;
	font: 16px/1 '微软雅黑';
	z-index: 200;	
}

.prev-link, .next-link {
	display: block;
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: left top;
	position: absolute;
	bottom: 10px;
	z-index: 300;
}

.prev-link {
	left: 10px;
	background-image: url(prev0.png);
}

.next-link {
	left: 40px;
	background-image: url(next0.png);
}

.circle {
	display: block;
	width: 16px;
	height: 16px;
	background: url(circle-empty.png) no-repeat left top;
	position: absolute;
	bottom: 10px;
	z-index: 300;
}

.circle-current {
	background-image: url(circle-full.png);
}