<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * swiper 3d flow 2.1.0
 * 3d flow plugin for swiper
 *
 * http://www.idangero.us/sliders/swiper/plugins/3dflow.php
 *
 * copyright 2010-2014, vladimir kharlampidi
 * the idangero.us
 * http://www.idangero.us/
 *
 * licensed under gpl &amp; mit
 *
 * released on: january 28, 2014
*/
.swiper-container, .swiper-wrapper, .swiper-slide {
	-webkit-transform-style:preserve-3d;
	-moz-transform-style:preserve-3d;
	-o-transform-style:preserve-3d;
	-ms-transform-style:preserve-3d;
	transform-style:preserve-3d;
}
.swiper-container {	
	-webkit-perspective:1200px;
	-moz-perspective:1200px;
	-o-perspective:1200px;
	perspective:1200px;
}
.swiper-wrapper {
	/* windows 8 ie 10 fix */
	-ms-perspective:1200px;
}

.swiper-slide-shadow-left, .swiper-slide-shadow-right, .swiper-slide-shadow-top, .swiper-slide-shadow-bottom {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	pointer-events:none;
}
.swiper-slide-shadow-left {	
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,0.5)), to(rgba(0,0,0,0))); /* safari 4 , chrome */
	background-image: -webkit-linear-gradient(right, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* chrome 10 , safari 5.1 , ios 5  */
	background-image:    -moz-linear-gradient(right, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* firefox 3.6-15 */
	background-image:      -o-linear-gradient(right, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* opera 11.10-12.00 */
	background-image:         linear-gradient(to left, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* firefox 16 , ie10, opera 12.50  */
	
}
.swiper-slide-shadow-right {	
	background-image: -webkit-gradient(linear, right top, left top, from(rgba(0,0,0,0.5)), to(rgba(0,0,0,0))); /* safari 4 , chrome */
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* chrome 10 , safari 5.1 , ios 5  */
	background-image:    -moz-linear-gradient(left, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* firefox 3.6-15 */
	background-image:      -o-linear-gradient(left, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* opera 11.10-12.00 */
	background-image:         linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* firefox 16 , ie10, opera 12.50  */	
}
.swiper-slide-shadow-top {	
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.5)), to(rgba(0,0,0,0))); /* safari 4 , chrome */
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* chrome 10 , safari 5.1 , ios 5  */
	background-image:    -moz-linear-gradient(bottom, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* firefox 3.6-15 */
	background-image:      -o-linear-gradient(bottom, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* opera 11.10-12.00 */
	background-image:         linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* firefox 16 , ie10, opera 12.50  */
}
.swiper-slide-shadow-bottom {	
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.5)), to(rgba(0,0,0,0))); /* safari 4 , chrome */
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* chrome 10 , safari 5.1 , ios 5  */
	background-image:    -moz-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* firefox 3.6-15 */
	background-image:      -o-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* opera 11.10-12.00 */
	background-image:         linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0)); /* firefox 16 , ie10, opera 12.50  */
}</pre></body></html>