@charset "utf-8";

/* CSS Document */


/*
 * jquery.slider.min.js轮播特效--样式表
*/

.jquery-slider-wrapper {
	position: relative;
	clear: both;
	zoom: 1;
	margin: 0px auto;
}

.jquery-slider-slide {
	display: none;
	float: left;
	margin: 0;
	padding: 0;
	position: absolute;
	width: 100%
}

.jquery-slider-slide img {
	width: 100%;
	border: 0;
	margin: 0;
	padding: 0;
}

.jquery-slider-slide-current {
	display: block;
	z-index: 2;
}

.jquery-slider-slide-next {
	display: block;
	z-index: 1;
}

.jquery-slider-selectors {
	display: block;
	overflow: hidden;
	position: absolute;
	bottom: 80px;
	width: 100%;
	z-index: 3;
	text-align: center;
}


.jquery-slider-selector {
	display: inline-block;
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	margin: 0 5px;
	border-radius: 8px;
	background: #fff;
}

.jquery-slider-selector-current {
	background: #c70b08;
}

.jquery-slider-selector span {
	display: none;
}

.jquery-slider-control {
	display: none;
	right: 50%;
	top: 50%;
	position: absolute;
	cursor: pointer;
	width: 48px;
	height: 69px;
	margin-top: -34px;
	margin-right: -24px;
	z-index: 4;
}

.jquery-slider-control span,
.jquery-slider-control-play,
.jquery-slider-control-pause {
	display: none;
	width: 0;
	height: 0;
}

.jquery-slider-hovered .jquery-slider-control,
.jquery-slider-navigation {
	display: block;
}

.jquery-slider-navigation-prev {
	display: none;
	left: 20px;
	top: 50%;
	position: absolute;
	cursor: pointer;
	width: 48px;
	height: 69px;
	margin-top: -34px;
	z-index: 4;
	background: url(../images/jquery-slider-theme.png) no-repeat 0 0;
}

.jquery-slider-navigation-prev span {
	display: none;
}

.jquery-slider-navigation-next {
	display: none;
	right: 20px;
	top: 50%;
	position: absolute;
	cursor: pointer;
	width: 48px;
	height: 69px;
	margin-top: -34px;
	z-index: 4;
	background: url(../images/jquery-slider-theme.png) no-repeat -48px 0;
}

.jquery-slider-navigation-next span {
	display: none;
}

.jquery-slider-hovered .jquery-slider-navigation-prev,
.jquery-slider-hovered .jquery-slider-navigation-next {
	display: block;
	opacity: 0.5;
	filter: alpha(opacity=50);
	border-radius: 5px;
}

.jquery-slider-wrapper .caption {
	padding: 6px 10px;
	background: #333333;
	font-size: 13px;
	position: absolute;
	bottom: 10px;
	left: 10px;
	color: #fff;
}

.jquery-slider-timer {
	display: none;
}