.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%, 20%, 53%, 80%, to {
-webkit-transition-timing-function:cubic-bezier(.215, .61, .355, 1);
transition-timing-function:cubic-bezier(.215, .61, .355, 1);
-webkit-transform:translateZ(0);
transform:translateZ(0)
}
40%, 43% {
-webkit-transition-timing-function:cubic-bezier(.755, .05, .855, .06);
transition-timing-function:cubic-bezier(.755, .05, .855, .06);
-webkit-transform:translate3d(0, -30px, 0);
transform:translate3d(0, -30px, 0)
}
70% {
-webkit-transition-timing-function:cubic-bezier(.755, .05, .855, .06);
transition-timing-function:cubic-bezier(.755, .05, .855, .06);
-webkit-transform:translate3d(0, -15px, 0);
transform:translate3d(0, -15px, 0)
}
90% {
-webkit-transform:translate3d(0, -4px, 0);
transform:translate3d(0, -4px, 0)
}
}
@keyframes bounce {
0%, 20%, 53%, 80%, to {
-webkit-transition-timing-function:cubic-bezier(.215, .61, .355, 1);
transition-timing-function:cubic-bezier(.215, .61, .355, 1);
-webkit-transform:translateZ(0);
transform:translateZ(0)
}
40%, 43% {
-webkit-transition-timing-function:cubic-bezier(.755, .05, .855, .06);
transition-timing-function:cubic-bezier(.755, .05, .855, .06);
-webkit-transform:translate3d(0, -30px, 0);
transform:translate3d(0, -30px, 0)
}
70% {
-webkit-transition-timing-function:cubic-bezier(.755, .05, .855, .06);
transition-timing-function:cubic-bezier(.755, .05, .855, .06);
-webkit-transform:translate3d(0, -15px, 0);
transform:translate3d(0, -15px, 0)
}
90% {
-webkit-transform:translate3d(0, -4px, 0);
transform:translate3d(0, -4px, 0)
}
}
.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom
}
@-webkit-keyframes flash {
0%, 50%, to {
opacity:1
}
25%, 75% {
opacity:0
}
}
@keyframes flash {
0%, 50%, to {
opacity:1
}
25%, 75% {
opacity:0
}
}
.flash {
	-webkit-animation-name: flash;
	animation-name: flash
}
@-webkit-keyframes pulse {
0% {
-webkit-transform:scaleX(1);
transform:scaleX(1)
}
50% {
-webkit-transform:scale3d(1.05, 1.05, 1.05);
transform:scale3d(1.05, 1.05, 1.05)
}
to {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}
}
@keyframes pulse {
0% {
-webkit-transform:scaleX(1);
transform:scaleX(1)
}
50% {
-webkit-transform:scale3d(1.05, 1.05, 1.05);
transform:scale3d(1.05, 1.05, 1.05)
}
to {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}
}
.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse
}
@-webkit-keyframes rubberBand {
0% {
-webkit-transform:scaleX(1);
transform:scaleX(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)
}
to {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}
}
@keyframes rubberBand {
0% {
-webkit-transform:scaleX(1);
transform:scaleX(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)
}
to {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}
}
.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand
}
@-webkit-keyframes shake {
0%, to {
-webkit-transform:translateZ(0);
transform:translateZ(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%, to {
-webkit-transform:translateZ(0);
transform:translateZ(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:rotate(15deg);
transform:rotate(15deg)
}
40% {
-webkit-transform:rotate(-10deg);
transform:rotate(-10deg)
}
60% {
-webkit-transform:rotate(5deg);
transform:rotate(5deg)
}
80% {
-webkit-transform:rotate(-5deg);
transform:rotate(-5deg)
}
to {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg)
}
}
@keyframes swing {
20% {
-webkit-transform:rotate(15deg);
transform:rotate(15deg)
}
40% {
-webkit-transform:rotate(-10deg);
transform:rotate(-10deg)
}
60% {
-webkit-transform:rotate(5deg);
transform:rotate(5deg)
}
80% {
-webkit-transform:rotate(-5deg);
transform:rotate(-5deg)
}
to {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg)
}
}
.swing {
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing
}
@-webkit-keyframes tada {
0% {
-webkit-transform:scaleX(1);
transform:scaleX(1)
}
10%, 20% {
-webkit-transform:scale3d(.9, .9, .9) rotate(-3deg);
transform:scale3d(.9, .9, .9) rotate(-3deg)
}
30%, 50%, 70%, 90% {
-webkit-transform:scale3d(1.1, 1.1, 1.1) rotate(3deg);
transform:scale3d(1.1, 1.1, 1.1) rotate(3deg)
}
40%, 60%, 80% {
-webkit-transform:scale3d(1.1, 1.1, 1.1) rotate(-3deg);
transform:scale3d(1.1, 1.1, 1.1) rotate(-3deg)
}
to {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}
}
@keyframes tada {
0% {
-webkit-transform:scaleX(1);
transform:scaleX(1)
}
10%, 20% {
-webkit-transform:scale3d(.9, .9, .9) rotate(-3deg);
transform:scale3d(.9, .9, .9) rotate(-3deg)
}
30%, 50%, 70%, 90% {
-webkit-transform:scale3d(1.1, 1.1, 1.1) rotate(3deg);
transform:scale3d(1.1, 1.1, 1.1) rotate(3deg)
}
40%, 60%, 80% {
-webkit-transform:scale3d(1.1, 1.1, 1.1) rotate(-3deg);
transform:scale3d(1.1, 1.1, 1.1) rotate(-3deg)
}
to {
	-webkit-transform: scaleX(1);
	transform: scaleX(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) rotate(-5deg);
transform:translate3d(-25%, 0, 0) rotate(-5deg)
}
30% {
-webkit-transform:translate3d(20%, 0, 0) rotate(3deg);
transform:translate3d(20%, 0, 0) rotate(3deg)
}
45% {
-webkit-transform:translate3d(-15%, 0, 0) rotate(-3deg);
transform:translate3d(-15%, 0, 0) rotate(-3deg)
}
60% {
-webkit-transform:translate3d(10%, 0, 0) rotate(2deg);
transform:translate3d(10%, 0, 0) rotate(2deg)
}
75% {
-webkit-transform:translate3d(-5%, 0, 0) rotate(-1deg);
transform:translate3d(-5%, 0, 0) rotate(-1deg)
}
to {
	-webkit-transform: none;
	transform: none
}
}
@keyframes wobble {
0% {
-webkit-transform:none;
transform:none
}
15% {
-webkit-transform:translate3d(-25%, 0, 0) rotate(-5deg);
transform:translate3d(-25%, 0, 0) rotate(-5deg)
}
30% {
-webkit-transform:translate3d(20%, 0, 0) rotate(3deg);
transform:translate3d(20%, 0, 0) rotate(3deg)
}
45% {
-webkit-transform:translate3d(-15%, 0, 0) rotate(-3deg);
transform:translate3d(-15%, 0, 0) rotate(-3deg)
}
60% {
-webkit-transform:translate3d(10%, 0, 0) rotate(2deg);
transform:translate3d(10%, 0, 0) rotate(2deg)
}
75% {
-webkit-transform:translate3d(-5%, 0, 0) rotate(-1deg);
transform:translate3d(-5%, 0, 0) rotate(-1deg)
}
to {
	-webkit-transform: none;
	transform: none
}
}
.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
}
@-webkit-keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, to {
-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)
}
to {
	opacity: 1;
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}
}
@keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, to {
-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)
}
to {
	opacity: 1;
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}
}
.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
	-webkit-animation-duration: .75s;
	animation-duration: .75s
}
@-webkit-keyframes bounceInDown {
0%, 60%, 75%, 90%, to {
-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)
}
to {
	-webkit-transform: none;
	transform: none
}
}
@keyframes bounceInDown {
0%, 60%, 75%, 90%, to {
-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)
}
to {
	-webkit-transform: none;
	transform: none
}
}
.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown
}
@-webkit-keyframes bounceInLeft {
0%, 60%, 75%, 90%, to {
-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)
}
to {
	-webkit-transform: none;
	transform: none
}
}
@keyframes bounceInLeft {
0%, 60%, 75%, 90%, to {
-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)
}
to {
	-webkit-transform: none;
	transform: none
}
}
.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft
}
@-webkit-keyframes bounceInRight {
0%, 60%, 75%, 90%, to {
-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)
}
to {
	-webkit-transform: none;
	transform: none
}
}
@keyframes bounceInRight {
0%, 60%, 75%, 90%, to {
-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)
}
to {
	-webkit-transform: none;
	transform: none
}
}
.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight
}
@-webkit-keyframes bounceInUp {
0%, 60%, 75%, 90%, to {
-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)
}
to {
	-webkit-transform: translateZ(0);
	transform: translateZ(0)
}
}
@keyframes bounceInUp {
0%, 60%, 75%, 90%, to {
-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)
}
to {
	-webkit-transform: translateZ(0);
	transform: translateZ(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)
}
to {
	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)
}
to {
	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)
}
to {
	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)
}
to {
	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)
}
to {
	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)
}
to {
	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)
}
to {
	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)
}
to {
	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)
}
to {
	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)
}
to {
	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
}
to {
	opacity: 1
}
}
@keyframes fadeIn {
0% {
opacity:0
}
to {
	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)
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none
}
}
@keyframes fadeInDown {
0% {
opacity:0;
-webkit-transform:translate3d(0, -100%, 0);
transform:translate3d(0, -100%, 0)
}
to {
	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)
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none
}
}
@keyframes fadeInDownBig {
0% {
opacity:0;
-webkit-transform:translate3d(0, -2000px, 0);
transform:translate3d(0, -2000px, 0)
}
to {
	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)
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none
}
}
@keyframes fadeInLeft {
0% {
opacity:0;
-webkit-transform:translate3d(-100%, 0, 0);
transform:translate3d(-100%, 0, 0)
}
to {
	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)
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none
}
}
@keyframes fadeInLeftBig {
0% {
opacity:0;
-webkit-transform:translate3d(-2000px, 0, 0);
transform:translate3d(-2000px, 0, 0)
}
to {
	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)
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none
}
}
@keyframes fadeInRight {
0% {
opacity:0;
-webkit-transform:translate3d(100%, 0, 0);
transform:translate3d(100%, 0, 0)
}
to {
	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)
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none
}
}
@keyframes fadeInRightBig {
0% {
opacity:0;
-webkit-transform:translate3d(2000px, 0, 0);
transform:translate3d(2000px, 0, 0)
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none
}
}
.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig
}
@-webkit-keyframes fadeInUp {
0% {
opacity:0;
-webkit-transform:translate3d(0, 100%, 0);
transform:translate3d(0, 100%, 0)
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none
}
}
@keyframes fadeInUp {
0% {
opacity:0;
-webkit-transform:translate3d(0, 100%, 0);
transform:translate3d(0, 100%, 0)
}
to {
	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)
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none
}
}
@keyframes fadeInUpBig {
0% {
opacity:0;
-webkit-transform:translate3d(0, 2000px, 0);
transform:translate3d(0, 2000px, 0)
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none
}
}
.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig
}
@-webkit-keyframes fadeOut {
0% {
opacity:1
}
to {
	opacity: 0
}
}
@keyframes fadeOut {
0% {
opacity:1
}
to {
	opacity: 0
}
}
.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}
@-webkit-keyframes fadeOutDown {
0% {
opacity:1
}
to {
	opacity: 0;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0)
}
}
@keyframes fadeOutDown {
0% {
opacity:1
}
to {
	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
}
to {
	opacity: 0;
	-webkit-transform: translate3d(0, 2000px, 0);
	transform: translate3d(0, 2000px, 0)
}
}
@keyframes fadeOutDownBig {
0% {
opacity:1
}
to {
	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
}
to {
	opacity: 0;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0)
}
}
@keyframes fadeOutLeft {
0% {
opacity:1
}
to {
	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
}
to {
	opacity: 0;
	-webkit-transform: translate3d(-2000px, 0, 0);
	transform: translate3d(-2000px, 0, 0)
}
}
@keyframes fadeOutLeftBig {
0% {
opacity:1
}
to {
	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
}
to {
	opacity: 0;
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0)
}
}
@keyframes fadeOutRight {
0% {
opacity:1
}
to {
	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
}
to {
	opacity: 0;
	-webkit-transform: translate3d(2000px, 0, 0);
	transform: translate3d(2000px, 0, 0)
}
}
@keyframes fadeOutRightBig {
0% {
opacity:1
}
to {
	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
}
to {
	opacity: 0;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0)
}
}
@keyframes fadeOutUp {
0% {
opacity:1
}
to {
	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
}
to {
	opacity: 0;
	-webkit-transform: translate3d(0, -2000px, 0);
	transform: translate3d(0, -2000px, 0)
}
}
@keyframes fadeOutUpBig {
0% {
opacity:1
}
to {
	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) rotateY(-1turn);
transform:perspective(400px) rotateY(-1turn);
-webkit-animation-timing-function:ease-out;
animation-timing-function:ease-out
}
40% {
-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg);
transform:perspective(400px) translateZ(150px) rotateY(-190deg);
-webkit-animation-timing-function:ease-out;
animation-timing-function:ease-out
}
50% {
-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg);
transform:perspective(400px) translateZ(150px) rotateY(-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
}
to {
	-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) rotateY(-1turn);
transform:perspective(400px) rotateY(-1turn);
-webkit-animation-timing-function:ease-out;
animation-timing-function:ease-out
}
40% {
-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg);
transform:perspective(400px) translateZ(150px) rotateY(-190deg);
-webkit-animation-timing-function:ease-out;
animation-timing-function:ease-out
}
50% {
-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg);
transform:perspective(400px) translateZ(150px) rotateY(-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
}
to {
	-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) rotateX(90deg);
transform:perspective(400px) rotateX(90deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in;
opacity:0
}
40% {
-webkit-transform:perspective(400px) rotateX(-20deg);
transform:perspective(400px) rotateX(-20deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in
}
60% {
-webkit-transform:perspective(400px) rotateX(10deg);
transform:perspective(400px) rotateX(10deg);
opacity:1
}
80% {
-webkit-transform:perspective(400px) rotateX(-5deg);
transform:perspective(400px) rotateX(-5deg)
}
to {
	-webkit-transform: perspective(400px);
	transform: perspective(400px)
}
}
@keyframes flipInX {
0% {
-webkit-transform:perspective(400px) rotateX(90deg);
transform:perspective(400px) rotateX(90deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in;
opacity:0
}
40% {
-webkit-transform:perspective(400px) rotateX(-20deg);
transform:perspective(400px) rotateX(-20deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in
}
60% {
-webkit-transform:perspective(400px) rotateX(10deg);
transform:perspective(400px) rotateX(10deg);
opacity:1
}
80% {
-webkit-transform:perspective(400px) rotateX(-5deg);
transform:perspective(400px) rotateX(-5deg)
}
to {
	-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) rotateY(90deg);
transform:perspective(400px) rotateY(90deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in;
opacity:0
}
40% {
-webkit-transform:perspective(400px) rotateY(-20deg);
transform:perspective(400px) rotateY(-20deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in
}
60% {
-webkit-transform:perspective(400px) rotateY(10deg);
transform:perspective(400px) rotateY(10deg);
opacity:1
}
80% {
-webkit-transform:perspective(400px) rotateY(-5deg);
transform:perspective(400px) rotateY(-5deg)
}
to {
	-webkit-transform: perspective(400px);
	transform: perspective(400px)
}
}
@keyframes flipInY {
0% {
-webkit-transform:perspective(400px) rotateY(90deg);
transform:perspective(400px) rotateY(90deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in;
opacity:0
}
40% {
-webkit-transform:perspective(400px) rotateY(-20deg);
transform:perspective(400px) rotateY(-20deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in
}
60% {
-webkit-transform:perspective(400px) rotateY(10deg);
transform:perspective(400px) rotateY(10deg);
opacity:1
}
80% {
-webkit-transform:perspective(400px) rotateY(-5deg);
transform:perspective(400px) rotateY(-5deg)
}
to {
	-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) rotateX(-20deg);
transform:perspective(400px) rotateX(-20deg);
opacity:1
}
to {
	-webkit-transform: perspective(400px) rotateX(90deg);
	transform: perspective(400px) rotateX(90deg);
	opacity: 0
}
}
@keyframes flipOutX {
0% {
-webkit-transform:perspective(400px);
transform:perspective(400px)
}
30% {
-webkit-transform:perspective(400px) rotateX(-20deg);
transform:perspective(400px) rotateX(-20deg);
opacity:1
}
to {
	-webkit-transform: perspective(400px) rotateX(90deg);
	transform: perspective(400px) rotateX(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) rotateY(-15deg);
transform:perspective(400px) rotateY(-15deg);
opacity:1
}
to {
	-webkit-transform: perspective(400px) rotateY(90deg);
	transform: perspective(400px) rotateY(90deg);
	opacity: 0
}
}
@keyframes flipOutY {
0% {
-webkit-transform:perspective(400px);
transform:perspective(400px)
}
30% {
-webkit-transform:perspective(400px) rotateY(-15deg);
transform:perspective(400px) rotateY(-15deg);
opacity:1
}
to {
	-webkit-transform: perspective(400px) rotateY(90deg);
	transform: perspective(400px) rotateY(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
}
to {
	-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
}
to {
	-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
}
to {
	-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
	transform: translate3d(100%, 0, 0) skewX(30deg);
	opacity: 0
}
}
@keyframes lightSpeedOut {
0% {
opacity:1
}
to {
	-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:rotate(-200deg);
transform:rotate(-200deg);
opacity:0
}
to {
	-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:rotate(-200deg);
transform:rotate(-200deg);
opacity:0
}
to {
	-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:rotate(-45deg);
transform:rotate(-45deg);
opacity:0
}
to {
	-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:rotate(-45deg);
transform:rotate(-45deg);
opacity:0
}
to {
	-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:rotate(45deg);
transform:rotate(45deg);
opacity:0
}
to {
	-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:rotate(45deg);
transform:rotate(45deg);
opacity:0
}
to {
	-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:rotate(45deg);
transform:rotate(45deg);
opacity:0
}
to {
	-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:rotate(45deg);
transform:rotate(45deg);
opacity:0
}
to {
	-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:rotate(-90deg);
transform:rotate(-90deg);
opacity:0
}
to {
	-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:rotate(-90deg);
transform:rotate(-90deg);
opacity:0
}
to {
	-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
}
to {
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transform: rotate(200deg);
	transform: rotate(200deg);
	opacity: 0
}
}
@keyframes rotateOut {
0% {
-webkit-transform-origin:center;
transform-origin:center;
opacity:1
}
to {
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transform: rotate(200deg);
	transform: rotate(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
}
to {
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 0
}
}
@keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
opacity:1
}
to {
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
	-webkit-transform: rotate(45deg);
	transform: rotate(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
}
to {
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	opacity: 0
}
}
@keyframes rotateOutDownRight {
0% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
opacity:1
}
to {
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-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
}
to {
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	opacity: 0
}
}
@keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
opacity:1
}
to {
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-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
}
to {
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	opacity: 0
}
}
@keyframes rotateOutUpRight {
0% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
opacity:1
}
to {
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
	-webkit-transform: rotate(90deg);
	transform: rotate(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:rotate(80deg);
transform:rotate(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:rotate(60deg);
transform:rotate(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
}
to {
	-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:rotate(80deg);
transform:rotate(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:rotate(60deg);
transform:rotate(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
}
to {
	-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) rotate(-120deg);
transform:translate3d(-100%, 0, 0) rotate(-120deg)
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none
}
}
@keyframes rollIn {
0% {
opacity:0;
-webkit-transform:translate3d(-100%, 0, 0) rotate(-120deg);
transform:translate3d(-100%, 0, 0) rotate(-120deg)
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none
}
}
.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn
}
@-webkit-keyframes rollOut {
0% {
opacity:1
}
to {
	opacity: 0;
	-webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
	transform: translate3d(100%, 0, 0) rotate(120deg)
}
}
@keyframes rollOut {
0% {
opacity:1
}
to {
	opacity: 0;
	-webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
	transform: translate3d(100%, 0, 0) rotate(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)
}
to {
	opacity: 0
}
}
@keyframes zoomOut {
0% {
opacity:1
}
50% {
opacity:0;
-webkit-transform:scale3d(.3, .3, .3);
transform:scale3d(.3, .3, .3)
}
to {
	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)
}
to {
	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)
}
to {
	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)
}
to {
	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)
}
to {
	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)
}
to {
	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)
}
to {
	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)
}
to {
	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)
}
to {
	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
}
to {
	-webkit-transform: translateY(0);
	transform: translateY(0)
}
}
@keyframes slideInDown {
0% {
-webkit-transform:translateY(-100%);
transform:translateY(-100%);
visibility:visible
}
to {
	-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
}
to {
	-webkit-transform: translateX(0);
	transform: translateX(0)
}
}
@keyframes slideInLeft {
0% {
-webkit-transform:translateX(-100%);
transform:translateX(-100%);
visibility:visible
}
to {
	-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
}
to {
	-webkit-transform: translateX(0);
	transform: translateX(0)
}
}
@keyframes slideInRight {
0% {
-webkit-transform:translateX(100%);
transform:translateX(100%);
visibility:visible
}
to {
	-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
}
to {
	-webkit-transform: translateY(0);
	transform: translateY(0)
}
}
@keyframes slideInUp {
0% {
-webkit-transform:translateY(100%);
transform:translateY(100%);
visibility:visible
}
to {
	-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)
}
to {
	visibility: hidden;
	-webkit-transform: translateY(100%);
	transform: translateY(100%)
}
}
@keyframes slideOutDown {
0% {
-webkit-transform:translateY(0);
transform:translateY(0)
}
to {
	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)
}
to {
	visibility: hidden;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%)
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform:translateX(0);
transform:translateX(0)
}
to {
	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)
}
to {
	visibility: hidden;
	-webkit-transform: translateX(100%);
	transform: translateX(100%)
}
}
@keyframes slideOutRight {
0% {
-webkit-transform:translateX(0);
transform:translateX(0)
}
to {
	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)
}
to {
	visibility: hidden;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%)
}
}
@keyframes slideOutUp {
0% {
-webkit-transform:translateY(0);
transform:translateY(0)
}
to {
	visibility: hidden;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%)
}
}
.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp
}
.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1
}
.swiper-container-no-flexbox .swiper-slide {
	float: left
}
.swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}
.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	box-sizing: content-box
}
.swiper-container-android .swiper-slide, .swiper-wrapper {
	-webkit-transform: translateZ(0);
	transform: translateZ(0)
}
.swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}
.swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}
.swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform
}
.swiper-invisible-blank-slide {
	visibility: hidden
}
.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
	height: auto
}
.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height, -webkit-transform;
	transition-property: height, -webkit-transform;
	transition-property: transform, height;
	transition-property: transform, height, -webkit-transform
}
.swiper-container-3d {
	-webkit-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;
	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, right top, left top, from(rgba(0,0,0,.5)), to(transparent));
	background-image: -webkit-linear-gradient(right, rgba(0,0,0,.5), transparent);
	background-image: linear-gradient(270deg, rgba(0,0,0,.5), transparent)
}
.swiper-container-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,.5)), to(transparent));
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,.5), transparent);
	background-image: linear-gradient(90deg, rgba(0,0,0,.5), transparent)
}
.swiper-container-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,.5)), to(transparent));
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.5), transparent);
	background-image: linear-gradient(0deg, rgba(0,0,0,.5), transparent)
}
.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,.5)), to(transparent));
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,.5), transparent);
	background-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent)
}
.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal>.swiper-wrapper {
	-ms-touch-action: pan-y;
	touch-action: pan-y
}
.swiper-container-wp8-vertical, .swiper-container-wp8-vertical>.swiper-wrapper {
	-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;
	background-size: 27px 44px;
	background-position: 50%;
	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 xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");
	left: 10px;
	right: auto
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");
	right: 10px;
	left: auto
}
.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 xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%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 xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E")
}
.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 xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E")
}
.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 xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E")
}
.swiper-button-lock {
	display: none
}
.swiper-pagination {
	position: absolute;
	text-align: center;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
	-webkit-transform: translateZ(0);
	transform: translateZ(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-bullets-dynamic {
	overflow: hidden;
	font-size: 0
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transform: scale(.33);
	transform: scale(.33);
	position: relative
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	-webkit-transform: scale(1);
	transform: scale(1)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	-webkit-transform: scale(.66);
	transform: scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	-webkit-transform: scale(.33);
	transform: scale(.33)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	-webkit-transform: scale(.66);
	transform: scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	-webkit-transform: scale(.33);
	transform: scale(.33)
}
.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;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}
.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer
}
.swiper-pagination-bullet-active {
	opacity: 1;
	background: #007aff
}
.swiper-container-vertical>.swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0)
}
.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 6px 0;
	display: block
}
.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px
}
.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	-webkit-transition: top .2s, -webkit-transform .2s;
	transition: top .2s, -webkit-transform .2s;
	-webkit-transition: transform .2s, top .2s;
	transition: transform .2s, top .2s;
	-webkit-transition: transform .2s, top .2s, -webkit-transform .2s;
	transition: transform .2s, top .2s, -webkit-transform .2s
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px
}
.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap
}
.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: left .2s, -webkit-transform .2s;
	transition: left .2s, -webkit-transform .2s;
	-webkit-transition: transform .2s, left .2s;
	transition: transform .2s, left .2s;
	-webkit-transition: transform .2s, left .2s, -webkit-transform .2s;
	transition: transform .2s, left .2s, -webkit-transform .2s
}
.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: right .2s, -webkit-transform .2s;
	transition: right .2s, -webkit-transform .2s;
	-webkit-transition: transform .2s, right .2s;
	transition: transform .2s, right .2s;
	-webkit-transition: transform .2s, right .2s, -webkit-transform .2s;
	transition: transform .2s, right .2s, -webkit-transform .2s
}
.swiper-pagination-progressbar {
	background: rgba(0,0,0,.25);
	position: absolute
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #007aff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	transform-origin: left top
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	-webkit-transform-origin: right top;
	transform-origin: right top
}
.swiper-container-horizontal>.swiper-pagination-progressbar {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0
}
.swiper-container-vertical>.swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0
}
.swiper-pagination-white .swiper-pagination-bullet-active {
	background: #fff
}
.swiper-pagination-progressbar.swiper-pagination-white {
	background: hsla(0,0%,100%,.25)
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
	background: #fff
}
.swiper-pagination-black .swiper-pagination-bullet-active {
	background: #000
}
.swiper-pagination-progressbar.swiper-pagination-black {
	background: rgba(0,0,0,.25)
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
	background: #000
}
.swiper-pagination-lock {
	display: none
}
.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-scrollbar-lock {
	display: none
}
.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: 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-slide-zoomed {
	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%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12) infinite;
	animation: swiper-preloader-spin 1s steps(12) infinite
}
.swiper-lazy-preloader:after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
	background-position: 50%;
	background-size: 100%;
	background-repeat: no-repeat
}
.swiper-lazy-preloader-white:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")
}
@-webkit-keyframes swiper-preloader-spin {
to {
-webkit-transform:rotate(1turn);
transform:rotate(1turn)
}
}
@keyframes swiper-preloader-spin {
to {
-webkit-transform:rotate(1turn);
transform:rotate(1turn)
}
}
.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out
}
.swiper-container-fade .swiper-slide {
	pointer-events: none;
	-webkit-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-container-cube {
	overflow: visible
}
.swiper-container-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	width: 100%;
	height: 100%
}
.swiper-container-cube .swiper-slide .swiper-slide {
	pointer-events: none
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0
}
.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}
.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-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}
.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-flip {
	overflow: visible
}
.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1
}
.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none
}
.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}
.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;
	backface-visibility: hidden
}
.swiper-container-coverflow .swiper-wrapper {
	-ms-perspective: 1200px
}
body, html {
	font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, \\5FAE\8F6F\96C5\9ED1, Arial, sans-serif
}
article, aside, blockquote, body, button, code, dd, details, div, dl, dt, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, input, legend, li, menu, nav, ol, p, pre, section, td, textarea, th, ul {
	margin: 0;
	padding: 0
}
li, ol, ul {
	list-style: none
}
html {
	box-sizing: border-box
}
*, :after, :before {
	box-sizing: inherit
}
a {
	color: inherit
}
a:hover {
	text-decoration: none
}
a.udl-h:hover {
	text-decoration: underline
}
.di {
	display: inline
}
.db {
	display: block
}
.dib {
	display: inline-block
}
.dn {
	display: none
}
.h14 {
	height: 14px
}
.h16 {
	height: 16px
}
.h18 {
	height: 18px
}
.h20 {
	height: 20px
}
.h22 {
	height: 22px
}
.h24 {
	height: 24px
}
.hp100 {
	height: 100%
}
.w20 {
	width: 20px
}
.w40 {
	width: 40px
}
.w1200 {
	width: 1200px
}
.pct10 {
	width: 10%
}
.pct13 {
	width: 13%
}
.pct15 {
	width: 15%
}
.pct20 {
	width: 20%
}
.pct25 {
	width: 25%
}
.pct30 {
	width: 30%
}
.pct33 {
	width: 33.3%
}
.pct40 {
	width: 40%
}
.pct50 {
	width: 50%
}
.pct60 {
	width: 60%
}
.pct66 {
	width: 66.6%
}
.pct70 {
	width: 70%
}
.pct75 {
	width: 75%
}
.pct80 {
	width: 80%
}
.pct90 {
	width: 90%
}
.pct100 {
	width: 100%
}
.lhp15 {
	line-height: 1.5
}
.lhp2 {
	line-height: 2
}
.m0 {
	margin: 0
}
.ml1 {
	margin-left: 1px
}
.ml2 {
	margin-left: 2px
}
.ml5 {
	margin-left: 5px
}
.ml10 {
	margin-left: 10px
}
.ml15 {
	margin-left: 15px
}
.ml20 {
	margin-left: 20px
}
.ml23 {
	margin-left: 23px
}
.ml30 {
	margin-left: 30px
}
.ml40 {
	margin-left: 40px
}
.mr1 {
	margin-right: 1px
}
.mr2 {
	margin-right: 2px
}
.mr5 {
	margin-right: 5px
}
.mr10 {
	margin-right: 10px
}
.mr15 {
	margin-right: 15px
}
.mr20 {
	margin-right: 20px
}
.mr30 {
	margin-right: 30px
}
.mr40 {
	margin-right: 40px
}
.mr60 {
	margin-right: 60px
}
.mt1 {
	margin-top: 1px
}
.mt2 {
	margin-top: 2px
}
.mt5 {
	margin-top: 5px
}
.mt10 {
	margin-top: 10px
}
.mt15 {
	margin-top: 15px
}
.mt20 {
	margin-top: 20px
}
.mt30 {
	margin-top: 30px
}
.mt40 {
	margin-top: 40px
}
.mb1 {
	margin-bottom: 1px
}
.mb2 {
	margin-bottom: 2px
}
.mb5 {
	margin-bottom: 5px
}
.mb10 {
	margin-bottom: 10px
}
.mb15 {
	margin-bottom: 15px
}
.mb20 {
	margin-bottom: 20px
}
.mb30 {
	margin-bottom: 30px
}
.mb40 {
	margin-bottom: 40px
}
.mb70 {
	margin-bottom: 70px
}
.ml-1 {
	margin-left: -1px
}
.mr-1 {
	margin-right: -1px
}
.mt-1 {
	margin-top: -1px
}
.mb-1 {
	margin-bottom: -1px
}
.ml-3 {
	margin-left: -3px
}
.mr-3 {
	margin-right: -3px
}
.mt-3 {
	margin-top: -3px
}
.mb-3 {
	margin-bottom: -3px
}
.ml-20 {
	margin-left: -20px
}
.mr-20 {
	margin-right: -20px
}
.mt-20 {
	margin-top: -20px
}
.mb-20 {
	margin-bottom: -20px
}
.p0 {
	padding: 0
}
.p1 {
	padding: 1px
}
.pl1 {
	padding-left: 1px
}
.pt1 {
	padding-top: 1px
}
.pr1 {
	padding-right: 1px
}
.pb1 {
	padding-bottom: 1px
}
.p2 {
	padding: 2px
}
.pl2 {
	padding-left: 2px
}
.pt2 {
	padding-top: 2px
}
.pr2 {
	padding-right: 2px
}
.pb2 {
	padding-bottom: 2px
}
.pl5 {
	padding-left: 5px
}
.p5 {
	padding: 5px
}
.pt5 {
	padding-top: 5px
}
.pr5 {
	padding-right: 5px
}
.pb5 {
	padding-bottom: 5px
}
.p10 {
	padding: 10px
}
.pl10 {
	padding-left: 10px
}
.pt10 {
	padding-top: 10px
}
.pr10 {
	padding-right: 10px
}
.pb10 {
	padding-bottom: 10px
}
.p11 {
	padding: 11px
}
.pl11 {
	padding-left: 12px
}
.pt11 {
	padding-top: 12px
}
.pr11 {
	padding-right: 12px
}
.pb11 {
	padding-bottom: 12px
}
.p12 {
	padding: 12px
}
.pl12 {
	padding-left: 12px
}
.pt12 {
	padding-top: 12px
}
.pr12 {
	padding-right: 12px
}
.pb12 {
	padding-bottom: 12px
}
.p15 {
	padding: 15px
}
.pl15 {
	padding-left: 15px
}
.pt15 {
	padding-top: 15px
}
.pr15 {
	padding-right: 15px
}
.pb15 {
	padding-bottom: 15px
}
.p20 {
	padding: 20px
}
.pl20 {
	padding-left: 20px
}
.pt20 {
	padding-top: 20px
}
.pr20 {
	padding-right: 20px
}
.pb20 {
	padding-bottom: 20px
}
.p25 {
	padding: 25px
}
.pl25 {
	padding-left: 25px
}
.pt25 {
	padding-top: 25px
}
.pr25 {
	padding-right: 25px
}
.pb25 {
	padding-bottom: 25px
}
.p30 {
	padding: 30px
}
.pl30 {
	padding-left: 30px
}
.pt30 {
	padding-top: 30px
}
.pr30 {
	padding-right: 30px
}
.pb30 {
	padding-bottom: 30px
}
.p40 {
	padding: 40px
}
.pl40 {
	padding-left: 40px
}
.pt40 {
	padding-top: 40px
}
.pr40 {
	padding-right: 40px
}
.pb40 {
	padding-bottom: 40px
}
.pb100 {
	padding-bottom: 100px
}
.pt60 {
	padding-top: 60px
}
.plr90 {
	padding-left: 90px;
	padding-right: 90px
}
.bdc {
	border: 1px solid #ccc
}
.blc {
	border-left: 1px solid #ccc
}
.brc {
	border-right: 1px solid #ccc
}
.btc {
	border-top: 1px solid #ccc
}
.bbc {
	border-bottom: 1px solid #ccc
}
.bdf {
	border: 1px solid #fff
}
.blf {
	border-left: 1px solid #fff
}
.brf {
	border-right: 1px solid #fff
}
.btf {
	border-top: 1px solid #fff
}
.bbf {
	border-bottom: 1px solid #fff
}
.g0 {
	color: #000
}
.g3 {
	color: #333
}
.g5 {
	color: #555
}
.g6 {
	color: #666
}
.g9 {
	color: #999
}
.gc {
	color: #ccc
}
.f0 {
	font-size: 0
}
.f10 {
	font-size: 10px
}
.f12 {
	font-size: 12px
}
.f13 {
	font-size: 13px
}
.f14 {
	font-size: 14px
}
.f16 {
	font-size: 16px
}
.f18 {
	font-size: 18px
}
.f20 {
	font-size: 20px
}
.f24 {
	font-size: 24px
}
.f36 {
	font-size: 36px
}
.fa {
	font-family: Arial
}
.ft {
	font-family: Tahoma
}
.fv {
	font-family: Verdana
}
.fs {
	font-family: Simsun
}
.fl {
	font-family: Lucida Console
}
.fw {
	font-family: Microsoft Yahei
}
.n {
	font-weight: 400;
	font-style: normal
}
.b {
	font-weight: 700
}
.i {
	font-style: italic
}
.tc {
	text-align: center
}
.tr {
	text-align: right
}
.tl {
	text-align: left
}
.tj {
	text-align: justify
}
.tdl {
	text-decoration: underline
}
.tdn, .tdn:hover, .tdn a:hover, a.tdl:hover {
	text-decoration: none
}
.lt-1 {
	letter-spacing: -1px
}
.lt0 {
	letter-spacing: 0
}
.lt1 {
	letter-spacing: 1px
}
.nowrap {
	white-space: nowrap
}
.bk {
	word-wrap: break-word
}
.vm {
	vertical-align: middle
}
.vtb {
	vertical-align: text-bottom
}
.vb {
	vertical-align: bottom
}
.vt {
	vertical-align: top
}
.vn {
	vertical-align: -2px
}
.l {
	float: left
}
.r {
	float: right
}
.cl {
	clear: both
}
.rel {
	position: relative
}
.abs {
	position: absolute
}
.zx1 {
	z-index: 1
}
.zx2 {
	z-index: 2
}
.poi {
	cursor: pointer
}
.def {
	cursor: default
}
.ovh {
	overflow: hidden
}
.ova {
	overflow: auto
}
.vh {
	visibility: hidden
}
.vv {
	visibility: visible
}
.z {
*zoom:1
}
.auto {
	margin-left: auto;
	margin-right: auto
}
.fix {
*zoom:1
}
.fix:after {
	display: table;
	content: "";
	clear: both
}
.cell {
	display: table-cell;
*display:inline-block;
	width: 2000px;
*width:auto
}
.cell-bk {
	display: table;
	width: 100%;
	table-layout: fixed;
	word-wrap: break-word
}
.ell {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden
}
.trans {
	-webkit-transition: all .3s;
	transition: all .3s
}
.dib-vm {
	display: inline-block;
	width: 0;
	height: 100%;
	vertical-align: middle
}
.bd-none {
	border: 0;
	outline: none
}
.abs-out {
	position: absolute;
	left: -999em;
	top: -999em
}
.abs-clip {
	position: absolute;
	clip: rect(0 0 0 0)
}
.inline-box {
	font-size: 1em;
	letter-spacing: -.25em;
	font-family: Arial
}
.inline-any, .inline-five, .inline-four, .inline-six, .inline-three, .inline-two {
	display: inline-block;
*display:inline;
	letter-spacing: 0;
	vertical-align: top;
*zoom:1
}
.float-five, .float-four, .float-six, .float-three, .float-two {
	float: left
}
.float-two, .inline-two {
	width: 49.9%
}
.float-three, .inline-three {
	width: 33.3%
}
.float-four, .inline-four {
	width: 24.9%
}
.float-five, .inline-five {
	width: 19.9%
}
.float-six, .inline-six {
	width: 16.6%
}
.inline-fix {
	display: inline-block;
	width: 100%;
	height: 0;
	overflow: hidden
}
.bd-radius {
	border-radius: 4px
}
a {
	text-decoration: none
}
a:-webkit-any-link {
text-decoration:none!important
}
p {
	margin: 0
}
a, a:active, a:hover, a:link, a:visited {
	text-decoration: none!important;
	-moz-text-decoration: none!important;
	-webkit-text-decoration: none!important;
	-o-text-decoration: none!important;
	-ms-text-decoration: none!important
}
.bg-navy {
	background-color: #001f3f
}
.bg-blue {
	background-color: #0074d9
}
.bg-aqua {
	background-color: #1394c9
}
.bg-teal {
	background-color: #39cccc
}
.bg-olive {
	background-color: #3d9970
}
.bg-green {
	background-color: #2ecc40
}
.bg-lime {
	background-color: #01ff70
}
.bg-yellow {
	background-color: #ffdc00
}
.bg-orange {
	background-color: #ff851b
}
.bg-red {
	background-color: #ff4136
}
.bg-fuchsia {
	background-color: #f012be
}
.bg-purple {
	background-color: #b10dc9
}
.bg-maroon {
	background-color: #85144b
}
.bg-white {
	background-color: #fff
}
.bg-gray {
	background-color: #aaa
}
.bg-silver {
	background-color: #f2f2f2
}
.bg-black {
	background-color: #111
}
.navy {
	color: #001f3f
}
.blue {
	color: #0074d9
}
.aqua {
	color: #1394c9
}
.teal {
	color: #23acb1
}
.olive {
	color: #3d9970
}
.green {
	color: #2ecc40
}
.lime {
	color: #01ff70
}
.yellow {
	color: #ffdc00
}
.orange {
	color: #ff851b
}
.red {
	color: #ff4136
}
.fuchsia {
	color: #f012be
}
.purple {
	color: #b10dc9
}
.maroon {
	color: #85144b
}
.white {
	color: #fff
}
.silver {
	color: #ddd
}
.gray {
	color: #aaa
}
.black {
	color: #111
}
.border--navy {
	border-color: #001f3f
}
.border--blue {
	border-color: #0074d9
}
.border--aqua {
	border-color: #1394c9
}
.border--teal {
	border-color: #39cccc
}
.border--olive {
	border-color: #3d9970
}
.border--green {
	border-color: #2ecc40
}
.border--lime {
	border-color: #01ff70
}
.border--yellow {
	border-color: #ffdc00
}
.border--orange {
	border-color: #ff851b
}
.border--red {
	border-color: #ff4136
}
.border--fuchsia {
	border-color: #f012be
}
.border--purple {
	border-color: #b10dc9
}
.border--maroon {
	border-color: #85144b
}
.border--white {
	border-color: #fff
}
.border--gray {
	border-color: #aaa
}
.border--silver {
	border-color: #ddd
}
.border--black {
	border-color: #111
}
.fill-navy {
	fill: #001f3f
}
.fill-blue {
	fill: #0074d9
}
.fill-aqua {
	fill: #1394c9
}
.fill-teal {
	fill: #39cccc
}
.fill-olive {
	fill: #3d9970
}
.fill-green {
	fill: #2ecc40
}
.fill-lime {
	fill: #01ff70
}
.fill-yellow {
	fill: #ffdc00
}
.fill-orange {
	fill: #ff851b
}
.fill-red {
	fill: #ff4136
}
.fill-fuchsia {
	fill: #f012be
}
.fill-purple {
	fill: #b10dc9
}
.fill-maroon {
	fill: #85144b
}
.fill-white {
	fill: #fff
}
.fill-gray {
	fill: #aaa
}
.fill-silver {
	fill: #ddd
}
.fill-black {
	fill: #111
}
.stroke-navy {
	stroke: #001f3f
}
.stroke-blue {
	stroke: #0074d9
}
.stroke-aqua {
	stroke: #1394c9
}
.stroke-teal {
	stroke: #39cccc
}
.stroke-olive {
	stroke: #3d9970
}
.stroke-green {
	stroke: #2ecc40
}
.stroke-lime {
	stroke: #01ff70
}
.stroke-yellow {
	stroke: #ffdc00
}
.stroke-orange {
	stroke: #ff851b
}
.stroke-red {
	stroke: #ff4136
}
.stroke-fuchsia {
	stroke: #f012be
}
.stroke-purple {
	stroke: #b10dc9
}
.stroke-maroon {
	stroke: #85144b
}
.stroke-white {
	stroke: #fff
}
.stroke-gray {
	stroke: #aaa
}
.stroke-silver {
	stroke: #ddd
}
.stroke-black {
	stroke: #111
}
a, a:focus, a:hover {
	color: currentColor
}
.paging {
	width: 100%;
	height: 152px;
	padding-top: 70px
}
.paging .p-more {
	display: none
}
.paging #page {
	margin: 0 auto;
	width: 100%;
	text-align: center
}
.paging .page_div {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 15px;
	font-family: microsoft yahei;
	color: #666;
	margin-right: 10px;
	padding-left: 20px;
	box-sizing: border-box
}
.paging .page_div a {
	width: 40px;
	height: 40px;
	border: 1px solid #dedede!important;
	text-align: center;
	margin: 0 4px;
	cursor: pointer;
	line-height: 40px;
	color: #929292;
	font-size: 14px;
	display: inline-block;
	border-radius: 3px
}
.paging .page_div a:hover {
	text-decoration: none
}
.paging #firstPage, .paging #lastPage {
	display: none
}
.paging #nextPage, .paging #prePage {
	width: 85px;
	height: 40px;
	color: #929292;
	font-size: 14px;
	line-height: 40px;
	border-radius: 3px;
	text-align: center;
	border: 1px solid #dedede!important
}
.paging #nextPage:hover, .paging #prePage:hover {
	text-decoration: none
}
.paging .page_div .current {
	background-color: #1496cc;
	border-color: #1496cc;
	color: #fff
}
.paging .totalPages {
	margin: 0 10px
}
.paging .totalPages span, .paging .totalSize span {
	color: #0073a9;
	margin: 0 5px
}
.paging .totalSize {
	display: none
}
@media (min-width:768px) and (max-width:1023px) {
.paging .page_div a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 12px
}
.paging .page_div a:hover {
	text-decoration: none
}
.paging #nextPage, .paging #prePage {
	width: 55px;
	height: 30px;
	font-size: 12px;
	line-height: 30px
}
}
.navbar {
	border: none;
	background-color: #1598cc;
	margin: 0;
	border-radius: 0
}
.navbar .right-nav {
	max-width: 100px;
	float: right;
	margin-top: 20px
}
@media (max-width:1000px) {
.navbar .right-nav {
	display: none
}
}
.navbar-brand {
	padding: 0;
	height: 60px
}
.navbar-brand img {
	min-width: 145px;
	max-height: 60px
}
.navbar-nav {
	position: absolute;
	left: 60%;
	top: 50%;
	width: 1200px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-transform: capitalize
}
@media (max-width:1000px) {
.navbar-nav {
	display: none
}
}
.navbar-nav>li>a {
	color: #fff
}
.navbar-nav>li>a:hover {
	opacity: .7
}
.nav>li>a:focus, .nav>li>a:hover {
	background-color: transparent
}
.navbar-default .navbar-nav>li>a, .navbar-default .navbar-text {
	color: #fff;
	opacity: .8;
	-webkit-transition: color .3s;
	transition: color .3s
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
	color: #fff;
	opacity: 1
}
.navbar-default .navbar-toggle {
	border-color: transparent
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
	background-color: transparent
}
.navbar {
	padding: 10px 30px;
	width: 100%;
	height: 80px
}
.navbar.navbar-fixed-top {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999
}
.navbar .navbar-link {
	display: inline-block;
	margin-top: 10px;
	width: 180px;
	height: 40px
}
.navbar .navbar-link img {
	display: block;
	width: 100%;
	height: auto;
	    padding-top: 8px;
}
.navbar .hamburger {
	position: relative;
	display: block;
	height: 60px;
	width: 30px;
	cursor: pointer
}
@media (min-width:1001px) {
.navbar .hamburger {
	display: none
}
}
.navbar .hamburger i {
	position: absolute;
	width: 80%;
	height: 3px;
	top: 50%;
	right: 0;
	background-color: #fff;
	pointer-events: auto;
	-webkit-transition-duration: .35s;
	transition-duration: .35s;
	-webkit-transition-delay: .35s;
	transition-delay: .35s
}
.navbar .hamburger:after, .navbar .hamburger:before {
	position: absolute;
	display: block;
	width: 100%;
	height: 3px;
	top: 50%;
	left: 50%;
	background-color: #fff;
	content: "";
	-webkit-transition: -webkit-transform .35s;
	transition: -webkit-transform .35s;
	transition: transform .35s;
	transition: transform .35s, -webkit-transform .35s;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%
}
.navbar .hamburger:after {
	-webkit-transform: translate(-50%, 10px);
	transform: translate(-50%, 10px)
}
.navbar .hamburger:before {
	-webkit-transform: translate(-50%, -10px);
	transform: translate(-50%, -10px)
}
.blue .navbar-nav>li>a {
	color: #1394c9
}
.blue .hamburger:after, .blue .hamburger:before, .blue .hamburger i {
	background-color: #1394c9!important
}
.blue .right-nav {
	color: #1394c9
}
.blue .right-nav .brf {
	border-color: #1394c9
}
.cover-bg {
	position: fixed;
	background: transparent;
	display: none;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: rgba(0,0,0,.6)
}
.side-menu {
	position: fixed;
	right: -420px;
	height: 100%;
	width: 80%;
	max-width: 420px;
	background: #1b1b1b;
	top: 0;
	opacity: 0;
	overflow-y: auto;
	z-index: 10000
}
.close-ct {
	height: 80px;
	line-height: 80px;
	text-align: right;
	padding-right: 42px
}
.close-ct .close-btn {
	display: inline-block;
	cursor: pointer;
	width: 32px;
	height: 32px;
	line-height: 32px;
	color: #fff;
	font-size: 24px;
	vertical-align: middle
}
.close-ct .close-btn i {
	font-size: 30px
}
.link-ul {
	margin: 0
}
.link-ul li {
	list-style: none;
	font-size: 24px;
	color: #fff;
	padding-left: 27%;
	padding-top: 7%;
	padding-bottom: 7%;
	-webkit-transition: all .3s;
	transition: all .3s;
	cursor: pointer
}
.link-ul li:hover {
	color: #1393d7
}
@media (max-width:768px) {
.link-ul li {
	font-size: 18px
}
}
@media (min-width:769px) and (max-width:1023px) {
.link-ul li {
	font-size: 18px
}
}
@media (min-width:1024px) {
.link-ul li {
	font-size: 20px
}
}
.link-ul li span:hover {
	color: #1393d7
}
.link-ul li.last {
	font-size: 16px;
	padding-top: 12%
}
.link-ul li.last:hover {
	color: #fff
}
@media (max-width:768px) {
#footer-menu-wrapper {
	width: 100%;
	background: #f2f2f2
}
#footer-menu-wrapper .footer-menu {
	width: 92%;
	padding-top: 5px
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line {
	width: 100%
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-title {
	width: 100%;
	height: 45px;
	line-height: 45px;
	border-bottom: 1px solid #929292
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-title h3 {
	line-height: 45px;
	font-size: 16px;
	color: #333;
	margin: 0
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-title .delete {
	display: block;
	font-size: 24px;
	color: #323232;
	cursor: pointer
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-content {
	width: 100%;
	margin-top: 4px;
	padding-bottom: 4px;
	display: none;
	border-bottom: 1px solid #929292
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-content a {
	display: block;
	height: 30px;
	line-height: 30px;
	font-size: 15px;
	color: #929292
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-content a:hover {
	color: #1496cc
}
#footer-menu-wrapper .footer-menu .right h3 {
	margin-top: 0
}
#footer-menu-wrapper .footer-menu .right .list {
	width: 176px
}
#footer-menu-wrapper .footer-menu .right .list li {
	display: inline-block;
	float: left;
	width: 34px;
	height: 34px;
	line-height: 34px;
	margin-left: 5px;
	margin-right: 5px;
	border-radius: 50%;
	-webkit-transition: all .3s;
	transition: all .3s;
	background-color: #a6a7a7;
	text-align: center;
	color: #fff
}
#footer-menu-wrapper .footer-menu .right .list li a .iconfont {
	font-size: 20px
}
#footer-menu-wrapper .footer-menu .right .list .facebook:hover {
	background-color: #3b5997!important
}
#footer-menu-wrapper .footer-menu .right .list .linkedin:hover {
	background-color: #006dc0!important
}
#footer-menu-wrapper .footer-menu .right .list .twitter:hover {
	background-color: #1aa9e1!important
}
#footer-menu-wrapper .footer-menu .right .list .youtube:hover {
	background-color: #de322e!important
}
#footer-menu-wrapper .footer-menu .right .p-phone {
	width: 200px
}
#footer-menu-wrapper .footer-menu .right .p-phone .iconfont {
	font-size: 46px
}
#footer-bottom-wrapper, #footer-bottom-wrapper .footer-bottom {
	width: 100%;
	height: 40px;
	background: #323232
}
#footer-bottom-wrapper .footer-bottom p a {
	color: #929292
}
#footer-bottom-wrapper .footer-bottom p .a-top {
	display: block;
	line-height: 20px
}
#footer-bottom-wrapper .footer-bottom p .a-bottom {
	line-height: 20px
}
}
@media (min-width:769px) and (max-width:992px) {
#footer-menu-wrapper {
	width: 100%;
	min-height: 320px;
	background: #f2f2f2
}
#footer-menu-wrapper .footer-menu {
	width: 96.5%;
	height: 100%;
	padding-top: 25px
}
#footer-menu-wrapper .footer-menu .footer-option {
	width: 70%
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line {
	margin-right: 50px;
	min-height: 200px
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-title .delete {
	display: none
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-title h3 {
	color: #333;
	line-height: 47px
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-content {
	display: block
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-content a {
	text-decoration: none;
	line-height: 24px;
	color: #929292;
	display: block
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-content a:hover {
	color: #1496cc
}
#footer-menu-wrapper .footer-menu .right {
	width: 28%
}
#footer-menu-wrapper .footer-menu .right .list {
	width: 176px
}
#footer-menu-wrapper .footer-menu .right .list li {
	display: inline-block;
	float: left;
	width: 34px;
	height: 34px;
	line-height: 34px;
	margin-left: 5px;
	margin-right: 5px;
	border-radius: 50%;
	-webkit-transition: all .3s;
	transition: all .3s;
	background-color: #a6a7a7;
	text-align: center;
	color: #fff
}
#footer-menu-wrapper .footer-menu .right .list li a .iconfont {
	font-size: 20px
}
#footer-menu-wrapper .footer-menu .right .list .facebook:hover {
	background-color: #3b5997!important
}
#footer-menu-wrapper .footer-menu .right .list .linkedin:hover {
	background-color: #006dc0!important
}
#footer-menu-wrapper .footer-menu .right .list .twitter:hover {
	background-color: #1aa9e1!important
}
#footer-menu-wrapper .footer-menu .right .list .youtube:hover {
	background-color: #de322e!important
}
#footer-menu-wrapper .footer-menu .right .p-phone {
	width: 200px
}
#footer-menu-wrapper .footer-menu .right .p-phone .iconfont {
	font-size: 46px
}
#footer-bottom-wrapper {
	width: 100%;
	height: 79px;
	background: #323232
}
#footer-bottom-wrapper .footer-bottom {
	width: 95.3%;
	height: 79px;
	line-height: 79px;
	background: #323232
}
#footer-bottom-wrapper .footer-bottom p a {
	color: #929292
}
}
@media (min-width:992px) and (max-width:1200px) {
#footer-menu-wrapper {
	width: 100%;
	min-height: 320px;
	background: #f2f2f2
}
#footer-menu-wrapper .footer-menu {
	width: 96.5%;
	height: 100%;
	padding-top: 25px
}
#footer-menu-wrapper .footer-menu .footer-option {
	width: 77%
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line {
	margin-right: 50px;
	min-height: 200px
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-title .delete {
	display: none
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-title h3 {
	color: #333;
	line-height: 47px
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-content {
	display: block
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-content a {
	text-decoration: none;
	line-height: 24px;
	color: #929292;
	display: block
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-content a:hover {
	color: #1496cc
}
#footer-menu-wrapper .footer-menu .right {
	width: 20%
}
#footer-menu-wrapper .footer-menu .right .list {
	width: 176px
}
#footer-menu-wrapper .footer-menu .right .list li {
	display: inline-block;
	float: left;
	width: 34px;
	height: 34px;
	line-height: 34px;
	margin-left: 5px;
	margin-right: 5px;
	border-radius: 50%;
	-webkit-transition: all .3s;
	transition: all .3s;
	background-color: #a6a7a7;
	text-align: center;
	color: #fff
}
#footer-menu-wrapper .footer-menu .right .list li a .iconfont {
	font-size: 20px
}
#footer-menu-wrapper .footer-menu .right .list .facebook:hover {
	background-color: #3b5997!important
}
#footer-menu-wrapper .footer-menu .right .list .linkedin:hover {
	background-color: #006dc0!important
}
#footer-menu-wrapper .footer-menu .right .list .twitter:hover {
	background-color: #1aa9e1!important
}
#footer-menu-wrapper .footer-menu .right .list .youtube:hover {
	background-color: #de322e!important
}
#footer-menu-wrapper .footer-menu .right .p-phone {
	width: 200px
}
#footer-menu-wrapper .footer-menu .right .p-phone .iconfont {
	font-size: 46px
}
#footer-bottom-wrapper {
	width: 100%;
	height: 79px;
	background: #323232
}
#footer-bottom-wrapper .footer-bottom {
	width: 95.3%;
	height: 79px;
	line-height: 79px;
	background: #323232
}
#footer-bottom-wrapper .footer-bottom p a {
	color: #929292
}
}
@media (min-width:1200px) {
#footer-menu-wrapper {
	width: 100%;
	min-height: 320px;
	background: #f2f2f2
}
#footer-menu-wrapper .footer-menu {
	width: 95.3%;
	height: 100%;
	padding-top: 25px
}
#footer-menu-wrapper .footer-menu .footer-option {
	width: 80%
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line {
	margin-right: 55px;
	min-height: 200px
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-title .delete {
	display: none
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-title h3 {
	color: #333;
	line-height: 47px
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-content {
	display: block
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-content a {
	text-decoration: none;
	line-height: 24px;
	color: #929292;
	display: block
}
#footer-menu-wrapper .footer-menu .footer-option .footer-line .footer-content a:hover {
	color: #1496cc
}
#footer-menu-wrapper .footer-menu .right {
	width: 17%
}
#footer-menu-wrapper .footer-menu .right .list {
	width: 176px
}
#footer-menu-wrapper .footer-menu .right .list li {
	display: inline-block;
	float: left;
	width: 34px;
	height: 34px;
	line-height: 34px;
	margin-left: 5px;
	margin-right: 5px;
	border-radius: 50%;
	-webkit-transition: all .3s;
	transition: all .3s;
	background-color: #a6a7a7;
	text-align: center;
	color: #fff
}
#footer-menu-wrapper .footer-menu .right .list li a .iconfont {
	font-size: 20px
}
#footer-menu-wrapper .footer-menu .right .list .facebook:hover {
	background-color: #3b5997!important
}
#footer-menu-wrapper .footer-menu .right .list .linkedin:hover {
	background-color: #006dc0!important
}
#footer-menu-wrapper .footer-menu .right .list .twitter:hover {
	background-color: #1aa9e1!important
}
#footer-menu-wrapper .footer-menu .right .list .youtube:hover {
	background-color: #de322e!important
}
#footer-menu-wrapper .footer-menu .right .p-phone {
	width: 200px
}
#footer-menu-wrapper .footer-menu .right .p-phone .iconfont {
	font-size: 46px
}
#footer-bottom-wrapper {
	width: 100%;
	height: 79px;
	background: #323232
}
#footer-bottom-wrapper .footer-bottom {
	width: 95.3%;
	height: 79px;
	line-height: 79px;
	background: #323232
}
#footer-bottom-wrapper .footer-bottom p a {
	color: #929292
}
}
@media (max-width:767px) {
#floatnav-wrapper {
	display: none;
	width: 40px;
	height: 40px;
	position: fixed;
	top: 80%;
	right: 15px;
	z-index: 99
}
#floatnav-wrapper .floatnav-kf {
	display: none
}
#floatnav-wrapper .floatnav-top {
	display: block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 5px;
	background: rgba(50,53,74,.4);
	text-align: center;
	color: #dedede;
	cursor: pointer;
	font-size: 12px
}
#floatnav-wrapper .floatnav-top i {
	font-size: 20px
}
#floatnav-wrapper .floatnav-top:hover {
	background: #4a73ff;
	color: #fff
}
#floatnav-wrapper .floatnav-top-mobile {
	display: block;
	width: 40px;
	height: 40px
}
#floatnav-wrapper .floatnav-top-mobile img {
	width: 40px;
	height: 40px
}
}
@media (min-width:768px) {
#floatnav-wrapper {
	display: none;
	width: 40px;
	height: 80px;
	position: fixed;
	top: 80%;
	right: 31px;
	z-index: 99
}
#floatnav-wrapper .floatnav-kf {
	display: block;
	width: 40px;
	height: 40px;
	background: #5c5c5c;
	text-align: center;
	line-height: 40px;
	color: #dedede;
	cursor: pointer;
	position: relative
}
#floatnav-wrapper .floatnav-kf i {
	font-size: 26px
}
#floatnav-wrapper .floatnav-kf .kf-words {
	display: none;
	font-size: 14px;
	margin: 0;
	line-height: 11px;
	padding-top: 6px;
	color: #fff
}
#floatnav-wrapper .floatnav-kf:hover {
	background: #1496cc;
	color: #fff
}
#floatnav-wrapper .floatnav-kf .kf-link {
	width: 20px;
	height: 80px;
	position: absolute;
	top: 0;
	left: -20px
}
#floatnav-wrapper .floatnav-kf .kefu-ct {
	position: absolute;
	display: none;
	top: -34px;
	right: 53px;
	width: 177px;
	border: 1px solid #ddd;
	background-color: #fff;
	line-height: 1.34;
	padding: 10px 0;
	border-radius: 4px
}
#floatnav-wrapper .floatnav-kf .kefu-ct .kefu-btn {
	width: 11em;
	margin: 5px 0;
	display: inline-block;
	padding: .5em 0;
	border: 0 none;
	background-image: none;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 100%;
	font-family: inherit;
	font-weight: inherit;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: visible;
	cursor: pointer;
	background-color: #1496cc;
	border-radius: 4px
}
#floatnav-wrapper .floatnav-kf .kefu-ct .kefu-btn:hover {
	text-decoration: none;
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,.1), rgba(0,0,0,.1));
	background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.1))
}
#floatnav-wrapper .floatnav-kf .kefu-ct:before {
	position: absolute;
	content: "";
	z-index: -1;
	width: 150px;
	height: 100%
}
#floatnav-wrapper .floatnav-kf .kefu-ct:after {
	position: absolute;
	content: "";
	top: 38%;
	right: -5px;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border: 1px solid #ddd;
	background-color: #fff;
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	border-left-color: transparent;
	border-bottom-color: transparent
}
#floatnav-wrapper .floatnav-kf:hover .kefu-ct, #floatnav-wrapper .floatnav-kf:hover .kf-words {
	display: block
}
#floatnav-wrapper .floatnav-top {
	display: block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 5px;
	background: rgba(50,53,74,.4);
	text-align: center;
	color: #dedede;
	cursor: pointer;
	font-size: 12px
}
#floatnav-wrapper .floatnav-top i {
	font-size: 20px
}
#floatnav-wrapper .floatnav-top:hover {
	background: #4a73ff;
	color: #fff
}
#floatnav-wrapper .floatnav-top-mobile {
	display: none
}
}
.ntalk-window-containter {
	left: auto!important;
	top: auto!important;
	right: 0!important;
	bottom: 0!important
}
#information-wrapper {
	font-family: Microsoft YaHei
}
#information-wrapper a {
	text-decoration: none
}
#information-wrapper #information {
	margin: 0 auto;
padding-top: 69px;
}
#information-wrapper #information .banner {
	width: 100%;
	/*background: url(../images/info_banner.2b44fe05.jpg) center 20% no-repeat;*/
	background-size: cover;
	background-position: 50%;
	overflow: hidden;
	position: relative
}
#information-wrapper #information .banner .b-cover, #information-wrapper #information .banner .cover {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0
}
#information-wrapper #information .banner .b-cover {
	background-color: #2e353f
}
#information-wrapper #information .announce {
	width: 100%;
	background-color: #f8f8f8;
	position: relative;
	height: 20.3vw
}
#information-wrapper #information .announce .a-cont {
	position: absolute;
	width: 42.7vw;
	height: 40vw
}
#information-wrapper #information .announce .a-cont img {
	width: 100%;
	height: 20.8vw;
	cursor: pointer
}
#information-wrapper #information .announce .a-cont .cont-info {
	width: 100%;
	height: 17.2vw;
	position: relative;
	background-color: #fff;
	padding: 35px 35px 0 8%;
	box-sizing: border-box
}
#information-wrapper #information .announce .a-cont .cont-info h4 {
	text-align: center;
	cursor: pointer
}
#information-wrapper #information .announce .a-cont .cont-info h4 span {
	color: #8e242d
}
#information-wrapper #information .announce .a-cont .cont-info h4 i {
	font-style: normal
}
#information-wrapper #information .announce .a-cont .cont-info p {
	color: #666;
	font-size: 12px;
	line-height: 22px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden
}
#information-wrapper #information .announce .a-cont .cont-info .allread {
	display: none;
	padding: 0 25px;
	height: 36px;
	position: absolute;
	left: 40%;
	background: #1496cc;
	font-size: 16px;
	color: #fff;
	text-align: center;
	line-height: 36px;
	border-radius: 3px
}
#information-wrapper #information .announce .a-cont .swiper-button-prev {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAsCAYAAACHfIO0AAACHElEQVRIiaXXzUtUURgH4MdGKcqbQUGFpm1qU4tSbOWqTWJBUmS27K/LKO1jUYs+sOhjEW2iT6MIIjArC29SWjktzhlGZMaZOXdg4DczZ5655733nvNO28LCgoKPLpzHYntBqB1j2IaODQWx4+hGGZNFsEEcjvl2lmXvU7FeDMf8Ao8gBdsq1KmEz7iWZVk5BStFqBO/MJFl2XLlw1axEfQIBb+M76s/bAUbiE+4i3drBzSL7YlHBS/xoNagZrAMZ4V6zeGqMM2WsRLOCAX/jQks1xvcCBsWrqkyJjG/3uD1sH7hKodpvG3ww3WxHuG+g9e43wiqh3WqFvwLrqhT8EZYpeCZasGXmoFqYcfQF/MUvjULrcUO4UjM05hpBVqNdeNEzG9wr1Wogm0RVoJ2fBWm11TBa2GnhE1hSYsFr4XtjHnemiUlBbsuTGu36oWajM3gTnzdr3pGkzB4iOcxD2NvEayMa5iN71U21iQM/ghncxGbMY6OVAx+4BJWsAujaEvF4ANuxnwAQ0UweIKnMR/F/iIY3MBHYZqnsaMI9g8XsYCNOIdNqRj8jOBfbI9HWPc7zeybn4RbDvYJNUzG4BkexzyEg0UwuKXaX5wUFoZkbEXofOaFO2NcWFiTMGJPJrQIXRjL87yUihGal6mY+1Tb0SSMsMtPxzyY5/lAEYywg72KeSTP894iWFloHeaETmC06J+KZVwQzvDsf/LUdXvXJBSZAAAAAElFTkSuQmCC) no-repeat 50%
}
#information-wrapper #information .announce .a-cont .swiper-button-next {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAsCAYAAACHfIO0AAACL0lEQVRIiaXWS4jNURwH8M8djyh/CxqjPBbMhmYhGslWk92YHRplBnmPpCmyEBMa5VmkMcTG0oIaQ6RGysZiFqRJyZQoZTF3PPIci3OuOw1z597//7f63v6nzz2d3/n/z8nl8/keVKMJ71RYSZL8zVVYiPm4iqmVYqOrCrvwG8vQmRV7gpPx9wa0ZMHgMu7EfAwrs2AjOICXmIJuzE2LwRdswZDQ3e4Ip8JgEDuFhqxQXMtUGPThVMzN2JQFg4voifmEMMvU2Aj2Y0BYt2uoSYvBZ7Qijzm4YoKGlMLgDXbHmdajIwsGj3A65s3YmAWD87gXcyeWZ8FGsA+vFBtSnRaDT4oNqUGXMQ2pBIPXaIt5FY5mweABzsTcOjw8vL7wIJfP51N4criBBnxHU5Ik/WkxSHAXi4WzY20WDGojOAN9adZsdA0KbwksyYp1ok74/rVnwVoVX63OJEkepsVWCwcP3MYl0m2NBejFLLxAY5IkX6l8007H9Qh9RGsBqhTL4RyW4ie24+3oAZVgbWiM+Qiejh1QLtaAgzHfFF6lf6ocrFY4rXJ4hsPjDZwImxlnkeA9tuFHGmySsH8W4Ru24kOpfy6FHcKamNvRXwoqha3Dnpi7cGsiaDysTthP8BjHy4H+h80Wdvg04dOyA7/SYIVL3jzFq8FQudBYrEM4cWCvcGmpqApYs3D0E06e+5VCBaxe8YbYi7NpoAJ2QVivAeEKMJIWm4znMbcIC5+6/gAkSHnqHURbaQAAAABJRU5ErkJggg==) no-repeat 50%
}
#information-wrapper #information .announce .a-cont .swiper-button-next, #information-wrapper #information .announce .a-cont .swiper-button-prev {
	display: none;
	width: 42px;
	top: 36%;
	height: 75px;
	border-radius: 3px;
	background-color: #191919;
	opacity: .35
}
#information-wrapper #information .announce .a-cont .swiper-pagination-bullet {
	background-color: #606060
}
#information-wrapper #information .announce .a-cont .swiper-pagination-bullet-active {
	background-color: #1496cc
}
#information-wrapper #information .flagdiv {
	width: 100%;
	height: 100px
}
#information-wrapper #information .rowcont {
	width: 90%;
	max-width: 1669px;
	margin: 0 auto
}
#information-wrapper #information .dt-pic {
	width: 100%;
	height: 230px;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
	cursor: pointer;
	-webkit-transition: all .2s linear;
	transition: all .2s linear
}
#information-wrapper #information .dt-pic img {
	width: 100%;
	height: 100%
}
#information-wrapper #information .dt-pic:hover {
	box-shadow: 0 15px 30px rgba(0,0,0,.3);
	-webkit-transform: translate3d(0, -5px, 0);
	transform: translate3d(0, -5px, 0)
}
#information-wrapper #information .dd-cont {
	width: 100%;
	height: 261px;
	margin-top: 74px
}
#information-wrapper #information .dd-cont h4 {
	text-align: center;
	height: 67px;
	padding: 0 30px;
	font-size: 18px;
	line-height: 26px;
	position: relative
}
#information-wrapper #information .dd-cont h4 a {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 32px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical
}
#information-wrapper #information .dd-cont h4 span {
	display: inline-block;
	font-size: 12px;
	color: #fff;
	background-color: #1496cc;
	padding: 0 7px;
	height: 24px;
	position: absolute;
	left: 40%;
	top: -30px;
	border-radius: 2px
}
#information-wrapper #information .dd-cont h4 span i {
	display: block;
	width: 0;
	height: 0;
	border-width: 0 0 5px 8px;
	border-style: solid;
	border-color: transparent #1496cc;
	position: absolute;
	left: 40%;
	bottom: -5px
}
#information-wrapper #information .dd-cont .label {
	width: 100%;
	height: 44px;
	font-weight: 100;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center
}
#information-wrapper #information .dd-cont .label a {
	display: inline-block;
	cursor: default;
	height: 17px;
	line-height: 17px;
	border-radius: 2px;
	padding: 0 8px;
	margin-right: 5px;
	background: #eee;
	color: #929292
}
#information-wrapper #information .dd-cont .label a:hover {
	background-color: #1496cc;
	color: #fff
}
#information-wrapper #information .dd-cont .info {
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	padding: 0 4px;
	color: #929292;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical
}
#information-wrapper #information .loadmore {
	width: 100%;
	height: 212px;
	position: relative
}
#information-wrapper #information .loadmore p {
	width: 184px;
	height: 47px;
	border: 1px solid #1496cc;
	border-radius: 3px;
	text-align: center;
	line-height: 47px;
	color: #1496cc;
	margin-left: 42%;
	position: absolute;
	left: 50%;
	margin-left: -92px;
	cursor: pointer
}
#information-wrapper #information .more {
	display: none
}
@media (min-width:768px) and (max-width:1024px) {
#information-wrapper #information .banner {
	height: 400px
}
#information-wrapper #information .announce .a-cont {
	top: -20vw;
	left: 30%
}
#information-wrapper #information .announce .a-cont .cont-info {
	padding: 30px 30px 0 8%
}
#information-wrapper #information .announce .a-cont .cont-info h4 {
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 20px
}
#information-wrapper #information .announce .a-cont .cont-info p {
	max-width: 600px;
	line-height: 24px;
	height: 48px;
	position: relative
}
#information-wrapper #information .announce .a-cont .cont-info p:after {
	content: "...";
	font-weight: 700;
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 0 20px 1px 45px;
	background: url(../images/ellipsis_bg.png) repeat-y
}
#information-wrapper #information .announce .a-cont .cont-info .allread {
	padding: 0 12px;
	height: 24px;
	position: absolute;
	left: 40%;
	bottom: 0;
	background: #1496cc;
	font-size: 12px;
	color: #fff;
	text-align: center;
	line-height: 24px;
	border-radius: 3px
}
#information-wrapper #information .announce .a-cont .swiper-button-next, #information-wrapper #information .announce .a-cont .swiper-button-prev {
	width: 25px;
	height: 50px
}
#information-wrapper #information .news {
	width: 70%;
	padding: 36px 13% 0
}
}
@media (min-width:1025px) and (max-width:1280px) {
#information-wrapper #information .banner {
	height: 500px
}
#information-wrapper #information .announce .a-cont {
	left: 30%;
	bottom: 28px
}
#information-wrapper #information .announce .a-cont .cont-info {
	padding: 30px 30px 0 8%
}
#information-wrapper #information .announce .a-cont .cont-info h4 {
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 20px
}
#information-wrapper #information .announce .a-cont .cont-info p {
	max-width: 600px;
	line-height: 24px;
	height: 48px;
	position: relative
}
#information-wrapper #information .announce .a-cont .cont-info p:after {
	content: "...";
	font-weight: 700;
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 0 20px 1px 45px;
	background: url(../images/ellipsis_bg.png) repeat-y
}
#information-wrapper #information .announce .a-cont .cont-info .allread {
	padding: 0 12px;
	height: 24px;
	position: absolute;
	left: 40%;
	bottom: 55px;
	background: #1496cc;
	font-size: 12px;
	color: #fff;
	text-align: center;
	line-height: 24px;
	border-radius: 3px
}
#information-wrapper #information .news {
	padding: 35px 118px 0
}
#information-wrapper #information .news ul li:nth-child(2n) {
	margin-right: 0
}
}
@media (min-width:1280px) {
#information-wrapper #information .banner {
	height: 555px
}
#information-wrapper #information .announce .a-cont {
	left: 30%;
	bottom: 28px
}
#information-wrapper #information .announce .a-cont .swiper-wrapper .swiper-slide img {
	height: 70%
}
#information-wrapper #information .announce .a-cont .cont-info h4 {
	width: 100%;
	margin-bottom: 20px;
	font-size: 18px;
	line-height: 24px
}
#information-wrapper #information .announce .a-cont .cont-info .allread {
	bottom: 70px;
	left: 43%
}
}
@media (min-width:320px) and (max-width:767px) {
#information-wrapper #information {
	width: 100%;
	overflow: hidden;
	margin-top: 1.2rem
}
#information-wrapper #information .banner {
	display: none
}
#information-wrapper #information .announce {
	width: 100%;
	height: 8.17rem
}
#information-wrapper #information .announce .a-cont {
	width: 100%;
	height: 100%
}
#information-wrapper #information .announce .a-cont .swiper-wrapper, #information-wrapper #information .announce .a-cont .swiper-wrapper .swiper-slide {
	width: 100%
}
#information-wrapper #information .announce .a-cont .swiper-wrapper .swiper-slide img {
	width: 100%;
	height: 4rem
}
#information-wrapper #information .announce .a-cont .swiper-wrapper .swiper-slide .cont-info {
	height: 4.17rem;
padding:.9rem .8rem 0
}
#information-wrapper #information .announce .a-cont .swiper-wrapper .swiper-slide .cont-info h4 {
	text-align: center;
font-size:.3rem;
line-height:.42rem
}
#information-wrapper #information .announce .a-cont .swiper-wrapper .swiper-slide .cont-info p {
margin-top:.5rem;
font-size:.24rem;
line-height:.4rem;
	color: #929292;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
height:.8rem;
	position: relative
}
#information-wrapper #information .announce .a-cont .swiper-button-next, #information-wrapper #information .announce .a-cont .swiper-button-prev, #information-wrapper #information .announce .a-cont .swiper-wrapper .swiper-slide .cont-info .allread {
	display: none
}
#information-wrapper #information .announce .a-cont .swiper-button-next:hover, #information-wrapper #information .announce .a-cont .swiper-button-prev:hover {
	opacity: .8
}
#information-wrapper #information .flagdiv {
	display: none;
	width: 100%;
	height: 1rem
}
#information-wrapper #information .loadmore {
	display: none
}
#information-wrapper #information .more {
	display: block;
	width: 100%;
	height: 2.35rem;
padding-top:.5rem;
	text-align: center;
font-size:.36rem;
	color: #929292;
	font-weight: 900
}
}

.dse{ position:relative;}
.sousou01{width: 29%;line-height: 35px;margin:0 auto;position:absolute;right:0;top: 27%;}
.input_text02{float:left;display:block;line-height: 34px;background:bottom;outline:none;padding-left:4%;width: calc(100% - 15%);border: 1px solid #ccc;}
.sousou01 a{
    float:right;
    width: 15%;
    height:36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1598cc;
    }
.sousou01 a img{max-height: 89%;max-width:100%}

@media only screen and (max-width: 980px) {
	.sousou01{ display:none}
	}
