@charset "utf-8";
/* CSS Document */
.carousel {
	width: 210px;
	height: 150px;
	background:#d9d9d9;
	position:relative;
	padding:5px 0;
}
.carousel .prev {
	width: 20px;
	height: 160px;
	display: block;
	text-decoration: none;
	cursor: pointer;
	float: left;
	background: url(prev.png) no-repeat;
	position: absolute;
	-webkit-transition: background 200ms linear;
	-moz-transition: background 200ms linear;
	-o-transition: background 200ms linear;
	ransition: background 200ms linear;
	left:-20px;
}
.carousel .next {
	width: 20px;
	height: 160px;
	display: block;
	text-decoration: none;
	cursor: pointer;
	background: url(next.png) no-repeat;
	position: absolute;
	-webkit-transition: background 200ms linear;
	-moz-transition: background 200ms linear;
	-o-transition: background 200ms linear;
	ransition: background 200ms linear;
	right: -20px;
}
.carousel #prev-03.disabled {
	background: url(prev.png) no-repeat;
	cursor: default;
}
.carousel #next-03.disabled {
	background: url(next.png) no-repeat;
	cursor: default;
}

.jCarouselLite {
	width: 200px;
	height: 150px;/*必要元素*/
	overflow: hidden;
	margin:0 5px;
	background:#d9d9d9;
}

.jCarouselLite li img, .jCarouselLite-01 li img {
}

.jCarouselLite li{
	width:200px; 
	height:150px;
	float:left;
}
