@charset "utf-8";
/* CSS Document */
.carousel {
	width: 90%;
	position: relative;
	overflow: hidden;
	margin: auto;
	padding: 0 5%;
}
.carousel .prev {
	width: 40px;
	height:100%;
	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: 4px;
	top: 0px;
	background-position: left center;
}
.carousel .next {
	position: absolute;
	z-index: 1;
	width: 40px;
	height:100%;
	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;
	right: 2px;
	top: 0px;
	background-image: url(next.png);
	background-repeat: no-repeat;
	background-position: right center;
}

.carousel .prev:hover {}
.carousel .next:hover {}

.jCarouselLite ul{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

