@charset "utf-8";
/* CSS Document */
.carousel {
	width: 240px;
	height: 705px;
	position: relative;
	overflow: hidden;
	margin: auto;
	padding: 30px 0;
}
.carousel .prev {
	width: 240px;
	height: 21px;
	display: block;
	text-decoration: none;
	cursor: pointer;
	background-image: url(prev.jpg);
	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: 0px;
	top: 0px;
}
.carousel .next {
	position: absolute;
	z-index: 1;
	width: 240px;
	height: 21px;
	display: block;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: background 200ms linear;
	-moz-transition: background 200ms linear;
	-o-transition: background 200ms linear;
	ransition: background 200ms linear;
	left: 0px;
	bottom: 0px;
	background-image: url(next.jpg);
	background-repeat: no-repeat;
}

.carousel .prev:hover {
	background: url(prev.jpg) no-repeat;
}
.carousel .next:hover {
	background: url(next.jpg) no-repeat;
}
.jCarouselLite {
	float: left;
	width: 240px;
	height: 705px;/*必要元素*/
	overflow: hidden;
}
.jCarouselLite ul{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
.jCarouselLite li {
	width: 240px;
	height: 135px;
	position: relative;
	overflow: hidden;
	padding:4px 0 3px 0;
	margin:auto;
}
