@charset "utf-8";
/* CSS Document */
.carousel {
	width: 930px;
	height: 185px;
	position: relative;
	overflow: hidden;
	margin: auto;
	padding: 0 35px 0 35px;
}
.carousel .prev {
	width: 24px;
	height:24px;
	display: block;
	text-decoration: none;
	cursor: pointer;
	background-image: url(prev.png);
	background-repeat: no-repeat;
	-webkit-transition: background 200ms linear;
	-moz-transition: background 200ms linear;
	-o-transition: background 200ms linear;
	ransition: background 200ms linear;
	position: absolute;
	z-index: 1;
	left: 5px;
	top: 81px;
}
.carousel .next {
	position: absolute;
	z-index: 1;
	width: 24px;
	height:24px;
	display: block;
	text-decoration: none;
	cursor: pointer;
	background: url(next.png) no-repeat;
	-webkit-transition: background 200ms linear;
	-moz-transition: background 200ms linear;
	-o-transition: background 200ms linear;
	ransition: background 200ms linear;
	right: 5px;
	top: 81px;
}

.carousel .prev:hover {
	background: url(prev.png) no-repeat;
}
.carousel .next:hover {
	background: url(next.png) no-repeat;
}
.jCarouselLite {
	float: left;
	width: 930px;
	height: 185px;/*必要元素*/
	overflow: hidden;
	margin: 0px;
}
.jCarouselLite ul{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
.jCarouselLite li {
	width: 200px;
	height: 150px;
	position: relative;
	overflow: hidden;
	float: left;
	background-color: #FFF;
	padding: 3px;
	margin-top: 0;
	margin-right: 8px;
	margin-bottom: 0;
	margin-left: 8px;
	border: 1px solid #D8C0AB;
}
