@charset "UTF-8";

.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
}

@-webkit-keyframes bounce {
	0%,100%,20%,53%,80% {
		-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
		transition-timing-function: cubic-bezier(.215,.61,.355,1);
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0)
	}

	40%,43% {
		-webkit-transition-timing-function: cubic-bezier(.755,.050,.855,.060);
		transition-timing-function: cubic-bezier(.755,.050,.855,.060);
		-webkit-transform: translate3d(0,-30px,0);
		transform: translate3d(0,-30px,0)
	}

	70% {
		-webkit-transition-timing-function: cubic-bezier(.755,.050,.855,.060);
		transition-timing-function: cubic-bezier(.755,.050,.855,.060);
		-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%,100%,20%,53%,80% {
		-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
		transition-timing-function: cubic-bezier(.215,.61,.355,1);
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0)
	}

	40%,43% {
		-webkit-transition-timing-function: cubic-bezier(.755,.050,.855,.060);
		transition-timing-function: cubic-bezier(.755,.050,.855,.060);
		-webkit-transform: translate3d(0,-30px,0);
		transform: translate3d(0,-30px,0)
	}

	70% {
		-webkit-transition-timing-function: cubic-bezier(.755,.050,.855,.060);
		transition-timing-function: cubic-bezier(.755,.050,.855,.060);
		-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;
	-ms-transform-origin: center bottom;
	transform-origin: center bottom
}

@-webkit-keyframes flash {
	0%,100%,50% {
		opacity: 1
	}

	25%,75% {
		opacity: 0
	}
}

@keyframes flash {
	0%,100%,50% {
		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,.75,1);
		transform: scale3d(1.25,.75,1)
	}

	40% {
		-webkit-transform: scale3d(.75,1.25,1);
		transform: scale3d(.75,1.25,1)
	}

	50% {
		-webkit-transform: scale3d(1.15,.85,1);
		transform: scale3d(1.15,.85,1)
	}

	65% {
		-webkit-transform: scale3d(.95,1.05,1);
		transform: scale3d(.95,1.05,1)
	}

	75% {
		-webkit-transform: scale3d(1.05,.95,1);
		transform: scale3d(1.05,.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,.75,1);
		transform: scale3d(1.25,.75,1)
	}

	40% {
		-webkit-transform: scale3d(.75,1.25,1);
		transform: scale3d(.75,1.25,1)
	}

	50% {
		-webkit-transform: scale3d(1.15,.85,1);
		transform: scale3d(1.15,.85,1)
	}

	65% {
		-webkit-transform: scale3d(.95,1.05,1);
		transform: scale3d(.95,1.05,1)
	}

	75% {
		-webkit-transform: scale3d(1.05,.95,1);
		transform: scale3d(1.05,.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;
	-ms-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(.9,.9,.9) rotate3d(0,0,1,-3deg);
		transform: scale3d(.9,.9,.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(.9,.9,.9) rotate3d(0,0,1,-3deg);
		transform: scale3d(.9,.9,.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%,100%,20%,40%,60%,80% {
		-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
		transition-timing-function: cubic-bezier(.215,.61,.355,1)
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3,.3,.3);
		transform: scale3d(.3,.3,.3)
	}

	20% {
		-webkit-transform: scale3d(1.1,1.1,1.1);
		transform: scale3d(1.1,1.1,1.1)
	}

	40% {
		-webkit-transform: scale3d(.9,.9,.9);
		transform: scale3d(.9,.9,.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(.97,.97,.97);
		transform: scale3d(.97,.97,.97)
	}

	100% {
		opacity: 1;
		-webkit-transform: scale3d(1,1,1);
		transform: scale3d(1,1,1)
	}
}

@keyframes bounceIn {
	0%,100%,20%,40%,60%,80% {
		-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
		transition-timing-function: cubic-bezier(.215,.61,.355,1)
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3,.3,.3);
		transform: scale3d(.3,.3,.3)
	}

	20% {
		-webkit-transform: scale3d(1.1,1.1,1.1);
		transform: scale3d(1.1,1.1,1.1)
	}

	40% {
		-webkit-transform: scale3d(.9,.9,.9);
		transform: scale3d(.9,.9,.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(.97,.97,.97);
		transform: scale3d(.97,.97,.97)
	}

	100% {
		opacity: 1;
		-webkit-transform: scale3d(1,1,1);
		transform: scale3d(1,1,1)
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
	-webkit-animation-duration: .75s;
	animation-duration: .75s
}

@-webkit-keyframes bounceInDown {
	0%,100%,60%,75%,90% {
		-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
		transition-timing-function: cubic-bezier(.215,.61,.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%,100%,60%,75%,90% {
		-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
		transition-timing-function: cubic-bezier(.215,.61,.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%,100%,60%,75%,90% {
		-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
		transition-timing-function: cubic-bezier(.215,.61,.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%,100%,60%,75%,90% {
		-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
		transition-timing-function: cubic-bezier(.215,.61,.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%,100%,60%,75%,90% {
		-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
		transition-timing-function: cubic-bezier(.215,.61,.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%,100%,60%,75%,90% {
		-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
		transition-timing-function: cubic-bezier(.215,.61,.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%,100%,60%,75%,90% {
		-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
		transition-timing-function: cubic-bezier(.215,.61,.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%,100%,60%,75%,90% {
		-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
		transition-timing-function: cubic-bezier(.215,.61,.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(.9,.9,.9);
		transform: scale3d(.9,.9,.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(.3,.3,.3);
		transform: scale3d(.3,.3,.3)
	}
}

@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9,.9,.9);
		transform: scale3d(.9,.9,.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(.3,.3,.3);
		transform: scale3d(.3,.3,.3)
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
	-webkit-animation-duration: .75s;
	animation-duration: .75s
}

@-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,50px,0);
		transform: translate3d(0,50px,0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0,50px,0);
		transform: translate3d(0,50px,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(.95,.95,.95);
		transform: perspective(400px) scale3d(.95,.95,.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(.95,.95,.95);
		transform: perspective(400px) scale3d(.95,.95,.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-animation-duration: .75s;
	animation-duration: .75s;
	-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-animation-duration: .75s;
	animation-duration: .75s
}

@-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(.3,.3,.3);
		transform: scale3d(.3,.3,.3)
	}

	50% {
		opacity: 1
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3,.3,.3);
		transform: scale3d(.3,.3,.3)
	}

	50% {
		opacity: 1
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
		transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
		transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

@keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
		transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
		transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
		transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
		transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

@keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
		transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
		transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
		transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
		transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

@keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
		transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
		transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
		transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
		transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

@keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
		transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
		transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3,.3,.3);
		transform: scale3d(.3,.3,.3)
	}

	100% {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3,.3,.3);
		transform: scale3d(.3,.3,.3)
	}

	100% {
		opacity: 0
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
		transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
		transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
		transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
		transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
		transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px,0,0);
		transform: scale(.1) translate3d(-2000px,0,0);
		-webkit-transform-origin: left center;
		transform-origin: left center
	}
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
		transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px,0,0);
		transform: scale(.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(.475,.475,.475) translate3d(-42px,0,0);
		transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px,0,0);
		transform: scale(.1) translate3d(2000px,0,0);
		-webkit-transform-origin: right center;
		transform-origin: right center
	}
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
		transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px,0,0);
		transform: scale(.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(.475,.475,.475) translate3d(0,60px,0);
		transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
		transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
		transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
		transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		visibility: visible
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		visibility: visible
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		visibility: visible
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes slideInLeft {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		visibility: visible
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		visibility: visible
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes slideInRight {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		visibility: visible
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
		visibility: visible
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes slideInUp {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
		visibility: visible
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateY(100%);
		transform: translateY(100%)
	}
}

@keyframes slideOutDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateY(100%);
		transform: translateY(100%)
	}
}

.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%)
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%)
	}
}

.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,.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,.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,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -moz-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to left,rgba(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,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -moz-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to right,rgba(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,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -moz-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to top,rgba(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,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -moz-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to bottom,rgba(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,.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,.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)
	}
}

html {
	height: 100%;
	background: #fff;
	overflow-x: hidden
}

body {
	min-height: 100%
}

* {
	box-sizing: border-box
}

blockquote,body,button,code,dd,div,dl,dt,fieldset,figure,form,h1,h2,h3,h4,h5,h6,iframe,input,legend,li,ol,p,pre,select,td,textarea,th,ul {
	margin: 0;
	padding: 0
}

li {
	list-style-type: none
}

h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: 400
}

fieldset,frame,iframe,img {
	border: 0 none
}

img {
	vertical-align: top
}

input[type=button],input[type=reset],input[type=submit] {
	cursor: pointer
}

input[type=button]::-moz-focus-inner,input[type=file]>input[type=button]::-moz-focus-inner,input[type=reset]::-moz-focus-inner,input[type=submit]::-moz-focus-inner {
	border: none;
	padding: 0;
	margin: 0
}

button {
	cursor: pointer
}

button,input,textarea {
	-webkit-border-radius: 0;
	-webkit-appearance: none
}

input[type=radio] {
	-webkit-border-radius: 100%;
	-webkit-appearance: radio
}

input[type=checkbox] {
	-webkit-appearance: checkbox
}

input[type=search] {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	-ms-box-sizing: content-box;
	-o-box-sizing: content-box;
	box-sizing: content-box
}

textarea {
	overflow: auto;
	resize: none
}

blockquote,q {
	quotes: none
}

blockquote:after,blockquote:before,q:after,q:before {
	content: "";
	content: none
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

caption,th {
	text-align: left
}

th {
	font-weight: 400
}

address,cite,em,i {
	font-style: normal
}

sup {
	vertical-align: text-top
}

sub {
	vertical-align: text-bottom
}

body,button,input,select,textarea {
	color: #7d7d7d;
	font-size: 16px;
	font-family: "Microsoft Yahei","微软雅黑",arial,"\5b8b\4f53"
}

button,input,select,textarea {
	font-size: 1em
}

body {
	line-height: 1.5
}

a,a:active,a:link,a:visited {
	text-decoration: none
}

a {
	blr: expression(this.onFocus=this.blur());
	color: #333
}

:focus {
	outline: 0
}

a:hover {
	color: #d70c19
}

.edit_con_original {
	line-height: 1.6;
	padding: 0 0;
	color: #474747
}

.edit_con_original ul {
	margin: inherit;
	padding: inherit
}

.edit_con_original ul li {
	list-style-type: disc;
	margin: auto;
	padding: inherit
}

.edit_con_original ol {
	margin: inherit;
	padding: inherit
}

.edit_con_original ol li {
	list-style-type: decimal;
	margin: auto;
	padding: inherit
}

.edit_con_original h1 {
	font-size: 2em;
	font-weight: 700
}

.edit_con_original h2 {
	font-size: 1.5em;
	font-weight: 700
}

.edit_con_original h3 {
	font-size: 1.17em;
	font-weight: 700
}

.edit_con_original h4 {
	font-size: 1em;
	font-weight: 700
}

.edit_con_original h5 {
	font-size: .83em;
	font-weight: 700
}

.edit_con_original h6 {
	font-size: .67em;
	font-weight: 700
}

.edit_con_original em {
	font-style: italic
}

.edit_con_original cite {
	font-style: italic
}

.edit_con_original address {
	font-style: italic
}

.edit_con_original i {
	font-style: italic
}

.edit_con_original table {
	border-collapse: separate;
	border-spacing: 2px
}

.edit_con_original img {
	max-width: 100%;
	height: auto
}

@media screen and (max-device-width:320px) {
	body {
		-webkit-text-size-adjust: none
	}
}

@media screen and (max-device-width:480px) {
	body {
		-webkit-text-size-adjust: none
	}
}

@media only screen and (-webkit-min-device-pixel-ratio:2) {
	body {
		-webkit-text-size-adjust: none
	}
}

@media only screen and (min-device-width:768px) and (max-device-width:1024px) {
	body {
		-webkit-text-size-adjust: none
	}
}

#newBridge .nb-icon-right-center {
	right: -200%!important
}

#nb_icon_wrap {
	opacity: 0;
	width: 0!important;
	height: 0!important;
	overflow: hidden
}

.cf:before,.clearfix:before,.fixed:before,.footer:before,.header:before,.main:before,body:before {
	content: '';
	display: table
}

.cf:after,.clearfix:after,.fixed:after,.footer:after,.header:after,.main:after,after {
	content: '';
	display: table;
	clear: both
}

.cl,.clear {
	display: block!important;
	float: none!important;
	clear: both;
	/*width: auto!important;*/
	max-width: none!important;
	min-width: 0!important;
	max-height: none!important;
	min-height: 0!important;
	overflow: hidden;
	/*margin: 0!important;
	padding: 0!important;
	border: 0 none!important;*/
	font-size: 0!important;
	/*line-height: 0!important*/
}

input::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
	color: #999
}

input:-moz-placeholder,textarea:-moz-placeholder {
	color: #999
}

input::-moz-placeholder,textarea::-moz-placeholder {
	color: #999
}

input:-ms-input-placeholder,textarea:-ms-input-placeholder {
	color: #999
}

.gray {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray
}

.scaleimg {
	overflow: hidden;
	display: block
}

.scaleimg span {
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	transition: .5s all;
	-webkit-transition: .5s all
}

.scaleimg:hover span {
	transform: scale(1.05,1.05);
	-webkit-transform: scale(1.05,1.05)
}

.scaleimg2 {
	overflow: hidden;
	display: block
}

.scaleimg2 a {
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	transition: .5s all;
	-webkit-transition: .5s all;
	transform-origin: center center;
	-webkit-transform-origin: center center
}

.scaleimg2:hover a {
	transform: scale(1.02,1.02);
	-webkit-transform: scale(1.02,1.02)
}

.scaleimg6 {
	overflow: hidden;
	display: block
}

.scaleimg6 .img a {
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	transition: .5s all;
	-webkit-transition: .5s all;
	transform-origin: center center;
	-webkit-transform-origin: center center
}

.scaleimg6:hover .img a {
	transform: scale(1.02,1.02);
	-webkit-transform: scale(1.02,1.02)
}

.scaleimg7 {
	overflow: hidden;
	display: block
}

.scaleimg7 .img {
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	transition: .5s all;
	-webkit-transition: .5s all;
	transform-origin: center center;
	-webkit-transform-origin: center center
}

.scaleimg7:hover .img {
	transform: scale(1.02,1.02);
	-webkit-transform: scale(1.02,1.02)
}

.scaleimg8 {
	overflow: hidden;
	display: block
}

.scaleimg8 .img span {
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	transition: .5s all;
	-webkit-transition: .5s all;
	transform-origin: center center;
	-webkit-transform-origin: center center
}

.scaleimg8:hover .img span {
	transform: scale(1.02,1.02);
	-webkit-transform: scale(1.02,1.02)
}

.scaleimg3 {
	overflow: hidden;
	display: block
}

.scaleimg3 img {
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	transition: .5s all;
	-webkit-transition: .5s all
}

.scaleimg3:hover img {
	transform: scale(1.02,1.02);
	-webkit-transform: scale(1.02,1.02)
}

.scaleimg4 {
	overflow: hidden;
	display: block
}

.scaleimg4 a {
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	transition: .5s all;
	-webkit-transition: .5s all
}

.scaleimg4:hover a {
	transform: scale(1.02,1.02);
	-webkit-transform: scale(1.02,1.02)
}

.scaleimg5 {
	overflow: hidden;
	display: block
}

.scaleimg5 a {
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	transition: .5s all;
	-webkit-transition: .5s all
}

.scaleimg5:hover a {
	transform: scale(1.01,1.01);
	-webkit-transform: scale(1.01,1.01)
}

.tran_scale2 {
	overflow: hidden;
	display: block
}

.tran_scale2 img {
	transition: .5s all;
	-webkit-transition: .5s all
}

.tran_scale2:hover img {
	transform: rotate(-2deg);
	-webkit-transform: rotate(-2deg)
}

.animation {
	transition: .5s all;
	-webkit-transition: .5s all;
	-ms-transition: .5s all;
	-o-transition: .5s all
}

.table {
	display: table;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%
}

.table-cell {
	display: table-cell;
	vertical-align: middle
}

img {
	border: 0;
	display: inline-block
}

a {
	color: #fff;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	transition: all .5s
}

body {
	font-size: 15px;
	background-size: cover;
	-ms-behavior: url(backgroundsize.min.htc);
	behavior: url(backgroundsize.min.htc)
}

.bg-f5 {
	background: #f5f5f5
}

.wrapper {
	width: 100%;
	margin: 0 auto;
	overflow-x: auto
}

.wrap {
	margin: 0 auto;
	padding: 0 10%
}

.tab-b {
	display: none
}

.fl {
	float: left
}

.fr {
	float: right
}

.center {
	text-align: center
}

.f-left {
	text-align: left
}

.f-right {
	text-align: right
}

.v-m-c {
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	position: absolute;
	left: 0;
	top: 50%
}

.l-m-c {
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	position: absolute;
	left: 50%;
	top: 0
}

.a-m-c {
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	position: absolute;
	left: 50%;
	top: 50%
}

.f-b {
	font-weight: 700
}

.ht {
	padding: 1% 0
}

.uppercase {
	text-transform: uppercase
}

.ellipsis {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden
}

.ellipsis-2 {
	overflow: hidden;
	max-height: 3em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical
}

.ellipsis-3 {
	overflow: hidden;
	max-height: 4.5em;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical
}

.ellipsis-4 {
	overflow: hidden;
	max-height: 6em;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical
}

.ellipsis-5 {
	overflow: hidden;
	max-height: 7.5em;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical
}

.ellipsis-6 {
	overflow: hidden;
	max-height: 9em;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical
}

.select-box {
	width: 100%;
	position: relative;
	color: #2b2b2b
}

.select-box.zindex,.select-box:hover {
	z-index: 101
}

.select-box dt {
	cursor: pointer;
	border-bottom: 1px solid #e83421;
	line-height: 2.2
}

.select-box dt b {
	font-weight: 400;
	display: block;
	padding-right: 20px
}

.select-box dt span {
	font-weight: 400;
	display: block;
	padding-right: 20px
}

.select-box dt i {
	position: absolute;
	transition: .3s all ease-in-out;
	width: 15px;
	height: 7px;
	margin-top: -3.5px;
	right: 0;
	top: 50%
}

.select-box dt.open i {
	-moz-transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg)
}

.select-box dd {
	position: absolute;
	border: 1px solid #ddd;
	box-shadow: 0 2px 10px rgba(0,0,0,.1);
	border-top: none;
	border-right: none;
	z-index: 102;
	background: #fff;
	padding: 0 0;
	overflow: hidden;
	right: 0;
	left: 0;
	top: 100%;
	display: none
}

.select-box dd .con {
}

.select-box dd a {
	display: block;
	line-height: 3.5714;
	color: #7d7d7d;
	font-weight: 400;
	border-top: 1px solid #e4e4e4;
	white-space: normal;
	padding: 0 1.4285em;
	margin-top: 0
}

.select-box dd a.on,.select-box dd a:hover {
	color: #e83421
}

.select-box dd a:first-child {
	border-top: none
}

.select-box .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background: #e83421
}

.select-box .mCSB_scrollTools,.select-box .mCSB_scrollTools .mCSB_draggerRail {
	width: 2px
}

.select-box .mCSB_scrollTools .mCSB_draggerContainer {
	background: 0 0
}

.bg_cover {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover
}

.zindex {
	z-index: 999
}

.arial {
	font-family: Arial
}

.song {
	font-family: "\5b8b\4f53"
}

.phone_hide {
	display: block
}

.phone_show {
	display: none
}

.page {
	vertical-align: middle;
	text-align: center;
	color: #7d7d7d;
	line-height: 2.5em
}

.page a {
	display: inline-block;
	color: #7d7d7d;
	margin: 0 1px;
	position: relative;
	min-width: 2.5em
}

.page a:hover {
	color: #e93421
}

.page span {
	padding: 0 1.675em 0 1.875em;
	letter-spacing: .25em
}

.page span label {
	color: #2d2d2d
}

.weixin {
	position: fixed;
	width: 300px;
	z-index: 100000;
	left: 50%;
	top: 50%;
	margin: -120px 0 0 -150px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	box-shadow: 1px 1px 2px #aaa
}

.weixin .c {
	position: absolute;
	width: 30px;
	height: 30px;
	right: 0;
	top: 0;
	font-size: 20px;
	font-style: normal;
	text-align: center;
	cursor: pointer;
	z-index: 2
}

.weixin h2 {
	position: relative;
	line-height: 30px;
	font-size: 16px;
	padding-left: 10px
}

.weixin .img {
	padding: 10px;
	text-align: center;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd
}

.weixin .img img {
	width: 180px;
	height: 180px
}

.weixin p {
	padding: 2px 10px 0;
	text-align: center
}

.radio_bon span {
	padding-left: 38px;
	apply_expert_form-space: normal;
	min-width: 67px;
	position: relative;
	margin: 0 25px 0 0;
	cursor: pointer;
	font-size: 14px;
	display: inline-block
}

.radio_bon span i {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -10px;
	width: 20px;
	height: 20px
}

.radio_bon span.on i {
	background-position: 0 bottom
}

.radio_bon .radio {
	display: none
}

.check_group {
	cursor: pointer
}

.check_group .checkbox {
	float: left;
	cursor: pointer;
	margin-top: .25em;
	width: 18px;
	border: 1px solid #e4e4e4;
	height: 18px;
	margin-right: 8px
}

.check_group .checkbox02 {
	background-position: center center
}

.check_group label {
	float: left;
	cursor: pointer
}

.check_group .checkbox input {
	display: none
}

.fnt-12 {
	font-size: 12px
}

.fnt-14 {
	font-size: 14px
}

.fnt-15 {
	font-size: 15px
}

.fnt-16 {
	font-size: 16px
}

.fnt-18 {
	font-size: 18px
}

.fnt-20 {
	font-size: 20px
}

.fnt-22 {
	font-size: 22px
}

.fnt-24 {
	font-size: 24px
}

.fnt-26 {
	font-size: 26px
}

.fnt-28 {
	font-size: 28px
}

.fnt-30 {
	font-size: 30px
}

.fnt-36 {
	font-size: 36px
}

.fnt-40 {
	font-size: 40px
}

.fnt-45 {
	font-size: 45px
}

.fnt-48 {
	font-size: 48px
}

.fnt-60 {
	font-size: 60px
}

@media only screen and (max-width:1700px) {
	.fnt-15 {
		font-size: 14px
	}

	.fnt-16 {
		font-size: 15px
	}

	.fnt-18 {
		font-size: 17px
	}

	.fnt-20 {
		font-size: 18px
	}

	.fnt-22 {
		font-size: 20px
	}

	.fnt-24 {
		font-size: 22px
	}

	.fnt-26 {
		font-size: 24px
	}

	.fnt-28 {
		font-size: 26px
	}

	.fnt-30 {
		font-size: 28px
	}

	.fnt-36 {
		font-size: 32px
	}

	.fnt-40 {
		font-size: 36px
	}

	.fnt-45 {
		font-size: 40px
	}

	.fnt-48 {
		font-size: 44px
	}

	.fnt-60 {
		font-size: 50px
	}
}

@media only screen and (max-width:1500px) {
	.fnt-14 {
		font-size: 13px
	}

	.fnt-15 {
		font-size: 14px
	}

	.fnt-16 {
		font-size: 14px
	}

	.fnt-18 {
		font-size: 16px
	}

	.fnt-20 {
		font-size: 18px
	}

	.fnt-22 {
		font-size: 20px
	}

	.fnt-24 {
		font-size: 22px
	}

	.fnt-26 {
		font-size: 23px
	}

	.fnt-28 {
		font-size: 23px
	}

	.fnt-30 {
		font-size: 24px
	}

	.fnt-36 {
		font-size: 28px
	}

	.fnt-40 {
		font-size: 32px
	}

	.fnt-45 {
		font-size: 32px
	}

	.fnt-48 {
		font-size: 36px
	}

	.fnt-60 {
		font-size: 40px
	}
}

@media only screen and (max-width:1340px) {
	.fnt-20 {
		font-size: 17px
	}

	.fnt-22 {
		font-size: 18px
	}

	.fnt-24 {
		font-size: 20px
	}

	.fnt-26 {
		font-size: 21px
	}

	.fnt-28 {
		font-size: 21px
	}

	.fnt-30 {
		font-size: 22px
	}

	.fnt-36 {
		font-size: 26px
	}

	.fnt-40 {
		font-size: 30px
	}

	.fnt-45 {
		font-size: 28px
	}

	.fnt-48 {
		font-size: 32px
	}

	.fnt-60 {
		font-size: 36px
	}
}

@media only screen and (max-width:1000px) {
	.phone_hide {
		display: none
	}

	.phone_show {
		display: block
	}
}

@media only screen and (max-width:980px) {
	.fnt-22 {
		font-size: 17px
	}

	.fnt-24 {
		font-size: 18px
	}

	.fnt-30 {
		font-size: 20px
	}

	.fnt-36 {
		font-size: 24px
	}

	.fnt-40 {
		font-size: 28px
	}

	.fnt-45 {
		font-size: 26px
	}

	.fnt-48 {
		font-size: 30px
	}

	.fnt-60 {
		font-size: 32px
	}
}

@media only screen and (max-width:767px) {
	.fnt-12 {
		font-size: 12px
	}

	.fnt-14 {
		font-size: 14px
	}

	.fnt-15 {
		font-size: 15px
	}

	.fnt-16 {
		font-size: 16px
	}

	.fnt-18 {
		font-size: 16px
	}

	.fnt-20 {
		font-size: 18px
	}

	.fnt-22 {
		font-size: 19px
	}

	.fnt-24 {
		font-size: 20px
	}

	.fnt-26 {
		font-size: 21px
	}

	.fnt-28 {
		font-size: 21px
	}

	.fnt-30 {
		font-size: 22px
	}

	.fnt-36 {
		font-size: 24px
	}

	.fnt-40 {
		font-size: 26px
	}

	.fnt-45 {
		font-size: 26px
	}

	.fnt-48 {
		font-size: 28px
	}

	.fnt-60 {
		font-size: 32px
	}

	.select-box dt i {
		background: 0 0;
		border-bottom: 1px solid #000;
		border-right: 1px solid #000;
		width: .7142em;
		height: .7142em;
		background: #fff;
		transform: rotate(45deg);
		margin-top: -.5em;
		position: absolute;
		right: 4px
	}

	.select-box dt.open i {
		border-bottom: 1px solid #e83421;
		margin-top: 0;
		border-right: 1px solid #e83421;
		-moz-transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		-o-transform: rotate(-135deg);
		-ms-transform: rotate(-135deg);
		transform: rotate(-135deg);
		background-position: center bottom
	}

	.phone_hide {
		display: none
	}

	.phone_show {
		display: block
	}
}

@media only screen and (max-width:480px) {
	.fnt-12 {
		font-size: 12px
	}

	.fnt-14 {
		font-size: 14px
	}

	.fnt-15 {
		font-size: 14px
	}

	.fnt-16 {
		font-size: 15px
	}

	.fnt-18 {
		font-size: 16px
	}

	.fnt-20 {
		font-size: 16px
	}

	.fnt-22 {
		font-size: 17px
	}

	.fnt-24 {
		font-size: 18px
	}

	.fnt-26 {
		font-size: 18px
	}

	.fnt-28 {
		font-size: 18px
	}

	.fnt-30 {
		font-size: 18px
	}

	.fnt-36 {
		font-size: 20px
	}

	.fnt-40 {
		font-size: 22px
	}

	.fnt-45 {
		font-size: 22px
	}

	.fnt-48 {
		font-size: 24px
	}

	.fnt-60 {
		font-size: 24px
	}
}

@media only screen and (max-width:414px) {
	.fnt-30 {
		font-size: 18px
	}

	.fnt-36 {
		font-size: 18px
	}

	.fnt-40 {
		font-size: 24px
	}

	.fnt-45 {
		font-size: 20px
	}

	.fnt-48 {
		font-size: 22px
	}

	.fnt-60 {
		font-size: 22px
	}
}

@media only screen and (max-width:340px) {
	.fnt-12 {
		font-size: 12px
	}

	.fnt-14 {
		font-size: 13px
	}

	.fnt-15 {
		font-size: 14px
	}

	.fnt-16 {
		font-size: 14px
	}

	.fnt-18 {
		font-size: 15px
	}

	.fnt-20 {
		font-size: 15px
	}

	.fnt-22 {
		font-size: 16px
	}

	.fnt-24 {
		font-size: 16px
	}

	.fnt-26 {
		font-size: 16px
	}

	.fnt-28 {
		font-size: 16px
	}
}

.writing-vertical {
	writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	-webkit-writing-mode: tb-rl;
	-ms-writing-mode: tb-rl
}

*,:after,:before {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: 0!important;
	-webkit-tap-highlight-color: rgba(255,255,255,0);
	-webkit-tap-highlight-color: transparent;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased
}

p {
	margin: 0
}

.btn {
	padding: 0
}

.fix {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 999
}

.html {
	overflow: hidden
}

.jt-more a {
	color: #7d7d7d;
	position: relative;
	display: inline-block;
	padding-right: 2em
}

.jt-more a i {
	display: inline-block;
	position: absolute;
	width: 15px;
	height: 10px;
	margin-top: -5px;
	right: 0;
	top: 50%;
}

.jt-more a:hover i {
	-webkit-transform: translateX(10px);
	-moz-transform: translateX(10px);
	-o-transform: translateX(10px);
	-ms-transform: translateX(10px);
	transform: translateX(10px)
}

.jt-more a:hover {
	color: #e83421
}

.jt-more2 a {
	color: #2b2b2b;
	position: relative;
	border: 1px solid #e4e4e4;
	border-radius: 1.1945em;
	display: inline-block;
	padding-right: 2.72em
}

.jt-more2 a span {
	padding: 0 .778em 0 1.88em;
	line-height: 2.389
}

.jt-more2 a i {
	display: inline-block;
	position: absolute;
	width: 15px;
	height: 10px;
	margin-right: 0;
	margin-top: -5px;
	right: 1.833em;
	top: 50%;
}

.jt-more2 a:hover i {
	-webkit-transform: translateX(10px);
	-moz-transform: translateX(10px);
	-o-transform: translateX(10px);
	-ms-transform: translateX(10px);
	transform: translateX(10px)
}

.jt-more2 a:hover {
	border: 1px solid #e83421
}

.jt-more3 span {
	color: #7d7d7d;
	position: relative;
	display: inline-block;
	padding-right: 2em
}

.tech-index-sec02 .tech-sec-03 ul li:hover .jt-more3 span {
	color: #e83421
}

.jt-more3 span i {
	display: inline-block;
	position: absolute;
	width: 15px;
	height: 10px;
	margin-top: -5px;
	right: 0;
	top: 50%;
}

.in-title {
	position: relative;
	color: #2b2b2b;
	width: 12em;
	padding-top: 15px;
	line-height: 1.3;
	padding-bottom: .1667em
}

.in-title i {
	background: #fdd000;
	position: absolute;
	height: 1px;
	left: 0;
	top: 0;
	width: 2.083em
}

.sec-tab {
	padding-left: 10em;
	position: relative
}

.sec-tab .tit {
	position: absolute;
	left: 0;
	top: 0
}

.pic-list .title {
	padding: 1.3125em 0 0
}

.pic-list .title .tit {
	color: #2b2b2b;
	float: left
}

.pic-list .title .more {
	float: right;
	margin-top: .5em
}

.pic-list {
	padding: 1.875em 0 3.75em
}

.pic-list .img {
	position: relative;
	overflow: hidden
}

.pic-list .img a {
	display: block;
	padding-bottom: 56.36%;
	background-size: cover
}

.pic-list .img a img {
	position: absolute;
	width: 101%;
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-transform: scale(1.02);
	transform: scale(1.02)
}

.pic-list .scaleimg6:hover .img a {
	-webkit-transform: scale(1);
	transform: scale(1)
}

.pic-list .scaleimg6:hover .img a img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05)
}

.pic-list .img i {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 1.25em;
	padding: 0 1.25em;
	line-height: 2.25;
	background: rgba(231,36,39,.6);
	color: #fff
}

.pic-list .sub-tit {
	margin-bottom: 1em;
	height: 3.42em
}

.pic-list .sub-tit a {
	color: #222;
	display: block;
	position: relative;
	line-height: 1.71;
	max-height: 3.42em;
	display: -webkit-box
}

.pic-list a .sub-tit {
	color: #222;
	display: block;
	position: relative;
	line-height: 1.71;
	max-height: 3.42em;
	display: -webkit-box
}

.pic-list .sub-tit a i {
	display: inline-block;
	position: relative;
	right: 0;
	bottom: 0;
	margin-left: 10px;
	width: 15px;
	height: 10px
}

.pic-list .sub-tit a:hover i {
	margin-left: 17px
}

.pic-list a .txt {
	color: #7d7d7d
}

.pic-list .sub-tit a:hover {
	color: #e83421
}

.pic-list a:hover .sub-tit {
	color: #e83421
}

.pic-list a:hover .txt {
	color: #7d7d7d
}

.pic-list .text {
	border: 1px solid #e4e4e4;
	margin-top: 0;
	z-index: 5;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	border-top: none;
	background: #fff;
	padding: 1.6em 1.75em 2em
}

.pic-list .list {
	margin-top: -.5em;
	width: 100%
}

.pic-list ul li {
	padding: 1.875em 0 1.25em
}

.pic-list .txt {
	line-height: 1.71;
	max-height: 3.42em;
	height: 0
}

.pic-list .time {
	color: #ccc;
	padding-top: .33em
}

.pic-list ul li .con {
	padding-bottom: 9.375em;
	position: relative;
	border-top: 1px solid #e4e4e4;
	border-bottom: 1px solid #e4e4e4;
	border-bottom: none
}

.pic-list ul li .con:hover .txt {
	height: 3.42em;
	margin-bottom: .5em;
	-webkit-line-clamp: 2;
	max-height: inherit
}

.pic-list_mei ul li .con:hover .txt,.video-list ul li .con:hover .txt {
	height: auto;
	margin-bottom: .5em;
	-webkit-line-clamp: 100;
	max-height: inherit
}

.pic-list ul li .con:hover .text {
	border-color: #fff
}

.pic-list ul li .con:hover {
	box-shadow: 0 0 20px rgba(0,0,0,.12);
	border-color: #fff
}

.pic-list ul li .con:hover .sub-tit {
	height: 3.42em
}

.pic-list .img-video {
	width: 100%;
	overflow: hidden
}

.pic-list .img-video .img {
	padding-bottom: 54%
}

.pic-list .img-video .img img {
	position: absolute;
	width: 100%
}

.pic-list ul li .label {
	position: absolute;
	right: 1.75em;
	min-height: 1.71em;
	bottom: 1.75em
}

.pic-list ul li .label span {
	display: inline-block;
	line-height: 1.71;
	border: 1px solid #e4e4e4;
	border-radius: .9285em;
	padding: 0 1.071em
}

.case-pic-list {
	position: relative;
	border-top: 1px solid #e4e4e4;
	padding-top: 3.75em;
	padding-left: 10em
}

.case-pic-list .in-title {
	position: absolute;
	left: 0;
	top: 2.5em
}

.case-pic-list ul {
	margin: 0 -2.53125em;
	padding-bottom: 1.75em;
	min-height: 5em
}

.case-pic-list ul li {
	float: left;
	width: 33.33%;
	padding-bottom: 1.5em
}

.case-pic-list ul li .con {
	color: #666;
	position: relative;
	line-height: 2.1428;
	max-height: 4.2856em
}

.case-pic-list ul li .con i {
	display: inline-block;
	position: relative;
	right: -22px;
	bottom: 0;
	width: 15px;
	height: 10px
}

.case-pic-list ul li .tit {
	margin-bottom: 1.1875em
}

.case-pic-list ul li .tit span {
	float: left;
	width: 60%;
	line-height: 3;
	display: block;
	color: #222
}

.case-pic-list ul li .tit .ico {
	float: right;
	width: 38%;
	position: relative;
	height: 3em
}

.case-pic-list ul li .tit .ico img {
	max-width: 90%;
	left: auto;
	right: 0;
	max-height: 90%;
	width: auto;
	height: auto
}

.case-pic-list ul li .text {
	padding: 0 4.53125em 0 2.53125em
}

.case-pic-list ul li:hover .con i {
	-webkit-transform: translateX(10px);
	-moz-transform: translateX(10px);
	-o-transform: translateX(10px);
	-ms-transform: translateX(10px);
	transform: translateX(10px)
}

.case-pic-list .img-wrap {
	float: left;
	margin-top: .25em;
	width: 2.5em;
	margin-right: 1em;
	position: relative;
	height: 2.5em
}

.case-pic-list .img-wrap img {
	position: absolute;
	opacity: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	max-width: 100%;
	max-height: 100%
}

.case-pic-list .img-wrap .img {
	opacity: 1
}

.case-pic-list ul li:hover .img-wrap .img {
	opacity: 0
}

.case-pic-list ul li:hover .img-wrap .img-hover {
	opacity: 1
}

.case-pic-list .txt {
	color: #2b2b2b
}

.case-pic-list ul li:hover .txt {
	color: #e83421
}

.case-pic-list ul li:hover .con {
	color: #111
}

.solution-pic-list {
	position: relative;
	border-top: 1px solid #e4e4e4;
	padding-top: 3.75em;
	padding-bottom: 1em;
	padding-left: 10em
}

.solution-pic-list .in-title {
	position: absolute;
	left: 0;
	top: 2.5em
}

.solution-pic-list ul {
	margin: 0 -2.125em;
	margin-top: -.925em;
	min-height: 5em
}

.solution-pic-list ul li {
	position: relative;
	margin-bottom: 1.5em;
	float: left;
	width: 33.33%
}

.solution-pic-list ul li .img {
	overflow: hidden
}

.solution-pic-list ul li .img span {
	display: block;
	padding-bottom: 56%
}

.solution-pic-list ul li .img span img {
	position: absolute;
	width: 101%;
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-transform: scale(1.02);
	transform: scale(1.02)
}

.solution-pic-list ul li .con .img span img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05)
}

.solution-pic-list ul li .tit {
	color: #2b2b2b;
	margin-top: 1em;
	margin-bottom: .65em
}

.solution-pic-list ul li .tit em {
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	padding-right: 2em
}

.solution-pic-list ul li .tit em i {
	display: inline-block;
	position: absolute;
	width: 15px;
	height: 10px;
	margin-top: -5px;
	right: 10px;
	top: 50%;
}

.solution-pic-list ul li .txt {
	line-height: 2;
	max-height: 4em;
	height: 4em;
	color: #7b7b7b
}

.solution-pic-list ul li .con {
	position: relative;
	padding: .875em .875em 2em;
	border: 1px solid #fff;
	margin: 0 1.25em;
	z-index: 3
}

.solution-pic-list ul li .con:hover .tit {
	color: #e83421
}

.solution-pic-list ul li .con:hover {
	background: #f7f7f7;
	border: 1px solid #e4e4e4
}

.solution-pic-list ul li .con:hover .tit em i {
	-webkit-transform: translateX(10px);
	-moz-transform: translateX(10px);
	-o-transform: translateX(10px);
	-ms-transform: translateX(10px);
	transform: translateX(10px)
}

.pic-tab-nav {
	float: left;
	width: 10em
}

.pic-tab-nav .nr-nav-right1 {
	left: 0;
	width: 8.125em;
	background: #fff;
	border-top: 1px solid #e4e4e4;
	z-index: 3;
	bottom: auto;
	right: auto;
	margin-top: 1.25em
}

.pic-tab-nav .nr-nav-right1>li {
	float: none;
	cursor: pointer;
	border-bottom: 1px solid #e4e4e4;
	padding: 0
}

.pic-tab-nav .nr-nav-right1>li>a {
	display: block;
	position: relative;
	color: #7d7d7d;
	padding: .75em 2em .75em 1em
}

.pic-tab-nav .nr-nav-right1>li>a i {
	position: absolute;
	width: 15px;
	height: 10px;
	left: auto;
	right: .625em;
	bottom: auto;
	top: 50%;
	margin-top: -5px
}

.pic-tab-nav .nrnav-box.active .nr-nav-right1 {
	left: 3.85%;
	top: 5em
}

.pic-tab-nav .nr-nav-right1>li>a.hover,.pic-tab-nav .nr-nav-right1>li>a:hover {
	background: #e93421;
	color: #fff
}

.pic-tab-nav .nr-nav-con {
	overflow: hidden;
	padding-bottom: 3.75em;
	min-height: 500px
}

.box_Arrow {
	border-bottom: 1px solid #7d7d7d;
	border-right: 1px solid #7d7d7d;
	width: .7142em;
	height: .7142em;
	background: #fff;
	transform: rotate(45deg);
	margin-top: -8px;
	position: absolute
}

.box_Arrow2 {
	border-top: 1px solid #7d7d7d;
	border-right: 1px solid #7d7d7d;
	width: .6428em;
	height: .6428em;
	background: #fff;
	transform: rotate(45deg);
	margin-top: -.3217em;
	position: absolute
}

.box_Arrow3 {
	border-left: 1px solid #e4e4e4;
	border-bottom: 1px solid #e4e4e4;
	width: 1.4285em;
	height: 1.4285em;
	background: #fff;
	transform: rotate(135deg);
	margin-left: -.71425em;
	position: absolute;
	left: 50%;
	top: 0
}

.box_Arrow4 {
	border-left: 1px solid #e4e4e4;
	border-bottom: 1px solid #e4e4e4;
	width: 1.4285em;
	height: 1.4285em;
	background: #fff;
	transform: rotate(45deg);
	margin-top: -.875em;
	position: absolute;
	left: 0;
	top: 50%
}

.main {
	padding-left: 18.75%;
	overflow: hidden
}

.nav-bg {
	position: fixed;
	z-index: 103;
	display: none;
	left: 0;
	top: 0;
	height: 100%;
	right: 0;
	background: rgba(255,255,255,.5)
}

.er-bn {
	position: relative;
	color: #fff
}

.er-bn .img {
	padding-bottom: 25.32%
}

.er-bn .text {
	position: absolute;
	left: 3.85%;
	right: 3.85%;
	bottom: 17%
}

.er-bn dl dt {
	margin-bottom: .6em
}

.er-bn dl dd {
	opacity: .7;
	line-height: 2;
	min-height: 4em
}

.nrnav-box {
	border-bottom: 1px solid #e4e4e4;
	color: #999;
	padding: 1.87em 0 1.2em;
	position: relative
}

.nrnav-box span {
	color: #2b2b2b
}

.nrnav-box a {
	color: #999
}

.nrnav-box a:hover {
	color: #d70c19
}

.nrnav-box .nr-nav-right1 {
	position: absolute;
	right: 0;
	bottom: 0
}

.nrnav-box .nr-nav-right1>li {
	float: left;
	padding-left: 2.5em;
	width: auto
}

.nrnav-box .nr-nav-right1>li>a {
	position: relative;
	display: inline-block;
	cursor: pointer;
	color: #999;
	padding-bottom: 1.2em
}

.nrnav-box .nr-nav-right1>li:first-child {
	padding-left: 0
}

.nrnav-box .nr-nav-right1>li>a i {
	width: 0;
	height: 2px;
	background: #e83521;
	position: absolute;
	left: 0;
	bottom: 0;
	overflow: hidden
}

.nrnav-box .nr-nav-right1>li>a.hover,.nrnav-box .nr-nav-right1>li>a:hover {
	color: #2b2b2b
}

.nrnav-box .nr-nav-right1>li>a.hover i,body:not(.touch_body) .nrnav-box .nr-nav-right1>li>a:hover i {
	width: 100%;
	color: #2b2b2b
}

.nrnav-box .nr-nav-left {
	float: left
}

.nrnav-box .nr-nar-left2 a,.nrnav-box .nr-nar-left2 em,.nrnav-box .nr-nar-left2 span {
	float: left
}

.nrnav-box .nr-nar-left2 em {
	padding: 0 .5em
}

.nrnav-box .nr-nar-left2 .select-box {
	width: auto;
	margin-right: 1em;
	color: #999;
	float: left
}

.nrnav-box .nr-nar-left2 .select-box dt {
	background: 0 0;
	padding-left: 0;
	line-height: 1.5;
	border-bottom: none
}

.nrnav-box .nr-nar-left2 .select-box dd {
	width: 15em
}

.nrnav-box .nr-nar-left2 .select-box dt b {
	padding-right: 30px
}

.nrnav-box .nr-nar-left2 .select-box dd {
	box-shadow: none;
	border: none;
	padding-top: 8px
}

.nrnav-box .nr-nar-left2 .select-box dd a {
	display: block;
	line-height: 1.5;
	position: relative;
	float: none;
	margin: 0 1.1875em;
	padding: 0 .375em
}

.nrnav-box .nr-nar-left2 .select-box dd a span {
	display: block;
	padding: .8125em 0;
	float: none;
	line-height: 1.5
}

.nrnav-box .nr-nar-left2 .select-box dd .con {
	background: 0 0;
	border: 1px solid #e4e4e4
}

.nrnav-box .nr-nar-left2 .select-box dd a .box_Arrow2 {
	position: absolute;
	right: 0;
	top: 50%;
	border-color: #e83521
}

.nrnav-box .nr-nar-left2 .select-box dd a:hover span {
	color: #e83521
}

.nrnav-box .nr-nav-left label {
	display: inline-block;
	background: #fdeae8;
	line-height: 2.1428em;
	border-radius: 1.0714em;
	padding: 0 1.1428em;
	margin-left: 1.4285em;
	color: #e93421
}


.go_top {
	position: fixed;
	bottom: 2%;
	right: .8%;
	cursor: pointer;
	z-index: 99;
	display: none
}

.go_top img {
	width: 38px
}

.nrnav-box {
	background: #fff
}

.nrnav-box.active {
	position: fixed;
	z-index: 102;
	left: 18.75%;
	right: 0;
	padding-left: 3.125%;
	padding-right: 3.125%
}

.nrnav-box.active .nr-nav-right1 {
	right: 3.85%
}

.video_place {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.5);
	z-index: 999999999
}

.video_con {
	z-index: 2;
	width: 900px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center
}

.lt9 .video_con {
	top: 20%;
	left: 10%;
	background: #000
}

.video_con video {
	width: 100%;
	height: 100%
}

.video_close_btn {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -264px -3.875em 0 450px;
	cursor: pointer
}

.video_close_btn span {
	width: 2.875em;
	float: left;
	position: relative;
	top: -3.625em;
	height: 2.875em;
	background: url(../pic/close.png) no-repeat center center;
	display: inline-block;
	border: 1px solid #fff;
	border-radius: 50%;
	transition: all .5s
}

.video_close_btn:hover span {
	transform: rotate(90deg)
}

.video_place .con {
	position: relative
}

.video_place p {
	position: absolute;
	top: 50%;
	margin-top: 258px;
	left: 50%;
	margin-left: -450px;
	width: 900px;
	padding: .85em 0;
	color: #fff;
	text-align: center;
	cursor: pointer
}

.img_dou img {
	position: absolute;
	width: 101%;
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-transform: scale(1.02);
	transform: scale(1.02)
}

.img_dou:hover a {
	-webkit-transform: scale(1);
	transform: scale(1)
}

.img_dou:hover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05)
}


@media only screen and (max-height:900px) and (min-width:1000px) {

}

@media only screen and (max-height:800px) and (min-width:1000px) {

}

@media only screen and (max-height:700px) and (min-width:1000px) {

}

@media only screen and (max-height:660px) and (min-width:1000px) {
	.video_close_btn {
		left: auto;
		top: auto;
		bottom: 85%;
		right: 10%
	}

	.video_close_btn span {
		top: 0
	}

	.video_place p {
		top: 85%;
		left: 10%;
		width: 80%;
		margin-top: 0;
		margin-left: 0
	}
}

@media only screen and (max-width:1400px) {

}

@media only screen and (max-height:580px) and (min-width:1000px) {

}

@media only screen and (max-width:1900px) {

}

@media only screen and (max-width:1800px) {

}

@media only screen and (max-width:1600px) {


@media only screen and (max-width:1340px) {

	.case-pic-list ul {
		margin: 0 -1em
	}

	.case-pic-list ul li .text {
		padding: 0 1em
	}

	.solution-pic-list ul {
		margin: 0 -1em
	}

	.solution-pic-list ul li .con {
		margin: 0 .125em
	}
}

@media only screen and (max-width:1280px) {
	.pic-list .text {
		padding: 1.4375em 1em 1.875em
	}
}

@media only screen and (max-width:1240px) {

}

@media only screen and (max-width:1160px) {

}

@media only screen and (max-width:1100px) {
	.aside {
		right: 60px
	}

}

@media only screen and (max-width:980px) {
	.video_con {
		width: 80%
	}

	.video_close_btn {
		left: auto;
		top: auto;
		bottom: 75%;
		right: 16%
	}

	.video_close_btn span {
		top: 0
	}

	.video_place p {
		top: 80%;
		left: 10%;
		width: 80%;
		margin-top: 0;
		margin-left: 0
	}
}

@media only screen and (max-width:900px) {

}

@media only screen and (max-width:767px) {
	.video_close_btn span {
		top: -8.625em
	}
}

.menu-con .fanhui3,.menu-con .fanhui4,.menu-nav .title .fanhui {
	display: none
}

@media only screen and (max-width:1000px) {
	.nav_phone,.nav_phone_btn {
		display: block;
		cursor: pointer
	}

	.nav_phone_btn {
		position: absolute;
		z-index: 102;
		top: 50%;
		margin-top: -18px;
		left: 4.125em;
		transition: .3s all;
		-webkit-transition: .3s all;
		-moz-transition: .3s all;
		-o-transition: .3s all;
		-ms-transition: .3s all
	}

	.nav_phone_btn {
		display: block;
		cursor: pointer;
		height: 36px
	}

	.nav_phone_btn span {
		position: relative;
		font-size: 0;
		width: 28px;
		height: 2px;
		background-color: #e83421;
		display: inline-block;
		transition: all 250ms ease-out;
		-webkit-transition: all 250ms ease-out
	}

	.nav_phone_btn span:after,.nav_phone_btn span:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: #e83421;
		left: 0;
		transition: all 250ms ease-out;
		-webkit-transition: all 250ms ease-out
	}

	.nav_phone_btn span:before {
		top: -10px
	}

	.nav_phone_btn span:after {
		top: 10px
	}

	.visible_nav.nav_phone_btn span {
		background-color: transparent
	}

	.visible_nav.nav_phone_btn span:before {
		left: 0;
		top: 0;
		transform: rotateZ(45deg);
		-webkit-transform: rotateZ(45deg);
		-ms-transform: rotateZ(45deg)
	}

	.visible_nav.nav_phone_btn span:after {
		top: 0;
		left: 0;
		transform: rotateZ(-45deg);
		-webkit-transform: rotateZ(-45deg);
		-ms-transform: rotateZ(-45deg)
	}

	.body_nav_phone .header .hd-cn {
		top: 3.5em
	}

	.body_nav_phone .wrapper {
		height: 100%;
		overflow: hidden
	}

}

.nrnav-box.active {
	left: 0;
	right: 0
}

.scrollHeader .header.headeractive {
	box-shadow: none
}

.er_bn .img {
	padding-bottom: 30%
}

.er_bn .tit {
	left: 13.66%;
	right: 13.66%
}

.er_bn .tit i {
	width: 9.163%
}

#loginicon img {
	position: absolute;
	top: 16px;
	right: 2.1em
}
}

@media only screen and (max-width:800px) {
	.main {
		margin-top: 0px
	}
}

@media only screen and (min-width:768px) {
	.case-pic-list ul li {
		height: 200px
	}
}

.zhongwen {
	display: none
}

@media only screen and (max-width:767px) {

	.pic-list ul li .con {
		padding-bottom: 7.375em
	}

	.pic-list .img {
		transform: scale(.997)
	}

	.pic-list .img-video .img {
		padding-bottom: 0
	}

	.pic-list .img-video .img img {
		position: relative
	}

	.zhongwen {
		display: block
	}

	.er-bn dl dd {
		line-height: 1.7
	}

	.wrapper {
		overflow: hidden
	}

	.top-search {
		display: none
	}

	.nav_phone_btn {
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
		margin-top: 0
	}

	.nrnav-box .nr-nav-right1>li {
		padding-left: 1.5em
	}

	.nrnav-box .nr-nav-left {
		width: 100%;
		padding-bottom: .5em
	}

	.nrnav-box .nr-nav-right1 {
		position: relative;
		float: left;
		width: 100%;
		display: flex;
		overflow-x: auto;
		overflow-y: hidden
	}

	.nrnav-box .nr-nav-right1>li {
		padding: 0 2em 0 0;
		white-space: nowrap
	}

	.nrnav-box .nr-nav-right1>li>a {
		padding: .5em 0;
		font-size: 14px
	}

	.nrnav-box {
		padding-bottom: 0
	}

	.nrnav-box.active {
		left: 0;
		right: 0;
		padding-left: 20px;
		padding-right: 20px
	}

	.nrnav-box.active .nr-nav-right1 {
		right: 0
	}

	.nrnav-box .nr-nav-right1>li:last-child {
		padding-right: 0
	}

	.er-bn .img {
		padding-bottom: 60%
	}

	.er-bn dl dd br {
		display: none
	}

	.pic-list {
		padding-bottom: 2.5em
	}

	.pic-list .text {
		padding: 1em
	}

	.pic-list ul li {
		padding: 1.875em 0 0
	}

	.case-pic-list {
		padding-top: 2.5em;
		padding-left: 0
	}

	.case-pic-list .in-title {
		position: relative;
		top: 0
	}

	.case-pic-list ul {
		margin: 0;
		padding-top: 2em;
		padding-bottom: .5em
	}

	.case-pic-list ul li {
		width: 100%;
		padding-bottom: 1em;
		margin-bottom: 1em;
		border-bottom: 1px solid #dcdcdc
	}

	.case-pic-list ul li:last-child {
		border-bottom: 0
	}

	.case-pic-list ul li .text {
		padding: 0
	}

	.solution-pic-list {
		padding-top: 2.5em;
		padding-left: 0
	}

	.solution-pic-list .in-title {
		position: relative;
		top: 0
	}

	.solution-pic-list ul {
		padding-top: 1em
	}

	.solution-pic-list ul li {
		width: 100%;
		margin-bottom: 0
	}

	.solution-pic-list ul li .txt {
		height: auto
	}

	.pic-tab-nav {
		width: 100%;
		left: -20px;
		right: -20px
	}

	.pic-tab-nav .nr-nav-right1 {
		width: 100%;
		overflow-x: scroll;
		display: flex;
		border-bottom: 1px solid #e4e4e4
	}

	.pic-tab-nav .nr-nav-right1>li>a {
		padding: .5em 1em
	}

	.pic-tab-nav .nr-nav-right1>li {
		display: inline-block;
		border-bottom: 0;
		border-top: none;
		white-space: nowrap
	}

	.pic-tab-nav .nr-nav-right1>li>a i {
		display: none
	}

	.document-bn .img {
		position: relative;
		width: 100%;
		padding-bottom: 40%
	}

	.document-bn .img .jt {
		display: none
	}

	.document-bn .text {
		width: 100%;
		padding: 2em
	}
}

.arial_app {
	display: none;
	width: 100%
}

.app_f {
	display: none
}

@media only screen and (max-width:650px) {
	.arial_app .nr-nav-right1>li {
		padding: 0 .5em 0 0
	}
}

.aside_app {
	display: none!important
}

@media only screen and (max-width:500px) {

	.apply-btn-new {
		margin: 6px 0
	}

	.apply-btn-new>a>i {
		margin-top: 11px;
		display: block;
		line-height: 1.5;
		font-style: normal;
		padding-bottom: 5px
	}

	.aside_pc {
		display: none!important
	}

	.aside_app {
		display: block!important
	}

	.aside .aside_app a {
		background: #e83421;
		width: 38px;
		color: #fff;
		display: inline-block;
		border-radius: 50%;
		padding: 0
	}

	.aside .aside_app a img {
		width: 100%
	}

	.aside {
		right: 3.125%;
		bottom: 54px
	}

	.pic-list .img a img {
		position: relative
	}

	.pic-list .img a,.tech-index-sec02 .pic-list .img a {
		padding-bottom: 0
	}

	.img-video .play i,.img-video .play2 i,.pro-sec01 .img-video .play i {
		width: 44px;
		height: 44px
	}

	.play_button {
		font-size: 14px
	}
}

@media only screen and (max-width:414px) {

}

@media only screen and (max-width:375px) {

}

@media only screen and (max-width:340px) {
	.video_close_btn {
		margin-right: -2.875em
	}
	.nrnav-box .nr-nav-right1>li>a {
		font-size: 12px
	}

	.apply-btn-new>a>i {
		float: left;
		width: 100%;
		font-style: normal;
		margin-top: 0!important
	}

	.apply-btn-new>a>span {
		line-height: 2.5!important
	}
}

#loginicon_app {
	display: none
}

#loginicon span,#loginicon_app span {
	display: inline-block;
	width: 78%;
	float: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

#loginicon img,#loginicon_app img {
	width: 13px;
	float: right;
	position: relative;
	top: 4px;
	cursor: pointer
}

@media only screen and (max-width:1000px) {
	#loginicon_app {
		display: block;
		width: 100%;
		line-height: 3em
	}

	#loginicon_app img {
		position: absolute;
		top: 16px;
		right: 2.1em
	}
}

#right_login_icon span {
	position: relative;
	top: 6px
}

.detail_content_12j ul,ol {
	list-style-position: inside!important
}

.detail_content_12j ul li,ol li {
	list-style-type: inherit!important
}

.detail_content_12j ul p,ol p {
	display: inline-block!important
}

.detail_content_12j address,.detail_content_12j cite,.detail_content_12j em,.detail_content_12j i {
	font-style: italic!important
}

.detail_content_12j h1 {
	font-size: xx-large!important
}

.detail_content_12j h2 {
	font-size: x-large!important
}

.detail_content_12j h3 {
	font-size: large!important
}

.detail_content_12j h4 {
	font-size: medium!important
}

.detail_content_12j h5 {
	font-size: small!important
}

.detail_content_12j h6 {
	font-size: x-small!important
}

.detail_content_12j a {
	color: #333
}



/*///////////////////////*/
.tabs_parent_container,.tabs_parent_container2 {
  color: #000;
  max-width: 1200px;
  margin: auto;
  margin-top: 2rem;
}
.tabs_parent_container h3,.tabs_parent_container2 h3 {
  margin: 0;
  margin-bottom: 1rem;
}
.tabs_parent_container .tab_header {
  display: flex;
  margin-bottom: 1rem;
  position: relative;
  /*border-radius: 10px;*/
  overflow: hidden;
  /*box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.459);*/
}
.tabs_parent_container2 .tab_header2 {
  display: flex;
  margin-bottom: 1rem;
  position: relative;
  /*border-radius: 10px;*/
  overflow-y: scroll;
  /*box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.459);*/
}
.tabs_parent_container .tab_header .tab_marker {
  background-color: #006eff;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  transition: all 0.15s ease-in-out;
}
.tabs_parent_container2 .tab_header2 .tab_marker2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  transition: all 0.15s ease-in-out;
}
.tabs_parent_container .tab_header .tab {
  position: relative;
  flex-grow: 1;
  text-align: center;
  height: 98px;
  line-height: 120px;
}
.tabs_parent_container2 .tab_header2 .tab2 {
  position: relative;
  flex-grow: 1;
  text-align: center;
  height: 90px;
  line-height: 40px;
}
.tabs_parent_container .tab_header input,.tabs_parent_container2 .tab_header2 input {
  position: absolute;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.tabs_parent_container .tab_header label {
  display: block;
  padding: 1rem 1.5rem;
  cursor: pointer;
}
.tabs_parent_container2 .tab_header2 label {
  display: block;
  white-space: nowrap;
  padding: 1rem 1.5rem;
  padding-bottom: 0;
  cursor: pointer;
  margin-top: 40px;
}
.tabs_parent_container .tab_header input:not(:checked) + label:hover,.tabs_parent_container2 .tab_header2 input:not(:checked) + label:hover {
  /*background-color: #5a5a5a;*/
}
.tabs_parent_container .tab_header input:checked + label,.tabs_parent_container2 .tab_header2 input:checked + label {
  color:#006eff;
  /*background-color: #3a3a3a;*/
}
.tabs_parent_container .tab_header .tab:nth-child(1) label,.tabs_parent_container2 .tab_header2 .tab2:nth-child(1) label {
  border-radius: 10px 0 0 10px;
}
.tabs_parent_container .tab_header .tab:nth-child(3) label,.tabs_parent_container2 .tab_header2 .tab2:nth-child(3) label {
  border-radius: 0 10px 10px 0;
}
.tabs_parent_container .tab_content,.tabs_parent_container2 .tab_content2 {
  /*background-color: #3d3d3d;
  padding: 2rem;
  border-radius: 1rem;*/
  margin: auto;
  display: none;
  /*box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.459);*/
  position: relative;
  overflow: hidden;
}
.tabs_parent_container .tab_content.visible,.tabs_parent_container2 .tab_content2.visible {
  display: block;
}
.tabs_parent_container .tab_content h3,.tabs_parent_container2 .tab_content2 h3 {
  color: #555555;
  font-size: 3.5rem;
  position: absolute;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  left: 0;
  top: 0;
  margin-left: 1rem;
}
.tab_content .bg_cover {
    position: relative;
    width: 100%;
    top: -240px;
    height: 100%;
}
.tab_content2 .bg_cover {
    position: relative;
    width: 100%;
    top: -110px;
    height: 100%;
}
/*///////////////////////*/




.tabs_parent_container,.tabs_parent_container2,.tabs_parent_container5 {
  color: #000;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.tabs_parent_container h3,.tabs_parent_container2 h3,.tabs_parent_container5 h3 {
  margin: 0;
  margin-bottom: 1rem;
}
.tabs_parent_container .tab_header {
  display: flex;
  margin-bottom: 1rem;
  position: relative;
  /*border-radius: 10px;*/
  overflow: hidden;
  /*box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.459);*/
}
.tabs_parent_container2 .tab_header2 {
  display: flex;
  margin-bottom: 1rem;
  position: relative;
  /*border-radius: 10px;*/
  overflow-y: scroll;
  /*box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.459);*/
}
.tabs_parent_container5 .tab_header5 {
  display: flex;
  margin-bottom: 1rem;
  position: relative;
  /*border-radius: 10px;*/
  overflow-x: auto;
  overflow-y: hidden;
  /*box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.459);*/
}
.tabs_parent_container .tab_header .tab_marker {
  background-color: #006eff;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  transition: all 0.15s ease-in-out;
}
.tabs_parent_container2 .tab_header2 .tab_marker2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  transition: all 0.15s ease-in-out;
}
.tabs_parent_container5 .tab_header5 .tab_marker5 {
  background-color: #006eff;
  position: absolute;
  bottom: 0;
  left: 100px;
  height: 5px;
  transition: all 0.15s ease-in-out;
}
.tabs_parent_container .tab_header .tab {
  position: relative;
  flex-grow: 1;
  text-align: center;
  height: 98px;
  line-height: 120px;
}
.tabs_parent_container2 .tab_header2 .tab2 {
  position: relative;
  flex-grow: 1;
  text-align: center;
  height: 90px;
  line-height: 40px;
}
.tabs_parent_container5 .tab_header5 .tab5 {
  position: relative;
  flex-grow: 1;
  text-align: center;
  height: 90px;
  line-height: 30px;
}
.tabs_parent_container .tab_header input,.tabs_parent_container2 .tab_header2 input,.tabs_parent_container5 .tab_header5 input {
  position: absolute;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.tabs_parent_container .tab_header label {
  display: block;
  padding: 1rem 1.5rem;
  cursor: pointer;
}
.tabs_parent_container2 .tab_header2 label {
  display: block;
  white-space: nowrap;
  padding: 1rem 1.5rem;
  padding-bottom: 0;
  cursor: pointer;
  /*padding-top: 55px;*/
}
.tabs_parent_container5 .tab_header5 label {
  display: block;
  white-space: nowrap;
  padding: 1rem 1.5rem;
  padding-bottom: 0;
  cursor: pointer;
  padding-top: 55px;
}

.tabs_parent_container .tab_header input:not(:checked) + label:hover,.tabs_parent_container2 .tab_header2 input:not(:checked) + label:hover,.tabs_parent_container5 .tab_header5 input:not(:checked) + label:hover {
  /*background-color: #5a5a5a;*/
}
.tabs_parent_container .tab_header input:checked + label,.tabs_parent_container2 .tab_header2 input:checked + label,.tabs_parent_container5 .tab_header5 input:checked + label {
  color:#006eff;
  /*background-color: #3a3a3a;*/
}
.tabs_parent_container .tab_header .tab:nth-child(1) label,.tabs_parent_container2 .tab_header2 .tab2:nth-child(1) label,.tabs_parent_container5 .tab_header5 .tab5:nth-child(1) label {
  border-radius: 10px 0 0 10px;
}
.tabs_parent_container .tab_header .tab:nth-child(3) label,.tabs_parent_container2 .tab_header2 .tab2:nth-child(3) label,.tabs_parent_container5 .tab_header5 .tab5:nth-child(3) label {
  border-radius: 0 10px 10px 0;
}
.tabs_parent_container .tab_content,.tabs_parent_container2 .tab_content2,.tabs_parent_container5 .tab_content5 {
  /*background-color: #3d3d3d;
  padding: 2rem;
  border-radius: 1rem;*/
  margin: auto;
  display: none;
  /*box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.459);*/
  position: relative;
  overflow: hidden;
}
.tabs_parent_container .tab_content.visible,.tabs_parent_container2 .tab_content2.visible,.tabs_parent_container5 .tab_content5.visible {
  display: block;
}
.tabs_parent_container .tab_content h3,.tabs_parent_container2 .tab_content2 h3,.tabs_parent_container5 .tab_content5 h3 {
  color: #555555;
  font-size: 3.5rem;
  position: absolute;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  left: 0;
  top: 0;
  margin-left: 1rem;
}
.tab_content .bg_cover {
    position: relative;
    width: 100%;
    top: -240px;
    height: 100%;
}
.tab_content2 .bg_cover {
    position: relative;
    width: 100%;
    top: -110px;
    height: 100%;
}
.tab_content5 .bg_cover {
    position: relative;
    width: 100%;
    top: -110px;
    height: 100%;
}
.bg_cover .step_video_bt{width:64px;height:64px;border-radius:50%;background-repeat:no-repeat;background:url(../pic/newVideo.68770df5.png);background-size:cover;position:absolute;text-align:center;left:50%;top:50%;z-index:10;transform:translate(-50%,-50%);cursor:pointer}
.bg_cover .step_video_bt:hover{background:url(../pic/newVideo_hover.68770df5.png);background-size:cover}



.step8-figure {
	width: 96%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: row;
	padding: 16px 10px;
    background: #f6fbff;
    border-radius: 15px;
    margin: 0px auto;
}

.step8-figure .step-item {
	flex: 1;
	display: flex;
	flex-direction: column
}

.step8-figure .step-item .item-point {
	width: 26px;
	height: 46px;
	margin: 0 auto
}

.step8-figure .step-item .item-top {
	font-family: HarmonyOS_Sans_SC;
	color: #001126;
	text-align: center;
	margin-bottom: 6px;
	font-size: 12px;
}

.step8-figure .step-item .item-bottom {
	flex: 1;
	position: relative;
	overflow: hidden
}

.step8-figure .step-item .item-bottom img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 6px
}

.step8-figure .step-item .item-bottom .bottom-video {
	width: 100%;
	height: 100%;
	border-radius: 6px;
	position: relative;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: 0% 0%;
	object-position: 0% 0%
}

.step8-figure .step-item .item-bottom .bottom-scan {
	position: absolute;
	left: -32px;
	right: -32px;
	height: 12px;
	background-image: url(../pic/step_scan.68d1af13.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	animation: scanAnim-c27e595c 2.8s ease-in-out infinite normal forwards
}

.step8-figure .item-arrow {
    width: 5.5vh;
    height: 3vh;
    margin-left: 16px;
    margin-right: 8px;
    margin-top: 30vh;
	-o-object-fit: cover;
	object-fit: cover
}
@keyframes scanAnim-c27e595c {
	0% {
		top: -32px
	}

	to {
		top: calc(100% + 16px)
	}
}

/* 当屏幕宽度小于600px时，应用以下样式 */
@media (max-width: 600px) {
	.step8-audio {
		width: 100%;
		height: 100%;
		position: relative;
		background-image: url(../pic/bg_audio.db7eae16.png);
		background-repeat: no-repeat;
		background-size: 110% 110%;
		background-position: center;
		border-radius: 15px
	}

	.step8-audio .audio-contains {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 8px
	}

	.step8-audio .audio-contains .audio-item {
		width: 100%;
		height: 28px;
		margin-bottom: 7px;
		display: flex;
		flex-direction: row;
		position: relative
	}

	.step8-audio .audio-contains .audio-item:last-child {
		margin-bottom: 0
	}

	.step8-audio .audio-contains .audio-item .item-title {
		font-weight: 400;
		font-size: 10px;
		line-height: 28px;
		color: #222831;
		text-align: left;
		width: 44px
	}

	.step8-audio .audio-contains .audio-item .item-sound {
		width: 40%;
		height: 28px;
		background-color: #fff;
		border-radius: 6px;
		display: flex;
		flex-direction: row;
		align-items: center;
		border: 2px solid transparent;
		box-sizing: border-box;
		cursor: pointer;
		position: relative
	}

	.step8-audio .audio-contains .audio-item .item-sound:hover {
		border: 2px solid #006eff
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-avatar {
		width: 20px;
		height: 20px;
		margin-left: 4px
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-desc {
		height: 100%;
		margin-left: 12px;
		font-weight: 400;
		font-size: 12px;
		color: #222831;
		position: relative
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-desc .desc-ripple-normal {
		position: absolute;
		left: 0px;
		bottom: 0px;
		width: 50px;
		height: 8px
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-desc .sound-lottie {
		position: absolute;
		left: -54px;
		bottom: -8px;
		width: 154px;
		height: 24px;
		transform: scale(.4)
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-btn {
		position: absolute;
		right: 12px;
		width: 16px;
		height: 16px
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-btn-pause {
		background-image: url(../pic/mpause.png);background-size: cover
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-btn-pause:hover {
		background-image: url(../pic/mpauseover.png);background-size: cover
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-btn-play {
		background-image: url(../pic/mplay.png);background-size: cover
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-btn-play:hover {
		background-image: url(../pic/mplayover.png);background-size: cover
	}

	.step8-audio .audio-contains .audio-item .sound-source {
		margin-left: 12px;
		margin-right: 12px
	}
}
/* 当屏幕宽度大于600px时，应用以下样式 */
@media (min-width: 600px) {
	.step8-figure .step-item .item-top {
		font-size: 15px;
	}
	.step8-audio {
		width: 1090px;
		height: 650px;
		position: relative;
		background-image: url(../pic/bg_audio.db7eae16.png);
		background-repeat: no-repeat;
		background-size: 110% 110%;
		background-position: center;
		border-radius: 15px
	}

	.step8-audio .audio-contains {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center
	}

	.step8-audio .audio-contains .audio-item {
		height: 88px;
		margin-bottom: 24px;
		display: flex;
		flex-direction: row
	}

	.step8-audio .audio-contains .audio-item:last-child {
		margin-bottom: 0
	}

	.step8-audio .audio-contains .audio-item .item-title {
		font-weight: 400;
		font-size: 26px;
		color: #222831;
		line-height: 88px;
		text-align: left;
		width: 106px
	}

	.step8-audio .audio-contains .audio-item .item-sound {
		width: 324px;
		height: 88px;
		background-color: #fff;
		border-radius: 12px;
		display: flex;
		flex-direction: row;
		align-items: center;
		border: 2px solid transparent;
		box-sizing: border-box;
		cursor: pointer
	}

	.step8-audio .audio-contains .audio-item .item-sound:hover {
		border: 2px solid #006eff
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-avatar {
		width: 64px;
		height: 64px;
		margin-left: 12px
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-desc {
		margin-left: 12px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		font-weight: 400;
		font-size: 18px;
		color: #222831
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-desc .desc-ripple-normal {
		width: 154px;
		height: 24px
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-btn {
		width: 48px;
		height: 48px;
		margin-left: 24px
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-btn-pause {
		background-image: url(../pic/mpause.png);background-size: cover
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-btn-pause:hover {
		background-image: url(../pic/mpauseover.png);background-size: cover
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-btn-play {
		background-image: url(../pic/mplay.png);background-size: cover
	}

	.step8-audio .audio-contains .audio-item .item-sound .sound-btn-play:hover {
		background-image: url(../pic/mplayover.png);background-size: cover
	}

	.step8-audio .audio-contains .audio-item .sound-source {
		margin-left: 24px;
		margin-right: 36px
	}
}



@media only screen and (max-width:414px) {
	.tabs_parent_container5 .tab_header5 .tab_marker5 {
	  background-color:#ffffff00;
	}
	.tabs_parent_container5 .tab_header5 .tab5 {
	  line-height: 30px;
	}
	.step8-figure .item-arrow {
		margin-top: 14vh;
	}
}

@media only screen and (max-width:375px) {
	.tabs_parent_container5 .tab_header5 .tab_marker5 {
	  background-color:#ffffff00;
	}
	.tabs_parent_container5 .tab_header5 .tab5 {
	  line-height: 30px;
	}
	.step8-figure .item-arrow {
		margin-top: 15vh;
	}
}

@media only screen and (max-width:340px) {
	.tabs_parent_container5 .tab_header5 .tab_marker5 {
	  background-color:#ffffff00;
	}
	.tabs_parent_container5 .tab_header5 .tab5 {
	  line-height: 30px;
	}
	.step8-figure .item-arrow {
		margin-top: 16vh;
	}
}