.carousel {
	left: 368px;
	float:left; position: relative;
	width: 1000px;
	margin-left: -500px;
	overflow: hidden;
	height: 500px;
	top: 0px;
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}
.carousel .item {
	top:30px;
	background-size: 100%;
	vertical-align: middle;
	line-height: 150px;
}
.carousel .item {
	display: block;
	position: absolute;
	-webkit-transform: scale(0.75);
	-moz-transform: scale(0.75);
	-o-transform: scale(0.75);
	transform: scale(0.75);
	opacity: .5;
}
.carousel .carouselImgSmaller{
	-webkit-transform: scale(.5);
	-moz-transform: scale(.5);
	-o-transform: scale(.5);
	transform: scale(.5);
	left:-18px;
}
.carousel .item.active {
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
	opacity: 1;
	left:35px;
}

.carousel .item.transition {
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
