@charset "utf-8";
/* CSS Document */

.slideshow {
	position: relative;
	z-index: 1;
	height: 100%;
	max-width: 100%;
	margin: 0 auto
}
.slideshow * {
	outline: none;
}
.slideshow .slider {
	box-shadow: 0 10px 20px -20px black;
}
.slideshow .slider-track {
	-webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
	transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}
.slideshow .itembanner {
	height: 100%;
	position: relative;
	z-index: 1;
}
.slideshow .itembanner img {
	width: 100%;
	-webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
	transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
.slideshow .itembanner.slick-active img {
	-webkit-transform: scale(1);
	transform: scale(1);
}
.slick-dots {
	bottom: 25px;
}
.slick-dots li button:before {
	color: #fff;
	opacity: 0.5;
}
.slick-dots li.slick-active button:before {
	color: #F30;
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.slick-dotted.slick-slider {
	margin-bottom: 0;
}
