.fade {
	transition: opacity 0.15s linear
}

@media (prefers-reduced-motion: reduce) {
	.fade {
		transition: none
	}
}

.fade:not(.show) {
	opacity: 0
}

.collapse:not(.show) {
	display: none
}

.collapsing {
	position: relative;
	height: 0;
	overflow: hidden;
	transition: height 0.35s ease
}

@media (prefers-reduced-motion: reduce) {
	.collapsing {
		transition: none
	}
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}

.animated.bounceIn,.animated.bounceOut {
	-webkit-animation-duration: .75s;
	animation-duration: .75s
}

.animated.flipOutX,.animated.flipOutY {
	-webkit-animation-duration: .75s;
	animation-duration: .75s
}

@-webkit-keyframes bounce {
	0%,20%,53%,80%,100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	40%,43% {
		-webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}

	70% {
		-webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0)
	}
}

@keyframes bounce {
	0%,20%,53%,80%,100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	40%,43% {
		-webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}

	70% {
		-webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0)
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom
}

@-webkit-keyframes flash {
	0%,50%,100% {
		opacity: 1
	}

	25%,75% {
		opacity: 0
	}
}

@keyframes flash {
	0%,50%,100% {
		opacity: 1
	}

	25%,75% {
		opacity: 0
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse
}

@-webkit-keyframes rubberBand {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	30% {
		-webkit-transform: scale3d(1.25, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1)
	}

	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1)
	}

	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.85, 1)
	}

	65% {
		-webkit-transform: scale3d(0.95, 1.05, 1);
		transform: scale3d(0.95, 1.05, 1)
	}

	75% {
		-webkit-transform: scale3d(1.05, 0.95, 1);
		transform: scale3d(1.05, 0.95, 1)
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes rubberBand {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	30% {
		-webkit-transform: scale3d(1.25, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1)
	}

	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1)
	}

	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.85, 1)
	}

	65% {
		-webkit-transform: scale3d(0.95, 1.05, 1);
		transform: scale3d(0.95, 1.05, 1)
	}

	75% {
		-webkit-transform: scale3d(1.05, 0.95, 1);
		transform: scale3d(1.05, 0.95, 1)
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand
}

@-webkit-keyframes shake {
	0%,100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	10%,30%,50%,70%,90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	20%,40%,60%,80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}
}

@keyframes shake {
	0%,100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	10%,30%,50%,70%,90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	20%,40%,60%,80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg)
	}

	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg)
	}

	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg)
	}

	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg)
	}

	100% {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg)
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg)
	}

	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg)
	}

	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg)
	}

	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg)
	}

	100% {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg)
	}
}

.swing {
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	10%,20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
	}

	30%,50%,70%,90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}

	40%,60%,80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	10%,20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
	}

	30%,50%,70%,90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}

	40%,60%,80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada
}

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none
	}

	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}

	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}

	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}

	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}

	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}

	100% {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none
	}

	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}

	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}

	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}

	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}

	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}

	100% {
		-webkit-transform: none;
		transform: none
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
}

@-webkit-keyframes bounceIn {
	0%,20%,40%,60%,80%,100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3)
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03)
	}

	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97)
	}

	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes bounceIn {
	0%,20%,40%,60%,80%,100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3)
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03)
	}

	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97)
	}

	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
	0%,60%,75%,90%,100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0)
	}

	100% {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes bounceInDown {
	0%,60%,75%,90%,100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0)
	}

	100% {
		-webkit-transform: none;
		transform: none
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
	0%,60%,75%,90%,100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}

	100% {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes bounceInLeft {
	0%,60%,75%,90%,100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}

	100% {
		-webkit-transform: none;
		transform: none
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
	0%,60%,75%,90%,100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}

	100% {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes bounceInRight {
	0%,60%,75%,90%,100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}

	100% {
		-webkit-transform: none;
		transform: none
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
	0%,60%,75%,90%,100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0)
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes bounceInUp {
	0%,60%,75%,90%,100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0)
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9)
	}

	50%,55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3)
	}
}

@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9)
	}

	50%,55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3)
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	40%,45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	40%,45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

@keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	40%,45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	40%,45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	80% {
		-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	80% {
		-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip
}

@-webkit-keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
	}

	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
	}

	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX
}

@-webkit-keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
	}

	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
	}

	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY
}

@-webkit-keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1
	}

	100% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0
	}
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1
	}

	100% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0
	}
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1
	}

	100% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0
	}
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1
	}

	100% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0
	}
}

.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0
	}

	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1
	}

	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1
	}

	100% {
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0
	}

	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1
	}

	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1
	}

	100% {
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
	0% {
		opacity: 1
	}

	100% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0
	}
}

@keyframes lightSpeedOut {
	0% {
		opacity: 1
	}

	100% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateIn {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0
	}
}

@keyframes rotateOut {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
}

@keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}

@keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}

@keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0
	}
}

@keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	20%,60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	40%,80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}

	100% {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0
	}
}

@keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	20%,60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	40%,80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}

	100% {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0
	}
}

.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge
}

@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn
}

@-webkit-keyframes rollOut {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
	}
}

@keyframes rollOut {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3)
	}

	50% {
		opacity: 1
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3)
	}

	50% {
		opacity: 1
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

@keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

@keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

@keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

@keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3)
	}

	100% {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3)
	}

	100% {
		opacity: 0
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center
	}
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center
	}
}

.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		transform: scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center
	}
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		transform: scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center
	}
}

.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

@keyframes slideOutDown {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp
}

.swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
	float: left
}

.swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box
}

.swiper-container-android .swiper-slide,.swiper-wrapper {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate(0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.swiper-container-multirow>.swiper-wrapper {
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}

.swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex: 0 0 auto;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative
}

.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide {
	height: auto
}

.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-transition-property: -webkit-transform,height;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform,height
}

.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000
}

.swiper-wp8-horizontal {
	-ms-touch-action: pan-y;
	touch-action: pan-y
}

.swiper-wp8-vertical {
	-ms-touch-action: pan-x;
	touch-action: pan-x
}

.swiper-button-next,.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: 27px;
	height: 44px;
	margin-top: -22px;
	z-index: 10;
	cursor: pointer;
	-moz-background-size: 27px 44px;
	-webkit-background-size: 27px 44px;
	background-size: 27px 44px;
	background-position: center;
	background-repeat: no-repeat
}

.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none
}

.swiper-button-prev,.swiper-container-rtl .swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
	left: 10px;
	right: auto
}

.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next,.swiper-container-rtl .swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
	right: 10px;
	left: auto
}

.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	opacity: .2
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-webkit-appearance: none;
	appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer
}

.swiper-pagination-white .swiper-pagination-bullet {
	background: #fff
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #007aff
}

.swiper-pagination-white .swiper-pagination-bullet-active {
	background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
	background: #000
}

.swiper-container-vertical>.swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0, -50%, 0);
	-moz-transform: translate3d(0, -50%, 0);
	-o-transform: translate(0, -50%);
	-ms-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 5px 0;
	display: block
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px
}

.swiper-pagination-progress {
	background: rgba(0,0,0,0.25);
	position: absolute
}

.swiper-pagination-progress .swiper-pagination-progressbar {
	background: #007aff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	-moz-transform-origin: left top;
	-ms-transform-origin: left top;
	-o-transform-origin: left top;
	transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
	-webkit-transform-origin: right top;
	-moz-transform-origin: right top;
	-ms-transform-origin: right top;
	-o-transform-origin: right top;
	transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progress {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0
}

.swiper-container-vertical>.swiper-pagination-progress {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0
}

.swiper-pagination-progress.swiper-pagination-white {
	background: rgba(255,255,255,0.5)
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
	background: #fff
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
	background: #000
}

.swiper-container-3d {
	-webkit-perspective: 1200px;
	-moz-perspective: 1200px;
	-o-perspective: 1200px;
	perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10
}

.swiper-container-3d .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)));
	background-image: -webkit-linear-gradient(right, rgba(0,0,0,0.5), rgba(0,0,0,0));
	background-image: -moz-linear-gradient(right, rgba(0,0,0,0.5), rgba(0,0,0,0));
	background-image: -o-linear-gradient(right, rgba(0,0,0,0.5), rgba(0,0,0,0));
	background-image: linear-gradient(to left, rgba(0,0,0,0.5), rgba(0,0,0,0))
}

.swiper-container-3d .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)));
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0.5), rgba(0,0,0,0));
	background-image: -moz-linear-gradient(left, rgba(0,0,0,0.5), rgba(0,0,0,0));
	background-image: -o-linear-gradient(left, rgba(0,0,0,0.5), rgba(0,0,0,0));
	background-image: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0))
}

.swiper-container-3d .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)));
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.5), rgba(0,0,0,0));
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0.5), rgba(0,0,0,0));
	background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.5), rgba(0,0,0,0));
	background-image: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0))
}

.swiper-container-3d .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)));
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0));
	background-image: -moz-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0));
	background-image: -o-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0));
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0))
}

.swiper-container-coverflow .swiper-wrapper,.swiper-container-flip .swiper-wrapper {
	-ms-perspective: 1200px
}

.swiper-container-cube,.swiper-container-flip {
	overflow: visible
}

.swiper-container-cube .swiper-slide,.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1
}

.swiper-container-cube .swiper-slide .swiper-slide,.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active,.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-container-cube .swiper-slide {
	visibility: hidden;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	width: 100%;
	height: 100%
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .6;
	-webkit-filter: blur(50px);
	filter: blur(50px);
	z-index: 0
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	text-align: center
}

.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0,0,0,0.1)
}

.swiper-container-horizontal>.swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0,0,0,0.5);
	border-radius: 10px;
	left: 0;
	top: 0
}

.swiper-scrollbar-cursor-drag {
	cursor: move
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	-moz-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
	-moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
	animation: swiper-preloader-spin 1s steps(12, end) infinite
}

.swiper-lazy-preloader:after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: 50%;
	-webkit-background-size: 100%;
	background-size: 100%;
	background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg)
	}
}

@keyframes swiper-preloader-spin {
	100% {
		transform: rotate(360deg)
	}
}

.slick-slider {
	position: relative;
	display: block;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0
}

.slick-list:focus {
	outline: 0
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand
}

.slick-slider .slick-list,.slick-slider .slick-track {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block
}

.slick-track:after,.slick-track:before {
	display: table;
	content: ''
}

.slick-track:after {
	clear: both
}

.slick-loading .slick-track {
	visibility: hidden
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px
}[dir=rtl] .slick-slide {
	float: right
}

.slick-slide img {
	display: block
}

.slick-slide.slick-loading img {
	display: none
}

.slick-slide.dragging img {
	pointer-events: none
}

.slick-initialized .slick-slide {
	display: block
}

.slick-loading .slick-slide {
	visibility: hidden
}

.slick-vertical .slick-slide {
	display: block;
	height: auto
}

#baguetteBox-overlay {
	display: none;
	opacity: 0;
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000000;
	background-color: #222;
	background-color: rgba(0,0,0,0.8);
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease
}

#baguetteBox-overlay.visible {
	opacity: 1
}

#baguetteBox-overlay .full-image {
	display: inline-block;
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center
}

#baguetteBox-overlay .full-image figure {
	display: inline;
	margin: 0;
	height: 100%
}

#baguetteBox-overlay .full-image img {
	display: inline-block;
	width: auto;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	vertical-align: middle;
	-moz-box-shadow: 0 0 8px rgba(0,0,0,0.6);
	box-shadow: 0 0 8px rgba(0,0,0,0.6)
}

#baguetteBox-overlay .full-image figcaption {
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	line-height: 1.8;
	white-space: normal;
	color: #ccc;
	background-color: #000;
	background-color: rgba(0,0,0,0.6);
	font-family: sans-serif
}

#baguetteBox-overlay .full-image:before {
	content: "";
	display: inline-block;
	height: 50%;
	width: 1px;
	margin-right: -1px
}

#baguetteBox-slider {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	white-space: nowrap;
	-webkit-transition: left .4s ease,-webkit-transform .4s ease;
	transition: left .4s ease,-webkit-transform .4s ease;
	transition: left .4s ease,transform .4s ease;
	transition: left .4s ease,transform .4s ease,-webkit-transform .4s ease,-moz-transform .4s ease
}

#baguetteBox-slider.bounce-from-right {
	-webkit-animation: bounceFromRight .4s ease-out;
	animation: bounceFromRight .4s ease-out
}

#baguetteBox-slider.bounce-from-left {
	-webkit-animation: bounceFromLeft .4s ease-out;
	animation: bounceFromLeft .4s ease-out
}

@-webkit-keyframes bounceFromRight {
	0%,100% {
		margin-left: 0
	}

	50% {
		margin-left: -30px
	}
}

@keyframes bounceFromRight {
	0%,100% {
		margin-left: 0
	}

	50% {
		margin-left: -30px
	}
}

@-webkit-keyframes bounceFromLeft {
	0%,100% {
		margin-left: 0
	}

	50% {
		margin-left: 30px
	}
}

@keyframes bounceFromLeft {
	0%,100% {
		margin-left: 0
	}

	50% {
		margin-left: 30px
	}
}

.baguetteBox-button#next-button,.baguetteBox-button#previous-button {
	top: 50%;
	top: calc(50% - 30px);
	width: 44px;
	height: 60px
}

.baguetteBox-button {
	position: absolute;
	cursor: pointer;
	outline: 0;
	padding: 0;
	margin: 0;
	border: 0;
	-moz-border-radius: 15%;
	border-radius: 15%;
	background-color: #323232;
	background-color: rgba(50,50,50,0.5);
	color: #ddd;
	font: 1.6em sans-serif;
	-webkit-transition: background-color .4s ease;
	transition: background-color .4s ease
}

.baguetteBox-button:focus,.baguetteBox-button:hover {
	background-color: rgba(50,50,50,0.9)
}

.baguetteBox-button#next-button {
	right: 2%
}

.baguetteBox-button#previous-button {
	left: 2%
}

.baguetteBox-button#close-button {
	top: 20px;
	right: 2%;
	right: calc(2% + 6px);
	width: 30px;
	height: 30px
}

.baguetteBox-button svg {
	position: absolute;
	left: 0;
	top: 0
}

.baguetteBox-spinner {
	width: 40px;
	height: 40px;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: -20px
}

.baguetteBox-double-bounce1,.baguetteBox-double-bounce2 {
	width: 100%;
	height: 100%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #fff;
	opacity: .6;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: bounce 2s infinite ease-in-out;
	animation: bounce 2s infinite ease-in-out
}

.baguetteBox-double-bounce2 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s
}

@-webkit-keyframes bounce {
	0%,100% {
		-webkit-transform: scale(0);
		transform: scale(0)
	}

	50% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes bounce {
	0%,100% {
		-webkit-transform: scale(0);
		-moz-transform: scale(0);
		transform: scale(0)
	}

	50% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		transform: scale(1)
	}
}

@font-face {
	font-family:"iconfont";src:url("//at.alicdn.com/t/font_1067437_gkfqz3xivym.eot?t=1557037161844");src:url("//at.alicdn.com/t/font_1067437_gkfqz3xivym.eot?t=1557037161844#iefix") format("embedded-opentype"),url("data:application/x-font-woff2;charset=utf-8;base64,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") format("woff2"),url("//at.alicdn.com/t/font_1067437_gkfqz3xivym.woff?t=1557037161844") format("woff"),url("//at.alicdn.com/t/font_1067437_gkfqz3xivym.ttf?t=1557037161844") format("truetype"),url("//at.alicdn.com/t/font_1067437_gkfqz3xivym.svg?t=1557037161844#iconfont") format("svg")
}

.iconfont {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.icon-arrow-left:before {
	content: "\e6f4"
}

.icon-arrow-right:before {
	content: "\e6f5"
}

.icon-54:before {
	content: "\e6f7"
}

.icon-chanpinzhengce:before {
	content: "\e652"
}

.icon-weixin:before {
	content: "\e637"
}

.icon-mianfei:before {
	content: "\e62f"
}

.icon-iconfontzhizuobiaozhun16:before {
	content: "\e60f"
}

.icon-jiahao:before {
	content: "\e630"
}

.icon-play:before {
	content: "\e865"
}

.icon-dianhua:before {
	content: "\e62a"
}

.icon-close:before {
	content: "\e60b"
}

.icon-arrow-l:before {
	content: "\e788"
}

.icon-arrow-r:before {
	content: "\e789"
}

.icon-dianhua1:before {
	content: "\e605"
}

.icon-play1:before {
	content: "\e64c"
}

.icon-Group-:before {
	content: "\e696"
}

.icon-jianhao:before {
	content: "\e601"
}

.icon-alibaba:before {
	content: "\e632"
}

.icon-Eatrh-Support:before {
	content: "\eb2d"
}

.icon-tianmaoT:before {
	content: "\e600"
}

.icon-VR:before {
	content: "\e6ac"
}

.icon-history:before {
	content: "\e606"
}

.icon-sun:before {
	content: "\e607"
}

.icon-paragraph:before {
	content: "\e608"
}

.flexjz {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: center;
	-moz-flex-direction: center;
	-ms-flex-direction: center;
	flex-direction: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center
}

.flexcz {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: center;
	-moz-flex-direction: center;
	-ms-flex-direction: center;
	flex-direction: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center
}

.bgpic {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover
}

p {
	value: coconut
}

.a,.fl {
	float: left
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

html::-webkit-scrollbar {
	width: 7px;
	height: 7px;
	background-color: #b1a194
}

html::-webkit-scrollbar-track {
	border-radius: 0;
	background-color: #b1a194
}

html::-webkit-scrollbar-thumb {
	border-radius: 0;
	width: 17px;
	height: 17px;
	background-color: #e60012
}

body,html {
	width: 100%;
	font-size: 10px;
	height: 100%;
	margin: 0 auto;
	font-family: "PingFang SC", "Microsoft YaHei", arial, sans-serif, tahoma;
	line-height: 1.2;
	color: #303030;
	overflow-x: hidden
}

body {
	font-size: 16px;
	position: relative;
	padding-top: 85px
}

.w1200 {
	width: 1200px;
	margin: 0 auto
}

.bjhs {
	background-color: #fafafa
}

li,ul {
	list-style: none
}

img {
	border: none;
	display: block;
	margin: auto;
	line-height: 1;
	max-width: 100%
}

.center {
	position: absolute
}

.fr {
	float: right
}

.a,.fl {
	float: left
}

.pr {
	position: relative
}

.pa {
	position: absolute
}

.tc {
	text-align: center
}

.tl {
	text-align: left
}

.tr {
	text-align: right
}

.box-s {
	box-sizing: border-box
}

.txU {
	text-transform: Uppercase
}

.txC {
	text-transform: Capitalize
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden
}

.imgs {
	overflow: hidden;
	line-height: 1
}

.imgs img {
	max-width: 100%;
	transition: .7s;
	-webkit-transition: .7s;
	vertical-align: middle;
	height: auto
}

.imgs:hover img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05)
}

.h1,h1 {
	font-size: 36px
}

.h2,h2 {
	font-size: 36px
}

.h3,h3 {
	font-size: 30px
}

.h4,h4 {
	font-size: 24px
}

.h5,h5 {
	font-size: 18px
}

.h6,h6 {
	font-size: 16px
}

.h3,.h4,.h5,.h6,h3,h4,h5,h6 {
	font-weight: 400
}

.p,p {
	font-size: 14px
}

@media screen and (max-width: 1200px) {
	.h1,h1 {
		font-size: 30px
	}

	.h2,h2 {
		font-size: 30px
	}

	.h3,h3 {
		font-size: 22px
	}

	.h4,h4 {
		font-size: 20px
	}

	.h5,h5 {
		font-size: 18px
	}

	.h6,h6 {
		font-size: 16px
	}
}

@media screen and (max-width: 640px) {
	.h1,h1 {
		font-size: 24px
	}

	.h2,h2 {
		font-size: 24px
	}

	.h3,h3 {
		font-size: 20px
	}

	.h4,h4 {
		font-size: 18px
	}

	.h5,h5 {
		font-size: 16px
	}

	.h6,h6 {
		font-size: 14px
	}
}

.bdsharebuttonbox a {
	background: #ea4d07;
	width: 27px;
	zoom: 1;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	border-radius: 50%;
	font-size: 16px;
	height: 27px;
	line-height: 27px;
	color: #fff
}

.bdsharebuttonbox a.icon-qqkongjian {
	background: #3d94ec
}

.bdsharebuttonbox a.icon-xinlangweibo {
	background: #eb3e1c
}

.bdsharebuttonbox a.icon-wechat {
	background: #10b714
}

.bdsharebuttonbox a.icon-qq {
	background: #1c91eb
}

.t10 {
	margin-top: 10px
}

.t20 {
	margin-top: 20px
}

.tab:after,.typename:after {
	content: "";
	display: block;
	width: 100%;
	overflow: hidden;
	clear: both
}

.after:after {
	content: "";
	display: block;
	width: 100%;
	overflow: hidden;
	clear: both
}

.ft-w1 {
	font-weight: 100
}

.dis-in {
	zoom: 1;
	display: inline-block;
	vertical-align: middle
}

a,.trans_icon_fade {
	color: #303030;
	text-decoration: none
}

a .icon .cur,.trans_icon_fade .icon .cur {
	display: none;
	opacity: 0
}

a:hover .icon .default,.trans_icon_fade:hover .icon .default {
	display: none;
	opacity: 0
}

a:hover .icon .cur,.trans_icon_fade:hover .icon .cur {
	display: block;
	opacity: 1
}

.box-s {
	box-sizing: border-box
}

.scale {
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
	transition: all 0.5s ease-in
}

@media (prefers-reduced-motion: reduce) {
	.scale {
		transition: none
	}
}

.scale:hover {
	-webkit-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	-o-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05)
}

.vwrap {
	display: none;
	z-index: 9777;
	width: 100%;
	position: fixed
}

.vwrap .videobtg {
	z-index: 900;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: .8;
	filter: alpha(opacity=80);
	overflow: hidden
}

.vwrap .videobox {
	z-index: 990;
	width: 70%;
	height: auto;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%)
}

.vwrap .icon-close {
	position: fixed;
	top: 5%;
	right: 11%;
	color: #fff;
	z-index: 99999;
	font-size: 30px
}

@keyframes warn {
	0% {
		transform: scale(0);
		opacity: 0
	}

	25% {
		transform: scale(0);
		opacity: .1
	}

	50% {
		transform: scale(0.1);
		opacity: .3
	}

	75% {
		transform: scale(0.5);
		opacity: .5
	}

	100% {
		transform: scale(1);
		opacity: 0
	}
}

@-webkit-keyframes warn {
	0% {
		-webkit-transform: scale(0);
		opacity: 0
	}

	25% {
		-webkit-transform: scale(0);
		opacity: .1
	}

	50% {
		-webkit-transform: scale(0.1);
		opacity: .3
	}

	75% {
		-webkit-transform: scale(0.5);
		opacity: .5
	}

	100% {
		-webkit-transform: scale(1);
		opacity: 0
	}
}

@-webkit-keyframes webSwipeTipAfter {
	0% {
		opacity: 1;
		filter: alpha(opacity=100)
	}

	100% {
		opacity: 0;
		filter: alpha(opacity=0);
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

@keyframes webSwipeTipAfter {
	0% {
		opacity: 1;
		filter: alpha(opacity=100)
	}

	100% {
		opacity: 0;
		filter: alpha(opacity=0);
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

@font-face {
	font-family:"impact";src:url("../fonts/impact-webfont.eot");src:url("../fonts/impact-webfont.eot") format("embedded-opentype"),url("../fonts/impact-webfont.woff2") format("woff2"),url("../fonts/impact-webfont.woff") format("woff"),url("../fonts/impact-webfont.ttf") format("truetype"),url("../fonts/impact-webfont.svg") format("svg")
}

@font-face {
	font-family:"didot";src:url("../fonts/didot.eot");src:url("../fonts/didot.eot") format("embedded-opentype"),url("../fonts/didot.woff2") format("woff2"),url("../fonts/didot.woff") format("woff"),url("../fonts/didot.ttf") format("truetype"),url("../fonts/didot.svg") format("svg")
}

.container {
	width: 1200px;
	margin: auto;
	overflow: hidden
}

.container::after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden
}

.big-container {
	width: 80%;
	min-width: 1200px;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto
}

.big-container::after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden
}

.line {
	width: 50px;
	height: 1px;
	background: #666;
	margin: 20px 0 0 0
}

.l-box {
	float: left
}

.r-box {
	float: right
}

.hidden {
	display: none
}

.mask {
	position: relative
}

.mask::before {
	content: " ";
	background: #000;
	opacity: 0.5;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.more {
	display: inline-block;
	padding: 10px 25px;
	background: #e60012;
	color: #fff;
	margin: auto
}

.more:hover {
	box-shadow: #6b6868 0px 1px 9px
}

.n,em {
	font-weight: 400;
	font-style: normal
}

.title {
	text-align: center;
	padding: 80px 0 60px 0
}

.title .cn {
	display: inline;
	font-size: 33px;
	font-weight: normal;
	position: relative;
	padding: 0 0 3px 0
}

.title .cn::before {
	content: " ";
	width: 90%;
	height: 1px;
	margin: auto;
	position: absolute;
	bottom: 0;
	left: 2px;
	background: #05664b
}

.title .en {
	color: #666;
	padding: 12px 0 0 0;
	font-family: "didot";
	font-size: 33px;
	font-weight: normal;
	font-style: italic;
	text-transform: uppercase
}

.title .remark {
	font-size: 14px;
	padding: 10px 20%;
	line-height: 1.8;
	margin: auto
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
	background: #fff;
	padding: 20px 0;
	box-shadow: 0 1px 10px rgba(0,0,0,0.15);
	overflow: hidden
}

.header .logo {
	float: left;
	padding: 0 0 0 5%
}

.header .logo img {
	height: 45px
}

.header .r-box {
	width: auto;
	position: absolute;
	bottom: 25%;
	right: 5%;
	text-align: right
}

.header .menu {
	padding: 23px 0 0 0
}

.header .menu .item {
	display: inline-block;
	text-align: center;
	padding: 5px 20px;
	margin: 0 10px;
	position: relative
}

.header .menu .item::after,.header .menu .item::before {
	content: " ";
	position: absolute;
	bottom: -10px;
	width: 0;
	height: 2px;
	background: #e60012;
	transition: all 0.3s ease-in
}

@media (prefers-reduced-motion: reduce) {
	.header .menu .item::after,.header .menu .item::before {
		transition: none
	}
}

.header .menu .item::before {
	left: 0
}

.header .menu .item::after {
	right: 0
}

.header .menu .item.cur::after,.header .menu .item.cur::before,.header .menu .item:hover::after,.header .menu .item:hover::before {
	width: 50%
}

.footer {
	padding: 60px 0;
	background: #333;
	color: #9b9b9b
}

.footer .block {
	width: 80%;
	min-width: 1200px;
	margin: auto;
	font-size: 14px;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	overflow: hidden
}

.footer .l-box {
	width: 72%;
	float: left
}

.footer .l-box ul {
	display: flex;
	justify-content: space-between;
	text-align: center
}

.footer .l-box li {
	width: 20%;
	min-height: 250px;
	padding: 10px;
	position: relative;
	line-height: 1.6;
	float: left
}

.footer .l-box li h2 {
	width: 80%;
	font-size: 20px;
	color: #e4e4e4;
	padding: 0 0 10px 0;
	margin: 0 auto 10px auto;
	position: relative;
	border-bottom: 1px solid #5f5f5f;
	text-align: center
}

.footer .l-box li h2:before {
	content: "";
	width: 20%;
	height: 3px;
	background: #c6c6c6;
	position: absolute;
	bottom: -2px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%)
}

.footer .l-box li a {
	color: #adadad;
	display: inline;
	font-size: 12px;
	padding: 5px
}

.footer .r-box {
	width: 25%;
	float: right;
	text-align: center
}

.footer .r-box .tit {
	padding: 20px 0;
	color: #d4d4d4
}

.banner .swiper-button-prev,.banner .swiper-button-next {
	width: 65px;
	height: 65px
}

.banner .swiper-button-prev {
	background: url(../images/banner-arrow-l.png);
	left: 3%
}

.banner .swiper-button-next {
	background: url(../images/banner-arrow-r.png);
	right: 3%
}

.banner.home-banner .swiper-slide {
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
	transition: all 5.8s ease-in
}

@media (prefers-reduced-motion: reduce) {
	.banner.home-banner .swiper-slide {
		transition: none
	}
}

.banner.home-banner .swiper-slide-active {
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
	transition: all 5.8s ease-in
}

@media (prefers-reduced-motion: reduce) {
	.banner.home-banner .swiper-slide-active {
		transition: none
	}
}

#home>div:last-child {
	padding-bottom: 40px
}

#home .pro_series .q-list1 {
	overflow: hidden
}

#home .pro_series .q-list1 li {
	float: left;
	width: 50%;
	margin-bottom: 20px
}

#home .pro_series .q-list1 li:nth-child(3) .pic,#home .pro_series .q-list1 li:nth-child(4) .pic {
	float: right
}

#home .pro_series .q-list1 .inner {
	background-color: #fff;
	margin: 0 10px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	overflow: hidden;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s
}

#home .pro_series .q-list1 .inner:hover {
	-webkit-box-shadow: 0 5px 20px rgba(0,0,0,0.15);
	-moz-box-shadow: 0 5px 20px rgba(0,0,0,0.15);
	box-shadow: 0 5px 20px rgba(0,0,0,0.15)
}

#home .pro_series .q-list1 .pic {
	float: left;
	width: 65.96%
}

#home .pro_series .q-list1 .pic a {
	display: block;
	position: relative;
	padding-top: 72.58%;
	overflow: hidden
}

#home .pro_series .q-list1 .pic img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: 3s;
	-moz-transition: 3s;
	transition: 3s
}

#home .pro_series .q-list1 .pic:hover img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-moz-transform: scale(1.05);
	transform: scale(1.05)
}

#home .pro_series .q-list1 .txt {
	overflow: hidden;
	padding: 114px 35px 0 30px
}

#home .pro_series .q-list1 .txt h4 {
	font-weight: 400;
	font-size: 12px;
	color: #1e1e1e;
	margin-bottom: 7px
}

#home .pro_series .q-list1 .txt h3 {
	position: relative;
	font-weight: 400;
	font-size: 22px;
	padding-bottom: 15px;
	color: #1e1e1e;
	margin-bottom: 26px
}

#home .pro_series .q-list1 .txt h3:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 15px;
	height: 3px;
	background-color: #1e1e1e
}

#home .pro_series .q-list1 .txt p {
	font-size: 14px;
	margin-bottom: 30px
}

#home .pro_series .q-list1 .txt .btn {
	color: #aeaeae;
	padding-left: 23px;
	background: url(../images/icon-btn1.png) left center no-repeat
}

#home .pro_series .q-list1 .txt .btn:hover {
	background-image: url(../images/icon-btn1-on.png);
	color: #277fff
}

#home .about .con {
	padding: 50px 0
}

#home .about .l-box,#home .about .r-box {
	width: 50%
}

#home .about .l-box {
	padding: 50px 30px;
	text-align: center
}

#home .about .l-box .tit {
	padding: 10px 0
}

#home .about .l-box .remark {
	color: #767676;
	line-height: 1.7;
	font-size: 14px
}

#home .about .l-box .remark ul {
	overflow: hidden;
	padding: 70px 0 0 0;
	color: #319279
}

#home .about .l-box .remark ul li {
	display: inline-block;
	padding: 0 60px 0 0;
	line-height: 1.1
}

#home .about .l-box .remark ul li h2 {
	font-size: 60px;
	font-family: impact
}

#home .about .l-box .remark ul li p {
	color: #444
}

#home .about .l-box .more {
	margin: 30px 0 0 0
}

#home .about .video {
	display: block
}

#home .about .video::after {
	color: #fff;
	content: "\e64c";
	font-family: "iconfont";
	font-size: 80px;
	position: absolute;
	top: 45%;
	left: 45%
}

#home .technology .fl {
	width: 33.3%;
	box-sizing: border-box;
	padding-right: 40px
}

#home .technology .fl h2 {
	font-size: 16px;
	color: #999999
}

#home .technology .fl h3 {
	font-size: 40px;
	color: #666;
	margin-top: 20px;
	font-family: "Didot";
	font-style: italic
}

#home .technology .fl h4 {
	font-size: 38px;
	color: #333;
	margin: 20px 0
}

#home .technology .fl h5 {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin: 34px 0
}

#home .technology .fl:nth-child(1),#home .technology .fl:nth-child(3) {
	width: 30%
}

#home .technology .fl:nth-child(2) {
	width: 40%
}

#home .technology .right {
	box-sizing: border-box;
	padding-right: 0
}

#home .news {
	overflow: hidden;
	padding: 0 0 50px 0
}

#home .news .slick-news {
	margin: 0 -290px 10px;
	padding: 0 0 30px 0
}

#home .news .slick-news .inner {
	padding: 20px 30px;
	margin: 0 36px
}

#home .news .slick-news .slick-current .inner {
	padding: 5px 0
}

#home .news .slick-news .slick-current .pic {
	margin-top: 0;
	-webkit-box-shadow: 0 5px 25px rgba(0,0,0,0.15);
	-moz-box-shadow: 0 5px 25px rgba(0,0,0,0.15);
	box-shadow: 0 5px 25px rgba(0,0,0,0.15)
}

#home .news .slick-news .pic {
	position: relative;
	padding-top: 58.8%;
	overflow: hidden
}

#home .news .slick-news .pic img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: 3s;
	-moz-transition: 3s;
	transition: 3s
}

#home .news .slick-news .pic:hover img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-moz-transform: scale(1.05);
	transform: scale(1.05)
}

#home .news .slick-news .txt {
	padding: 28px 0 0
}

#home .news .slick-news .txt .time {
	float: left;
	background: #45917d;
	color: #fff;
	text-align: center;
	padding: 5px 10px;
	margin-right: 20px;
	font-size: 14px;
	transition: all 0.5s ease-in
}

@media (prefers-reduced-motion: reduce) {
	#home .news .slick-news .txt .time {
		transition: none
	}
}

#home .news .slick-news .txt .tip {
	display: block;
	width: 80px;
	height: 30px;
	line-height: 30px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-align: center;
	background-color: #329cff;
	color: #fff;
	margin-bottom: 16px
}

#home .news .slick-news .txt h4 {
	font-weight: 400;
	margin-bottom: 20px
}

#home .news .slick-news .txt h4 a {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 20px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s
}

#home .news .slick-news .txt p {
	font-size: 14px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	display: -webkit-box
}

#home .news .slick-news .slick-arrow {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 65px;
	height: 65px;
	background: no-repeat center center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	font-size: 0;
	border: none;
	z-index: 55;
	cursor: pointer
}

#home .news .slick-news .slick-prev {
	left: 14%;
	background-image: url(../images/narrow-l.png)
}

#home .news .slick-news .slick-prev:hover {
	background-image: url(../images/narrow-l1.png)
}

#home .news .slick-news .slick-next {
	right: 14%;
	background-image: url(../images/narrow-r.png)
}

#home .news .slick-news .slick-next:hover {
	background-image: url(../images/narrow-r1.png)
}

#home .news .slick-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	text-align: center;
	font-size: 0
}

#home .news .slick-dots li {
	display: inline-block
}

#home .news .slick-dots li button {
	width: 80px;
	height: 3px;
	border: 0;
	font-size: 0;
	background-color: #eee;
	cursor: pointer
}

#home .news .slick-dots li.slick-active button {
	background-color: #037d5d
}

#home .news .more {
	margin: 30px 0 0 0
}

#home .cooperation .list {
	position: relative;
	padding: 30px 0
}

#home .cooperation .list .swiper-arrow-prev,#home .cooperation .list .swiper-arrow-next {
	width: 66px;
	height: 66px;
	position: absolute;
	top: 30%
}

#home .cooperation .list .swiper-arrow-prev {
	background: url(../images/arrow-l.png);
	left: 0
}

#home .cooperation .list .swiper-arrow-next {
	background: url(../images/arrow-r.png);
	right: 0
}

#home .cooperation .list .swiper-container {
	width: 90%;
	margin: auto
}

.parrner {
	overflow: hidden;
	margin: 20px 0 0 0;
	display: flex
}

.parrner .l-box {
	background: #eee;
	width: 25%;
	padding: 3% 0 0 5%
}

.parrner .l-box .line1 {
	height: 2px;
	width: 30%;
	margin: 0 0 20px 0
}

.parrner .l-box .title {
	text-align: left
}

.parrner .l-box .title .cn {
	display: inline-block;
	padding: 45px 0 0 0
}

.parrner .l-box .title .cn::before {
	display: none
}

.parrner .l-box .line2 {
	margin: 15px 0 50px 0
}

.parrner .l-box .more {
	background: #000
}

.parrner .r-box {
	width: 75%;
	padding: 50px 0;
	background: #fff
}

.parrner .r-box .list a {
	display: block;
	width: 25%;
	float: left;
	height: 15vh;
	background-position: center;
	background-size: 70%;
	background-repeat: no-repeat
}

#about {
	background: #f5f5f5
}

#about .company {
	background: url(../images/company_bg.jpg) center center no-repeat;
	height: 749px
}

#about .company .l-box,#about .company .r-box {
	width: 50%
}

#about .company .l-box {
	padding: 14% 0 0 15%
}

#about .company .l-box .title {
	padding: 0;
	text-align: left
}

#about .company .l-box .title .en {
	padding: 20px 0 0 0;
	font-size: 70px;
	color: #999;
	line-height: 0.9
}

#about .company .l-box .title .cn {
	display: inline-block;
	padding: 40px 0 40px 20px
}

#about .company .l-box .title .cn::before {
	display: none
}

#about .company .l-box .pic {
	margin: 30px 0 0 0
}

#about .company .l-box .pic img {
	margin: 0
}

#about .company .l-box .tit {
	padding: 40px 0 40px 20px;
	font-weight: normal;
	font-size: 40px
}

#about .company .l-box .more {
	color: #000;
	padding: 8px 40px;
	border-radius: 4px
}

#about .company .r-box {
	position: relative;
	padding: 10% 0 0 0
}

#about .company .r-box h2 {
	font-size: 33px;
	font-weight: normal
}

#about .company .r-box .remark {
	font-size: 14px;
	color: #444;
	padding: 70px 0 0 0;
	line-height: 2;
	max-width: 600px
}

#about .company .r-box .remark ul {
	overflow: hidden;
	padding: 70px 0 0 0;
	color: #319279
}

#about .company .r-box .remark ul li {
	display: inline-block;
	padding: 0 60px 0 0;
	line-height: 1.1
}

#about .company .r-box .remark ul li h2 {
	font-size: 60px;
	font-family: impact
}

#about .company .r-box .remark ul li p {
	color: #444
}

#about .history {
	background: url(../images/history_bg.jpg) center center no-repeat;
	height: 737px;
	margin: 20px 0 0 0;
	color: #fff
}

#about .history .content {
	width: 750px;
	margin: auto
}

#about .history .content .swiper-slide .l-box {
	width: 40%;
	border-right: 1px solid #fff;
	padding: 20px 0
}

#about .history .content .swiper-slide .l-box h2 {
	font-size: 120px;
	color: #bec1c1;
	font-family: impact;
	letter-spacing: 1px
}

#about .history .content .swiper-slide .r-box {
	width: 60%;
	padding: 0px 0 0 40px;
	line-height: 1.7;
	font-size: 14px
}

#about .history .content .swiper-slide .r-box h2 {
	color: #319279
}

#about .history .content .swiper-slide .r-box .remark {
	font-size: 12px;
	color: #bec1c1;
	line-height: 2.3
}

#about .history .nav {
	padding: 120px 0 0 0;
	overflow: hidden;
	position: relative
}

#about .history .nav::before {
	content: " ";
	width: 100%;
	height: 1px;
	margin: auto;
	position: absolute;
	top: 140px;
	left: 2px;
	z-index: 1;
	background: #4a4d4d
}

#about .history .nav .container {
	position: relative;
	overflow: initial
}

#about .history .nav .container .swiper-prev,#about .history .nav .container .swiper-next {
	position: absolute;
	top: -10px
}

#about .history .nav .container .swiper-prev i,#about .history .nav .container .swiper-next i {
	font-size: 50px;
	color: #999
}

#about .history .nav .container .swiper-prev {
	left: -50px
}

#about .history .nav .container .swiper-next {
	right: -50px
}

#about .history .nav .swiper-slide {
	background: url(../images/ruler.png) left top repeat-x;
	color: #999;
	text-align: center;
	z-index: 3;
	position: relative
}

#about .history .nav .swiper-slide::before {
	content: " ";
	width: 2px;
	height: 30px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	background: #4a4d4d
}

#about .history .nav .swiper-slide h2 {
	font-size: 22px;
	padding: 40px 10px;
	position: relative;
	display: inline-block
}

#about .history .nav .swiper-slide.cur,#about .history .nav .swiper-slide:hover {
	color: #fefefe
}

#about .patent .about-tit .cn {
	color: #191919
}

#about .patent .container {
	position: relative;
	overflow: initial;
	padding: 0 0 80px 0
}

#about .patent .container .swiper-prev,#about .patent .container .swiper-next {
	position: absolute;
	top: 38%
}

#about .patent .container .swiper-prev i,#about .patent .container .swiper-next i {
	font-size: 50px;
	color: #999
}

#about .patent .container .swiper-prev {
	left: -40px
}

#about .patent .container .swiper-next {
	right: -40px
}

#about .patent .container .swiper-slide {
	text-align: center;
	padding: 0 35px
}

#about .patent .container .swiper-slide img {
	width: 100%
}

#about .machine {
	height: 729px;
	background: url(../images/machine_bg.jpg) no-repeat;
	background-size: cover;
	color: #fff;
	box-sizing: border-box;
	padding: 100px 0 0 0
}

#about .machine h2 {
	font-size: 33px;
	text-align: center;
	margin-bottom: 20px
}

#about .machine h3 {
	font-size: 14px;
	text-align: center
}

#about .machine .line1 {
	height: 167px;
	background: url(../images/line.png) no-repeat;
	margin-top: 256px;
	position: relative;
	background-size: contain
}

#about .machine .num {
	height: 100px;
	position: absolute
}

#about .machine .num h4 {
	font-size: 50px
}

#about .machine .num h5 {
	font-size: 15px
}

#about .machine .num1 {
	left: 14%;
	bottom: 46%
}

#about .machine .num2 {
	left: 27%;
	bottom: 88%
}

#about .machine .num3 {
	left: 42%;
	bottom: 71%
}

#about .machine .num4 {
	left: 64%;
	bottom: 120%
}

#about .machine .num5 {
	left: 83%;
	bottom: 56%
}

#about .photo .about-tit .cn {
	color: #191919
}

#about .photo .swiper-container {
	width: 99%;
	padding: 0 0 150px 0
}

#about .photo .swiper-container .swiper-slide {
	padding: 0 10px
}

#about .photo .swiper-container .swiper-slide img {
	width: 100%
}

#products .series .list {
	padding: 0 0 40px 0
}

#products .series .list a {
	display: inline-block;
	vertical-align: top;
	width: 47%;
	height: 35vh;
	margin: 40px 2.9% 0 0;
	padding: 8% 0 0 5%;
	border: 1px solid #c6f7ea;
	background-repeat: no-repeat;
	background-position: 85% center;
	background-size: auto 90%;
	transition: all 0.7s ease-in
}

@media (prefers-reduced-motion: reduce) {
	#products .series .list a {
		transition: none
	}
}

#products .series .list a .name {
	color: #037d5d
}

#products .series .list a .line {
	margin: 2% 0 0 0;
	height: 2px
}

#products .series .list a span {
	margin: 5% 0 0 0;
	border: 1px solid #037d5d;
	color: #037d5d;
	background: #fff;
	transition: all 0.7s ease-in
}

@media (prefers-reduced-motion: reduce) {
	#products .series .list a span {
		transition: none
	}
}

#products .series .list a:nth-child(2n) {
	margin-right: 0
}

#products .series .list a:hover {
	box-shadow: #c4c1c1 0px 1px 10px;
	background-size: auto 95%
}

#products .series .list a:hover span {
	color: #fff;
	background: #037d5d
}

#products .product_list .nav {
	padding: 30px 0;
	text-align: center
}

#products .product_list .nav a {
	display: inline-block;
	margin: 0 5px;
	padding: 10px 30px;
	border: 1px solid #c6f7ea
}

#products .product_list .nav a:hover,#products .product_list .nav a.cur {
	background: #01825d;
	color: #fff
}

#products .product_list .list {
	padding: 0 0 40px 0
}

#products .product_list .list a {
	display: inline-block;
	vertical-align: top;
	width: 47%;
	min-height: 35vh;
	margin: 40px 2.9% 0 0;
	padding: 0 0 0 5%;
	border: 1px solid #c6f7ea;
	background-repeat: no-repeat;
	background-position: 85% center;
	background-size: auto 90%;
	transition: all 0.7s ease-in
}

@media (prefers-reduced-motion: reduce) {
	#products .product_list .list a {
		transition: none
	}
}

#products .product_list .list a .remark {
	line-height: 2.2;
	padding: 80px 0 20px 0
}

#products .product_list .list a:nth-child(2n) {
	margin-right: 0
}

#products .product_list .list a:hover {
	box-shadow: #c4c1c1 0px 1px 10px;
	background-size: auto 95%
}

#products .product_list .list a:hover span {
	color: #fff;
	background: #037d5d
}

#news {
	background: #f7f7f7
}

#news .nav {
	background-color: #fff;
	height: 45px;
	background-color: #f7f7f7
}

#news .nav .list {
	width: 757px;
	height: 45px;
	margin: 0 auto
}

#news .nav .list .active {
	background-color: #292929
}

#news .nav .list .active a {
	color: #fff !important
}

#news .nav .list .item {
	width: 32%;
	height: 100%;
	float: left;
	font-size: 16px;
	text-align: center;
	line-height: 45px;
	transition: all 0.3s ease-in;
	position: relative
}

#news .nav .list .item a {
	color: #515151;
	display: block
}

#news .nav .list .item:after {
	content: "";
	border-left: 1px solid #ccc;
	height: 50%;
	width: 1px;
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -11px
}

#news .nav .list .item:hover {
	background-color: #01825d
}

#news .nav .list .item:hover a {
	color: #fff
}

#news .list .news_item {
	display: block;
	height: 314px;
	background-color: #fff;
	margin: 40px auto;
	box-sizing: border-box;
	padding: 25px;
	transition: all 0.5s ease-in
}

#news .list .news_item:hover {
	box-shadow: 6px 7px 10px #ccc
}

#news .list .news_item:hover img {
	transform: scale(1.1)
}

#news .list .news_item .img {
	width: 444px;
	height: 268px;
	overflow: hidden;
	float: left
}

#news .list .news_item .img img {
	width: 100%;
	transition: all 0.5s ease-in
}

#news .list .news_item .text {
	float: left;
	box-sizing: border-box;
	width: 50%;
	padding: 70px 0 0 40px
}

#news .list .news_item .text h2 {
	font-size: 18px;
	color: #333;
	margin-bottom: 20px
}

#news .list .news_item .text h3 {
	font-size: 15px;
	color: #666;
	line-height: 1.5;
	width: 427px
}

#news .list .news_item .date {
	float: right;
	margin-top: 85px;
	margin-right: 20px
}

#news .list .news_item .date h4 {
	font-size: 58px;
	color: #037d5d
}

#news .list .news_item .date h5 {
	font-size: 15px;
	color: #666;
	text-align: center
}

#news .news_show {
	padding: 60px 0
}

#news .news_show .infoPage {
	width: 1010px;
	padding: 48px 0px 0px;
	background-color: #fff;
	margin: 0px auto;
	position: relative;
	overflow: hidden
}

#news .news_show .infoPage .lbot {
	width: 0%;
	height: 8px;
	background-color: #00ab7a;
	position: absolute;
	left: 0px;
	top: 0px
}

#news .news_show .infoPage .lbot i {
	width: 0%;
	height: 8px;
	background-color: #01825d;
	display: block
}

#news .news_show .infoPage.action .lbot {
	width: 100%
}

#news .news_show .infoPage.action .lbot i {
	width: 160px
}

#news .news_show .infoPage a:link,#news .news_show .infoPage a:visited {
	color: #999999
}

#news .news_show .infoPage a:active,#news .news_show .infoPage a:hover {
	color: #666
}

#news .news_show .infoT {
	border-bottom: 1px solid #ccc;
	padding-bottom: 32px;
	margin: 0px 32px 30px;
	position: relative
}

#news .news_show .infoT .t {
	font-size: 18px;
	color: #666;
	line-height: 1.2;
	margin-bottom: 14px
}

#news .news_show .infoT .time {
	color: #999999;
	font-size: 18px;
	padding-right: 180px
}

#news .news_show .infoT .nsharp {
	float: right;
	display: block
}

#news .news_show .nsharp a {
	padding-left: 20px;
	height: 20px;
	margin-left: 6px;
	background: url(../images/sharp3.png);
	float: right
}

#news .news_show .nsharp a.i1 {
	background-position: 0px 0px
}

#news .news_show .nsharp a.i1:hover {
	background-position: 0px -20px
}

#news .news_show .nsharp a.i2 {
	background-position: -50px 0px
}

#news .news_show .nsharp a.i2:hover {
	background-position: -50px -20px
}

#news .news_show .nsharp a.i3 {
	background-position: -95px 0px
}

#news .news_show .nsharp a.i3:hover {
	background-position: -95px -20px
}

#news .news_show .pageCon {
	padding-bottom: 50px;
	overflow: hidden;
	line-height: 2;
	color: #666;
	font-size: 14px;
	margin: 0px 32px
}

#news .news_show .pageCon img {
	max-width: 100%
}

#news .news_show .pageCon a:link,#news .news_show .pageCon a:visited {
	color: #333333
}

#news .news_show .pageCon a:active,#news .news_show .pageCon a:hover {
	color: #c62923
}

#news .news_show .infoPaging a:link,#news .news_show .infoPaging a:visited {
	color: #666666
}

#news .news_show .infoPaging a:active,#news .news_show .infoPaging a:hover {
	color: #fff
}

#news .news_show .infoPaging {
	border-top: 1px solid #cccccc;
	height: 58px;
	margin-top: 5%;
	text-align: center;
	letter-spacing: -0.31em;
	*letter-spacing: normal
}

#news .news_show .infoPaging a {
	line-height: 58px;
	border-left: 1px solid #cccccc;
	font: 18px/58px "acaslonpro", "times new roman", tahoma, georgia;
	display: inline-block;
	zoom: 1;
	*display: inline;
	letter-spacing: normal;
	word-spacing: normal;
	vertical-align: top
}

#news .news_show .infoPaging a.act {
	background-color: #c52721;
	color: #fff
}

#news .news_show .infoPaging a:hover {
	background-color: #ccc;
	color: #fff
}

#news .news_show .infoPaging .pprev {
	background: url(../images/prev11.png) no-repeat scroll 8% center;
	padding: 0px 30px 0px 37px;
	border-left: 0px none;
	font-size: 16px
}

#news .news_show .infoPaging .pprev:hover {
	background-position: 0px center;
	background-color: transparent;
	color: #cc0000
}

#news .news_show .infoPaging .pnext {
	background: url(../images/next11.png) no-repeat scroll 92% center;
	padding: 0px 37px 0px 30px;
	font-size: 16px
}

#news .news_show .infoPaging .pnext:hover {
	background-position: 100% center;
	background-color: transparent;
	color: #cc0000
}

#news .news_show .infoBox {
	width: 370px;
	margin: 0px auto;
	line-height: 59px;
	font-size: 16px
}

#news .news_show .infoBox .list {
	background: url(../images/list1.png) no-repeat scroll center center #999;
	padding-left: 68px;
	height: 59px;
	display: inline-block;
	background: url(../images/list1.png) no-repeat scroll center center #999;
	padding-left: 68px;
	height: 59px;
	display: inline-block;
	width: auto
}

#news .news_show .infoBox .list:hover {
	background-color: #cc0000;
	background-color: #cc0000
}

#news .news_show .infoBox .pprev {
	background: url(../images/prev11.png) no-repeat scroll 8% center;
	padding: 0px 0px 0px 37px;
	float: left;
	display: block;
	height: 100%
}

#news .news_show .infoBox .pprev:hover {
	background-position: 0px center
}

#news .news_show .infoBox .pnext {
	border-left: 0px none;
	background: url(../images/next11.png) no-repeat scroll 92% center;
	padding: 0px 37px 0px 0px;
	float: right;
	display: block;
	height: 100%
}

#news .news_show .infoBox .pnext:hover {
	background-position: 100% center
}

#advtage .list .item {
	padding: 20px 0;
	overflow: hidden
}

#advtage .list .item .pic,#advtage .list .item .text {
	width: 50%;
	float: left
}

#advtage .list .item .pic {
	padding: 0 0 0 3%
}

#advtage .list .item .pic img {
	width: 100%
}

#advtage .list .item .text {
	padding: 7% 10%
}

#advtage .list .item .text .title {
	text-align: left;
	padding: 0
}

#advtage .list .item .text .title::before {
	float: left;
	content: " ";
	width: 60px;
	height: 90px;
	background: url(../images/icon1.jpg) left center no-repeat
}

#advtage .list .item .text h2 {
	font-size: 33px;
	font-weight: normal
}

#advtage .list .item .text h2::before {
	display: inline-block;
	vertical-align: middle;
	content: " ";
	width: 60px;
	height: 50px;
	background: url(../images/icon1.jpg) left center no-repeat
}

#advtage .list .item .text .line {
	margin: 5% 0 0 15%
}

#advtage .list .item .text .remark {
	padding: 20px 0 0 0;
	font-size: 14px;
	line-height: 2.2;
	color: #666
}

#advtage .list .item .text .remark b,#advtage .list .item .text .remark strong {
	color: #037d5d;
	font-size: 20px
}

#advtage .list .item:nth-child(2n) .pic {
	padding: 0 3% 0 0
}

#advtage .list .item:nth-child(2n) .text {
	float: right
}

#service .process {
	padding-bottom: 30px
}

#service .service-intro {
	margin-left: -12px;
	margin-right: -12px;
	overflow: hidden
}

#service .service-intro .item {
	padding: 0 12px;
	cursor: pointer
}

#service .service-intro .item .box {
	position: relative;
	background: #f8f8f8;
	height: 400px;
	overflow: hidden
}

#service .service-intro .item .box .cont {
	position: absolute;
	padding: 35px;
	height: 275px;
	bottom: -115px;
	background: #f8f8f8;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s
}

#service .service-intro .item .box .cont h3 {
	font-size: 24px;
	color: #2c2c2c
}

#service .service-intro .item .box .cont h4 {
	margin-top: 20px;
	font-size: 18px;
	color: #2c2c2c
}

#service .service-intro .item .box .cont .des {
	margin-top: 10px;
	color: #6c6c6c;
	line-height: 28px;
	opacity: 0;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s
}

#service .service-intro .item .box:hover .cont {
	bottom: 0
}

#service .service-intro .item .box:hover .cont .des {
	opacity: 1
}

#service .pic-scale {
	position: relative;
	overflow: hidden
}

#service .faq {
	padding: 0 0 75px 0;
	text-align: center
}

#service .faq .title {
	font-size: 30px;
	color: #333;
	padding: 50px 0
}

#service .faq .list {
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start
}

#service .faq .list .item {
	position: relative;
	float: left;
	width: 30%;
	margin: 1.5%;
	text-align: left
}

#service .faq .list .item a {
	display: block;
	font-size: 16px;
	color: #666;
	padding: 15px;
	border-bottom: 1px solid #ccc
}

#service .faq .list .item::after {
	font-family: "iconfont" !important;
	content: "\e630";
	position: absolute;
	top: 5px;
	right: 3%;
	font-size: 30px
}

#service .faq .list .item .reply {
	padding: 15px 20px;
	font-size: 14px;
	line-height: 1.8
}

#service .faq .list .item .reply b {
	font-size: 18px;
	color: red
}

#service .faq .more {
	display: inline-block;
	border: 1px solid #999;
	padding: 20px 100px;
	margin: 50px auto
}

#service .map {
	height: 70vh
}

#service .map #bdmap {
	width: 70%;
	float: left;
	height: 100%
}

#service .map #bdmap * {
	max-width: inherit;
	box-sizing: content-box
}

#service .map .con {
	width: 30%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	color: #fff;
	float: left;
	padding: 5% 4vh
}

#service .map .con .tit {
	font-size: 26px;
	text-align: center
}

#service .map .con .remark {
	padding: 5vh 0 0 0;
	font-size: 14px
}

#service .map .con .remark p {
	padding: 10px 0
}

#service .map .con .remark img {
	display: inline-block;
	vertical-align: middle;
	padding: 0 15px 0 0;
	width: 45px
}

.fenye {
	padding: 30px 0;
	text-align: center;
	overflow: hidden;
	clear: both
}

.fenye li {
	display: inline-block
}

.fenye a,.fenye span {
	zoom: 1;
	display: inline-block;
	vertical-align: middle;
	padding: 12px 17px;
	font-size: 14px;
	color: #414141;
	background: #fff;
	margin-bottom: 5px;
	margin-right: 8px
}

.fenye a:hover,.fenye span.current {
	background: #292929;
	color: #fff
}

.cd-top {
	display: inline-block;
	height: 40px;
	width: 40px;
	position: fixed;
	bottom: 40px;
	right: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.05);
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: rgba(232,98,86,0.8) url(../images/cd-top-arrow.svg) no-repeat center 50%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s
}

.cd-top.cd-is-visible {
	visibility: visible;
	opacity: 1
}

.cd-top.cd-fade-out {
	opacity: .5
}

.no-touch .cd-top:hover {
	background-color: #e86256;
	opacity: 1
}

@media only screen and (min-width: 768px) {
	.cd-top {
		right: 20px;
		bottom: 20px
	}
}

@media only screen and (min-width: 1024px) {
	.cd-top {
		height: 60px;
		width: 60px;
		right: 30px;
		bottom: 30px
	}
}
