
@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

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

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

@-webkit-keyframes bounce {
	0%, 100%, 20%, 53%, 80% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	40%, 43% {
		transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	
	70% {
		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%, 100%, 20%, 53%, 80% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	40%, 43% {
		transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	
	70% {
		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%, 100%, 50% {
		opacity: 1;
	}
	
	25%, 75% {
		opacity: 0;
	}
}

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

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

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

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

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

@-webkit-keyframes rubberBand {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	
	30% {
		-webkit-transform: scale3d(1.25, .75, 1);
		transform: scale3d(1.25, .75, 1);
	}
	
	40% {
		-webkit-transform: scale3d(.75, 1.25, 1);
		transform: scale3d(.75, 1.25, 1);
	}
	
	50% {
		-webkit-transform: scale3d(1.15, .85, 1);
		transform: scale3d(1.15, .85, 1);
	}
	
	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1);
	}
	
	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1);
	}
	
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes rubberBand {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	
	30% {
		-webkit-transform: scale3d(1.25, .75, 1);
		transform: scale3d(1.25, .75, 1);
	}
	
	40% {
		-webkit-transform: scale3d(.75, 1.25, 1);
		transform: scale3d(.75, 1.25, 1);
	}
	
	50% {
		-webkit-transform: scale3d(1.15, .85, 1);
		transform: scale3d(1.15, .85, 1);
	}
	
	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1);
	}
	
	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1);
	}
	
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

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

@-webkit-keyframes shake {
	0%, 100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	
	20%, 40%, 60%, 80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}

@keyframes shake {
	0%, 100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	
	20%, 40%, 60%, 80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}

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

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg);
	}
	
	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg);
	}
	
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}
	
	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg);
	}
	
	100% {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg);
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg);
	}
	
	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg);
	}
	
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}
	
	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg);
	}
	
	100% {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg);
	}
}

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

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	
	10%, 20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}
	
	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	
	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	
	10%, 20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}
	
	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	
	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

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

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none;
	}
	
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none;
	}
	
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

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

@-webkit-keyframes bounceIn {
	0%, 100%, 20%, 40%, 60%, 80% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	
	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	
	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes bounceIn {
	0%, 100%, 20%, 40%, 60%, 80% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	
	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	
	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
	0%, 100%, 60%, 75%, 90% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInDown {
	0%, 100%, 60%, 75%, 90% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

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

@-webkit-keyframes bounceInLeft {
	0%, 100%, 60%, 75%, 90% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInLeft {
	0%, 100%, 60%, 75%, 90% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

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

@-webkit-keyframes bounceInRight {
	0%, 100%, 60%, 75%, 90% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}
	
	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
	
	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInRight {
	0%, 100%, 60%, 75%, 90% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}
	
	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
	
	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

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

@-webkit-keyframes bounceInUp {
	0%, 100%, 60%, 75%, 90% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	
	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	
	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}
	
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes bounceInUp {
	0%, 100%, 60%, 75%, 90% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	
	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	
	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}
	
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

@-webkit-keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9);
	}
	
	50%, 55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
}

@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9);
	}
	
	50%, 55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}

@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	
	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	
	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	
	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	
	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

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

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0;
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	
	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	
	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	
	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
		transform: perspective(400px) scale3d(.95, .95, .95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	
	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	
	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	
	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	
	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
		transform: perspective(400px) scale3d(.95, .95, .95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	
	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1;
	}
	
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1;
	}
	
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	
	20%, 60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	
	40%, 80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	
	100% {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}

@keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	
	20%, 60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	
	40%, 80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	
	100% {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}

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

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

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

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

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

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

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

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	
	50% {
		opacity: 1;
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	
	50% {
		opacity: 1;
	}
}

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

@-webkit-keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

@keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

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

@-webkit-keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

@keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

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

@-webkit-keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

@keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

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

@-webkit-keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

@keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

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

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1;
	}
	
	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	
	100% {
		opacity: 0;
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1;
	}
	
	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	
	100% {
		opacity: 0;
	}
}

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

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

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

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}

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

@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center;
	}
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center;
	}
}

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

@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
}

@keyframes slideOutDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
}

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

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

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

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

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

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

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

/*!
 * Font Awesome Free 5.11.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa.fa-glass:before {
	content: "";
}

.fa.fa-meetup {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-star-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-star-o:before {
	content: "";
}

.fa.fa-remove:before {
	content: "";
}

.fa.fa-close:before {
	content: "";
}

.fa.fa-gear:before {
	content: "";
}

.fa.fa-trash-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-trash-o:before {
	content: "";
}

.fa.fa-file-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-o:before {
	content: "";
}

.fa.fa-clock-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-clock-o:before {
	content: "";
}

.fa.fa-arrow-circle-o-down {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-arrow-circle-o-down:before {
	content: "";
}

.fa.fa-arrow-circle-o-up {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-arrow-circle-o-up:before {
	content: "";
}

.fa.fa-play-circle-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-play-circle-o:before {
	content: "";
}

.fa.fa-repeat:before {
	content: "";
}

.fa.fa-rotate-right:before {
	content: "";
}

.fa.fa-refresh:before {
	content: "";
}

.fa.fa-list-alt {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-dedent:before {
	content: "";
}

.fa.fa-video-camera:before {
	content: "";
}

.fa.fa-picture-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-picture-o:before {
	content: "";
}

.fa.fa-photo {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-photo:before {
	content: "";
}

.fa.fa-image {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-image:before {
	content: "";
}

.fa.fa-pencil:before {
	content: "";
}

.fa.fa-map-marker:before {
	content: "";
}

.fa.fa-pencil-square-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-pencil-square-o:before {
	content: "";
}

.fa.fa-share-square-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-share-square-o:before {
	content: "";
}

.fa.fa-check-square-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-check-square-o:before {
	content: "";
}

.fa.fa-arrows:before {
	content: "";
}

.fa.fa-times-circle-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-times-circle-o:before {
	content: "";
}

.fa.fa-check-circle-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-check-circle-o:before {
	content: "";
}

.fa.fa-mail-forward:before {
	content: "";
}

.fa.fa-eye {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-eye-slash {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-warning:before {
	content: "";
}

.fa.fa-calendar:before {
	content: "";
}

.fa.fa-arrows-v:before {
	content: "";
}

.fa.fa-arrows-h:before {
	content: "";
}

.fa.fa-bar-chart {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-bar-chart:before {
	content: "";
}

.fa.fa-bar-chart-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-bar-chart-o:before {
	content: "";
}

.fa.fa-twitter-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-facebook-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-gears:before {
	content: "";
}

.fa.fa-thumbs-o-up {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-thumbs-o-up:before {
	content: "";
}

.fa.fa-thumbs-o-down {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-thumbs-o-down:before {
	content: "";
}

.fa.fa-heart-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-heart-o:before {
	content: "";
}

.fa.fa-sign-out:before {
	content: "";
}

.fa.fa-linkedin-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-linkedin-square:before {
	content: "";
}

.fa.fa-thumb-tack:before {
	content: "";
}

.fa.fa-external-link:before {
	content: "";
}

.fa.fa-sign-in:before {
	content: "";
}

.fa.fa-github-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-lemon-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-lemon-o:before {
	content: "";
}

.fa.fa-square-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-square-o:before {
	content: "";
}

.fa.fa-bookmark-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-bookmark-o:before {
	content: "";
}

.fa.fa-twitter {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-facebook {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-facebook:before {
	content: "";
}

.fa.fa-facebook-f {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-facebook-f:before {
	content: "";
}

.fa.fa-github {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-credit-card {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-feed:before {
	content: "";
}

.fa.fa-hdd-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hdd-o:before {
	content: "";
}

.fa.fa-hand-o-right {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hand-o-right:before {
	content: "";
}

.fa.fa-hand-o-left {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hand-o-left:before {
	content: "";
}

.fa.fa-hand-o-up {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hand-o-up:before {
	content: "";
}

.fa.fa-hand-o-down {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hand-o-down:before {
	content: "";
}

.fa.fa-arrows-alt:before {
	content: "";
}

.fa.fa-group:before {
	content: "";
}

.fa.fa-chain:before {
	content: "";
}

.fa.fa-scissors:before {
	content: "";
}

.fa.fa-files-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-files-o:before {
	content: "";
}

.fa.fa-floppy-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-floppy-o:before {
	content: "";
}

.fa.fa-navicon:before {
	content: "";
}

.fa.fa-reorder:before {
	content: "";
}

.fa.fa-pinterest {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-pinterest-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-google-plus-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-google-plus {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-google-plus:before {
	content: "";
}

.fa.fa-money {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-money:before {
	content: "";
}

.fa.fa-unsorted:before {
	content: "";
}

.fa.fa-sort-desc:before {
	content: "";
}

.fa.fa-sort-asc:before {
	content: "";
}

.fa.fa-linkedin {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-linkedin:before {
	content: "";
}

.fa.fa-rotate-left:before {
	content: "";
}

.fa.fa-legal:before {
	content: "";
}

.fa.fa-tachometer:before {
	content: "";
}

.fa.fa-dashboard:before {
	content: "";
}

.fa.fa-comment-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-comment-o:before {
	content: "";
}

.fa.fa-comments-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-comments-o:before {
	content: "";
}

.fa.fa-flash:before {
	content: "";
}

.fa.fa-clipboard {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-paste {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-paste:before {
	content: "";
}

.fa.fa-lightbulb-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-lightbulb-o:before {
	content: "";
}

.fa.fa-exchange:before {
	content: "";
}

.fa.fa-cloud-download:before {
	content: "";
}

.fa.fa-cloud-upload:before {
	content: "";
}

.fa.fa-bell-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-bell-o:before {
	content: "";
}

.fa.fa-cutlery:before {
	content: "";
}

.fa.fa-file-text-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-text-o:before {
	content: "";
}

.fa.fa-building-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-building-o:before {
	content: "";
}

.fa.fa-hospital-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hospital-o:before {
	content: "";
}

.fa.fa-tablet:before {
	content: "";
}

.fa.fa-mobile:before {
	content: "";
}

.fa.fa-mobile-phone:before {
	content: "";
}

.fa.fa-circle-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-circle-o:before {
	content: "";
}

.fa.fa-mail-reply:before {
	content: "";
}

.fa.fa-github-alt {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-folder-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-folder-o:before {
	content: "";
}

.fa.fa-folder-open-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-folder-open-o:before {
	content: "";
}

.fa.fa-smile-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-smile-o:before {
	content: "";
}

.fa.fa-frown-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-frown-o:before {
	content: "";
}

.fa.fa-meh-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-meh-o:before {
	content: "";
}

.fa.fa-keyboard-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-keyboard-o:before {
	content: "";
}

.fa.fa-flag-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-flag-o:before {
	content: "";
}

.fa.fa-mail-reply-all:before {
	content: "";
}

.fa.fa-star-half-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-star-half-o:before {
	content: "";
}

.fa.fa-star-half-empty {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-star-half-empty:before {
	content: "";
}

.fa.fa-star-half-full {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-star-half-full:before {
	content: "";
}

.fa.fa-code-fork:before {
	content: "";
}

.fa.fa-chain-broken:before {
	content: "";
}

.fa.fa-shield:before {
	content: "";
}

.fa.fa-calendar-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-calendar-o:before {
	content: "";
}

.fa.fa-maxcdn {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-html5 {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-css3 {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-ticket:before {
	content: "";
}

.fa.fa-minus-square-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-minus-square-o:before {
	content: "";
}

.fa.fa-level-up:before {
	content: "";
}

.fa.fa-level-down:before {
	content: "";
}

.fa.fa-pencil-square:before {
	content: "";
}

.fa.fa-external-link-square:before {
	content: "";
}

.fa.fa-compass {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-caret-square-o-down {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-caret-square-o-down:before {
	content: "";
}

.fa.fa-toggle-down {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-toggle-down:before {
	content: "";
}

.fa.fa-caret-square-o-up {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-caret-square-o-up:before {
	content: "";
}

.fa.fa-toggle-up {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-toggle-up:before {
	content: "";
}

.fa.fa-caret-square-o-right {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-caret-square-o-right:before {
	content: "";
}

.fa.fa-toggle-right {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-toggle-right:before {
	content: "";
}

.fa.fa-eur:before {
	content: "";
}

.fa.fa-euro:before {
	content: "";
}

.fa.fa-gbp:before {
	content: "";
}

.fa.fa-usd:before {
	content: "";
}

.fa.fa-dollar:before {
	content: "";
}

.fa.fa-inr:before {
	content: "";
}

.fa.fa-rupee:before {
	content: "";
}

.fa.fa-jpy:before {
	content: "";
}

.fa.fa-cny:before {
	content: "";
}

.fa.fa-rmb:before {
	content: "";
}

.fa.fa-yen:before {
	content: "";
}

.fa.fa-rub:before {
	content: "";
}

.fa.fa-ruble:before {
	content: "";
}

.fa.fa-rouble:before {
	content: "";
}

.fa.fa-krw:before {
	content: "";
}

.fa.fa-won:before {
	content: "";
}

.fa.fa-btc {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-bitcoin {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-bitcoin:before {
	content: "";
}

.fa.fa-file-text:before {
	content: "";
}

.fa.fa-sort-alpha-asc:before {
	content: "";
}

.fa.fa-sort-alpha-desc:before {
	content: "";
}

.fa.fa-sort-amount-asc:before {
	content: "";
}

.fa.fa-sort-amount-desc:before {
	content: "";
}

.fa.fa-sort-numeric-asc:before {
	content: "";
}

.fa.fa-sort-numeric-desc:before {
	content: "";
}

.fa.fa-youtube-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-youtube {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-xing {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-xing-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-youtube-play {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-youtube-play:before {
	content: "";
}

.fa.fa-dropbox {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-stack-overflow {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-instagram {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-flickr {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-adn {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-bitbucket {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-bitbucket-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-bitbucket-square:before {
	content: "";
}

.fa.fa-tumblr {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-tumblr-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-long-arrow-down:before {
	content: "";
}

.fa.fa-long-arrow-up:before {
	content: "";
}

.fa.fa-long-arrow-left:before {
	content: "";
}

.fa.fa-long-arrow-right:before {
	content: "";
}

.fa.fa-apple {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-windows {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-android {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-linux {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-dribbble {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-skype {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-foursquare {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-trello {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-gratipay {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-gittip {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-gittip:before {
	content: "";
}

.fa.fa-sun-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-sun-o:before {
	content: "";
}

.fa.fa-moon-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-moon-o:before {
	content: "";
}

.fa.fa-vk {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-weibo {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-renren {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-pagelines {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-stack-exchange {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-arrow-circle-o-right {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-arrow-circle-o-right:before {
	content: "";
}

.fa.fa-arrow-circle-o-left {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-arrow-circle-o-left:before {
	content: "";
}

.fa.fa-caret-square-o-left {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-caret-square-o-left:before {
	content: "";
}

.fa.fa-toggle-left {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-toggle-left:before {
	content: "";
}

.fa.fa-dot-circle-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-dot-circle-o:before {
	content: "";
}

.fa.fa-vimeo-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-try:before {
	content: "";
}

.fa.fa-turkish-lira:before {
	content: "";
}

.fa.fa-plus-square-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-plus-square-o:before {
	content: "";
}

.fa.fa-slack {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-wordpress {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-openid {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-institution:before {
	content: "";
}

.fa.fa-bank:before {
	content: "";
}

.fa.fa-mortar-board:before {
	content: "";
}

.fa.fa-yahoo {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-google {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-reddit {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-reddit-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-stumbleupon-circle {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-stumbleupon {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-delicious {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-digg {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-pied-piper-pp {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-pied-piper-alt {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-drupal {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-joomla {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-spoon:before {
	content: "";
}

.fa.fa-behance {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-behance-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-steam {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-steam-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-automobile:before {
	content: "";
}

.fa.fa-cab:before {
	content: "";
}

.fa.fa-envelope-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-envelope-o:before {
	content: "";
}

.fa.fa-deviantart {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-soundcloud {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-file-pdf-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-pdf-o:before {
	content: "";
}

.fa.fa-file-word-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-word-o:before {
	content: "";
}

.fa.fa-file-excel-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-excel-o:before {
	content: "";
}

.fa.fa-file-powerpoint-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-powerpoint-o:before {
	content: "";
}

.fa.fa-file-image-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-image-o:before {
	content: "";
}

.fa.fa-file-photo-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-photo-o:before {
	content: "";
}

.fa.fa-file-picture-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-picture-o:before {
	content: "";
}

.fa.fa-file-archive-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-archive-o:before {
	content: "";
}

.fa.fa-file-zip-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-zip-o:before {
	content: "";
}

.fa.fa-file-audio-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-audio-o:before {
	content: "";
}

.fa.fa-file-sound-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-sound-o:before {
	content: "";
}

.fa.fa-file-video-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-video-o:before {
	content: "";
}

.fa.fa-file-movie-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-movie-o:before {
	content: "";
}

.fa.fa-file-code-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-file-code-o:before {
	content: "";
}

.fa.fa-vine {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-codepen {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-jsfiddle {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-life-ring {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-life-bouy {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-life-bouy:before {
	content: "";
}

.fa.fa-life-buoy {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-life-buoy:before {
	content: "";
}

.fa.fa-life-saver {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-life-saver:before {
	content: "";
}

.fa.fa-support {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-support:before {
	content: "";
}

.fa.fa-circle-o-notch:before {
	content: "";
}

.fa.fa-rebel {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-ra {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-ra:before {
	content: "";
}

.fa.fa-resistance {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-resistance:before {
	content: "";
}

.fa.fa-empire {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-ge {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-ge:before {
	content: "";
}

.fa.fa-git-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-git {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-hacker-news {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-y-combinator-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-y-combinator-square:before {
	content: "";
}

.fa.fa-yc-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-yc-square:before {
	content: "";
}

.fa.fa-tencent-weibo {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-qq {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-weixin {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-wechat {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-wechat:before {
	content: "";
}

.fa.fa-send:before {
	content: "";
}

.fa.fa-paper-plane-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-paper-plane-o:before {
	content: "";
}

.fa.fa-send-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-send-o:before {
	content: "";
}

.fa.fa-circle-thin {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-circle-thin:before {
	content: "";
}

.fa.fa-header:before {
	content: "";
}

.fa.fa-sliders:before {
	content: "";
}

.fa.fa-futbol-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-futbol-o:before {
	content: "";
}

.fa.fa-soccer-ball-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-soccer-ball-o:before {
	content: "";
}

.fa.fa-slideshare {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-twitch {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-yelp {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-newspaper-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-newspaper-o:before {
	content: "";
}

.fa.fa-paypal {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-google-wallet {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-cc-visa {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-cc-mastercard {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-cc-discover {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-cc-amex {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-cc-paypal {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-cc-stripe {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-bell-slash-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-bell-slash-o:before {
	content: "";
}

.fa.fa-trash:before {
	content: "";
}

.fa.fa-copyright {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-eyedropper:before {
	content: "";
}

.fa.fa-area-chart:before {
	content: "";
}

.fa.fa-pie-chart:before {
	content: "";
}

.fa.fa-line-chart:before {
	content: "";
}

.fa.fa-lastfm {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-lastfm-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-ioxhost {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-angellist {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-cc {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-cc:before {
	content: "";
}

.fa.fa-ils:before {
	content: "";
}

.fa.fa-shekel:before {
	content: "";
}

.fa.fa-sheqel:before {
	content: "";
}

.fa.fa-meanpath {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-meanpath:before {
	content: "";
}

.fa.fa-buysellads {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-connectdevelop {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-dashcube {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-forumbee {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-leanpub {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-sellsy {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-shirtsinbulk {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-simplybuilt {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-skyatlas {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-diamond {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-diamond:before {
	content: "";
}

.fa.fa-intersex:before {
	content: "";
}

.fa.fa-facebook-official {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-facebook-official:before {
	content: "";
}

.fa.fa-pinterest-p {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-whatsapp {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-hotel:before {
	content: "";
}

.fa.fa-viacoin {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-medium {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-y-combinator {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-yc {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-yc:before {
	content: "";
}

.fa.fa-optin-monster {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-opencart {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-expeditedssl {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-battery-4:before {
	content: "";
}

.fa.fa-battery:before {
	content: "";
}

.fa.fa-battery-3:before {
	content: "";
}

.fa.fa-battery-2:before {
	content: "";
}

.fa.fa-battery-1:before {
	content: "";
}

.fa.fa-battery-0:before {
	content: "";
}

.fa.fa-object-group {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-object-ungroup {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-sticky-note-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-sticky-note-o:before {
	content: "";
}

.fa.fa-cc-jcb {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-cc-diners-club {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-clone {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hourglass-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hourglass-o:before {
	content: "";
}

.fa.fa-hourglass-1:before {
	content: "";
}

.fa.fa-hourglass-2:before {
	content: "";
}

.fa.fa-hourglass-3:before {
	content: "";
}

.fa.fa-hand-rock-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hand-rock-o:before {
	content: "";
}

.fa.fa-hand-grab-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hand-grab-o:before {
	content: "";
}

.fa.fa-hand-paper-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hand-paper-o:before {
	content: "";
}

.fa.fa-hand-stop-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hand-stop-o:before {
	content: "";
}

.fa.fa-hand-scissors-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hand-scissors-o:before {
	content: "";
}

.fa.fa-hand-lizard-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hand-lizard-o:before {
	content: "";
}

.fa.fa-hand-spock-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hand-spock-o:before {
	content: "";
}

.fa.fa-hand-pointer-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hand-pointer-o:before {
	content: "";
}

.fa.fa-hand-peace-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-hand-peace-o:before {
	content: "";
}

.fa.fa-registered {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-creative-commons {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-gg {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-gg-circle {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-tripadvisor {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-odnoklassniki {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-odnoklassniki-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-get-pocket {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-wikipedia-w {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-safari {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-chrome {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-firefox {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-opera {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-internet-explorer {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-television:before {
	content: "";
}

.fa.fa-contao {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-500px {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-amazon {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-calendar-plus-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-calendar-plus-o:before {
	content: "";
}

.fa.fa-calendar-minus-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-calendar-minus-o:before {
	content: "";
}

.fa.fa-calendar-times-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-calendar-times-o:before {
	content: "";
}

.fa.fa-calendar-check-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-calendar-check-o:before {
	content: "";
}

.fa.fa-map-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-map-o:before {
	content: "";
}

.fa.fa-commenting:before {
	content: "";
}

.fa.fa-commenting-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-commenting-o:before {
	content: "";
}

.fa.fa-houzz {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-vimeo {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-vimeo:before {
	content: "";
}

.fa.fa-black-tie {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-fonticons {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-reddit-alien {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-edge {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-credit-card-alt:before {
	content: "";
}

.fa.fa-codiepie {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-modx {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-fort-awesome {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-usb {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-product-hunt {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-mixcloud {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-scribd {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-pause-circle-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-pause-circle-o:before {
	content: "";
}

.fa.fa-stop-circle-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-stop-circle-o:before {
	content: "";
}

.fa.fa-bluetooth {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-bluetooth-b {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-gitlab {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-wpbeginner {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-wpforms {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-envira {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-wheelchair-alt {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-wheelchair-alt:before {
	content: "";
}

.fa.fa-question-circle-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-question-circle-o:before {
	content: "";
}

.fa.fa-volume-control-phone:before {
	content: "";
}

.fa.fa-asl-interpreting:before {
	content: "";
}

.fa.fa-deafness:before {
	content: "";
}

.fa.fa-hard-of-hearing:before {
	content: "";
}

.fa.fa-glide {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-glide-g {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-signing:before {
	content: "";
}

.fa.fa-viadeo {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-viadeo-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-snapchat {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-snapchat-ghost {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-snapchat-square {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-pied-piper {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-first-order {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-yoast {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-themeisle {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-google-plus-official {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-google-plus-official:before {
	content: "";
}

.fa.fa-google-plus-circle {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-google-plus-circle:before {
	content: "";
}

.fa.fa-font-awesome {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-fa {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-fa:before {
	content: "";
}

.fa.fa-handshake-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-handshake-o:before {
	content: "";
}

.fa.fa-envelope-open-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-envelope-open-o:before {
	content: "";
}

.fa.fa-linode {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-address-book-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-address-book-o:before {
	content: "";
}

.fa.fa-vcard:before {
	content: "";
}

.fa.fa-address-card-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-address-card-o:before {
	content: "";
}

.fa.fa-vcard-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-vcard-o:before {
	content: "";
}

.fa.fa-user-circle-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-user-circle-o:before {
	content: "";
}

.fa.fa-user-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-user-o:before {
	content: "";
}

.fa.fa-id-badge {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-drivers-license:before {
	content: "";
}

.fa.fa-id-card-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-id-card-o:before {
	content: "";
}

.fa.fa-drivers-license-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-drivers-license-o:before {
	content: "";
}

.fa.fa-quora {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-free-code-camp {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-telegram {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-thermometer-4:before {
	content: "";
}

.fa.fa-thermometer:before {
	content: "";
}

.fa.fa-thermometer-3:before {
	content: "";
}

.fa.fa-thermometer-2:before {
	content: "";
}

.fa.fa-thermometer-1:before {
	content: "";
}

.fa.fa-thermometer-0:before {
	content: "";
}

.fa.fa-bathtub:before {
	content: "";
}

.fa.fa-s15:before {
	content: "";
}

.fa.fa-window-maximize {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-window-restore {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-times-rectangle:before {
	content: "";
}

.fa.fa-window-close-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-window-close-o:before {
	content: "";
}

.fa.fa-times-rectangle-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-times-rectangle-o:before {
	content: "";
}

.fa.fa-bandcamp {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-grav {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-etsy {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-imdb {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-ravelry {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-eercast {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-eercast:before {
	content: "";
}

.fa.fa-snowflake-o {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa.fa-snowflake-o:before {
	content: "";
}

.fa.fa-superpowers {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-wpexplorer {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.fa.fa-spotify {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

/*!
 * Font Awesome Free 5.11.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa, .fab, .fad, .fal, .far, .fas {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}

.fa-lg {
	font-size: 1.33333em;
	line-height: .75em;
	vertical-align: -.0667em;
}

.fa-xs {
	font-size: .75em;
}

.fa-sm {
	font-size: .875em;
}

.fa-1x {
	font-size: 1em;
}

.fa-2x {
	font-size: 2em;
}

.fa-3x {
	font-size: 3em;
}

.fa-4x {
	font-size: 4em;
}

.fa-5x {
	font-size: 5em;
}

.fa-6x {
	font-size: 6em;
}

.fa-7x {
	font-size: 7em;
}

.fa-8x {
	font-size: 8em;
}

.fa-9x {
	font-size: 9em;
}

.fa-10x {
	font-size: 10em;
}

.fa-fw {
	text-align: center;
	width: 1.25em;
}

.fa-ul {
	list-style-type: none;
	margin-left: 2.5em;
	padding-left: 0;
}

.fa-ul>li {
	position: relative;
}

.fa-li {
	left: -2em;
	position: absolute;
	text-align: center;
	width: 2em;
	line-height: inherit;
}

.fa-border {
	border: solid .08em #eee;
	border-radius: .1em;
	padding: .2em .25em .15em;
}

.fa-pull-left {
	float: left;
}

.fa-pull-right {
	float: right;
}

.fa.fa-pull-left, .fab.fa-pull-left, .fal.fa-pull-left, .far.fa-pull-left, .fas.fa-pull-left {
	margin-right: .3em;
}

.fa.fa-pull-right, .fab.fa-pull-right, .fal.fa-pull-right, .far.fa-pull-right, .fas.fa-pull-right {
	margin-left: .3em;
}

.fa-spin {
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
}

.fa-pulse {
	-webkit-animation: fa-spin 1s infinite steps(8);
	animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.fa-rotate-90 {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.fa-rotate-180 {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.fa-rotate-270 {
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg);
}

.fa-flip-horizontal {
	-webkit-transform: scale(-1, 1);
	transform: scale(-1, 1);
}

.fa-flip-vertical {
	-webkit-transform: scale(1, -1);
	transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
	-webkit-transform: scale(-1, -1);
	transform: scale(-1, -1);
}

:root .fa-flip-both, :root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-rotate-90 {
	-webkit-filter: none;
	filter: none;
}

.fa-stack {
	display: inline-block;
	height: 2em;
	line-height: 2em;
	position: relative;
	vertical-align: middle;
	width: 2.5em;
}

.fa-stack-1x, .fa-stack-2x {
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%;
}

.fa-stack-1x {
	line-height: inherit;
}

.fa-stack-2x {
	font-size: 2em;
}

.fa-inverse {
	color: #fff;
}

.fa-500px:before {
	content: "";
}

.fa-accessible-icon:before {
	content: "";
}

.fa-accusoft:before {
	content: "";
}

.fa-acquisitions-incorporated:before {
	content: "";
}

.fa-ad:before {
	content: "";
}

.fa-address-book:before {
	content: "";
}

.fa-address-card:before {
	content: "";
}

.fa-adjust:before {
	content: "";
}

.fa-adn:before {
	content: "";
}

.fa-adobe:before {
	content: "";
}

.fa-adversal:before {
	content: "";
}

.fa-affiliatetheme:before {
	content: "";
}

.fa-air-freshener:before {
	content: "";
}

.fa-airbnb:before {
	content: "";
}

.fa-algolia:before {
	content: "";
}

.fa-align-center:before {
	content: "";
}

.fa-align-justify:before {
	content: "";
}

.fa-align-left:before {
	content: "";
}

.fa-align-right:before {
	content: "";
}

.fa-alipay:before {
	content: "";
}

.fa-allergies:before {
	content: "";
}

.fa-amazon:before {
	content: "";
}

.fa-amazon-pay:before {
	content: "";
}

.fa-ambulance:before {
	content: "";
}

.fa-american-sign-language-interpreting:before {
	content: "";
}

.fa-amilia:before {
	content: "";
}

.fa-anchor:before {
	content: "";
}

.fa-android:before {
	content: "";
}

.fa-angellist:before {
	content: "";
}

.fa-angle-double-down:before {
	content: "";
}

.fa-angle-double-left:before {
	content: "";
}

.fa-angle-double-right:before {
	content: "";
}

.fa-angle-double-up:before {
	content: "";
}

.fa-angle-down:before {
	content: "";
}

.fa-angle-left:before {
	content: "";
}

.fa-angle-right:before {
	content: "";
}

.fa-angle-up:before {
	content: "";
}

.fa-angry:before {
	content: "";
}

.fa-angrycreative:before {
	content: "";
}

.fa-angular:before {
	content: "";
}

.fa-ankh:before {
	content: "";
}

.fa-app-store:before {
	content: "";
}

.fa-app-store-ios:before {
	content: "";
}

.fa-apper:before {
	content: "";
}

.fa-apple:before {
	content: "";
}

.fa-apple-alt:before {
	content: "";
}

.fa-apple-pay:before {
	content: "";
}

.fa-archive:before {
	content: "";
}

.fa-archway:before {
	content: "";
}

.fa-arrow-alt-circle-down:before {
	content: "";
}

.fa-arrow-alt-circle-left:before {
	content: "";
}

.fa-arrow-alt-circle-right:before {
	content: "";
}

.fa-arrow-alt-circle-up:before {
	content: "";
}

.fa-arrow-circle-down:before {
	content: "";
}

.fa-arrow-circle-left:before {
	content: "";
}

.fa-arrow-circle-right:before {
	content: "";
}

.fa-arrow-circle-up:before {
	content: "";
}

.fa-arrow-down:before {
	content: "";
}

.fa-arrow-left:before {
	content: "";
}

.fa-arrow-right:before {
	content: "";
}

.fa-arrow-up:before {
	content: "";
}

.fa-arrows-alt:before {
	content: "";
}

.fa-arrows-alt-h:before {
	content: "";
}

.fa-arrows-alt-v:before {
	content: "";
}

.fa-artstation:before {
	content: "";
}

.fa-assistive-listening-systems:before {
	content: "";
}

.fa-asterisk:before {
	content: "";
}

.fa-asymmetrik:before {
	content: "";
}

.fa-at:before {
	content: "";
}

.fa-atlas:before {
	content: "";
}

.fa-atlassian:before {
	content: "";
}

.fa-atom:before {
	content: "";
}

.fa-audible:before {
	content: "";
}

.fa-audio-description:before {
	content: "";
}

.fa-autoprefixer:before {
	content: "";
}

.fa-avianex:before {
	content: "";
}

.fa-aviato:before {
	content: "";
}

.fa-award:before {
	content: "";
}

.fa-aws:before {
	content: "";
}

.fa-baby:before {
	content: "";
}

.fa-baby-carriage:before {
	content: "";
}

.fa-backspace:before {
	content: "";
}

.fa-backward:before {
	content: "";
}

.fa-bacon:before {
	content: "";
}

.fa-balance-scale:before {
	content: "";
}

.fa-balance-scale-left:before {
	content: "";
}

.fa-balance-scale-right:before {
	content: "";
}

.fa-ban:before {
	content: "";
}

.fa-band-aid:before {
	content: "";
}

.fa-bandcamp:before {
	content: "";
}

.fa-barcode:before {
	content: "";
}

.fa-bars:before {
	content: "";
}

.fa-baseball-ball:before {
	content: "";
}

.fa-basketball-ball:before {
	content: "";
}

.fa-bath:before {
	content: "";
}

.fa-battery-empty:before {
	content: "";
}

.fa-battery-full:before {
	content: "";
}

.fa-battery-half:before {
	content: "";
}

.fa-battery-quarter:before {
	content: "";
}

.fa-battery-three-quarters:before {
	content: "";
}

.fa-battle-net:before {
	content: "";
}

.fa-bed:before {
	content: "";
}

.fa-beer:before {
	content: "";
}

.fa-behance:before {
	content: "";
}

.fa-behance-square:before {
	content: "";
}

.fa-bell:before {
	content: "";
}

.fa-bell-slash:before {
	content: "";
}

.fa-bezier-curve:before {
	content: "";
}

.fa-bible:before {
	content: "";
}

.fa-bicycle:before {
	content: "";
}

.fa-biking:before {
	content: "";
}

.fa-bimobject:before {
	content: "";
}

.fa-binoculars:before {
	content: "";
}

.fa-biohazard:before {
	content: "";
}

.fa-birthday-cake:before {
	content: "";
}

.fa-bitbucket:before {
	content: "";
}

.fa-bitcoin:before {
	content: "";
}

.fa-bity:before {
	content: "";
}

.fa-black-tie:before {
	content: "";
}

.fa-blackberry:before {
	content: "";
}

.fa-blender:before {
	content: "";
}

.fa-blender-phone:before {
	content: "";
}

.fa-blind:before {
	content: "";
}

.fa-blog:before {
	content: "";
}

.fa-blogger:before {
	content: "";
}

.fa-blogger-b:before {
	content: "";
}

.fa-bluetooth:before {
	content: "";
}

.fa-bluetooth-b:before {
	content: "";
}

.fa-bold:before {
	content: "";
}

.fa-bolt:before {
	content: "";
}

.fa-bomb:before {
	content: "";
}

.fa-bone:before {
	content: "";
}

.fa-bong:before {
	content: "";
}

.fa-book:before {
	content: "";
}

.fa-book-dead:before {
	content: "";
}

.fa-book-medical:before {
	content: "";
}

.fa-book-open:before {
	content: "";
}

.fa-book-reader:before {
	content: "";
}

.fa-bookmark:before {
	content: "";
}

.fa-bootstrap:before {
	content: "";
}

.fa-border-all:before {
	content: "";
}

.fa-border-none:before {
	content: "";
}

.fa-border-style:before {
	content: "";
}

.fa-bowling-ball:before {
	content: "";
}

.fa-box:before {
	content: "";
}

.fa-box-open:before {
	content: "";
}

.fa-boxes:before {
	content: "";
}

.fa-braille:before {
	content: "";
}

.fa-brain:before {
	content: "";
}

.fa-bread-slice:before {
	content: "";
}

.fa-briefcase:before {
	content: "";
}

.fa-briefcase-medical:before {
	content: "";
}

.fa-broadcast-tower:before {
	content: "";
}

.fa-broom:before {
	content: "";
}

.fa-brush:before {
	content: "";
}

.fa-btc:before {
	content: "";
}

.fa-buffer:before {
	content: "";
}

.fa-bug:before {
	content: "";
}

.fa-building:before {
	content: "";
}

.fa-bullhorn:before {
	content: "";
}

.fa-bullseye:before {
	content: "";
}

.fa-burn:before {
	content: "";
}

.fa-buromobelexperte:before {
	content: "";
}

.fa-bus:before {
	content: "";
}

.fa-bus-alt:before {
	content: "";
}

.fa-business-time:before {
	content: "";
}

.fa-buy-n-large:before {
	content: "";
}

.fa-buysellads:before {
	content: "";
}

.fa-calculator:before {
	content: "";
}

.fa-calendar:before {
	content: "";
}

.fa-calendar-alt:before {
	content: "";
}

.fa-calendar-check:before {
	content: "";
}

.fa-calendar-day:before {
	content: "";
}

.fa-calendar-minus:before {
	content: "";
}

.fa-calendar-plus:before {
	content: "";
}

.fa-calendar-times:before {
	content: "";
}

.fa-calendar-week:before {
	content: "";
}

.fa-camera:before {
	content: "";
}

.fa-camera-retro:before {
	content: "";
}

.fa-campground:before {
	content: "";
}

.fa-canadian-maple-leaf:before {
	content: "";
}

.fa-candy-cane:before {
	content: "";
}

.fa-cannabis:before {
	content: "";
}

.fa-capsules:before {
	content: "";
}

.fa-car:before {
	content: "";
}

.fa-car-alt:before {
	content: "";
}

.fa-car-battery:before {
	content: "";
}

.fa-car-crash:before {
	content: "";
}

.fa-car-side:before {
	content: "";
}

.fa-caret-down:before {
	content: "";
}

.fa-caret-left:before {
	content: "";
}

.fa-caret-right:before {
	content: "";
}

.fa-caret-square-down:before {
	content: "";
}

.fa-caret-square-left:before {
	content: "";
}

.fa-caret-square-right:before {
	content: "";
}

.fa-caret-square-up:before {
	content: "";
}

.fa-caret-up:before {
	content: "";
}

.fa-carrot:before {
	content: "";
}

.fa-cart-arrow-down:before {
	content: "";
}

.fa-cart-plus:before {
	content: "";
}

.fa-cash-register:before {
	content: "";
}

.fa-cat:before {
	content: "";
}

.fa-cc-amazon-pay:before {
	content: "";
}

.fa-cc-amex:before {
	content: "";
}

.fa-cc-apple-pay:before {
	content: "";
}

.fa-cc-diners-club:before {
	content: "";
}

.fa-cc-discover:before {
	content: "";
}

.fa-cc-jcb:before {
	content: "";
}

.fa-cc-mastercard:before {
	content: "";
}

.fa-cc-paypal:before {
	content: "";
}

.fa-cc-stripe:before {
	content: "";
}

.fa-cc-visa:before {
	content: "";
}

.fa-centercode:before {
	content: "";
}

.fa-centos:before {
	content: "";
}

.fa-certificate:before {
	content: "";
}

.fa-chair:before {
	content: "";
}

.fa-chalkboard:before {
	content: "";
}

.fa-chalkboard-teacher:before {
	content: "";
}

.fa-charging-station:before {
	content: "";
}

.fa-chart-area:before {
	content: "";
}

.fa-chart-bar:before {
	content: "";
}

.fa-chart-line:before {
	content: "";
}

.fa-chart-pie:before {
	content: "";
}

.fa-check:before {
	content: "";
}

.fa-check-circle:before {
	content: "";
}

.fa-check-double:before {
	content: "";
}

.fa-check-square:before {
	content: "";
}

.fa-cheese:before {
	content: "";
}

.fa-chess:before {
	content: "";
}

.fa-chess-bishop:before {
	content: "";
}

.fa-chess-board:before {
	content: "";
}

.fa-chess-king:before {
	content: "";
}

.fa-chess-knight:before {
	content: "";
}

.fa-chess-pawn:before {
	content: "";
}

.fa-chess-queen:before {
	content: "";
}

.fa-chess-rook:before {
	content: "";
}

.fa-chevron-circle-down:before {
	content: "";
}

.fa-chevron-circle-left:before {
	content: "";
}

.fa-chevron-circle-right:before {
	content: "";
}

.fa-chevron-circle-up:before {
	content: "";
}

.fa-chevron-down:before {
	content: "";
}

.fa-chevron-left:before {
	content: "";
}

.fa-chevron-right:before {
	content: "";
}

.fa-chevron-up:before {
	content: "";
}

.fa-child:before {
	content: "";
}

.fa-chrome:before {
	content: "";
}

.fa-chromecast:before {
	content: "";
}

.fa-church:before {
	content: "";
}

.fa-circle:before {
	content: "";
}

.fa-circle-notch:before {
	content: "";
}

.fa-city:before {
	content: "";
}

.fa-clinic-medical:before {
	content: "";
}

.fa-clipboard:before {
	content: "";
}

.fa-clipboard-check:before {
	content: "";
}

.fa-clipboard-list:before {
	content: "";
}

.fa-clock:before {
	content: "";
}

.fa-clone:before {
	content: "";
}

.fa-closed-captioning:before {
	content: "";
}

.fa-cloud:before {
	content: "";
}

.fa-cloud-download-alt:before {
	content: "";
}

.fa-cloud-meatball:before {
	content: "";
}

.fa-cloud-moon:before {
	content: "";
}

.fa-cloud-moon-rain:before {
	content: "";
}

.fa-cloud-rain:before {
	content: "";
}

.fa-cloud-showers-heavy:before {
	content: "";
}

.fa-cloud-sun:before {
	content: "";
}

.fa-cloud-sun-rain:before {
	content: "";
}

.fa-cloud-upload-alt:before {
	content: "";
}

.fa-cloudscale:before {
	content: "";
}

.fa-cloudsmith:before {
	content: "";
}

.fa-cloudversify:before {
	content: "";
}

.fa-cocktail:before {
	content: "";
}

.fa-code:before {
	content: "";
}

.fa-code-branch:before {
	content: "";
}

.fa-codepen:before {
	content: "";
}

.fa-codiepie:before {
	content: "";
}

.fa-coffee:before {
	content: "";
}

.fa-cog:before {
	content: "";
}

.fa-cogs:before {
	content: "";
}

.fa-coins:before {
	content: "";
}

.fa-columns:before {
	content: "";
}

.fa-comment:before {
	content: "";
}

.fa-comment-alt:before {
	content: "";
}

.fa-comment-dollar:before {
	content: "";
}

.fa-comment-dots:before {
	content: "";
}

.fa-comment-medical:before {
	content: "";
}

.fa-comment-slash:before {
	content: "";
}

.fa-comments:before {
	content: "";
}

.fa-comments-dollar:before {
	content: "";
}

.fa-compact-disc:before {
	content: "";
}

.fa-compass:before {
	content: "";
}

.fa-compress:before {
	content: "";
}

.fa-compress-arrows-alt:before {
	content: "";
}

.fa-concierge-bell:before {
	content: "";
}

.fa-confluence:before {
	content: "";
}

.fa-connectdevelop:before {
	content: "";
}

.fa-contao:before {
	content: "";
}

.fa-cookie:before {
	content: "";
}

.fa-cookie-bite:before {
	content: "";
}

.fa-copy:before {
	content: "";
}

.fa-copyright:before {
	content: "";
}

.fa-cotton-bureau:before {
	content: "";
}

.fa-couch:before {
	content: "";
}

.fa-cpanel:before {
	content: "";
}

.fa-creative-commons:before {
	content: "";
}

.fa-creative-commons-by:before {
	content: "";
}

.fa-creative-commons-nc:before {
	content: "";
}

.fa-creative-commons-nc-eu:before {
	content: "";
}

.fa-creative-commons-nc-jp:before {
	content: "";
}

.fa-creative-commons-nd:before {
	content: "";
}

.fa-creative-commons-pd:before {
	content: "";
}

.fa-creative-commons-pd-alt:before {
	content: "";
}

.fa-creative-commons-remix:before {
	content: "";
}

.fa-creative-commons-sa:before {
	content: "";
}

.fa-creative-commons-sampling:before {
	content: "";
}

.fa-creative-commons-sampling-plus:before {
	content: "";
}

.fa-creative-commons-share:before {
	content: "";
}

.fa-creative-commons-zero:before {
	content: "";
}

.fa-credit-card:before {
	content: "";
}

.fa-critical-role:before {
	content: "";
}

.fa-crop:before {
	content: "";
}

.fa-crop-alt:before {
	content: "";
}

.fa-cross:before {
	content: "";
}

.fa-crosshairs:before {
	content: "";
}

.fa-crow:before {
	content: "";
}

.fa-crown:before {
	content: "";
}

.fa-crutch:before {
	content: "";
}

.fa-css3:before {
	content: "";
}

.fa-css3-alt:before {
	content: "";
}

.fa-cube:before {
	content: "";
}

.fa-cubes:before {
	content: "";
}

.fa-cut:before {
	content: "";
}

.fa-cuttlefish:before {
	content: "";
}

.fa-d-and-d:before {
	content: "";
}

.fa-d-and-d-beyond:before {
	content: "";
}

.fa-dashcube:before {
	content: "";
}

.fa-database:before {
	content: "";
}

.fa-deaf:before {
	content: "";
}

.fa-delicious:before {
	content: "";
}

.fa-democrat:before {
	content: "";
}

.fa-deploydog:before {
	content: "";
}

.fa-deskpro:before {
	content: "";
}

.fa-desktop:before {
	content: "";
}

.fa-dev:before {
	content: "";
}

.fa-deviantart:before {
	content: "";
}

.fa-dharmachakra:before {
	content: "";
}

.fa-dhl:before {
	content: "";
}

.fa-diagnoses:before {
	content: "";
}

.fa-diaspora:before {
	content: "";
}

.fa-dice:before {
	content: "";
}

.fa-dice-d20:before {
	content: "";
}

.fa-dice-d6:before {
	content: "";
}

.fa-dice-five:before {
	content: "";
}

.fa-dice-four:before {
	content: "";
}

.fa-dice-one:before {
	content: "";
}

.fa-dice-six:before {
	content: "";
}

.fa-dice-three:before {
	content: "";
}

.fa-dice-two:before {
	content: "";
}

.fa-digg:before {
	content: "";
}

.fa-digital-ocean:before {
	content: "";
}

.fa-digital-tachograph:before {
	content: "";
}

.fa-directions:before {
	content: "";
}

.fa-discord:before {
	content: "";
}

.fa-discourse:before {
	content: "";
}

.fa-divide:before {
	content: "";
}

.fa-dizzy:before {
	content: "";
}

.fa-dna:before {
	content: "";
}

.fa-dochub:before {
	content: "";
}

.fa-docker:before {
	content: "";
}

.fa-dog:before {
	content: "";
}

.fa-dollar-sign:before {
	content: "";
}

.fa-dolly:before {
	content: "";
}

.fa-dolly-flatbed:before {
	content: "";
}

.fa-donate:before {
	content: "";
}

.fa-door-closed:before {
	content: "";
}

.fa-door-open:before {
	content: "";
}

.fa-dot-circle:before {
	content: "";
}

.fa-dove:before {
	content: "";
}

.fa-download:before {
	content: "";
}

.fa-draft2digital:before {
	content: "";
}

.fa-drafting-compass:before {
	content: "";
}

.fa-dragon:before {
	content: "";
}

.fa-draw-polygon:before {
	content: "";
}

.fa-dribbble:before {
	content: "";
}

.fa-dribbble-square:before {
	content: "";
}

.fa-dropbox:before {
	content: "";
}

.fa-drum:before {
	content: "";
}

.fa-drum-steelpan:before {
	content: "";
}

.fa-drumstick-bite:before {
	content: "";
}

.fa-drupal:before {
	content: "";
}

.fa-dumbbell:before {
	content: "";
}

.fa-dumpster:before {
	content: "";
}

.fa-dumpster-fire:before {
	content: "";
}

.fa-dungeon:before {
	content: "";
}

.fa-dyalog:before {
	content: "";
}

.fa-earlybirds:before {
	content: "";
}

.fa-ebay:before {
	content: "";
}

.fa-edge:before {
	content: "";
}

.fa-edit:before {
	content: "";
}

.fa-egg:before {
	content: "";
}

.fa-eject:before {
	content: "";
}

.fa-elementor:before {
	content: "";
}

.fa-ellipsis-h:before {
	content: "";
}

.fa-ellipsis-v:before {
	content: "";
}

.fa-ello:before {
	content: "";
}

.fa-ember:before {
	content: "";
}

.fa-empire:before {
	content: "";
}

.fa-envelope:before {
	content: "";
}

.fa-envelope-open:before {
	content: "";
}

.fa-envelope-open-text:before {
	content: "";
}

.fa-envelope-square:before {
	content: "";
}

.fa-envira:before {
	content: "";
}

.fa-equals:before {
	content: "";
}

.fa-eraser:before {
	content: "";
}

.fa-erlang:before {
	content: "";
}

.fa-ethereum:before {
	content: "";
}

.fa-ethernet:before {
	content: "";
}

.fa-etsy:before {
	content: "";
}

.fa-euro-sign:before {
	content: "";
}

.fa-evernote:before {
	content: "";
}

.fa-exchange-alt:before {
	content: "";
}

.fa-exclamation:before {
	content: "";
}

.fa-exclamation-circle:before {
	content: "";
}

.fa-exclamation-triangle:before {
	content: "";
}

.fa-expand:before {
	content: "";
}

.fa-expand-arrows-alt:before {
	content: "";
}

.fa-expeditedssl:before {
	content: "";
}

.fa-external-link-alt:before {
	content: "";
}

.fa-external-link-square-alt:before {
	content: "";
}

.fa-eye:before {
	content: "";
}

.fa-eye-dropper:before {
	content: "";
}

.fa-eye-slash:before {
	content: "";
}

.fa-facebook:before {
	content: "";
}

.fa-facebook-f:before {
	content: "";
}

.fa-facebook-messenger:before {
	content: "";
}

.fa-facebook-square:before {
	content: "";
}

.fa-fan:before {
	content: "";
}

.fa-fantasy-flight-games:before {
	content: "";
}

.fa-fast-backward:before {
	content: "";
}

.fa-fast-forward:before {
	content: "";
}

.fa-fax:before {
	content: "";
}

.fa-feather:before {
	content: "";
}

.fa-feather-alt:before {
	content: "";
}

.fa-fedex:before {
	content: "";
}

.fa-fedora:before {
	content: "";
}

.fa-female:before {
	content: "";
}

.fa-fighter-jet:before {
	content: "";
}

.fa-figma:before {
	content: "";
}

.fa-file:before {
	content: "";
}

.fa-file-alt:before {
	content: "";
}

.fa-file-archive:before {
	content: "";
}

.fa-file-audio:before {
	content: "";
}

.fa-file-code:before {
	content: "";
}

.fa-file-contract:before {
	content: "";
}

.fa-file-csv:before {
	content: "";
}

.fa-file-download:before {
	content: "";
}

.fa-file-excel:before {
	content: "";
}

.fa-file-export:before {
	content: "";
}

.fa-file-image:before {
	content: "";
}

.fa-file-import:before {
	content: "";
}

.fa-file-invoice:before {
	content: "";
}

.fa-file-invoice-dollar:before {
	content: "";
}

.fa-file-medical:before {
	content: "";
}

.fa-file-medical-alt:before {
	content: "";
}

.fa-file-pdf:before {
	content: "";
}

.fa-file-powerpoint:before {
	content: "";
}

.fa-file-prescription:before {
	content: "";
}

.fa-file-signature:before {
	content: "";
}

.fa-file-upload:before {
	content: "";
}

.fa-file-video:before {
	content: "";
}

.fa-file-word:before {
	content: "";
}

.fa-fill:before {
	content: "";
}

.fa-fill-drip:before {
	content: "";
}

.fa-film:before {
	content: "";
}

.fa-filter:before {
	content: "";
}

.fa-fingerprint:before {
	content: "";
}

.fa-fire:before {
	content: "";
}

.fa-fire-alt:before {
	content: "";
}

.fa-fire-extinguisher:before {
	content: "";
}

.fa-firefox:before {
	content: "";
}

.fa-first-aid:before {
	content: "";
}

.fa-first-order:before {
	content: "";
}

.fa-first-order-alt:before {
	content: "";
}

.fa-firstdraft:before {
	content: "";
}

.fa-fish:before {
	content: "";
}

.fa-fist-raised:before {
	content: "";
}

.fa-flag:before {
	content: "";
}

.fa-flag-checkered:before {
	content: "";
}

.fa-flag-usa:before {
	content: "";
}

.fa-flask:before {
	content: "";
}

.fa-flickr:before {
	content: "";
}

.fa-flipboard:before {
	content: "";
}

.fa-flushed:before {
	content: "";
}

.fa-fly:before {
	content: "";
}

.fa-folder:before {
	content: "";
}

.fa-folder-minus:before {
	content: "";
}

.fa-folder-open:before {
	content: "";
}

.fa-folder-plus:before {
	content: "";
}

.fa-font:before {
	content: "";
}

.fa-font-awesome:before {
	content: "";
}

.fa-font-awesome-alt:before {
	content: "";
}

.fa-font-awesome-flag:before {
	content: "";
}

.fa-font-awesome-logo-full:before {
	content: "";
}

.fa-fonticons:before {
	content: "";
}

.fa-fonticons-fi:before {
	content: "";
}

.fa-football-ball:before {
	content: "";
}

.fa-fort-awesome:before {
	content: "";
}

.fa-fort-awesome-alt:before {
	content: "";
}

.fa-forumbee:before {
	content: "";
}

.fa-forward:before {
	content: "";
}

.fa-foursquare:before {
	content: "";
}

.fa-free-code-camp:before {
	content: "";
}

.fa-freebsd:before {
	content: "";
}

.fa-frog:before {
	content: "";
}

.fa-frown:before {
	content: "";
}

.fa-frown-open:before {
	content: "";
}

.fa-fulcrum:before {
	content: "";
}

.fa-funnel-dollar:before {
	content: "";
}

.fa-futbol:before {
	content: "";
}

.fa-galactic-republic:before {
	content: "";
}

.fa-galactic-senate:before {
	content: "";
}

.fa-gamepad:before {
	content: "";
}

.fa-gas-pump:before {
	content: "";
}

.fa-gavel:before {
	content: "";
}

.fa-gem:before {
	content: "";
}

.fa-genderless:before {
	content: "";
}

.fa-get-pocket:before {
	content: "";
}

.fa-gg:before {
	content: "";
}

.fa-gg-circle:before {
	content: "";
}

.fa-ghost:before {
	content: "";
}

.fa-gift:before {
	content: "";
}

.fa-gifts:before {
	content: "";
}

.fa-git:before {
	content: "";
}

.fa-git-alt:before {
	content: "";
}

.fa-git-square:before {
	content: "";
}

.fa-github:before {
	content: "";
}

.fa-github-alt:before {
	content: "";
}

.fa-github-square:before {
	content: "";
}

.fa-gitkraken:before {
	content: "";
}

.fa-gitlab:before {
	content: "";
}

.fa-gitter:before {
	content: "";
}

.fa-glass-cheers:before {
	content: "";
}

.fa-glass-martini:before {
	content: "";
}

.fa-glass-martini-alt:before {
	content: "";
}

.fa-glass-whiskey:before {
	content: "";
}

.fa-glasses:before {
	content: "";
}

.fa-glide:before {
	content: "";
}

.fa-glide-g:before {
	content: "";
}

.fa-globe:before {
	content: "";
}

.fa-globe-africa:before {
	content: "";
}

.fa-globe-americas:before {
	content: "";
}

.fa-globe-asia:before {
	content: "";
}

.fa-globe-europe:before {
	content: "";
}

.fa-gofore:before {
	content: "";
}

.fa-golf-ball:before {
	content: "";
}

.fa-goodreads:before {
	content: "";
}

.fa-goodreads-g:before {
	content: "";
}

.fa-google:before {
	content: "";
}

.fa-google-drive:before {
	content: "";
}

.fa-google-play:before {
	content: "";
}

.fa-google-plus:before {
	content: "";
}

.fa-google-plus-g:before {
	content: "";
}

.fa-google-plus-square:before {
	content: "";
}

.fa-google-wallet:before {
	content: "";
}

.fa-gopuram:before {
	content: "";
}

.fa-graduation-cap:before {
	content: "";
}

.fa-gratipay:before {
	content: "";
}

.fa-grav:before {
	content: "";
}

.fa-greater-than:before {
	content: "";
}

.fa-greater-than-equal:before {
	content: "";
}

.fa-grimace:before {
	content: "";
}

.fa-grin:before {
	content: "";
}

.fa-grin-alt:before {
	content: "";
}

.fa-grin-beam:before {
	content: "";
}

.fa-grin-beam-sweat:before {
	content: "";
}

.fa-grin-hearts:before {
	content: "";
}

.fa-grin-squint:before {
	content: "";
}

.fa-grin-squint-tears:before {
	content: "";
}

.fa-grin-stars:before {
	content: "";
}

.fa-grin-tears:before {
	content: "";
}

.fa-grin-tongue:before {
	content: "";
}

.fa-grin-tongue-squint:before {
	content: "";
}

.fa-grin-tongue-wink:before {
	content: "";
}

.fa-grin-wink:before {
	content: "";
}

.fa-grip-horizontal:before {
	content: "";
}

.fa-grip-lines:before {
	content: "";
}

.fa-grip-lines-vertical:before {
	content: "";
}

.fa-grip-vertical:before {
	content: "";
}

.fa-gripfire:before {
	content: "";
}

.fa-grunt:before {
	content: "";
}

.fa-guitar:before {
	content: "";
}

.fa-gulp:before {
	content: "";
}

.fa-h-square:before {
	content: "";
}

.fa-hacker-news:before {
	content: "";
}

.fa-hacker-news-square:before {
	content: "";
}

.fa-hackerrank:before {
	content: "";
}

.fa-hamburger:before {
	content: "";
}

.fa-hammer:before {
	content: "";
}

.fa-hamsa:before {
	content: "";
}

.fa-hand-holding:before {
	content: "";
}

.fa-hand-holding-heart:before {
	content: "";
}

.fa-hand-holding-usd:before {
	content: "";
}

.fa-hand-lizard:before {
	content: "";
}

.fa-hand-middle-finger:before {
	content: "";
}

.fa-hand-paper:before {
	content: "";
}

.fa-hand-peace:before {
	content: "";
}

.fa-hand-point-down:before {
	content: "";
}

.fa-hand-point-left:before {
	content: "";
}

.fa-hand-point-right:before {
	content: "";
}

.fa-hand-point-up:before {
	content: "";
}

.fa-hand-pointer:before {
	content: "";
}

.fa-hand-rock:before {
	content: "";
}

.fa-hand-scissors:before {
	content: "";
}

.fa-hand-spock:before {
	content: "";
}

.fa-hands:before {
	content: "";
}

.fa-hands-helping:before {
	content: "";
}

.fa-handshake:before {
	content: "";
}

.fa-hanukiah:before {
	content: "";
}

.fa-hard-hat:before {
	content: "";
}

.fa-hashtag:before {
	content: "";
}

.fa-hat-cowboy:before {
	content: "";
}

.fa-hat-cowboy-side:before {
	content: "";
}

.fa-hat-wizard:before {
	content: "";
}

.fa-haykal:before {
	content: "";
}

.fa-hdd:before {
	content: "";
}

.fa-heading:before {
	content: "";
}

.fa-headphones:before {
	content: "";
}

.fa-headphones-alt:before {
	content: "";
}

.fa-headset:before {
	content: "";
}

.fa-heart:before {
	content: "";
}

.fa-heart-broken:before {
	content: "";
}

.fa-heartbeat:before {
	content: "";
}

.fa-helicopter:before {
	content: "";
}

.fa-highlighter:before {
	content: "";
}

.fa-hiking:before {
	content: "";
}

.fa-hippo:before {
	content: "";
}

.fa-hips:before {
	content: "";
}

.fa-hire-a-helper:before {
	content: "";
}

.fa-history:before {
	content: "";
}

.fa-hockey-puck:before {
	content: "";
}

.fa-holly-berry:before {
	content: "";
}

.fa-home:before {
	content: "";
}

.fa-hooli:before {
	content: "";
}

.fa-hornbill:before {
	content: "";
}

.fa-horse:before {
	content: "";
}

.fa-horse-head:before {
	content: "";
}

.fa-hospital:before {
	content: "";
}

.fa-hospital-alt:before {
	content: "";
}

.fa-hospital-symbol:before {
	content: "";
}

.fa-hot-tub:before {
	content: "";
}

.fa-hotdog:before {
	content: "";
}

.fa-hotel:before {
	content: "";
}

.fa-hotjar:before {
	content: "";
}

.fa-hourglass:before {
	content: "";
}

.fa-hourglass-end:before {
	content: "";
}

.fa-hourglass-half:before {
	content: "";
}

.fa-hourglass-start:before {
	content: "";
}

.fa-house-damage:before {
	content: "";
}

.fa-houzz:before {
	content: "";
}

.fa-hryvnia:before {
	content: "";
}

.fa-html5:before {
	content: "";
}

.fa-hubspot:before {
	content: "";
}

.fa-i-cursor:before {
	content: "";
}

.fa-ice-cream:before {
	content: "";
}

.fa-icicles:before {
	content: "";
}

.fa-icons:before {
	content: "";
}

.fa-id-badge:before {
	content: "";
}

.fa-id-card:before {
	content: "";
}

.fa-id-card-alt:before {
	content: "";
}

.fa-igloo:before {
	content: "";
}

.fa-image:before {
	content: "";
}

.fa-images:before {
	content: "";
}

.fa-imdb:before {
	content: "";
}

.fa-inbox:before {
	content: "";
}

.fa-indent:before {
	content: "";
}

.fa-industry:before {
	content: "";
}

.fa-infinity:before {
	content: "";
}

.fa-info:before {
	content: "";
}

.fa-info-circle:before {
	content: "";
}

.fa-instagram:before {
	content: "";
}

.fa-intercom:before {
	content: "";
}

.fa-internet-explorer:before {
	content: "";
}

.fa-invision:before {
	content: "";
}

.fa-ioxhost:before {
	content: "";
}

.fa-italic:before {
	content: "";
}

.fa-itch-io:before {
	content: "";
}

.fa-itunes:before {
	content: "";
}

.fa-itunes-note:before {
	content: "";
}

.fa-java:before {
	content: "";
}

.fa-jedi:before {
	content: "";
}

.fa-jedi-order:before {
	content: "";
}

.fa-jenkins:before {
	content: "";
}

.fa-jira:before {
	content: "";
}

.fa-joget:before {
	content: "";
}

.fa-joint:before {
	content: "";
}

.fa-joomla:before {
	content: "";
}

.fa-journal-whills:before {
	content: "";
}

.fa-js:before {
	content: "";
}

.fa-js-square:before {
	content: "";
}

.fa-jsfiddle:before {
	content: "";
}

.fa-kaaba:before {
	content: "";
}

.fa-kaggle:before {
	content: "";
}

.fa-key:before {
	content: "";
}

.fa-keybase:before {
	content: "";
}

.fa-keyboard:before {
	content: "";
}

.fa-keycdn:before {
	content: "";
}

.fa-khanda:before {
	content: "";
}

.fa-kickstarter:before {
	content: "";
}

.fa-kickstarter-k:before {
	content: "";
}

.fa-kiss:before {
	content: "";
}

.fa-kiss-beam:before {
	content: "";
}

.fa-kiss-wink-heart:before {
	content: "";
}

.fa-kiwi-bird:before {
	content: "";
}

.fa-korvue:before {
	content: "";
}

.fa-landmark:before {
	content: "";
}

.fa-language:before {
	content: "";
}

.fa-laptop:before {
	content: "";
}

.fa-laptop-code:before {
	content: "";
}

.fa-laptop-medical:before {
	content: "";
}

.fa-laravel:before {
	content: "";
}

.fa-lastfm:before {
	content: "";
}

.fa-lastfm-square:before {
	content: "";
}

.fa-laugh:before {
	content: "";
}

.fa-laugh-beam:before {
	content: "";
}

.fa-laugh-squint:before {
	content: "";
}

.fa-laugh-wink:before {
	content: "";
}

.fa-layer-group:before {
	content: "";
}

.fa-leaf:before {
	content: "";
}

.fa-leanpub:before {
	content: "";
}

.fa-lemon:before {
	content: "";
}

.fa-less:before {
	content: "";
}

.fa-less-than:before {
	content: "";
}

.fa-less-than-equal:before {
	content: "";
}

.fa-level-down-alt:before {
	content: "";
}

.fa-level-up-alt:before {
	content: "";
}

.fa-life-ring:before {
	content: "";
}

.fa-lightbulb:before {
	content: "";
}

.fa-line:before {
	content: "";
}

.fa-link:before {
	content: "";
}

.fa-linkedin:before {
	content: "";
}

.fa-linkedin-in:before {
	content: "";
}

.fa-linode:before {
	content: "";
}

.fa-linux:before {
	content: "";
}

.fa-lira-sign:before {
	content: "";
}

.fa-list:before {
	content: "";
}

.fa-list-alt:before {
	content: "";
}

.fa-list-ol:before {
	content: "";
}

.fa-list-ul:before {
	content: "";
}

.fa-location-arrow:before {
	content: "";
}

.fa-lock:before {
	content: "";
}

.fa-lock-open:before {
	content: "";
}

.fa-long-arrow-alt-down:before {
	content: "";
}

.fa-long-arrow-alt-left:before {
	content: "";
}

.fa-long-arrow-alt-right:before {
	content: "";
}

.fa-long-arrow-alt-up:before {
	content: "";
}

.fa-low-vision:before {
	content: "";
}

.fa-luggage-cart:before {
	content: "";
}

.fa-lyft:before {
	content: "";
}

.fa-magento:before {
	content: "";
}

.fa-magic:before {
	content: "";
}

.fa-magnet:before {
	content: "";
}

.fa-mail-bulk:before {
	content: "";
}

.fa-mailchimp:before {
	content: "";
}

.fa-male:before {
	content: "";
}

.fa-mandalorian:before {
	content: "";
}

.fa-map:before {
	content: "";
}

.fa-map-marked:before {
	content: "";
}

.fa-map-marked-alt:before {
	content: "";
}

.fa-map-marker:before {
	content: "";
}

.fa-map-marker-alt:before {
	content: "";
}

.fa-map-pin:before {
	content: "";
}

.fa-map-signs:before {
	content: "";
}

.fa-markdown:before {
	content: "";
}

.fa-marker:before {
	content: "";
}

.fa-mars:before {
	content: "";
}

.fa-mars-double:before {
	content: "";
}

.fa-mars-stroke:before {
	content: "";
}

.fa-mars-stroke-h:before {
	content: "";
}

.fa-mars-stroke-v:before {
	content: "";
}

.fa-mask:before {
	content: "";
}

.fa-mastodon:before {
	content: "";
}

.fa-maxcdn:before {
	content: "";
}

.fa-mdb:before {
	content: "";
}

.fa-medal:before {
	content: "";
}

.fa-medapps:before {
	content: "";
}

.fa-medium:before {
	content: "";
}

.fa-medium-m:before {
	content: "";
}

.fa-medkit:before {
	content: "";
}

.fa-medrt:before {
	content: "";
}

.fa-meetup:before {
	content: "";
}

.fa-megaport:before {
	content: "";
}

.fa-meh:before {
	content: "";
}

.fa-meh-blank:before {
	content: "";
}

.fa-meh-rolling-eyes:before {
	content: "";
}

.fa-memory:before {
	content: "";
}

.fa-mendeley:before {
	content: "";
}

.fa-menorah:before {
	content: "";
}

.fa-mercury:before {
	content: "";
}

.fa-meteor:before {
	content: "";
}

.fa-microchip:before {
	content: "";
}

.fa-microphone:before {
	content: "";
}

.fa-microphone-alt:before {
	content: "";
}

.fa-microphone-alt-slash:before {
	content: "";
}

.fa-microphone-slash:before {
	content: "";
}

.fa-microscope:before {
	content: "";
}

.fa-microsoft:before {
	content: "";
}

.fa-minus:before {
	content: "";
}

.fa-minus-circle:before {
	content: "";
}

.fa-minus-square:before {
	content: "";
}

.fa-mitten:before {
	content: "";
}

.fa-mix:before {
	content: "";
}

.fa-mixcloud:before {
	content: "";
}

.fa-mizuni:before {
	content: "";
}

.fa-mobile:before {
	content: "";
}

.fa-mobile-alt:before {
	content: "";
}

.fa-modx:before {
	content: "";
}

.fa-monero:before {
	content: "";
}

.fa-money-bill:before {
	content: "";
}

.fa-money-bill-alt:before {
	content: "";
}

.fa-money-bill-wave:before {
	content: "";
}

.fa-money-bill-wave-alt:before {
	content: "";
}

.fa-money-check:before {
	content: "";
}

.fa-money-check-alt:before {
	content: "";
}

.fa-monument:before {
	content: "";
}

.fa-moon:before {
	content: "";
}

.fa-mortar-pestle:before {
	content: "";
}

.fa-mosque:before {
	content: "";
}

.fa-motorcycle:before {
	content: "";
}

.fa-mountain:before {
	content: "";
}

.fa-mouse:before {
	content: "";
}

.fa-mouse-pointer:before {
	content: "";
}

.fa-mug-hot:before {
	content: "";
}

.fa-music:before {
	content: "";
}

.fa-napster:before {
	content: "";
}

.fa-neos:before {
	content: "";
}

.fa-network-wired:before {
	content: "";
}

.fa-neuter:before {
	content: "";
}

.fa-newspaper:before {
	content: "";
}

.fa-nimblr:before {
	content: "";
}

.fa-node:before {
	content: "";
}

.fa-node-js:before {
	content: "";
}

.fa-not-equal:before {
	content: "";
}

.fa-notes-medical:before {
	content: "";
}

.fa-npm:before {
	content: "";
}

.fa-ns8:before {
	content: "";
}

.fa-nutritionix:before {
	content: "";
}

.fa-object-group:before {
	content: "";
}

.fa-object-ungroup:before {
	content: "";
}

.fa-odnoklassniki:before {
	content: "";
}

.fa-odnoklassniki-square:before {
	content: "";
}

.fa-oil-can:before {
	content: "";
}

.fa-old-republic:before {
	content: "";
}

.fa-om:before {
	content: "";
}

.fa-opencart:before {
	content: "";
}

.fa-openid:before {
	content: "";
}

.fa-opera:before {
	content: "";
}

.fa-optin-monster:before {
	content: "";
}

.fa-orcid:before {
	content: "";
}

.fa-osi:before {
	content: "";
}

.fa-otter:before {
	content: "";
}

.fa-outdent:before {
	content: "";
}

.fa-page4:before {
	content: "";
}

.fa-pagelines:before {
	content: "";
}

.fa-pager:before {
	content: "";
}

.fa-paint-brush:before {
	content: "";
}

.fa-paint-roller:before {
	content: "";
}

.fa-palette:before {
	content: "";
}

.fa-palfed:before {
	content: "";
}

.fa-pallet:before {
	content: "";
}

.fa-paper-plane:before {
	content: "";
}

.fa-paperclip:before {
	content: "";
}

.fa-parachute-box:before {
	content: "";
}

.fa-paragraph:before {
	content: "";
}

.fa-parking:before {
	content: "";
}

.fa-passport:before {
	content: "";
}

.fa-pastafarianism:before {
	content: "";
}

.fa-paste:before {
	content: "";
}

.fa-patreon:before {
	content: "";
}

.fa-pause:before {
	content: "";
}

.fa-pause-circle:before {
	content: "";
}

.fa-paw:before {
	content: "";
}

.fa-paypal:before {
	content: "";
}

.fa-peace:before {
	content: "";
}

.fa-pen:before {
	content: "";
}

.fa-pen-alt:before {
	content: "";
}

.fa-pen-fancy:before {
	content: "";
}

.fa-pen-nib:before {
	content: "";
}

.fa-pen-square:before {
	content: "";
}

.fa-pencil-alt:before {
	content: "";
}

.fa-pencil-ruler:before {
	content: "";
}

.fa-penny-arcade:before {
	content: "";
}

.fa-people-carry:before {
	content: "";
}

.fa-pepper-hot:before {
	content: "";
}

.fa-percent:before {
	content: "";
}

.fa-percentage:before {
	content: "";
}

.fa-periscope:before {
	content: "";
}

.fa-person-booth:before {
	content: "";
}

.fa-phabricator:before {
	content: "";
}

.fa-phoenix-framework:before {
	content: "";
}

.fa-phoenix-squadron:before {
	content: "";
}

.fa-phone:before {
	content: "";
}

.fa-phone-alt:before {
	content: "";
}

.fa-phone-slash:before {
	content: "";
}

.fa-phone-square:before {
	content: "";
}

.fa-phone-square-alt:before {
	content: "";
}

.fa-phone-volume:before {
	content: "";
}

.fa-photo-video:before {
	content: "";
}

.fa-php:before {
	content: "";
}

.fa-pied-piper:before {
	content: "";
}

.fa-pied-piper-alt:before {
	content: "";
}

.fa-pied-piper-hat:before {
	content: "";
}

.fa-pied-piper-pp:before {
	content: "";
}

.fa-piggy-bank:before {
	content: "";
}

.fa-pills:before {
	content: "";
}

.fa-pinterest:before {
	content: "";
}

.fa-pinterest-p:before {
	content: "";
}

.fa-pinterest-square:before {
	content: "";
}

.fa-pizza-slice:before {
	content: "";
}

.fa-place-of-worship:before {
	content: "";
}

.fa-plane:before {
	content: "";
}

.fa-plane-arrival:before {
	content: "";
}

.fa-plane-departure:before {
	content: "";
}

.fa-play:before {
	content: "";
}

.fa-play-circle:before {
	content: "";
}

.fa-playstation:before {
	content: "";
}

.fa-plug:before {
	content: "";
}

.fa-plus:before {
	content: "";
}

.fa-plus-circle:before {
	content: "";
}

.fa-plus-square:before {
	content: "";
}

.fa-podcast:before {
	content: "";
}

.fa-poll:before {
	content: "";
}

.fa-poll-h:before {
	content: "";
}

.fa-poo:before {
	content: "";
}

.fa-poo-storm:before {
	content: "";
}

.fa-poop:before {
	content: "";
}

.fa-portrait:before {
	content: "";
}

.fa-pound-sign:before {
	content: "";
}

.fa-power-off:before {
	content: "";
}

.fa-pray:before {
	content: "";
}

.fa-praying-hands:before {
	content: "";
}

.fa-prescription:before {
	content: "";
}

.fa-prescription-bottle:before {
	content: "";
}

.fa-prescription-bottle-alt:before {
	content: "";
}

.fa-print:before {
	content: "";
}

.fa-procedures:before {
	content: "";
}

.fa-product-hunt:before {
	content: "";
}

.fa-project-diagram:before {
	content: "";
}

.fa-pushed:before {
	content: "";
}

.fa-puzzle-piece:before {
	content: "";
}

.fa-python:before {
	content: "";
}

.fa-qq:before {
	content: "";
}

.fa-qrcode:before {
	content: "";
}

.fa-question:before {
	content: "";
}

.fa-question-circle:before {
	content: "";
}

.fa-quidditch:before {
	content: "";
}

.fa-quinscape:before {
	content: "";
}

.fa-quora:before {
	content: "";
}

.fa-quote-left:before {
	content: "";
}

.fa-quote-right:before {
	content: "";
}

.fa-quran:before {
	content: "";
}

.fa-r-project:before {
	content: "";
}

.fa-radiation:before {
	content: "";
}

.fa-radiation-alt:before {
	content: "";
}

.fa-rainbow:before {
	content: "";
}

.fa-random:before {
	content: "";
}

.fa-raspberry-pi:before {
	content: "";
}

.fa-ravelry:before {
	content: "";
}

.fa-react:before {
	content: "";
}

.fa-reacteurope:before {
	content: "";
}

.fa-readme:before {
	content: "";
}

.fa-rebel:before {
	content: "";
}

.fa-receipt:before {
	content: "";
}

.fa-record-vinyl:before {
	content: "";
}

.fa-recycle:before {
	content: "";
}

.fa-red-river:before {
	content: "";
}

.fa-reddit:before {
	content: "";
}

.fa-reddit-alien:before {
	content: "";
}

.fa-reddit-square:before {
	content: "";
}

.fa-redhat:before {
	content: "";
}

.fa-redo:before {
	content: "";
}

.fa-redo-alt:before {
	content: "";
}

.fa-registered:before {
	content: "";
}

.fa-remove-format:before {
	content: "";
}

.fa-renren:before {
	content: "";
}

.fa-reply:before {
	content: "";
}

.fa-reply-all:before {
	content: "";
}

.fa-replyd:before {
	content: "";
}

.fa-republican:before {
	content: "";
}

.fa-researchgate:before {
	content: "";
}

.fa-resolving:before {
	content: "";
}

.fa-restroom:before {
	content: "";
}

.fa-retweet:before {
	content: "";
}

.fa-rev:before {
	content: "";
}

.fa-ribbon:before {
	content: "";
}

.fa-ring:before {
	content: "";
}

.fa-road:before {
	content: "";
}

.fa-robot:before {
	content: "";
}

.fa-rocket:before {
	content: "";
}

.fa-rocketchat:before {
	content: "";
}

.fa-rockrms:before {
	content: "";
}

.fa-route:before {
	content: "";
}

.fa-rss:before {
	content: "";
}

.fa-rss-square:before {
	content: "";
}

.fa-ruble-sign:before {
	content: "";
}

.fa-ruler:before {
	content: "";
}

.fa-ruler-combined:before {
	content: "";
}

.fa-ruler-horizontal:before {
	content: "";
}

.fa-ruler-vertical:before {
	content: "";
}

.fa-running:before {
	content: "";
}

.fa-rupee-sign:before {
	content: "";
}

.fa-sad-cry:before {
	content: "";
}

.fa-sad-tear:before {
	content: "";
}

.fa-safari:before {
	content: "";
}

.fa-salesforce:before {
	content: "";
}

.fa-sass:before {
	content: "";
}

.fa-satellite:before {
	content: "";
}

.fa-satellite-dish:before {
	content: "";
}

.fa-save:before {
	content: "";
}

.fa-schlix:before {
	content: "";
}

.fa-school:before {
	content: "";
}

.fa-screwdriver:before {
	content: "";
}

.fa-scribd:before {
	content: "";
}

.fa-scroll:before {
	content: "";
}

.fa-sd-card:before {
	content: "";
}

.fa-search:before {
	content: "";
}

.fa-search-dollar:before {
	content: "";
}

.fa-search-location:before {
	content: "";
}

.fa-search-minus:before {
	content: "";
}

.fa-search-plus:before {
	content: "";
}

.fa-searchengin:before {
	content: "";
}

.fa-seedling:before {
	content: "";
}

.fa-sellcast:before {
	content: "";
}

.fa-sellsy:before {
	content: "";
}

.fa-server:before {
	content: "";
}

.fa-servicestack:before {
	content: "";
}

.fa-shapes:before {
	content: "";
}

.fa-share:before {
	content: "";
}

.fa-share-alt:before {
	content: "";
}

.fa-share-alt-square:before {
	content: "";
}

.fa-share-square:before {
	content: "";
}

.fa-shekel-sign:before {
	content: "";
}

.fa-shield-alt:before {
	content: "";
}

.fa-ship:before {
	content: "";
}

.fa-shipping-fast:before {
	content: "";
}

.fa-shirtsinbulk:before {
	content: "";
}

.fa-shoe-prints:before {
	content: "";
}

.fa-shopping-bag:before {
	content: "";
}

.fa-shopping-basket:before {
	content: "";
}

.fa-shopping-cart:before {
	content: "";
}

.fa-shopware:before {
	content: "";
}

.fa-shower:before {
	content: "";
}

.fa-shuttle-van:before {
	content: "";
}

.fa-sign:before {
	content: "";
}

.fa-sign-in-alt:before {
	content: "";
}

.fa-sign-language:before {
	content: "";
}

.fa-sign-out-alt:before {
	content: "";
}

.fa-signal:before {
	content: "";
}

.fa-signature:before {
	content: "";
}

.fa-sim-card:before {
	content: "";
}

.fa-simplybuilt:before {
	content: "";
}

.fa-sistrix:before {
	content: "";
}

.fa-sitemap:before {
	content: "";
}

.fa-sith:before {
	content: "";
}

.fa-skating:before {
	content: "";
}

.fa-sketch:before {
	content: "";
}

.fa-skiing:before {
	content: "";
}

.fa-skiing-nordic:before {
	content: "";
}

.fa-skull:before {
	content: "";
}

.fa-skull-crossbones:before {
	content: "";
}

.fa-skyatlas:before {
	content: "";
}

.fa-skype:before {
	content: "";
}

.fa-slack:before {
	content: "";
}

.fa-slack-hash:before {
	content: "";
}

.fa-slash:before {
	content: "";
}

.fa-sleigh:before {
	content: "";
}

.fa-sliders-h:before {
	content: "";
}

.fa-slideshare:before {
	content: "";
}

.fa-smile:before {
	content: "";
}

.fa-smile-beam:before {
	content: "";
}

.fa-smile-wink:before {
	content: "";
}

.fa-smog:before {
	content: "";
}

.fa-smoking:before {
	content: "";
}

.fa-smoking-ban:before {
	content: "";
}

.fa-sms:before {
	content: "";
}

.fa-snapchat:before {
	content: "";
}

.fa-snapchat-ghost:before {
	content: "";
}

.fa-snapchat-square:before {
	content: "";
}

.fa-snowboarding:before {
	content: "";
}

.fa-snowflake:before {
	content: "";
}

.fa-snowman:before {
	content: "";
}

.fa-snowplow:before {
	content: "";
}

.fa-socks:before {
	content: "";
}

.fa-solar-panel:before {
	content: "";
}

.fa-sort:before {
	content: "";
}

.fa-sort-alpha-down:before {
	content: "";
}

.fa-sort-alpha-down-alt:before {
	content: "";
}

.fa-sort-alpha-up:before {
	content: "";
}

.fa-sort-alpha-up-alt:before {
	content: "";
}

.fa-sort-amount-down:before {
	content: "";
}

.fa-sort-amount-down-alt:before {
	content: "";
}

.fa-sort-amount-up:before {
	content: "";
}

.fa-sort-amount-up-alt:before {
	content: "";
}

.fa-sort-down:before {
	content: "";
}

.fa-sort-numeric-down:before {
	content: "";
}

.fa-sort-numeric-down-alt:before {
	content: "";
}

.fa-sort-numeric-up:before {
	content: "";
}

.fa-sort-numeric-up-alt:before {
	content: "";
}

.fa-sort-up:before {
	content: "";
}

.fa-soundcloud:before {
	content: "";
}

.fa-sourcetree:before {
	content: "";
}

.fa-spa:before {
	content: "";
}

.fa-space-shuttle:before {
	content: "";
}

.fa-speakap:before {
	content: "";
}

.fa-speaker-deck:before {
	content: "";
}

.fa-spell-check:before {
	content: "";
}

.fa-spider:before {
	content: "";
}

.fa-spinner:before {
	content: "";
}

.fa-splotch:before {
	content: "";
}

.fa-spotify:before {
	content: "";
}

.fa-spray-can:before {
	content: "";
}

.fa-square:before {
	content: "";
}

.fa-square-full:before {
	content: "";
}

.fa-square-root-alt:before {
	content: "";
}

.fa-squarespace:before {
	content: "";
}

.fa-stack-exchange:before {
	content: "";
}

.fa-stack-overflow:before {
	content: "";
}

.fa-stackpath:before {
	content: "";
}

.fa-stamp:before {
	content: "";
}

.fa-star:before {
	content: "";
}

.fa-star-and-crescent:before {
	content: "";
}

.fa-star-half:before {
	content: "";
}

.fa-star-half-alt:before {
	content: "";
}

.fa-star-of-david:before {
	content: "";
}

.fa-star-of-life:before {
	content: "";
}

.fa-staylinked:before {
	content: "";
}

.fa-steam:before {
	content: "";
}

.fa-steam-square:before {
	content: "";
}

.fa-steam-symbol:before {
	content: "";
}

.fa-step-backward:before {
	content: "";
}

.fa-step-forward:before {
	content: "";
}

.fa-stethoscope:before {
	content: "";
}

.fa-sticker-mule:before {
	content: "";
}

.fa-sticky-note:before {
	content: "";
}

.fa-stop:before {
	content: "";
}

.fa-stop-circle:before {
	content: "";
}

.fa-stopwatch:before {
	content: "";
}

.fa-store:before {
	content: "";
}

.fa-store-alt:before {
	content: "";
}

.fa-strava:before {
	content: "";
}

.fa-stream:before {
	content: "";
}

.fa-street-view:before {
	content: "";
}

.fa-strikethrough:before {
	content: "";
}

.fa-stripe:before {
	content: "";
}

.fa-stripe-s:before {
	content: "";
}

.fa-stroopwafel:before {
	content: "";
}

.fa-studiovinari:before {
	content: "";
}

.fa-stumbleupon:before {
	content: "";
}

.fa-stumbleupon-circle:before {
	content: "";
}

.fa-subscript:before {
	content: "";
}

.fa-subway:before {
	content: "";
}

.fa-suitcase:before {
	content: "";
}

.fa-suitcase-rolling:before {
	content: "";
}

.fa-sun:before {
	content: "";
}

.fa-superpowers:before {
	content: "";
}

.fa-superscript:before {
	content: "";
}

.fa-supple:before {
	content: "";
}

.fa-surprise:before {
	content: "";
}

.fa-suse:before {
	content: "";
}

.fa-swatchbook:before {
	content: "";
}

.fa-swift:before {
	content: "";
}

.fa-swimmer:before {
	content: "";
}

.fa-swimming-pool:before {
	content: "";
}

.fa-symfony:before {
	content: "";
}

.fa-synagogue:before {
	content: "";
}

.fa-sync:before {
	content: "";
}

.fa-sync-alt:before {
	content: "";
}

.fa-syringe:before {
	content: "";
}

.fa-table:before {
	content: "";
}

.fa-table-tennis:before {
	content: "";
}

.fa-tablet:before {
	content: "";
}

.fa-tablet-alt:before {
	content: "";
}

.fa-tablets:before {
	content: "";
}

.fa-tachometer-alt:before {
	content: "";
}

.fa-tag:before {
	content: "";
}

.fa-tags:before {
	content: "";
}

.fa-tape:before {
	content: "";
}

.fa-tasks:before {
	content: "";
}

.fa-taxi:before {
	content: "";
}

.fa-teamspeak:before {
	content: "";
}

.fa-teeth:before {
	content: "";
}

.fa-teeth-open:before {
	content: "";
}

.fa-telegram:before {
	content: "";
}

.fa-telegram-plane:before {
	content: "";
}

.fa-temperature-high:before {
	content: "";
}

.fa-temperature-low:before {
	content: "";
}

.fa-tencent-weibo:before {
	content: "";
}

.fa-tenge:before {
	content: "";
}

.fa-terminal:before {
	content: "";
}

.fa-text-height:before {
	content: "";
}

.fa-text-width:before {
	content: "";
}

.fa-th:before {
	content: "";
}

.fa-th-large:before {
	content: "";
}

.fa-th-list:before {
	content: "";
}

.fa-the-red-yeti:before {
	content: "";
}

.fa-theater-masks:before {
	content: "";
}

.fa-themeco:before {
	content: "";
}

.fa-themeisle:before {
	content: "";
}

.fa-thermometer:before {
	content: "";
}

.fa-thermometer-empty:before {
	content: "";
}

.fa-thermometer-full:before {
	content: "";
}

.fa-thermometer-half:before {
	content: "";
}

.fa-thermometer-quarter:before {
	content: "";
}

.fa-thermometer-three-quarters:before {
	content: "";
}

.fa-think-peaks:before {
	content: "";
}

.fa-thumbs-down:before {
	content: "";
}

.fa-thumbs-up:before {
	content: "";
}

.fa-thumbtack:before {
	content: "";
}

.fa-ticket-alt:before {
	content: "";
}

.fa-times:before {
	content: "";
}

.fa-times-circle:before {
	content: "";
}

.fa-tint:before {
	content: "";
}

.fa-tint-slash:before {
	content: "";
}

.fa-tired:before {
	content: "";
}

.fa-toggle-off:before {
	content: "";
}

.fa-toggle-on:before {
	content: "";
}

.fa-toilet:before {
	content: "";
}

.fa-toilet-paper:before {
	content: "";
}

.fa-toolbox:before {
	content: "";
}

.fa-tools:before {
	content: "";
}

.fa-tooth:before {
	content: "";
}

.fa-torah:before {
	content: "";
}

.fa-torii-gate:before {
	content: "";
}

.fa-tractor:before {
	content: "";
}

.fa-trade-federation:before {
	content: "";
}

.fa-trademark:before {
	content: "";
}

.fa-traffic-light:before {
	content: "";
}

.fa-train:before {
	content: "";
}

.fa-tram:before {
	content: "";
}

.fa-transgender:before {
	content: "";
}

.fa-transgender-alt:before {
	content: "";
}

.fa-trash:before {
	content: "";
}

.fa-trash-alt:before {
	content: "";
}

.fa-trash-restore:before {
	content: "";
}

.fa-trash-restore-alt:before {
	content: "";
}

.fa-tree:before {
	content: "";
}

.fa-trello:before {
	content: "";
}

.fa-tripadvisor:before {
	content: "";
}

.fa-trophy:before {
	content: "";
}

.fa-truck:before {
	content: "";
}

.fa-truck-loading:before {
	content: "";
}

.fa-truck-monster:before {
	content: "";
}

.fa-truck-moving:before {
	content: "";
}

.fa-truck-pickup:before {
	content: "";
}

.fa-tshirt:before {
	content: "";
}

.fa-tty:before {
	content: "";
}

.fa-tumblr:before {
	content: "";
}

.fa-tumblr-square:before {
	content: "";
}

.fa-tv:before {
	content: "";
}

.fa-twitch:before {
	content: "";
}

.fa-twitter:before {
	content: "";
}

.fa-twitter-square:before {
	content: "";
}

.fa-typo3:before {
	content: "";
}

.fa-uber:before {
	content: "";
}

.fa-ubuntu:before {
	content: "";
}

.fa-uikit:before {
	content: "";
}

.fa-umbraco:before {
	content: "";
}

.fa-umbrella:before {
	content: "";
}

.fa-umbrella-beach:before {
	content: "";
}

.fa-underline:before {
	content: "";
}

.fa-undo:before {
	content: "";
}

.fa-undo-alt:before {
	content: "";
}

.fa-uniregistry:before {
	content: "";
}

.fa-universal-access:before {
	content: "";
}

.fa-university:before {
	content: "";
}

.fa-unlink:before {
	content: "";
}

.fa-unlock:before {
	content: "";
}

.fa-unlock-alt:before {
	content: "";
}

.fa-untappd:before {
	content: "";
}

.fa-upload:before {
	content: "";
}

.fa-ups:before {
	content: "";
}

.fa-usb:before {
	content: "";
}

.fa-user:before {
	content: "";
}

.fa-user-alt:before {
	content: "";
}

.fa-user-alt-slash:before {
	content: "";
}

.fa-user-astronaut:before {
	content: "";
}

.fa-user-check:before {
	content: "";
}

.fa-user-circle:before {
	content: "";
}

.fa-user-clock:before {
	content: "";
}

.fa-user-cog:before {
	content: "";
}

.fa-user-edit:before {
	content: "";
}

.fa-user-friends:before {
	content: "";
}

.fa-user-graduate:before {
	content: "";
}

.fa-user-injured:before {
	content: "";
}

.fa-user-lock:before {
	content: "";
}

.fa-user-md:before {
	content: "";
}

.fa-user-minus:before {
	content: "";
}

.fa-user-ninja:before {
	content: "";
}

.fa-user-nurse:before {
	content: "";
}

.fa-user-plus:before {
	content: "";
}

.fa-user-secret:before {
	content: "";
}

.fa-user-shield:before {
	content: "";
}

.fa-user-slash:before {
	content: "";
}

.fa-user-tag:before {
	content: "";
}

.fa-user-tie:before {
	content: "";
}

.fa-user-times:before {
	content: "";
}

.fa-users:before {
	content: "";
}

.fa-users-cog:before {
	content: "";
}

.fa-usps:before {
	content: "";
}

.fa-ussunnah:before {
	content: "";
}

.fa-utensil-spoon:before {
	content: "";
}

.fa-utensils:before {
	content: "";
}

.fa-vaadin:before {
	content: "";
}

.fa-vector-square:before {
	content: "";
}

.fa-venus:before {
	content: "";
}

.fa-venus-double:before {
	content: "";
}

.fa-venus-mars:before {
	content: "";
}

.fa-viacoin:before {
	content: "";
}

.fa-viadeo:before {
	content: "";
}

.fa-viadeo-square:before {
	content: "";
}

.fa-vial:before {
	content: "";
}

.fa-vials:before {
	content: "";
}

.fa-viber:before {
	content: "";
}

.fa-video:before {
	content: "";
}

.fa-video-slash:before {
	content: "";
}

.fa-vihara:before {
	content: "";
}

.fa-vimeo:before {
	content: "";
}

.fa-vimeo-square:before {
	content: "";
}

.fa-vimeo-v:before {
	content: "";
}

.fa-vine:before {
	content: "";
}

.fa-vk:before {
	content: "";
}

.fa-vnv:before {
	content: "";
}

.fa-voicemail:before {
	content: "";
}

.fa-volleyball-ball:before {
	content: "";
}

.fa-volume-down:before {
	content: "";
}

.fa-volume-mute:before {
	content: "";
}

.fa-volume-off:before {
	content: "";
}

.fa-volume-up:before {
	content: "";
}

.fa-vote-yea:before {
	content: "";
}

.fa-vr-cardboard:before {
	content: "";
}

.fa-vuejs:before {
	content: "";
}

.fa-walking:before {
	content: "";
}

.fa-wallet:before {
	content: "";
}

.fa-warehouse:before {
	content: "";
}

.fa-water:before {
	content: "";
}

.fa-wave-square:before {
	content: "";
}

.fa-waze:before {
	content: "";
}

.fa-weebly:before {
	content: "";
}

.fa-weibo:before {
	content: "";
}

.fa-weight:before {
	content: "";
}

.fa-weight-hanging:before {
	content: "";
}

.fa-weixin:before {
	content: "";
}

.fa-whatsapp:before {
	content: "";
}

.fa-whatsapp-square:before {
	content: "";
}

.fa-wheelchair:before {
	content: "";
}

.fa-whmcs:before {
	content: "";
}

.fa-wifi:before {
	content: "";
}

.fa-wikipedia-w:before {
	content: "";
}

.fa-wind:before {
	content: "";
}

.fa-window-close:before {
	content: "";
}

.fa-window-maximize:before {
	content: "";
}

.fa-window-minimize:before {
	content: "";
}

.fa-window-restore:before {
	content: "";
}

.fa-windows:before {
	content: "";
}

.fa-wine-bottle:before {
	content: "";
}

.fa-wine-glass:before {
	content: "";
}

.fa-wine-glass-alt:before {
	content: "";
}

.fa-wix:before {
	content: "";
}

.fa-wizards-of-the-coast:before {
	content: "";
}

.fa-wolf-pack-battalion:before {
	content: "";
}

.fa-won-sign:before {
	content: "";
}

.fa-wordpress:before {
	content: "";
}

.fa-wordpress-simple:before {
	content: "";
}

.fa-wpbeginner:before {
	content: "";
}

.fa-wpexplorer:before {
	content: "";
}

.fa-wpforms:before {
	content: "";
}

.fa-wpressr:before {
	content: "";
}

.fa-wrench:before {
	content: "";
}

.fa-x-ray:before {
	content: "";
}

.fa-xbox:before {
	content: "";
}

.fa-xing:before {
	content: "";
}

.fa-xing-square:before {
	content: "";
}

.fa-y-combinator:before {
	content: "";
}

.fa-yahoo:before {
	content: "";
}

.fa-yammer:before {
	content: "";
}

.fa-yandex:before {
	content: "";
}

.fa-yandex-international:before {
	content: "";
}

.fa-yarn:before {
	content: "";
}

.fa-yelp:before {
	content: "";
}

.fa-yen-sign:before {
	content: "";
}

.fa-yin-yang:before {
	content: "";
}

.fa-yoast:before {
	content: "";
}

.fa-youtube:before {
	content: "";
}

.fa-youtube-square:before {
	content: "";
}

.fa-zhihu:before {
	content: "";
}

.sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}

.fab {
	font-family: "Font Awesome 5 Brands";
}

.far {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.fa, .fas {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

/*
 * jQuery FlexSlider v2.6.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */

/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.emtnlplgn-flex-container a:hover, .emtnlplgn-flex-slider a:hover {
	outline: none;
}

.emtnlplgn-slides, .emtnlplgn-slides > li, .emtnlplgn-flex-control-nav, .emtnlplgn-flex-direction-nav {
	margin: 0;
	padding: 0;
	list-style: none;
}

.emtnlplgn-flex-pauseplay span {
	text-transform: capitalize;
}

/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.emtnlplgn-flexslider {
	margin: 0;
	padding: 0;
}

.emtnlplgn-flexslider .emtnlplgn-slides > li {
	display: none;
	-webkit-backface-visibility: hidden;
}

.emtnlplgn-flexslider .emtnlplgn-slides img {
	width: 100%;
	display: block;
}

html[xmlns] .emtnlplgn-flexslider .emtnlplgn-slides {
	display: block;
}

* html .emtnlplgn-flexslider .emtnlplgn-slides {
	height: 1%;
}

.no-js .emtnlplgn-flexslider .emtnlplgn-slides > li:first-child {
	display: block;
}

/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.emtnlplgn-flexslider {
	margin: 0;
	position: relative;
	zoom: 1;
}

.emtnlplgn-flexslider .emtnlplgn-slides {
	zoom: 1;
	overflow: hidden;
}

.emtnlplgn-flexslider .emtnlplgn-slides img {
	height: auto;
	-moz-user-select: none;
}

.emtnlplgn-flex-viewport {
	max-height: 2000px;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.loading .emtnlplgn-flex-viewport {
	max-height: 300px;
}

.carousel li {
	margin-right: 5px;
}

.emtnlplgn-flex-direction-nav {}

.emtnlplgn-flex-direction-nav a {
	text-decoration: none;
	display: block;
	width: 40px;
	height: 40px;
	margin: -20px 0 0;
	position: absolute;
	top: 50%;
	z-index: 10;
	overflow: hidden;
	opacity: 0;
	cursor: pointer;
	color: rgba(0, 0, 0, .8);
	text-shadow: 1px 1px 0 rgba(255, 255, 255, .3);
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

a.emtnlplgn-flex-prev {
	/* font-family: "flexslider-icon"; */
	font-size: 40px;
	color: rgba(0, 0, 0, .8);
	text-shadow: 1px 1px 0 rgba(255, 255, 255, .3);
}

.emtnlplgn-flex-direction-nav a.emtnlplgn-flex-next:before {}

.emtnlplgn-flex-direction-nav .emtnlplgn-flex-prev {
	left: -50px;
}

.emtnlplgn-flex-direction-nav .emtnlplgn-flex-next {
	right: -50px;
	text-align: right;
}

.emtnlplgn-flex-direction-nav .emtnlplgn-flex-disabled {
	opacity: 0 !important;
	filter: alpha(opacity=0);
	cursor: default;
	z-index: -1;
}

.emtnlplgn-flex-pauseplay a {
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	bottom: 5px;
	left: 10px;
	opacity: .8;
	z-index: 10;
	overflow: hidden;
	cursor: pointer;
	color: #000;
}

.emtnlplgn-flex-pauseplay a:before {
	font-family: "flexslider-icon";
	font-size: 20px;
	display: inline-block;
	content: "";
}

.emtnlplgn-flex-pauseplay a:hover {
	opacity: 1;
}

.emtnlplgn-flex-pauseplay a.emtnlplgn-flex-play:before {
	content: "";
}

.emtnlplgn-flex-control-nav {
	width: 100%;
	position: absolute;
	bottom: -40px;
	text-align: center;
}

.emtnlplgn-flex-control-nav li {
	margin: 0 6px;
	display: inline-block;
	zoom: 1;
}

.emtnlplgn-flex-control-paging li a {
	width: 11px;
	height: 11px;
	display: block;
	background: #666;
	background: rgba(0, 0, 0, .5);
	cursor: pointer;
	text-indent: -9999px;
	-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
	-moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
	-o-box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
	box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

.emtnlplgn-flex-control-paging li a:hover {
	background: #333;
	background: rgba(0, 0, 0, .7);
}

.emtnlplgn-flex-control-paging li a.emtnlplgn-flex-active {
	background: #000;
	background: rgba(0, 0, 0, .9);
	cursor: default;
}

.emtnlplgn-flex-control-thumbs {
	margin: 5px 0 0;
	position: static;
	overflow: hidden;
}

.emtnlplgn-flex-control-thumbs li {
	width: 25%;
	float: left;
	margin: 0;
}

.emtnlplgn-flex-control-thumbs img {
	width: 100%;
	height: auto;
	display: block;
	opacity: .7;
	cursor: pointer;
	-moz-user-select: none;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.emtnlplgn-flex-control-thumbs img:hover {
	opacity: 1;
}

.emtnlplgn-flex-control-thumbs .emtnlplgn-flex-active {
	opacity: 1;
	cursor: default;
}

/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
	.emtnlplgn-flex-direction-nav .emtnlplgn-flex-prev {
		opacity: 1;
		left: 10px;
	}
	
	.emtnlplgn-flex-direction-nav .emtnlplgn-flex-next {
		opacity: 1;
		right: 10px;
	}
}

/*
	Hero Text
*/
.emtnlplgn-herotext {
	padding: 25px 0px;
}

.emtnlplgn-herotext .emtnlplgn-herotext-title h1 {
	font-size: 66px;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 60px;
	text-transform: none;
	margin: 0px;
	margin-bottom: 24px;
}

.emtnlplgn-herotext .emtnlplgn-herotext-subtitle h2 {
	font-size: 18px;
	line-height: 24px;
	letter-spacing: .6px;
	text-transform: lowercase;
	margin-bottom: 30px;
	font-weight: 400;
}

/* xyztheme plugin style */
.emtnlplugin h1, .emtnlplugin h2, .emtnlplugin h3, .emtnlplugin h4, .emtnlplugin h5, .emtnlplugin h6 {
	margin: 0;
	padding: 0;
}

.emtnlplgn-vertical-top {
	vertical-align: top;
}

.emtnlplgn-vertical-middle {
	vertical-align: middle;
}

.emtnlplgn-vertical-bottom {
	vertical-align: bottom;
}

.emtnlplgn-container-fullwidth-margin {
	width: 100%;
	padding-left: 3.313rem;
	padding-right: 3.313rem;
}

/* --------------- Flexslider Styles -------------- */
.emtnlplgn-container .emtnlplgn-flex-direction-nav {
	padding: 0 !important;
	margin: 0 !important;
}

.emtnlplgn-container .emtnlplgn-flex-direction-nav li {
	position: initial;
	list-style: none;
}

.emtnlplgn-container .emtnlplgn-flex-direction-nav a, .emtnlplgn-container .emtnlplgn-flex-direction-nav a:hover {
	opacity: 1;
	text-shadow: none;
	background: none;
	color: #888;
	color: #aaa;
	speak: none;
	font-size: 1.7rem;
	font-size: 24px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 28px;
	height: 28px;
	margin: -14px 0 0;
	bottom: initial;
	left: initial;
	right: initial;
	top: 50%;
	text-indent: 0;
	text-align: center;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	-ms-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
	outline: none;
}

.emtnlplgn-container .emtnlplgn-flex-direction-nav a:before, .emtnlplgn-container .emtnlplgn-flex-direction-nav a:hover:before, .emtnlplgn-container .emtnlplgn-flex-direction-nav a:hover:before, .emtnlplgn-container .emtnlplgn-flex-direction-nav a:hover:hover:before {
	margin: 2px;
	vertical-align: middle;
	display: inline;
	opacity: 1;
}

.emtnlplgn-container .emtnlplgn-flex-direction-nav a:hover, .emtnlplgn-container .emtnlplgn-flex-direction-nav a:hover:hover {
	color: #b2b8bf;
}

.emtnlplgn-container .emtnlplgn-flex-direction-nav a.emtnlplgn-flex-prev {
	left: 0rem;
}

.emtnlplgn-container .emtnlplgn-flex-direction-nav a.emtnlplgn-flex-next {
	right: 0rem;
}

.emtnlplgn-container .emtnlplgn-flex-control-nav {
	width: 100%;
	text-align: center;
	margin: 0 !important;
	padding: 0 !important;
}

.emtnlplgn-container .emtnlplgn-flex-control-nav li, .emtnlplgn-container .emtnlplgn-flex-control-nav li:hover {
	margin: 0 8px 0 0;
	padding: 0;
	border: none;
	box-shadow: none;
}

.emtnlplgn-container .emtnlplgn-flex-control-nav li a, .emtnlplgn-container .emtnlplgn-flex-control-nav li a:hover {
	background: #b2b8bf;
	border: 1px solid #b2b8bf;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	box-shadow: none;
	-webkit-transition: all .2s ease-in 0s;
	-moz-transition: all .2s ease-in 0s;
	-ms-transition: all .2s ease-in 0s;
	transition: all .2s ease-in 0s;
	display: inline-block;
	vertical-align: middle;
	outline: none;
}

.emtnlplgn-container .emtnlplgn-flex-control-nav li a.emtnlplgn-flex-active, .emtnlplgn-container .emtnlplgn-flex-control-nav li a:hover.emtnlplgn-flex-active, .emtnlplgn-container .emtnlplgn-flex-control-nav li a:hover {
	background: none;
}

.emtnlplgn-container .emtnlplgn-flex-control-nav li a.emtnlplgn-flex-active, .emtnlplgn-container .emtnlplgn-flex-control-nav li a:hover.emtnlplgn-flex-active {
	width: 10px;
	height: 10px;
}

/* --------------- Megamenu -------------- */
.header-desktop .menu ul.emtnlplgn-megamenu {
	padding: 1rem 1.5rem .5rem 1.5rem;
	background-attachment: scroll;
	background-repeat: no-repeat;
}

.emtnlplgn-megamenu-container {
	overflow: hidden;
	font-size: .9rem;
	text-transform: none;
	text-align: left;
	display: none;
}

.emtnlplgn-megamenu-container .widget_nav_menu .widgettitle {
	font-size: .95rem;
	font-weight: 600;
	text-transform: uppercase;
}

.emtnlplgn-megamenu-container .sub-megamenu li {
	text-align: left;
	text-transform: capitalize;
	transition: all .3s ease 0s;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	text-decoration: none;
}

.emtnlplgn-megamenu-container .sub-megamenu li a {
	display: block;
}

.emtnlplgn-megamenu-container .wpb_button, .emtnlplgn-megamenu-container .wpb_content_element, .emtnlplgn-megamenu-container ul.wpb_thumbnails-fluid > li {
	margin-bottom: 1rem;
}

.header-mobile .emtnlplgn-megamenu-container .widgettitle {
	text-align: center;
}

.emtnlplgn-megamenu .emtnlplgn-megamenu-loading {
	padding: 2rem 0;
	min-width: 200px;
	text-align: center;
}

/*
PORTFOLIO
don't remove: this css is used in single-portfolio and vc portfolio
*/
.gallery-sizer {
	width: 25%;
}

.emtnlplgn-portfolio .portfolio-gallery {
	width: calc(100% + 1.875rem);
	margin-left: -1.875rem;
	overflow: hidden;
}

.emtnlplgn-portfolio .gallery-item {
	float: left;
	margin-bottom: 1.875rem;
}

.emtnlplgn-portfolio .gallery-item-25 {
	width: calc(25% - 1.875rem);
	margin-left: 1.875rem;
}

.emtnlplgn-portfolio .gallery-item-50 {
	width: calc(50% - 1.875rem);
	margin-left: 1.875rem;
}

.single-portfolio .portfolio-header {}

.single-portfolio .portfolio-header .title-field {
	line-height: 1rem;
}

.single-portfolio .portfolio-header .portfolio-client {
	text-transform: uppercase;
}

.single-portfolio .portfolio-header .portfolio-row {
	width: 100%;
	overflow: hidden;
}

.single-portfolio .portfolio-header .portfolio-row .portfolio-data {
	margin-bottom: 1rem;
}

.single-portfolio .portfolio-header .portfolio-row .portfolio-column {
	float: left;
	margin-right: 3rem;
}

.single-portfolio .portfolio-header .portfolio-client, .single-portfolio .portfolio-header .portfolio-year, .single-portfolio .portfolio-header .portfolio-categories {
	font-weight: 600;
}

.single-portfolio .portfolio-header .portfolio-data {
	font-size: 1rem;
}

.single-portfolio .portfolio-table {
	display: table;
	overflow: hidden;
}

.single-portfolio .portfolio-table .portfolio-image-side {
	width: 55%;
	float: left;
	display: table-cell;
	box-sizing: border-box;
}

.single-portfolio .portfolio-table .portfolio-image-side .bx-pager {
	left: .5rem;
	transform: translate(0, -50%);
	top: 50%;
	bottom: auto;
	width: 50px;
}

.single-portfolio .portfolio-table .portfolio-image-side .bx-wrapper .bx-pager-item {
	display: block;
	padding: 5px;
}

.single-portfolio .portfolio-table .portfolio-image-side .bx-wrapper .bx-pager-item .bx-pager-link {
	height: 8px;
	width: 8px;
	background: #e2e4e5;
	margin: 0 6px;
}

.single-portfolio .portfolio-table .portfolio-image-side .bx-wrapper .bx-pager-item .bx-pager-link.active {
	background: #161616;
}

.single-portfolio .portfolio-table .portfolio-content {
	width: 45%;
	float: left;
	display: table-cell;
	box-sizing: border-box;
	line-height: 1.875rem;
}

.single-portfolio .zoom-effect {
	overflow: hidden;
}

.single-portfolio .zoom-effect img {
	max-width: 100%;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	transition: all .3s;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
	opacity: .8;
}

.single-portfolio .zoom-effect:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
	opacity: 1;
}

@media (max-width: 1200px) {
	.emtnlplgn-portfolio .gallery-item-25 {
		width: calc(50% - 1.875rem);
	}
	
	.emtnlplgn-portfolio .gallery-item-50 {
		width: calc(50% - 1.875rem);
	}
}

@media (max-width: 800px) {
	.emtnlplgn-portfolio .portfolio-gallery {
		width: 100%;
		margin-left: 0;
	}
	
	.emtnlplgn-portfolio .gallery-item-25 {
		width: 100%;
		margin-left: 0;
	}
	
	.emtnlplgn-portfolio .gallery-item-50 {
		width: 100%;
		margin-left: 0;
	}
	
	.single-portfolio .portfolio-table .portfolio-image-side {
		width: 100%;
		float: none;
		display: block;
	}
	
	.single-portfolio .portfolio-table .portfolio-content {
		width: 100%;
		float: none;
		display: block;
	}
}

/* Classe per evidenziatore statico con animazione */
.wpseo-highlight {
	bottom: -5px;
	display: inline-block;
	position: relative;
	font-weight: bold;
	color: black;
	overflow: hidden;
}

.wpseo-highlight::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 20%;
	background: #3486c8;
	z-index: 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s ease-in-out;
}

.wpseo-highlight:hover::before {
	transform: scaleX(1);
}

.home_description a {
	color: #fff !important;
}

.header-home {
	min-width: 100%;
	min-height: 50vh;
}

.wpseo_box_hero {
	box-shadow: 0px 3px 15px rgba(0, 0, 0, .16) !important;
}

.emtnlplgn-herotext-title .h1 {
	font-size: 78px;
	font-weight: 700;
	color: #fff;
}

.wpseo_bar_num.black .emtnlplgn-herotext-title .h1, .wpseo_bar_num.black .emtnlplgn-herotext-subtitle .h2 {
	color: #000;
}

.wpseo_bar_num.white .emtnlplgn-herotext-title .h1, .wpseo_bar_num.white .emtnlplgn-herotext-subtitle .h2 {
	color: #fff;
}

.emtnlplgn-herotext-subtitle .h2 {
	font-weight: 700;
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: .6px;
	text-transform: lowercase;
	margin-bottom: 30px;
}

.emtnlplgn-herotext .wpb_content_element {
	margin-top: 20px !important;
}

.vc_col-has-fill>.vc_column-inner, .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner, .vc_section.vc_section-has-fill, .vc_section.vc_section-has-fill+.vc_row-full-width+.vc_section, .vc_section.vc_section-has-fill+.vc_section {
	padding-top: 10px !important;
}

.emtnlplugin.emtnlplgn-testimonial {
	background-color: #fff;
	border-radius: 15px;
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern {
	color: #fff !important;
	background: #3486c8 !important;
	border-color: #3486c8 !important;
	border-width: 2px;
	padding: 10px 20px 10px 20px;
	font-size: .8rem;
	line-height: 1rem;
	text-align: center;
	display: inline-block;
}

.header-hero .emtnlplgn-button, .header-home .vc_btn3 {
	color: #3486c8 !important;
	font-weight: 600;
	background: #fff !important;
	border-color: #fff !important;
	border-width: 2px;
	padding: 17px 35px 17px 35px;
	font-size: 1.1rem;
	line-height: 1.8rem;
	text-align: center;
	display: inline-block;
}

/*.emtnlplgn-button, .vc_btn3.vc_btn3-color-grey,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern  {
	color: #ffffff;
	font-weight: 600;
	background: #3486c8;
	border-color: #3486c8;
	border-width: 2px;
	padding: 17px 35px 17px 35px;
    font-size: 1.1rem;
    line-height: 1.8rem;
    text-align: center;	
	display: inline-block;
}*/
.wpseo_highlight {
	color: #fff;
	font-weight: 700;
	animation-name: fadeIn;
	background-color: #3486c8;
	padding: 2px 6px;
}

.wpseo_service .emtnlplgn-service-details {
	font-size: 17px;
}

.wpseo_service .emtnlplgn-title {
	font-size: 25px;
}

.results-speed .g_red {
	color: #f33 !important;
}

.results-speed .g_ora {
	color: #f93 !important;
}

.results-speed .g_gre {
	color: #0c6 !important;
}

.results-speed-desk, .results-speed-mob {
	font-size: 3vw;
	vertical-align: middle;
	font-weight: 700;
	color: #fff;
	text-align: center;
	padding-top: 10px;
}

.page-template-default div#wpseo-risultati-seo ul li {
	font-size: 22px;
}

.text-format p iframe {
	width: 100%;
	height: auto;
	min-height: 350px;
}

.wpseo_cta_footer, .wpseo_cta_footer a img, .wpseo_cta_footer picture {
	text-align: center;
	width: 100% !important;
	height: auto !important;
}

/* TESTIOMINAL MOD */
.emtnlplgn-testimonials-slider .emtnlplgn-slides .emtnlplgn-testimonial-wrapper .emtnlplgn-image-wrapper img {
	height: auto !important;
}

.emtnlplgn-testimonials-slider .emtnlplgn-testimonial-wrapper {
	width: 100% !important;
}

.emtnlplgn-testimonials-slider .emtnlplgn-slides .emtnlplgn-testimonial-wrapper .emtnlplgn-testimonial-text {
	font-size: 16px;
	line-height: 26px;
}

/* HEADER SUBMENU */
.header-home {
	background-color: #3486c8 !important;
}

.wpseo_cta_bottom {
	position: fixed;
	width: 100%;
	background-color: #3486c8;
	margin-top: 0px;
	margin-bottom: 0px;
	bottom: 0px;
	padding: 10px;
	vertical-align: middle;
	text-align: center;
	display: inline-block;
	z-index: 10;
}

.cta_wpseo a.vc_btn3.vc_btn3-color-blue, .cta_wpseo a.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat {
	background-color: #3486c8 !important;
	font-size: 22px !important;
}

.cta_wpseo a.vc_btn3.vc_btn3-color-blue:hover, .cta_wpseo a.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat:hover {
	background-color: #009ee0 !important;
	font-size: 22px !important;
}

.wpseo_cta_bottom .wpseo_cta_bottom_col {
	width: 30%;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
}

.wpseo_cta_bottom a {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
}

.wpseo_cta_bottom i {
	color: #fff;
	vertical-align: middle;
	font-size: 27px;
	font-weight: 900;
}

.cta_container .cta, .cta a {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #fff;
	text-decoration: none !important;
	text-transform: none !important;
}

.cta_container .cta:hover, .cta a:hover {
	background: #3486c8 !important;
}

.cta_container {
	text-align: center;
	display: block;
	clear: both;
	text-decoration: none !important;
	text-transform: none !important;
}

.cta_container .button {
	width: auto;
	background-color: #37bb00;
	border: none;
	color: #fff;
	border-radius: 10px;
	padding: 10px 20px;
	-webkit-transition: .3s all ease;
	-moz-transition: .3s all ease;
	-o-transition: .3s all ease;
	-ms-transition: .3s all ease;
	transition: .3s all ease;
}

.submenu_servizi {
	margin-bottom: -38px !important;
}

.submenu_servizi .is-visible {
	margin-top: -28px !important;
	margin-bottom: 38px !important;
}

.header-mobile
.submenu_servizi {
	margin-bottom: -20px !important;
}

.wpcf7-form-control-wrap select {
	-webkit-appearance: menulist-button;
	-moz-appearance: menulist-button;
}

.results-speed-half {
	position: relative !important;
}

#speedloadingmessage {
	background-color: #fff;
	height: 100%;
	left: 0;
	margin: 0;
	opacity: .8;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 9000;
	display: none;
}

#speedloadingmessage #speedpreloader {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -32px;
	margin-top: -32px;
}

#loadingmessage {
	background-color: #fff;
	height: 100%;
	left: 0;
	margin: 0;
	opacity: .8;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9000;
	display: none;
}

#loadingmessage #preloader {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -32px;
	margin-top: -32px;
}

.myip span.ip {
	font-weight: 400;
	font-size: calc(5vw + 5vh);
	position: relative;
	text-align: center;
	display: block;
	padding: 10px;
	width: 100%;
	line-height: normal;
	color: #3486c8;
}

.myip span.copyip {
	position: relative;
	text-align: center;
	display: block;
}

.myip span.copyip a {
	display: inline-block !important;
	display: block;
	border: 2px solid #3486c8;
	border-radius: 10px;
	padding: 10px 30px 10px 20px;
	font-size: 20px;
	margin: 10px 0;
	position: relative;
	text-align: center;
	width: 33%;
}

.myip span.copyip a:hover {
	background: #3486c8;
	color: #fff !important;
}

/* SEO TOOL FORM - STYLE*/
.table-seotool-key input#inputKW, input#website, input#inputEMAIL {
	margin-top: 28px;
	width: 95%;
	border: 1px solid rgba(36, 34, 37, .13);
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 6px;
	padding-bottom: 6px;
}

.table-seotool-privacy {
	font-size: .8rem;
	line-height: 1.28rem;
	text-align: left;
	width: 96%;
	font-weight: 500;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	color: #fff;
}

.table-seotool-privacy input[type="checkbox"] {
	margin-bottom: 0px;
	-ms-transform: scale(1.45);
	-moz-transform: scale(1.45);
	-webkit-transform: scale(1.45);
	-o-transform: scale(1.45);
	transform: scale(1.45);
	padding-top: 10px;
	margin-left: 2px;
	margin-right: 4px;
}

.table-seotool-key span.w.valid {
	padding-left: 5px;
	margin-bottom: -38px;
}

span#websiteValidationMessage, span#inputKWValidationMessage, span#inputEMAILValidationMessage {
	font-size: .85rem;
	color: yellow;
	font-weight: 600;
	letter-spacing: .5px;
	width: 95%;
	text-align: left;
	line-height: 1.5rem;
}

.validationMessage {
	float: left;
	margin-left: 18px;
	padding-top: 5px;
}

div#recaptcha_div {
	font-size: .85rem;
	color: yellow;
	font-weight: 600;
	line-height: .2rem;
	letter-spacing: .5px;
	width: 95%;
	margin-top: 20px;
	text-align: left;
}

div#captcha_container {
	padding-top: 20px;
}

.table-seotool-privacy a {
	color: #8bd2f0;
}

.table-seotool-privacy a:hover {
	color: #fff;
}

.submit-button {
	padding-top: 10px;
	padding-bottom: 10px;
	background: #5cc1eb;
	color: #fff;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: .85rem;
	margin-top: 25px;
	width: 95%;
	border: 0px;
}

.submit-button:hover {
	padding-top: 10px;
	padding-bottom: 10px;
	background: #e0f6ff;
	color: #3486c8;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: .9rem;
	margin-top: 25px;
	width: 95%;
	border: 0px;
}

.table-seotool-captcha {
	transform: scale(.8);
	-webkit-transform: scale(.8);
	-ms-transform: scale(.8);
	-moz-transform: scale(.8);
	-o-transform: scale(.8);
	transform-origin: 12% 0;
	-webkit-transform-origin: 12% 0;
	-ms-transform-origin: 12% 0;
	-moz-transform-origin: 12% 0;
	-o-transform-origin: 12% 0;
}

@media (max-width: 350px) {
	.table-seotool-captcha {
		margin-top: 25px;
		transform: scale(.72);
		-webkit-transform: scale(.72);
		-ms-transform: scale(.72);
		-moz-transform: scale(.72);
		-o-transform: scale(.72);
		transform-origin: 0 0;
		-webkit-transform-origin: 0 0;
		-ms-transform-origin: 0 0;
		-moz-transform-origin: 0 0;
		-o-transform-origin: 0 0;
	}
	
	h1 {
		display: block;
		font-size: 2em;
		margin-block-start: .67em;
		margin-block-end: .67em;
		margin-inline-start: 0px;
		margin-inline-end: 0px;
		font-weight: bold;
		unicode-bidi: isolate;
	}
}

/* SEO TOOL FORM - STYLE BOX RISULTATI */
#pos-val {
	background: #f5fafd;
	width: 95%;
	padding-bottom: 40px;
	padding-top: 40px;
	padding-left: 50px;
	padding-right: 50px;
	margin-top: 20px;
	font-size: 1.19rem;
}

.tool-free {
	font-size: .6vw;
	display: block;
}

.position.green {
	font-size: 3.4rem;
	padding-top: 20px;
	margin-bottom: 12px;
	margin-top: 11px;
	color: #00ce3c;
}

.notinserp {
	padding-bottom: 35px;
	padding-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
	line-height: 2rem;
	color: red;
	font-size: 1.5rem;
	font-weight: 600;
}

.call2action {
	width: auto;
	background-color: #37bb00;
	border: none;
	color: #fff !important;
	border-radius: 10px;
	padding: 10px 20px;
}

.call2action a {
	color: #fff !important;
}

.call2action:hover {
	background-color: #3486c8;
}

/* SPEEDTEST FORM - STYLE*/
input#pagespeed_input {
	margin-top: 28px;
	width: 95%;
	border: 1px solid rgba(36, 34, 37, .13);
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
}

#pagespeed_btn {
	padding-top: 10px;
	padding-bottom: 10px;
	background: #5cc1eb;
	color: #fff;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: .9rem;
	margin-top: 20px;
	width: 95%;
	border: 0px;
}

#pagespeed_btn:hover {
	padding-top: 10px;
	padding-bottom: 10px;
	background: #e0f6ff;
	color: #3486c8;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: .9rem;
	margin-top: 20px;
	width: 95%;
	border: 0px;
}

/* COOKIE CONSENT plugin style*/
#cookieChoiceInfo {
	color: #fff;
	text-align: center;
	font-size: .87rem;
	line-height: 1.3rem;
	padding-top: 10px;
	padding-bottom: 10px;
}

.italybtn {
	color: #00ddec;
}

.contentStyle {
	padding-top: 10px;
	padding-bottom: 10px;
}

/* MENU CAPITALIZE */
.menu > li > a {
	letter-spacing: 1.2px;
	margin-right: 6px;
	text-transform: capitalize;
}

/* SUBMENU WIDTH */
.header-desktop .menu ul.sub-menu {
	width: 238px;
}

/* H2-H3-H4 MARGINI */
h2 {
	margin-bottom: 15px;
	margin-top: 30px;
}

h3 {
	margin-bottom: 15px;
	margin-top: 30px;
}

h4 {
	margin-bottom: 15px;
	margin-top: 30px;
}

/* POINT LIST */
.text-format ul li {
	list-style: inside;
}

ul {
	margin-top: -2px;
	margin-bottom: 20px;
}

/* BLOCKQUOTE DEFAULT BLOG */
blockquote {
	margin-top: 30px;
	margin-bottom: 30px;
	background-color: #f9f9f9;
	padding: 20px;
}

blockquote p {
	font-size: 1rem;
	line-height: 2rem;
	color: #3e3e40;
}

/* CHECKBOX E RADIOBUTTON */
input[type="checkbox"], input[type="radio"] {
	-ms-transform: scale(1.35);
	-moz-transform: scale(1.35);
	-webkit-transform: scale(1.35);
	-o-transform: scale(1.35);
	transform: scale(1.35);
	margin-right: 4px;
}

/* SUP NOTE NUMERO */
sub, sup {
	font-size: 76%;
	font-weight: 700;
	font-family: "Encode Sans";
	font-display: auto;
	margin-left: 2.2px;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -.6em;
}

.qtip .qtip-tip canvas {
	top: 0;
	left: 0;
	display: none !important;
}

/* QTIP stile */
.qtip-content {
	position: relative;
	padding: 5px 9px;
	overflow: hidden;
	text-align: left;
	font-size: .8rem;
	line-height: 1.4rem;
	color: #3e3e40;
	font-weight: 500;
	word-wrap: break-word;
}

.qtip-bootstrap {
	padding: 7px;
	background-color: #fff;
	border: 0px solid #ccc;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, .08);
	-moz-box-shadow: 0 5px 30px rgba(0, 0, 0, .08);
	box-shadow: 0 5px 30px rgba(0, 0, 0, .08);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
}

/* LINK APPROFONDIMENTO - easy footnote - style */
.easy-footnote-title {
	background: #fff;
	margin-left: -15px;
	margin-right: -15px;
	margin-top: 35px;
	padding-top: 1px;
	padding-bottom: 1px;
	text-align: center;
}

#Link-di-Approfondimento {
	font-size: 1.2rem;
	line-height: 1.6rem;
	color: #3486c8;
}

.easy-footnotes-wrapper {
	background: #fff;
	padding-bottom: 35px;
	margin-left: -15px;
	margin-right: -15px;
	margin-bottom: 3px;
}

ol.easy-footnotes-wrapper {
	padding-bottom: 40px;
}

.easy-footnote-single {
	/* padding-left: 16px;
    padding-right: 16px; */
	font-weight: 500;
	font-size: .92rem;
	line-height: 1.6rem;
	text-align: center;
	padding-bottom: 7px;
}

/* TABELLE STYLE */
.styled_table tr td {
	border: 1px solid rgba(36, 34, 37, .13);
	text-align: left;
	font-size: .85rem;
	line-height: 1.4rem;
	padding: 10px;
}

.table_blue thead th {
	background: #e0f6ff;
	border: 1px solid rgba(36, 34, 37, .13);
	padding: 10px;
}

/* BOX COSA FACCIAMO HOME SHADOW EFFECT */

/*
.box_servizi_cosa_facciamo .vc_column-inner:hover {
    box-shadow: 1px 1px 22px rgba(0, 158, 224, 0.19);
}

.box_servizi_cosa_facciamo .vc_column-inner {
    box-shadow: 1px 1px 22px rgba(157, 184, 209, 0.08);
}*/
.box_servizi_cosa_facciamo {
	vertical-align: top;
}

.box_servizi_cosa_facciamo .vc_column-inner {
	background-color: #fff;
	border: 1px solid #3486c8;
	border-radius: 15px;
	vertical-align: top;
}

.box_servizi_cosa_facciamo .vc_column-inner:hover {
	box-shadow: 1px 1px 22px rgba(52, 134, 200, .4);
}

.box_servizi_cosa_facciamo div.vc_custom_heading {
	font-weight: 600;
}

/* PORTFOLIO */
.titolo-lavoro {
	text-align: center;
	font-size: 1.22rem;
	margin-top: -15px;
	margin-bottom: -15px;
}

.tipo-lavorazione {
	text-align: center;
	font-size: .8rem;
	line-height: 1.5rem;
}

/* PRICING TABLE SHORTCODE */
.emtnlplgn-pricingtable .box_pricing_hosting_1, .box_pricing_hosting_2, .box_pricing_hosting_3, .box_pricing_hosting_4 {
	box-shadow: 1px 1px 22px rgba(157, 184, 209, .08);
}

.emtnlplgn-pricingtable .box_pricing_hosting_1:hover, .box_pricing_hosting_2:hover, .box_pricing_hosting_3:hover, .box_pricing_hosting_4:hover {
	box-shadow: 1px 1px 22px rgba(0, 158, 224, .19);
}

.emtnlplgn-pricingplan .title {
	font-size: 1.1rem;
	line-height: 1.8rem;
	letter-spacing: 1.2px;
	padding-bottom: .6em;
	margin-left: -20px;
	margin-right: -20px;
	font-weight: 600;
	text-transform: none;
}

.emtnlplgn-pricingtable {
	padding: 0rem;
	margin: -16px;
}

.emtnlplgn-pricingplan .price {
	margin-top: 28px;
	margin-bottom: 13px;
	position: relative;
}

.emtnlplgn-pricingplan .price .currency {
	font-size: 2.9rem;
	font-weight: 300;
	text-align: left;
	padding-left: .2rem;
}

.emtnlplgn-pricingplan .price .value {
	font-size: .8rem;
	text-align: center;
	font-weight: 500;
	line-height: 1rem;
}

.emtnlplgn-pricingplan .button-price-wrapper .button-price {
	line-height: 1.3rem;
	font-weight: 600;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: -8px;
	text-transform: capitalize;
}

/* TESTIMONIALS SLIDER SHORTCODE */

/* .emtnlplgn-testimonial.style3 .emtnlplgn-testimonial-text {
    padding: 1.875rem 0.5rem 0rem 0.5rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.9rem;
    font-weight: 300;
    margin-top: -18px;
}  */
.emtnlplgn-testimonial.style2 .emtnlplgn-testimonial-text {
	text-align: left;
	font-size: 1.02rem;
	line-height: 2rem;
	font-weight: 400;
	font-style: italic;
}

.emtnlplgn-testimonial-user .emtnlplgn-text .emtnlplgn-author-name {
	margin-bottom: 0px;
}

/* NASCOSTO LEAVE A COMMENT BLOG */
#comments {
	display: none !important;
}

/* NASCOSTO TOC CONTENT */
#toc_container {
	display: none !important;
}

/* FOOTER TOP LINK - Contattaci per Migliorare il Posizionamento SEO del tuo sito!  */
.footer-sidebar-top {
	margin-top: -50px;
	margin-bottom: 50px;
	padding-bottom: 50px;
}

/* FOOTER COLOR TITLE */
.footer .footer-column .tiamwp_widget .widget-title span {
	color: #3486c8;
}

/* ISCRIVITI ALLA NEWSLETTER WYSIJA FOOTER */
.widget_wysija_cont .wysija-submit {
	display: block;
	margin-top: 5px;
	border: 0px;
	background: #3486c8;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.1px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: 12px;
}

.widget_wysija_cont .wysija-submit:hover {
	display: block;
	margin-top: 5px;
	border: 0px;
	background: #3e3e40;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.1px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: 12px;
}

.formError .formErrorContent {
	background: none repeat scroll 0 0 red;
	border: 0px solid #bbb;
	color: #fff;
	font-display: auto;
	font-family: "encode sans";
	font-size: 11px;
	padding: 8px;
	margin-top: -4px;
	position: relative;
	width: 150px;
	z-index: 5001;
}

.widget_wysija_cont .textarea, input[type="email"], input[type="text"] {
	margin-top: 5px;
	width: 80%;
	border: 1px solid rgba(36, 34, 37, .13);
	padding: 7px;
}

/* CHECKBOX VISIBILI */
input[type="radio"], input[type="checkbox"] {
	display: inline-block !important;
}

/* IMPOSTAZIONE BASE -
CONTACT FORM 7 */
.wpcf7-select {
	box-shadow: none;
	border: none;
	border: 1px solid rgba(36, 34, 37, .13);
	padding: 12px;
	margin-top: 12px;
	font-size: .95rem;
	line-height: 1.2rem;
	letter-spacing: 1px;
	width: 100%;
	min-width: 10% !important;
}

.wpcf7 input, .wpcf7 textarea {
	box-shadow: none;
	border: none;
	border: 1px solid rgba(36, 34, 37, .13);
	padding: 12px;
	margin-top: 5px;
	font-size: .95rem;
	line-height: 1.2rem;
	letter-spacing: .9px;
	width: 100%;
}

.wpcf7 label {
	font-size: .9rem;
	letter-spacing: .86px;
	font-family: Heebo;
	font-display: auto;
	font-weight: 400;
	line-height: 1.8rem;
}

.wpcf7 p {
	margin-top: -5px;
}

.wpcf7 span.wpcf7-not-valid-tip {
	line-height: 2rem;
	letter-spacing: .95px;
}

textarea.wpcf7-form-control.wpcf7-textarea {
	height: 200px;
}

input.wpcf7-form-control.wpcf7-date.wpcf7-validates-as-required.wpcf7-validates-as-date. select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
	height: 45.5px;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
	min-width: 20% !important;
}

/* -------IMPOSTAZIONE BASE -
CONTACT FORM 7--------- */

/* FORM INFORMAZIONI
CONTACT FORM 7 */
.wpcf7 input, textarea {
	box-shadow: none;
	border: none;
	border: 1px solid rgba(36, 34, 37, .13);
	padding: 12px;
	margin-top: 12px;
	font-size: .95rem;
	line-height: 1.2rem;
	letter-spacing: 1px;
	width: 100%;
}

.wpcf7 label {
	font-size: .9rem;
	letter-spacing: .85px;
	font-family: Encode Sans;
	font-display: auto;
	font-weight: 400;
	line-height: 1.2rem;
}

.wpcf7 p {
	margin-top: -5px;
}

.wpcf7 span.wpcf7-not-valid-tip {
	line-height: 2rem;
	letter-spacing: .95px;
}

textarea.wpcf7-form-control.wpcf7-textarea {
	height: 300px;
}

input.wpcf7-form-control.wpcf7-date.wpcf7-validates-as-required.wpcf7-validates-as-date {
	height: 45.5px;
}

.two-columns-left {
	float: left;
	width: 48%;
	margin-bottom: 20px;
	line-height: 1.4rem;
}

.two-columns-right {
	float: right;
	width: 48%;
	margin-bottom: 20px;
	line-height: 1.4rem;
}

.one-column-100 {
	float: right;
	width: 100%;
	margin-bottom: 20px;
	line-height: 1.4rem;
}

.button-float {
	float: left;
	margin-bottom: 30px;
	width: 100%;
}

/* -------END FORM INFORMAZIONI HOME CTF7--------- */

/* ABOUT AVATARIMMAGINE WPSEO NEI POST */
.sidebar .widget-about .avatar-image {
	margin-top: 45px;
	margin-bottom: 5px;
	height: 136px;
	width: 136px;
}

.sidebar .widget-about .avatar-image {
	border-radius: 0%;
	-webkit-border-radius: 0%;
	-moz-border-radius: 0%;
	-ms-border-radius: 0%;
	-o-border-radius: 0%;
}

/* SHAREBANG stile bottoni */
.ussh_btnTheme ul li a {
	background-color: #f5fafd !important;
	color: #fff;
	padding: 6px 12px 6px 12px;
	margin-left: 8px;
}

.ussh_btnTheme {
	margin-left: -8px;
}

.ussh_position_content_top {
	margin-top: 12px;
	margin-bottom: 30px;
}

.ussh_position_content_bottom {
	margin-top: 30px;
	margin-bottom: -10px;
}

.wpcf7-submit:hover {
	background-color: #3486c8;
}

.wpcf7-submit {
	background-color: #3486c8;
	border-radius: 10px !important;
}

.table-seotool .result {
	display: none;
}

.author-image img {
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}

.header-mobile .mobile-nav-menu > li > a span:not(:first-child), .header-mobile .mobile-nav-menu .sub-menu > li > a span:not(:first-child) {
	margin-right: 30px;
}

.header-mobile .menu .sub-menu a {
	height: 30px;
}

.wpcf7-form span.wpcf7-list-item {
	width: 50px !important;
	margin: 0 0 .2rem 1em !important;
}

.zoom {
	position: fixed;
	bottom: 75px;
	right: 25px;
	border: 1px dotted #3486c8;
}

@media (max-width: 767px) {
	.wpseo_cta {
		text-decoration: none;
		text-align: center;
		background-color: #3486c8;
		position: fixed;
		bottom: 0;
		width: 100%;
		left: 0;
		font-weight: 700;
		font-size: 1.8em;
		display: block !important;
		padding: 10px;
		z-index: 999;
		color: #fff;
		border-top: solid 5px #fff;
	}
	
	.two-columns-right, .two-columns-left {
		width: 100%;
	}
}

@media (max-width: 950px) {
	.emtnlplgn-herotext-title .h1 {
		font-size: 7vh;
		font-weight: 700;
	}
	
	.emtnlplgn-herotext-title .h1, .emtnlplgn-herotext-subtitle .h2 {
		color: #fff !important;
	}
	
	.vc_custom_1702134723888 .vc_column_container {
		border: 1px solid #fff;
		border-radius: 15px;
		margin-bottom: 10px;
	}
}

@media handheld, only screen and (max-width: 480px) and (orientation: portrait) {
	.video_yt_ric_prev {
		min-height: 200px;
		max-height: 200px;
	}
	
	.results-speed-desk, .results-speed-mob {
		font-size: 8vh;
	}
	
	.button.cta {
		margin-top: 15px;
		display: block;
	}
	
	.cta_container .button {
		width: 90%;
	}
	
	.cta_container .cta, .cta a {
		font-size: 16px;
	}
	
	.header-home {
		padding-top: 0px !important;
		padding-bottom: 0px !important;
		padding-left: 10px !important;
		padding-right: 10px !important;
		background-color: #3486c8 !important;
		background-size: cover !important;
	}
	
	.header-home h3 {
		font-size: 1.2rem !important;
	}
}

[class^="ti-"], [class*=" ti-"] {
	font-family: "themify";
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ti-wand:before {
	content: "";
}

.ti-volume:before {
	content: "";
}

.ti-user:before {
	content: "";
}

.ti-unlock:before {
	content: "";
}

.ti-unlink:before {
	content: "";
}

.ti-trash:before {
	content: "";
}

.ti-thought:before {
	content: "";
}

.ti-target:before {
	content: "";
}

.ti-tag:before {
	content: "";
}

.ti-tablet:before {
	content: "";
}

.ti-star:before {
	content: "";
}

.ti-spray:before {
	content: "";
}

.ti-signal:before {
	content: "";
}

.ti-shopping-cart:before {
	content: "";
}

.ti-shopping-cart-full:before {
	content: "";
}

.ti-settings:before {
	content: "";
}

.ti-search:before {
	content: "";
}

.ti-zoom-in:before {
	content: "";
}

.ti-zoom-out:before {
	content: "";
}

.ti-cut:before {
	content: "";
}

.ti-ruler:before {
	content: "";
}

.ti-ruler-pencil:before {
	content: "";
}

.ti-ruler-alt:before {
	content: "";
}

.ti-bookmark:before {
	content: "";
}

.ti-bookmark-alt:before {
	content: "";
}

.ti-reload:before {
	content: "";
}

.ti-plus:before {
	content: "";
}

.ti-pin:before {
	content: "";
}

.ti-pencil:before {
	content: "";
}

.ti-pencil-alt:before {
	content: "";
}

.ti-paint-roller:before {
	content: "";
}

.ti-paint-bucket:before {
	content: "";
}

.ti-na:before {
	content: "";
}

.ti-mobile:before {
	content: "";
}

.ti-minus:before {
	content: "";
}

.ti-medall:before {
	content: "";
}

.ti-medall-alt:before {
	content: "";
}

.ti-marker:before {
	content: "";
}

.ti-marker-alt:before {
	content: "";
}

.ti-arrow-up:before {
	content: "";
}

.ti-arrow-right:before {
	content: "";
}

.ti-arrow-left:before {
	content: "";
}

.ti-arrow-down:before {
	content: "";
}

.ti-lock:before {
	content: "";
}

.ti-location-arrow:before {
	content: "";
}

.ti-link:before {
	content: "";
}

.ti-layout:before {
	content: "";
}

.ti-layers:before {
	content: "";
}

.ti-layers-alt:before {
	content: "";
}

.ti-key:before {
	content: "";
}

.ti-import:before {
	content: "";
}

.ti-image:before {
	content: "";
}

.ti-heart:before {
	content: "";
}

.ti-heart-broken:before {
	content: "";
}

.ti-hand-stop:before {
	content: "";
}

.ti-hand-open:before {
	content: "";
}

.ti-hand-drag:before {
	content: "";
}

.ti-folder:before {
	content: "";
}

.ti-flag:before {
	content: "";
}

.ti-flag-alt:before {
	content: "";
}

.ti-flag-alt-2:before {
	content: "";
}

.ti-eye:before {
	content: "";
}

.ti-export:before {
	content: "";
}

.ti-exchange-vertical:before {
	content: "";
}

.ti-desktop:before {
	content: "";
}

.ti-cup:before {
	content: "";
}

.ti-crown:before {
	content: "";
}

.ti-comments:before {
	content: "";
}

.ti-comment:before {
	content: "";
}

.ti-comment-alt:before {
	content: "";
}

.ti-close:before {
	content: "";
}

.ti-clip:before {
	content: "";
}

.ti-angle-up:before {
	content: "";
}

.ti-angle-right:before {
	content: "";
}

.ti-angle-left:before {
	content: "";
}

.ti-angle-down:before {
	content: "";
}

.ti-check:before {
	content: "";
}

.ti-check-box:before {
	content: "";
}

.ti-camera:before {
	content: "";
}

.ti-announcement:before {
	content: "";
}

.ti-brush:before {
	content: "";
}

.ti-briefcase:before {
	content: "";
}

.ti-bolt:before {
	content: "";
}

.ti-bolt-alt:before {
	content: "";
}

.ti-blackboard:before {
	content: "";
}

.ti-bag:before {
	content: "";
}

.ti-move:before {
	content: "";
}

.ti-arrows-vertical:before {
	content: "";
}

.ti-arrows-horizontal:before {
	content: "";
}

.ti-fullscreen:before {
	content: "";
}

.ti-arrow-top-right:before {
	content: "";
}

.ti-arrow-top-left:before {
	content: "";
}

.ti-arrow-circle-up:before {
	content: "";
}

.ti-arrow-circle-right:before {
	content: "";
}

.ti-arrow-circle-left:before {
	content: "";
}

.ti-arrow-circle-down:before {
	content: "";
}

.ti-angle-double-up:before {
	content: "";
}

.ti-angle-double-right:before {
	content: "";
}

.ti-angle-double-left:before {
	content: "";
}

.ti-angle-double-down:before {
	content: "";
}

.ti-zip:before {
	content: "";
}

.ti-world:before {
	content: "";
}

.ti-wheelchair:before {
	content: "";
}

.ti-view-list:before {
	content: "";
}

.ti-view-list-alt:before {
	content: "";
}

.ti-view-grid:before {
	content: "";
}

.ti-uppercase:before {
	content: "";
}

.ti-upload:before {
	content: "";
}

.ti-underline:before {
	content: "";
}

.ti-truck:before {
	content: "";
}

.ti-timer:before {
	content: "";
}

.ti-ticket:before {
	content: "";
}

.ti-thumb-up:before {
	content: "";
}

.ti-thumb-down:before {
	content: "";
}

.ti-text:before {
	content: "";
}

.ti-stats-up:before {
	content: "";
}

.ti-stats-down:before {
	content: "";
}

.ti-split-v:before {
	content: "";
}

.ti-split-h:before {
	content: "";
}

.ti-smallcap:before {
	content: "";
}

.ti-shine:before {
	content: "";
}

.ti-shift-right:before {
	content: "";
}

.ti-shift-left:before {
	content: "";
}

.ti-shield:before {
	content: "";
}

.ti-notepad:before {
	content: "";
}

.ti-server:before {
	content: "";
}

.ti-quote-right:before {
	content: "";
}

.ti-quote-left:before {
	content: "";
}

.ti-pulse:before {
	content: "";
}

.ti-printer:before {
	content: "";
}

.ti-power-off:before {
	content: "";
}

.ti-plug:before {
	content: "";
}

.ti-pie-chart:before {
	content: "";
}

.ti-paragraph:before {
	content: "";
}

.ti-panel:before {
	content: "";
}

.ti-package:before {
	content: "";
}

.ti-music:before {
	content: "";
}

.ti-music-alt:before {
	content: "";
}

.ti-mouse:before {
	content: "";
}

.ti-mouse-alt:before {
	content: "";
}

.ti-money:before {
	content: "";
}

.ti-microphone:before {
	content: "";
}

.ti-menu:before {
	content: "";
}

.ti-menu-alt:before {
	content: "";
}

.ti-map:before {
	content: "";
}

.ti-map-alt:before {
	content: "";
}

.ti-loop:before {
	content: "";
}

.ti-location-pin:before {
	content: "";
}

.ti-list:before {
	content: "";
}

.ti-light-bulb:before {
	content: "";
}

.ti-Italic:before {
	content: "";
}

.ti-info:before {
	content: "";
}

.ti-infinite:before {
	content: "";
}

.ti-id-badge:before {
	content: "";
}

.ti-hummer:before {
	content: "";
}

.ti-home:before {
	content: "";
}

.ti-help:before {
	content: "";
}

.ti-headphone:before {
	content: "";
}

.ti-harddrives:before {
	content: "";
}

.ti-harddrive:before {
	content: "";
}

.ti-gift:before {
	content: "";
}

.ti-game:before {
	content: "";
}

.ti-filter:before {
	content: "";
}

.ti-files:before {
	content: "";
}

.ti-file:before {
	content: "";
}

.ti-eraser:before {
	content: "";
}

.ti-envelope:before {
	content: "";
}

.ti-download:before {
	content: "";
}

.ti-direction:before {
	content: "";
}

.ti-direction-alt:before {
	content: "";
}

.ti-dashboard:before {
	content: "";
}

.ti-control-stop:before {
	content: "";
}

.ti-control-shuffle:before {
	content: "";
}

.ti-control-play:before {
	content: "";
}

.ti-control-pause:before {
	content: "";
}

.ti-control-forward:before {
	content: "";
}

.ti-control-backward:before {
	content: "";
}

.ti-cloud:before {
	content: "";
}

.ti-cloud-up:before {
	content: "";
}

.ti-cloud-down:before {
	content: "";
}

.ti-clipboard:before {
	content: "";
}

.ti-car:before {
	content: "";
}

.ti-calendar:before {
	content: "";
}

.ti-book:before {
	content: "";
}

.ti-bell:before {
	content: "";
}

.ti-basketball:before {
	content: "";
}

.ti-bar-chart:before {
	content: "";
}

.ti-bar-chart-alt:before {
	content: "";
}

.ti-back-right:before {
	content: "";
}

.ti-back-left:before {
	content: "";
}

.ti-arrows-corner:before {
	content: "";
}

.ti-archive:before {
	content: "";
}

.ti-anchor:before {
	content: "";
}

.ti-align-right:before {
	content: "";
}

.ti-align-left:before {
	content: "";
}

.ti-align-justify:before {
	content: "";
}

.ti-align-center:before {
	content: "";
}

.ti-alert:before {
	content: "";
}

.ti-alarm-clock:before {
	content: "";
}

.ti-agenda:before {
	content: "";
}

.ti-write:before {
	content: "";
}

.ti-window:before {
	content: "";
}

.ti-widgetized:before {
	content: "";
}

.ti-widget:before {
	content: "";
}

.ti-widget-alt:before {
	content: "";
}

.ti-wallet:before {
	content: "";
}

.ti-video-clapper:before {
	content: "";
}

.ti-video-camera:before {
	content: "";
}

.ti-vector:before {
	content: "";
}

.ti-themify-logo:before {
	content: "";
}

.ti-themify-favicon:before {
	content: "";
}

.ti-themify-favicon-alt:before {
	content: "";
}

.ti-support:before {
	content: "";
}

.ti-stamp:before {
	content: "";
}

.ti-split-v-alt:before {
	content: "";
}

.ti-slice:before {
	content: "";
}

.ti-shortcode:before {
	content: "";
}

.ti-shift-right-alt:before {
	content: "";
}

.ti-shift-left-alt:before {
	content: "";
}

.ti-ruler-alt-2:before {
	content: "";
}

.ti-receipt:before {
	content: "";
}

.ti-pin2:before {
	content: "";
}

.ti-pin-alt:before {
	content: "";
}

.ti-pencil-alt2:before {
	content: "";
}

.ti-palette:before {
	content: "";
}

.ti-more:before {
	content: "";
}

.ti-more-alt:before {
	content: "";
}

.ti-microphone-alt:before {
	content: "";
}

.ti-magnet:before {
	content: "";
}

.ti-line-double:before {
	content: "";
}

.ti-line-dotted:before {
	content: "";
}

.ti-line-dashed:before {
	content: "";
}

.ti-layout-width-full:before {
	content: "";
}

.ti-layout-width-default:before {
	content: "";
}

.ti-layout-width-default-alt:before {
	content: "";
}

.ti-layout-tab:before {
	content: "";
}

.ti-layout-tab-window:before {
	content: "";
}

.ti-layout-tab-v:before {
	content: "";
}

.ti-layout-tab-min:before {
	content: "";
}

.ti-layout-slider:before {
	content: "";
}

.ti-layout-slider-alt:before {
	content: "";
}

.ti-layout-sidebar-right:before {
	content: "";
}

.ti-layout-sidebar-none:before {
	content: "";
}

.ti-layout-sidebar-left:before {
	content: "";
}

.ti-layout-placeholder:before {
	content: "";
}

.ti-layout-menu:before {
	content: "";
}

.ti-layout-menu-v:before {
	content: "";
}

.ti-layout-menu-separated:before {
	content: "";
}

.ti-layout-menu-full:before {
	content: "";
}

.ti-layout-media-right-alt:before {
	content: "";
}

.ti-layout-media-right:before {
	content: "";
}

.ti-layout-media-overlay:before {
	content: "";
}

.ti-layout-media-overlay-alt:before {
	content: "";
}

.ti-layout-media-overlay-alt-2:before {
	content: "";
}

.ti-layout-media-left-alt:before {
	content: "";
}

.ti-layout-media-left:before {
	content: "";
}

.ti-layout-media-center-alt:before {
	content: "";
}

.ti-layout-media-center:before {
	content: "";
}

.ti-layout-list-thumb:before {
	content: "";
}

.ti-layout-list-thumb-alt:before {
	content: "";
}

.ti-layout-list-post:before {
	content: "";
}

.ti-layout-list-large-image:before {
	content: "";
}

.ti-layout-line-solid:before {
	content: "";
}

.ti-layout-grid4:before {
	content: "";
}

.ti-layout-grid3:before {
	content: "";
}

.ti-layout-grid2:before {
	content: "";
}

.ti-layout-grid2-thumb:before {
	content: "";
}

.ti-layout-cta-right:before {
	content: "";
}

.ti-layout-cta-left:before {
	content: "";
}

.ti-layout-cta-center:before {
	content: "";
}

.ti-layout-cta-btn-right:before {
	content: "";
}

.ti-layout-cta-btn-left:before {
	content: "";
}

.ti-layout-column4:before {
	content: "";
}

.ti-layout-column3:before {
	content: "";
}

.ti-layout-column2:before {
	content: "";
}

.ti-layout-accordion-separated:before {
	content: "";
}

.ti-layout-accordion-merged:before {
	content: "";
}

.ti-layout-accordion-list:before {
	content: "";
}

.ti-ink-pen:before {
	content: "";
}

.ti-info-alt:before {
	content: "";
}

.ti-help-alt:before {
	content: "";
}

.ti-headphone-alt:before {
	content: "";
}

.ti-hand-point-up:before {
	content: "";
}

.ti-hand-point-right:before {
	content: "";
}

.ti-hand-point-left:before {
	content: "";
}

.ti-hand-point-down:before {
	content: "";
}

.ti-gallery:before {
	content: "";
}

.ti-face-smile:before {
	content: "";
}

.ti-face-sad:before {
	content: "";
}

.ti-credit-card:before {
	content: "";
}

.ti-control-skip-forward:before {
	content: "";
}

.ti-control-skip-backward:before {
	content: "";
}

.ti-control-record:before {
	content: "";
}

.ti-control-eject:before {
	content: "";
}

.ti-comments-smiley:before {
	content: "";
}

.ti-brush-alt:before {
	content: "";
}

.ti-youtube:before {
	content: "";
}

.ti-vimeo:before {
	content: "";
}

.ti-twitter:before {
	content: "";
}

.ti-time:before {
	content: "";
}

.ti-tumblr:before {
	content: "";
}

.ti-skype:before {
	content: "";
}

.ti-share:before {
	content: "";
}

.ti-share-alt:before {
	content: "";
}

.ti-rocket:before {
	content: "";
}

.ti-pinterest:before {
	content: "";
}

.ti-new-window:before {
	content: "";
}

.ti-microsoft:before {
	content: "";
}

.ti-list-ol:before {
	content: "";
}

.ti-linkedin:before {
	content: "";
}

.ti-layout-sidebar-2:before {
	content: "";
}

.ti-layout-grid4-alt:before {
	content: "";
}

.ti-layout-grid3-alt:before {
	content: "";
}

.ti-layout-grid2-alt:before {
	content: "";
}

.ti-layout-column4-alt:before {
	content: "";
}

.ti-layout-column3-alt:before {
	content: "";
}

.ti-layout-column2-alt:before {
	content: "";
}

.ti-instagram:before {
	content: "";
}

.ti-google:before {
	content: "";
}

.ti-github:before {
	content: "";
}

.ti-flickr:before {
	content: "";
}

.ti-facebook:before {
	content: "";
}

.ti-dropbox:before {
	content: "";
}

.ti-dribbble:before {
	content: "";
}

.ti-apple:before {
	content: "";
}

.ti-android:before {
	content: "";
}

.ti-save:before {
	content: "";
}

.ti-save-alt:before {
	content: "";
}

.ti-yahoo:before {
	content: "";
}

.ti-wordpress:before {
	content: "";
}

.ti-vimeo-alt:before {
	content: "";
}

.ti-twitter-alt:before {
	content: "";
}

.ti-tumblr-alt:before {
	content: "";
}

.ti-trello:before {
	content: "";
}

.ti-stack-overflow:before {
	content: "";
}

.ti-soundcloud:before {
	content: "";
}

.ti-sharethis:before {
	content: "";
}

.ti-sharethis-alt:before {
	content: "";
}

.ti-reddit:before {
	content: "";
}

.ti-pinterest-alt:before {
	content: "";
}

.ti-microsoft-alt:before {
	content: "";
}

.ti-linux:before {
	content: "";
}

.ti-jsfiddle:before {
	content: "";
}

.ti-joomla:before {
	content: "";
}

.ti-html5:before {
	content: "";
}

.ti-flickr-alt:before {
	content: "";
}

.ti-email:before {
	content: "";
}

.ti-drupal:before {
	content: "";
}

.ti-dropbox-alt:before {
	content: "";
}

.ti-css3:before {
	content: "";
}

.ti-rss:before {
	content: "";
}

.ti-rss-alt:before {
	content: "";
}

@charset "UTF-8";

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

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

@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	
	60% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	
	40% {
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	
	60% {
		-webkit-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

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

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

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

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

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
	
	50% {
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

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

@-webkit-keyframes shake {
	0%, 100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px);
	}
	
	20%, 40%, 60%, 80% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
}

@keyframes shake {
	0%, 100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	
	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
		transform: translateX(-10px);
	}
	
	20%, 40%, 60%, 80% {
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px);
	}
}

.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);
	}
	
	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		-ms-transform: rotate(15deg);
		transform: rotate(15deg);
	}
	
	40% {
		-webkit-transform: rotate(-10deg);
		-ms-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	
	60% {
		-webkit-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		transform: rotate(5deg);
	}
	
	80% {
		-webkit-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
	
	100% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

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

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	
	10%, 20% {
		-webkit-transform: scale(.9) rotate(-3deg);
		transform: scale(.9) rotate(-3deg);
	}
	
	30%, 50%, 70%, 90% {
		-webkit-transform: scale(1.1) rotate(3deg);
		transform: scale(1.1) rotate(3deg);
	}
	
	40%, 60%, 80% {
		-webkit-transform: scale(1.1) rotate(-3deg);
		transform: scale(1.1) rotate(-3deg);
	}
	
	100% {
		-webkit-transform: scale(1) rotate(0);
		transform: scale(1) rotate(0);
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
	
	10%, 20% {
		-webkit-transform: scale(.9) rotate(-3deg);
		-ms-transform: scale(.9) rotate(-3deg);
		transform: scale(.9) rotate(-3deg);
	}
	
	30%, 50%, 70%, 90% {
		-webkit-transform: scale(1.1) rotate(3deg);
		-ms-transform: scale(1.1) rotate(3deg);
		transform: scale(1.1) rotate(3deg);
	}
	
	40%, 60%, 80% {
		-webkit-transform: scale(1.1) rotate(-3deg);
		-ms-transform: scale(1.1) rotate(-3deg);
		transform: scale(1.1) rotate(-3deg);
	}
	
	100% {
		-webkit-transform: scale(1) rotate(0);
		-ms-transform: scale(1) rotate(0);
		transform: scale(1) rotate(0);
	}
}

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

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	
	15% {
		-webkit-transform: translateX(-25%) rotate(-5deg);
		transform: translateX(-25%) rotate(-5deg);
	}
	
	30% {
		-webkit-transform: translateX(20%) rotate(3deg);
		transform: translateX(20%) rotate(3deg);
	}
	
	45% {
		-webkit-transform: translateX(-15%) rotate(-3deg);
		transform: translateX(-15%) rotate(-3deg);
	}
	
	60% {
		-webkit-transform: translateX(10%) rotate(2deg);
		transform: translateX(10%) rotate(2deg);
	}
	
	75% {
		-webkit-transform: translateX(-5%) rotate(-1deg);
		transform: translateX(-5%) rotate(-1deg);
	}
	
	100% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
	}
	
	15% {
		-webkit-transform: translateX(-25%) rotate(-5deg);
		-ms-transform: translateX(-25%) rotate(-5deg);
		transform: translateX(-25%) rotate(-5deg);
	}
	
	30% {
		-webkit-transform: translateX(20%) rotate(3deg);
		-ms-transform: translateX(20%) rotate(3deg);
		transform: translateX(20%) rotate(3deg);
	}
	
	45% {
		-webkit-transform: translateX(-15%) rotate(-3deg);
		-ms-transform: translateX(-15%) rotate(-3deg);
		transform: translateX(-15%) rotate(-3deg);
	}
	
	60% {
		-webkit-transform: translateX(10%) rotate(2deg);
		-ms-transform: translateX(10%) rotate(2deg);
		transform: translateX(10%) rotate(2deg);
	}
	
	75% {
		-webkit-transform: translateX(-5%) rotate(-1deg);
		-ms-transform: translateX(-5%) rotate(-1deg);
		transform: translateX(-5%) rotate(-1deg);
	}
	
	100% {
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
	}
}

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

@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
		transform: scale(.3);
	}
	
	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	
	70% {
		-webkit-transform: scale(.9);
		transform: scale(.9);
	}
	
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
		-ms-transform: scale(.3);
		transform: scale(.3);
	}
	
	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
		-ms-transform: scale(1.05);
		transform: scale(1.05);
	}
	
	70% {
		-webkit-transform: scale(.9);
		-ms-transform: scale(.9);
		transform: scale(.9);
	}
	
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

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

@-webkit-keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	
	80% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateY(30px);
		-ms-transform: translateY(30px);
		transform: translateY(30px);
	}
	
	80% {
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	
	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

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

@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	
	80% {
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px);
	}
	
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateX(30px);
		-ms-transform: translateX(30px);
		transform: translateX(30px);
	}
	
	80% {
		-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
		transform: translateX(-10px);
	}
	
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

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

@-webkit-keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateX(-30px);
		transform: translateX(-30px);
	}
	
	80% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateX(-30px);
		-ms-transform: translateX(-30px);
		transform: translateX(-30px);
	}
	
	80% {
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px);
	}
	
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

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

@-webkit-keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	
	80% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
	
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	
	80% {
		-webkit-transform: translateY(10px);
		-ms-transform: translateY(10px);
		transform: translateY(10px);
	}
	
	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

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

@-webkit-keyframes bounceOut {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	
	25% {
		-webkit-transform: scale(.95);
		transform: scale(.95);
	}
	
	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale(.3);
		transform: scale(.3);
	}
}

@keyframes bounceOut {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
	
	25% {
		-webkit-transform: scale(.95);
		-ms-transform: scale(.95);
		transform: scale(.95);
	}
	
	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale(.3);
		-ms-transform: scale(.3);
		transform: scale(.3);
	}
}

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

@-webkit-keyframes bounceOutDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

@keyframes bounceOutDown {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

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

@-webkit-keyframes bounceOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

@keyframes bounceOutLeft {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

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

@-webkit-keyframes bounceOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

@keyframes bounceOutRight {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

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

@-webkit-keyframes bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

@keyframes bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

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

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

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

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

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

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

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

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

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

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

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

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

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

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

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

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

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

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

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

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

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0;
	}
}

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

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}
}

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

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

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

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px);
	}
}

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

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

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

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}
}

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

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

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

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}

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

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

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

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	
	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	
	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	
	80% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	
	100% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	
	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		-ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	
	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	
	80% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	
	100% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	-ms-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);
		opacity: 0;
	}
	
	40% {
		-webkit-transform: perspective(400px) rotateX(-10deg);
		transform: perspective(400px) rotateX(-10deg);
	}
	
	70% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
	}
	
	100% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}
}

@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		-ms-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
	
	40% {
		-webkit-transform: perspective(400px) rotateX(-10deg);
		-ms-transform: perspective(400px) rotateX(-10deg);
		transform: perspective(400px) rotateX(-10deg);
	}
	
	70% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		-ms-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
	}
	
	100% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		-ms-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	-ms-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);
		opacity: 0;
	}
	
	40% {
		-webkit-transform: perspective(400px) rotateY(-10deg);
		transform: perspective(400px) rotateY(-10deg);
	}
	
	70% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
	}
	
	100% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		-ms-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
	
	40% {
		-webkit-transform: perspective(400px) rotateY(-10deg);
		-ms-transform: perspective(400px) rotateY(-10deg);
		transform: perspective(400px) rotateY(-10deg);
	}
	
	70% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		-ms-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
	}
	
	100% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		-ms-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}
}

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

@-webkit-keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		-ms-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		-ms-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}

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

@-webkit-keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		-ms-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		-ms-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}

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

@-webkit-keyframes lightSpeedIn {
	0% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0;
	}
	
	60% {
		-webkit-transform: translateX(-20%) skewX(30deg);
		transform: translateX(-20%) skewX(30deg);
		opacity: 1;
	}
	
	80% {
		-webkit-transform: translateX(0%) skewX(-15deg);
		transform: translateX(0%) skewX(-15deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1;
	}
}

@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		-ms-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0;
	}
	
	60% {
		-webkit-transform: translateX(-20%) skewX(30deg);
		-ms-transform: translateX(-20%) skewX(30deg);
		transform: translateX(-20%) skewX(30deg);
		opacity: 1;
	}
	
	80% {
		-webkit-transform: translateX(0%) skewX(-15deg);
		-ms-transform: translateX(0%) skewX(-15deg);
		transform: translateX(0%) skewX(-15deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: translateX(0%) skewX(0deg);
		-ms-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		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% {
		-webkit-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0;
	}
}

@keyframes lightSpeedOut {
	0% {
		-webkit-transform: translateX(0%) skewX(0deg);
		-ms-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		-ms-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) 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 center;
		transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateIn {
	0% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		-ms-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		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(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		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(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		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(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		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;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

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

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

@-webkit-keyframes rotateOut {
	0% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0;
	}
}

@keyframes rotateOut {
	0% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(200deg);
		-ms-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;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

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

@-webkit-keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

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

@-webkit-keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

@keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

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

@-webkit-keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-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;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

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

@-webkit-keyframes slideInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
	
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes slideInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
	
	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

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

@-webkit-keyframes slideInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
	
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slideInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
	
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

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

@-webkit-keyframes slideInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
	
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
	
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

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

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

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

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

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

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

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

@-webkit-keyframes hinge {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(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% {
		-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;
	}
	
	80% {
		-webkit-transform: rotate(60deg) translateY(0);
		transform: rotate(60deg) translateY(0);
		opacity: 1;
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	
	100% {
		-webkit-transform: translateY(700px);
		transform: translateY(700px);
		opacity: 0;
	}
}

@keyframes hinge {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: top left;
		-ms-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);
		-ms-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	
	40% {
		-webkit-transform: rotate(60deg);
		-ms-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	
	80% {
		-webkit-transform: rotate(60deg) translateY(0);
		-ms-transform: rotate(60deg) translateY(0);
		transform: rotate(60deg) translateY(0);
		opacity: 1;
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	
	100% {
		-webkit-transform: translateY(700px);
		-ms-transform: translateY(700px);
		transform: translateY(700px);
		opacity: 0;
	}
}

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

@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0) rotate(0deg);
		transform: translateX(0) rotate(0deg);
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		-ms-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0) rotate(0deg);
		-ms-transform: translateX(0) rotate(0deg);
		transform: translateX(0) rotate(0deg);
	}
}

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

@-webkit-keyframes rollOut {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0) rotate(0deg);
		transform: translateX(0) rotate(0deg);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg);
	}
}

@keyframes rollOut {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0) rotate(0deg);
		-ms-transform: translateX(0) rotate(0deg);
		transform: translateX(0) rotate(0deg);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		-ms-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg);
	}
}

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

.sk-double-bounce, .sk-rotating-plane {
	width: 20px;
	height: 20px;
	margin: 20px auto;
}

.sk-rotating-plane {
	-webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
	animation: sk-rotatePlane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotatePlane {
	0% {
		-webkit-transform: perspective(120px) rotateX(0) rotateY(0);
		transform: perspective(120px) rotateX(0) rotateY(0);
	}
	
	50% {
		-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
		transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
	}
	
	100% {
		-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
		transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	}
}

@keyframes sk-rotatePlane {
	0% {
		-webkit-transform: perspective(120px) rotateX(0) rotateY(0);
		transform: perspective(120px) rotateX(0) rotateY(0);
	}
	
	50% {
		-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
		transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
	}
	
	100% {
		-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
		transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	}
}

.sk-double-bounce {
	position: relative;
}

.sk-double-bounce .sk-child {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	opacity: .6;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
	animation: sk-doubleBounce 2s infinite ease-in-out;
}

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

@-webkit-keyframes sk-doubleBounce {
	0%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	
	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes sk-doubleBounce {
	0%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	
	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.sk-wave {
	margin: 20px auto;
	width: 50px;
	height: 20px;
	text-align: center;
	font-size: 10px;
}

.sk-wave .sk-rect {
	height: 100%;
	width: 6px;
	display: inline-block;
	-webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
	animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}

.sk-wave .sk-rect1 {
	-webkit-animation-delay: -1.2s;
	animation-delay: -1.2s;
}

.sk-wave .sk-rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.sk-wave .sk-rect3 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

.sk-wave .sk-rect4 {
	-webkit-animation-delay: -.9s;
	animation-delay: -.9s;
}

.sk-wave .sk-rect5 {
	-webkit-animation-delay: -.8s;
	animation-delay: -.8s;
}

@-webkit-keyframes sk-waveStretchDelay {
	0%, 100%, 40% {
		-webkit-transform: scaleY(.4);
		transform: scaleY(.4);
	}
	
	20% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
}

@keyframes sk-waveStretchDelay {
	0%, 100%, 40% {
		-webkit-transform: scaleY(.4);
		transform: scaleY(.4);
	}
	
	20% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
}

.sk-wandering-cubes {
	margin: 20px auto;
	width: 20px;
	height: 20px;
	position: relative;
}

.sk-wandering-cubes .sk-cube {
	width: 10px;
	height: 10px;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
	animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
}

.sk-chasing-dots, .sk-spinner-pulse {
	width: 20px;
	height: 20px;
	margin: 20px auto;
}

.sk-wandering-cubes .sk-cube2 {
	-webkit-animation-delay: -.9s;
	animation-delay: -.9s;
}

@-webkit-keyframes sk-wanderingCube {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	
	25% {
		-webkit-transform: translateX(20px) rotate(-90deg) scale(.5);
		transform: translateX(20px) rotate(-90deg) scale(.5);
	}
	
	50% {
		-webkit-transform: translateX(20px) translateY(20px) rotate(-179deg);
		transform: translateX(20px) translateY(20px) rotate(-179deg);
	}
	
	50.1% {
		-webkit-transform: translateX(20px) translateY(20px) rotate(-180deg);
		transform: translateX(20px) translateY(20px) rotate(-180deg);
	}
	
	75% {
		-webkit-transform: translateX(0) translateY(20px) rotate(-270deg) scale(.5);
		transform: translateX(0) translateY(20px) rotate(-270deg) scale(.5);
	}
	
	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@keyframes sk-wanderingCube {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	
	25% {
		-webkit-transform: translateX(20px) rotate(-90deg) scale(.5);
		transform: translateX(20px) rotate(-90deg) scale(.5);
	}
	
	50% {
		-webkit-transform: translateX(20px) translateY(20px) rotate(-179deg);
		transform: translateX(20px) translateY(20px) rotate(-179deg);
	}
	
	50.1% {
		-webkit-transform: translateX(20px) translateY(20px) rotate(-180deg);
		transform: translateX(20px) translateY(20px) rotate(-180deg);
	}
	
	75% {
		-webkit-transform: translateX(0) translateY(20px) rotate(-270deg) scale(.5);
		transform: translateX(0) translateY(20px) rotate(-270deg) scale(.5);
	}
	
	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

.sk-spinner-pulse {
	border-radius: 100%;
	-webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
	animation: sk-pulseScaleOut 1s infinite ease-in-out;
}

@-webkit-keyframes sk-pulseScaleOut {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}

@keyframes sk-pulseScaleOut {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}

.sk-chasing-dots {
	position: relative;
	text-align: center;
	-webkit-animation: sk-chasingDotsRotate 2s infinite linear;
	animation: sk-chasingDotsRotate 2s infinite linear;
}

.sk-chasing-dots .sk-child {
	width: 60%;
	height: 60%;
	display: inline-block;
	position: absolute;
	top: 0;
	border-radius: 100%;
	-webkit-animation: sk-chasingDotsBounce 2s infinite ease-in-out;
	animation: sk-chasingDotsBounce 2s infinite ease-in-out;
}

.sk-chasing-dots .sk-dot2 {
	top: auto;
	bottom: 0;
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

@-webkit-keyframes sk-chasingDotsRotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes sk-chasingDotsRotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes sk-chasingDotsBounce {
	0%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	
	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes sk-chasingDotsBounce {
	0%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	
	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.sk-three-bounce {
	margin: 20px auto;
	width: 80px;
	text-align: center;
}

.sk-three-bounce .sk-child {
	width: 20px;
	height: 20px;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
	animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.sk-circle .sk-child:before, .sk-fading-circle .sk-circle:before {
	display: block;
	border-radius: 100%;
	content: "";
}

.sk-three-bounce .sk-bounce1 {
	-webkit-animation-delay: -.32s;
	animation-delay: -.32s;
}

.sk-three-bounce .sk-bounce2 {
	-webkit-animation-delay: -.16s;
	animation-delay: -.16s;
}

@-webkit-keyframes sk-three-bounce {
	0%, 100%, 80% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	
	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes sk-three-bounce {
	0%, 100%, 80% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	
	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.sk-circle {
	margin: 20px auto;
	width: 20px;
	height: 20px;
	position: relative;
}

.sk-circle .sk-child {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.sk-circle .sk-child:before {
	margin: 0 auto;
	width: 15%;
	height: 15%;
	-webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
	animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
	-webkit-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
	-webkit-transform: rotate(120deg);
	-ms-transform: rotate(120deg);
	transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
	-webkit-transform: rotate(150deg);
	-ms-transform: rotate(150deg);
	transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
	-webkit-transform: rotate(210deg);
	-ms-transform: rotate(210deg);
	transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
	-webkit-transform: rotate(240deg);
	-ms-transform: rotate(240deg);
	transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
	-webkit-transform: rotate(300deg);
	-ms-transform: rotate(300deg);
	transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
	-webkit-transform: rotate(330deg);
	-ms-transform: rotate(330deg);
	transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
	-webkit-animation-delay: -.9s;
	animation-delay: -.9s;
}

.sk-circle .sk-circle5:before {
	-webkit-animation-delay: -.8s;
	animation-delay: -.8s;
}

.sk-circle .sk-circle6:before {
	-webkit-animation-delay: -.7s;
	animation-delay: -.7s;
}

.sk-circle .sk-circle7:before {
	-webkit-animation-delay: -.6s;
	animation-delay: -.6s;
}

.sk-circle .sk-circle8:before {
	-webkit-animation-delay: -.5s;
	animation-delay: -.5s;
}

.sk-circle .sk-circle9:before {
	-webkit-animation-delay: -.4s;
	animation-delay: -.4s;
}

.sk-circle .sk-circle10:before {
	-webkit-animation-delay: -.3s;
	animation-delay: -.3s;
}

.sk-circle .sk-circle11:before {
	-webkit-animation-delay: -.2s;
	animation-delay: -.2s;
}

.sk-circle .sk-circle12:before {
	-webkit-animation-delay: -.1s;
	animation-delay: -.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
	0%, 100%, 80% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	
	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes sk-circleBounceDelay {
	0%, 100%, 80% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	
	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.sk-cube-grid {
	width: 20px;
	height: 20px;
	margin: 20px auto;
}

.sk-cube-grid .sk-cube {
	width: 33.33%;
	height: 33.33%;
	float: left;
	-webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
	animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
	-webkit-animation-delay: .2s;
	animation-delay: .2s;
}

.sk-cube-grid .sk-cube2 {
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
}

.sk-cube-grid .sk-cube3 {
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
}

.sk-cube-grid .sk-cube4 {
	-webkit-animation-delay: .1s;
	animation-delay: .1s;
}

.sk-cube-grid .sk-cube5 {
	-webkit-animation-delay: .2s;
	animation-delay: .2s;
}

.sk-cube-grid .sk-cube6 {
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
}

.sk-cube-grid .sk-cube7 {
	-webkit-animation-delay: 0ms;
	animation-delay: 0ms;
}

.sk-cube-grid .sk-cube8 {
	-webkit-animation-delay: .1s;
	animation-delay: .1s;
}

.sk-cube-grid .sk-cube9 {
	-webkit-animation-delay: .2s;
	animation-delay: .2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
	0%, 100%, 70% {
		-webkit-transform: scale3D(1, 1, 1);
		transform: scale3D(1, 1, 1);
	}
	
	35% {
		-webkit-transform: scale3D(0, 0, 1);
		transform: scale3D(0, 0, 1);
	}
}

@keyframes sk-cubeGridScaleDelay {
	0%, 100%, 70% {
		-webkit-transform: scale3D(1, 1, 1);
		transform: scale3D(1, 1, 1);
	}
	
	35% {
		-webkit-transform: scale3D(0, 0, 1);
		transform: scale3D(0, 0, 1);
	}
}

.sk-fading-circle {
	margin: 20px auto;
	width: 20px;
	height: 20px;
	position: relative;
}

.sk-fading-circle .sk-circle {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.sk-fading-circle .sk-circle:before {
	margin: 0 auto;
	width: 15%;
	height: 15%;
	-webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
	animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
	-webkit-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
	-webkit-transform: rotate(120deg);
	-ms-transform: rotate(120deg);
	transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
	-webkit-transform: rotate(150deg);
	-ms-transform: rotate(150deg);
	transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
	-webkit-transform: rotate(210deg);
	-ms-transform: rotate(210deg);
	transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
	-webkit-transform: rotate(240deg);
	-ms-transform: rotate(240deg);
	transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
	-webkit-transform: rotate(300deg);
	-ms-transform: rotate(300deg);
	transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
	-webkit-transform: rotate(330deg);
	-ms-transform: rotate(330deg);
	transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
	-webkit-animation-delay: -.9s;
	animation-delay: -.9s;
}

.sk-fading-circle .sk-circle5:before {
	-webkit-animation-delay: -.8s;
	animation-delay: -.8s;
}

.sk-fading-circle .sk-circle6:before {
	-webkit-animation-delay: -.7s;
	animation-delay: -.7s;
}

.sk-fading-circle .sk-circle7:before {
	-webkit-animation-delay: -.6s;
	animation-delay: -.6s;
}

.sk-fading-circle .sk-circle8:before {
	-webkit-animation-delay: -.5s;
	animation-delay: -.5s;
}

.sk-fading-circle .sk-circle9:before {
	-webkit-animation-delay: -.4s;
	animation-delay: -.4s;
}

.sk-fading-circle .sk-circle10:before {
	-webkit-animation-delay: -.3s;
	animation-delay: -.3s;
}

.sk-fading-circle .sk-circle11:before {
	-webkit-animation-delay: -.2s;
	animation-delay: -.2s;
}

.sk-fading-circle .sk-circle12:before {
	-webkit-animation-delay: -.1s;
	animation-delay: -.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
	0%, 100%, 39% {
		opacity: 0;
	}
	
	40% {
		opacity: 1;
	}
}

@keyframes sk-circleFadeDelay {
	0%, 100%, 39% {
		opacity: 0;
	}
	
	40% {
		opacity: 1;
	}
}

.sk-folding-cube {
	margin: 20px auto;
	width: 20px;
	height: 20px;
	position: relative;
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
	float: left;
	width: 50%;
	height: 50%;
	position: relative;
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
	animation: sk-foldCubeAngle 2.4s infinite linear both;
	-webkit-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
	-webkit-transform: scale(1.1) rotateZ(90deg);
	transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
	-webkit-transform: scale(1.1) rotateZ(180deg);
	transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
	-webkit-transform: scale(1.1) rotateZ(270deg);
	transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
}

.sk-folding-cube .sk-cube3:before {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
}

.sk-folding-cube .sk-cube4:before {
	-webkit-animation-delay: .9s;
	animation-delay: .9s;
}

@-webkit-keyframes sk-foldCubeAngle {
	0%, 10% {
		-webkit-transform: perspective(120px) rotateX(-180deg);
		transform: perspective(120px) rotateX(-180deg);
		opacity: 0;
	}
	
	25%, 75% {
		-webkit-transform: perspective(120px) rotateX(0);
		transform: perspective(120px) rotateX(0);
		opacity: 1;
	}
	
	100%, 90% {
		-webkit-transform: perspective(120px) rotateY(180deg);
		transform: perspective(120px) rotateY(180deg);
		opacity: 0;
	}
}

@keyframes sk-foldCubeAngle {
	0%, 10% {
		-webkit-transform: perspective(120px) rotateX(-180deg);
		transform: perspective(120px) rotateX(-180deg);
		opacity: 0;
	}
	
	25%, 75% {
		-webkit-transform: perspective(120px) rotateX(0);
		transform: perspective(120px) rotateX(0);
		opacity: 1;
	}
	
	100%, 90% {
		-webkit-transform: perspective(120px) rotateY(180deg);
		transform: perspective(120px) rotateY(180deg);
		opacity: 0;
	}
}

.bx-wrapper {
	position: relative;
	padding: 0;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

.bxslider {
	margin: 0;
	padding: 0;
}

ul.bxslider {
	list-style: none;
}

.bx-viewport {
	-webkit-transform: translatez(0);
}

.bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager {
	position: absolute;
	bottom: 15px;
	width: 100%;
	padding-top: 0px;
}

.bx-wrapper .bx-loading {
	min-height: 50px;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: 700;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus, .bx-wrapper .bx-pager.bx-default-pager a:hover {
	background: #000;
}

.bx-wrapper .bx-controls-auto .bx-controls-auto-item, .bx-wrapper .bx-pager-item {
	display: inline-block;
	vertical-align: bottom;
}

.bx-wrapper .bx-pager-item {
	font-size: 0;
	line-height: 0;
}

.bx-wrapper .bx-prev {
	left: 10px;
}

.bx-wrapper .bx-prev:focus, .bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next {
	right: 10px;
}

.bx-wrapper .bx-next:focus, .bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction {
	display: none;
	transition: all .3s ease 0s;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
}

.bx-wrapper:hover .bx-controls-direction {
	display: block;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	z-index: 999;
	font-size: 24px;
	color: #b2b8bf;
}

.bx-wrapper .bx-controls-direction a:hover {
	color: #161616;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url("https://wpseo.it/wp-content/themes/tiam/assets/css/img/controls.png") -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start.nitro-lazy {
	background-image: none !important;
}

.bx-wrapper .bx-controls-auto .bx-start.active, .bx-wrapper .bx-controls-auto .bx-start:focus, .bx-wrapper .bx-controls-auto .bx-start:hover {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url("https://wpseo.it/wp-content/themes/tiam/assets/css/img/controls.png") -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop.nitro-lazy {
	background-image: none !important;
}

.bx-wrapper .bx-controls-auto .bx-stop.active, .bx-wrapper .bx-controls-auto .bx-stop:focus, .bx-wrapper .bx-controls-auto .bx-stop:hover {
	background-position: -86px -33px;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666;
	background: rgba(80, 80, 80, .75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.9 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2017, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
	html.with-featherlight {
		overflow: hidden;
	}
	
	.featherlight {
		display: none;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 2147483647;
		text-align: center;
		white-space: nowrap;
		cursor: pointer;
		background: #333;
		background: rgba(0, 0, 0, 0);
	}
	
	.featherlight:last-of-type {
		background: rgba(0, 0, 0, .8);
	}
	
	.featherlight:before {
		content: "";
		display: inline-block;
		height: 100%;
		vertical-align: middle;
	}
	
	.featherlight .featherlight-content {
		position: relative;
		text-align: left;
		vertical-align: middle;
		display: inline-block;
		overflow: auto;
		padding: 25px 25px 0;
		border-bottom: 25px solid transparent;
		margin-left: 5%;
		margin-right: 5%;
		max-height: 95%;
		background: #fff;
		cursor: auto;
		white-space: normal;
	}
	
	.featherlight .featherlight-inner {
		display: block;
	}
	
	.featherlight link.featherlight-inner, .featherlight script.featherlight-inner, .featherlight style.featherlight-inner {
		display: none;
	}
	
	.featherlight .featherlight-close-icon {
		position: absolute;
		z-index: 9999;
		top: 0;
		right: 0;
		line-height: 25px;
		width: 25px;
		cursor: pointer;
		text-align: center;
		font-family: Arial, sans-serif;
		background: #fff;
		background: rgba(255, 255, 255, .3);
		color: #000;
		border: 0;
		padding: 0;
	}
	
	.featherlight .featherlight-close-icon::-moz-focus-inner {
		border: 0;
		padding: 0;
	}
	
	.featherlight .featherlight-image {
		width: 100%;
	}
	
	.featherlight-iframe .featherlight-content {
		border-bottom: 0;
		padding: 0;
		-webkit-overflow-scrolling: touch;
		overflow-y: scroll;
	}
	
	.featherlight iframe {
		border: 0;
	}
	
	.featherlight * {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
}

@media only screen and (max-width:1024px) {
	.featherlight .featherlight-content {
		margin-left: 0;
		margin-right: 0;
		max-height: 98%;
		padding: 10px 10px 0;
		border-bottom: 10px solid transparent;
	}
}

@media print {
	@page {
		size: landscape;
	}
	
	html.with-featherlight>*>:not(.featherlight) {
		display: none;
	}
}

@-webkit-keyframes featherlightLoader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes featherlightLoader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.featherlight-loading .featherlight-content {
	-webkit-animation: featherlightLoader 1s infinite linear;
	animation: featherlightLoader 1s infinite linear;
	background: transparent;
	border: 4px solid #8f8f8f;
	border-left-color: #fff;
	border-radius: 80px;
	width: 80px;
	height: 80px;
	min-width: 0;
}

.featherlight-loading .featherlight-content > * {
	display: none !important;
}

.featherlight-loading .featherlight-close, .featherlight-loading .featherlight-inner {
	display: none;
}

/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.7.9 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2017, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
	.featherlight-next, .featherlight-previous {
		display: block;
		position: absolute;
		top: 25px;
		right: 25px;
		bottom: 0;
		left: 80%;
		cursor: pointer;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		background: rgba(0, 0, 0, 0);
	}
	
	.featherlight-previous {
		left: 25px;
		right: 80%;
	}
	
	.featherlight-next:hover, .featherlight-previous:hover {
		background: rgba(255, 255, 255, .25);
	}
	
	.featherlight-next span, .featherlight-previous span {
		display: none;
		position: absolute;
		top: 50%;
		left: 5%;
		width: 82%;
		text-align: center;
		font-size: 80px;
		line-height: 80px;
		margin-top: -40px;
		text-shadow: 0 0 5px #fff;
		color: #fff;
		font-style: normal;
		font-weight: 400;
	}
	
	.featherlight-next span {
		right: 5%;
		left: auto;
	}
	
	.featherlight-next:hover span, .featherlight-previous:hover span {
		display: inline-block;
	}
	
	.featherlight-first-slide.featherlight-last-slide .featherlight-next, .featherlight-first-slide.featherlight-last-slide .featherlight-previous, .featherlight-loading .featherlight-next, .featherlight-loading .featherlight-previous, .featherlight-swipe-aware .featherlight-next, .featherlight-swipe-aware .featherlight-previous {
		display: none;
	}
}

@media only screen and (max-device-width:1024px) {
	.featherlight-next:hover, .featherlight-previous:hover {
		background: 0 0;
	}
	
	.featherlight-next span, .featherlight-previous span {
		display: block;
	}
}

@media only screen and (max-width:1024px) {
	.featherlight-next, .featherlight-previous {
		top: 10px;
		right: 10px;
		left: 85%;
	}
	
	.featherlight-previous {
		left: 10px;
		right: 85%;
	}
	
	.featherlight-next span, .featherlight-previous span {
		margin-top: -30px;
		font-size: 40px;
	}
}

.nav, .nav ul, .nav li {
	list-style: none;
}

.nav ul {
	padding: 0;
	margin: 0 0 0 18px;
}

.nav {
	padding: 4px;
	margin: 0;
}

.nav>li {
	margin: 4px 0;
}

.nav>li li {
	margin: 2px 0;
}

.nav a {
	color: #333;
	display: block;
	outline: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	text-decoration: none;
}

.nav li>a>span {
	float: right;
	font-size: 19px;
	font-weight: bolder;
}

.nav li>a:hover>span {
	color: #fff;
}

.nav li>a>span:after {
	content: "▾";
}

.nav li.open>a>span:after {
	content: "▴";
}

.nav a:hover, .nav li.active>a {
	background-color: #5d5d5d;
	color: #f5f5f5;
}

.nav>li.active>a {
	background-color: #4d90fe;
}

.nav li a {
	font-size: 12px;
	line-height: 18px;
	padding: 2px 10px;
}

.nav>li>a {
	font-size: 14px;
	line-height: 20px;
	padding: 4px 10px;
}

.blog-article-animation {
	overflow: hidden;
}

.blog-article-animation figure {
	width: 100%;
	position: relative;
	float: left;
	overflow: hidden;
}

.blog-article-animation figure figcaption {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.blog-article-animation figure figcaption::before, .blog-article-animation figure figcaption::after {
	pointer-events: none;
}

.blog-article-animation figure figcaption, .blog-article-animation figure figcaption>a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.blog-article-animation figure figcaption>a {
	padding: .5rem;
}

.blog-article-animation figure .post-excerpt {
	opacity: 0;
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
}

.blog-article-animation figure:hover .post-excerpt {
	opacity: 1;
}

.blog-article-animation figcaption .content {
	font-size: .8rem;
	line-height: 1.4rem;
	width: 100%;
}

.blog-article-animation figcaption .content .category {
	text-transform: uppercase;
	font-weight: 600;
	margin: .2rem;
}

.blog-article-animation figcaption .content .date {
	text-transform: capitalize;
	margin: 0 .5rem .3rem .5rem;
}

.blog-article-animation figcaption .content .date i {
	margin-right: .3rem;
}

.blog-article-animation figcaption .content .author {
	text-transform: capitalize;
	margin: 0 .5rem .3rem .5rem;
}

.blog-article-animation figcaption .content .author i {
	margin-right: .3rem;
}

.blog-article-animation figure figcaption>a {
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.blog-article-animation figure h2, .blog-article-animation figure .content {
	margin: 0;
	text-align: center;
}

.blog-article-animation figure .content {
	color: #868686;
}

.blog-article-animation figure .table {
	display: table;
	width: 100%;
	height: 100%;
}

.blog-article-animation figure figcaption .tablefull {
	display: table;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.blog-article-animation figure figcaption:hover .tablefull {
	opacity: 1;
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
}

.blog-article-animation figure .content {
	display: table;
}

.blog-article-animation figure .table .middle, .blog-article-animation figure .tablefull .middle, .blog-article-animation figure .content .middle {
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	text-align: center;
}

.blog-article-animation figure.effect-none img {
	max-width: none;
	opacity: 1;
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
}

.blog-article-animation figure.effect-none:hover img {
	opacity: 1;
}

.blog-article-animation figure.effect-none figcaption {
	text-align: left;
}

.blog-article-animation figure.effect-none figcaption>div {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2em;
	width: 100%;
	height: 100%;
}

.blog-article-animation figure.effect-none h2, .blog-article-animation figure.effect-none .content {
	-webkit-transform: translate3d(0, 40px, 0);
	transform: translate3d(0, 40px, 0);
}

.blog-article-animation figure.effect-none .content {
	opacity: 0;
}

.blog-article-animation figure.effect-color img {
	max-width: none;
	opacity: .7;
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
}

.blog-article-animation figure.effect-color:hover img {
	opacity: .85;
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.blog-article-animation figure.effect-lily img {
	max-width: none;
	width: -webkit-calc(100% + 50px);
	width: calc(100% + 50px);
	opacity: .7;
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
	-webkit-transform: translate3d(-40px, 0, 0);
	transform: translate3d(-40px, 0, 0);
}

.blog-article-animation figure.effect-lily figcaption {
	text-align: left;
}

.blog-article-animation figure.effect-lily figcaption>a, .blog-article-animation figure.effect-lily figcaption>div {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0 3.5rem 0 3.5rem;
	width: 100%;
	height: 100%;
}

.blog-article-animation figure.effect-lily .content {
	-webkit-transform: translate3d(0, 60px, 0);
	transform: translate3d(0, 60px, 0);
}

.blog-article-animation figure.effect-lily .content {
	display: none;
}

.blog-article-animation figure.effect-lily h2 {
	-webkit-transition: -webkit-transform .35s;
	padding: 8%;
	background: rgba(255, 255, 255, .9);
	transition: background .2s, transform .35s;
}

.blog-article-animation figure.effect-lily .content {
	opacity: 0;
	-webkit-transition: opacity .2s, -webkit-transform .35s;
	transition: opacity .2s, transform .35s;
}

.blog-article-animation figure.effect-lily:hover figcaption {
	-webkit-transition: all .35s linear;
	transition: all .35s linear;
	background: rgba(255, 255, 255, .5);
}

.blog-article-animation figure.effect-lily:hover img {
	opacity: .3;
}

.blog-article-animation figure.effect-lily:hover .content {
	opacity: 1;
}

.blog-article-animation figure.effect-lily:hover img, .blog-article-animation figure.effect-lily:hover h2, .blog-article-animation figure.effect-lily:hover .content {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
}

.blog-article-animation figure.effect-lily:hover h2 {
	background: transparent;
	padding: 0% 8%;
	display: none;
	transition-duration: .15s;
}

.blog-article-animation figure.effect-lily:hover .content {
	-webkit-transition-delay: .05s;
	transition-delay: .05s;
	-webkit-transition-duration: .35s;
	transition-duration: .35s;
	-webkit-transform: translate3d(0, 15px, 0);
	transform: translate3d(0, 15px, 0);
	display: block;
}

.blog-article-animation figure.effect-sadie figcaption::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .8);
	content: "";
	opacity: 0;
	-webkit-transform: translate3d(0, 50%, 0);
	transform: translate3d(0, 50%, 0);
}

.blog-article-animation figure.effect-sadie h2 {
	left: 0;
	width: 100%;
	color: #fff;
	padding: 2em;
	-webkit-transition: -webkit-transform .35s, color .35s;
	transition: transform .35s, color .35s;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
	text-align: center;
}

.blog-article-animation figure.effect-sadie figcaption::before, .blog-article-animation figure.effect-sadie .content {
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
}

.blog-article-animation figure.effect-sadie .content-excpert, .blog-article-animation figure.effect-sadie .content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2em;
	width: 100%;
	opacity: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.blog-article-animation figure.effect-sadie:hover figcaption::before, .blog-article-animation figure.effect-sadie:hover .content-excpert, .blog-article-animation figure.effect-sadie:hover .content {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.blog-article-animation figure.effect-sadie:hover h2 {
	position: relative;
	color: #000;
}

.blog-article-animation figure.effect-roxy img {
	opacity: 1;
	max-width: none;
	width: -webkit-calc(100% + 60px);
	width: calc(100% + 60px);
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
	-webkit-transform: translate3d(-20px, 0, 0);
	transform: translate3d(-20px, 0, 0);
}

.blog-article-animation figure.effect-roxy figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	content: "";
	opacity: 0;
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
	-webkit-transform: translate3d(-20px, 0, 0);
	transform: translate3d(-20px, 0, 0);
}

.blog-article-animation figure.effect-roxy figcaption {
	padding: 3em;
	text-align: left;
}

.blog-article-animation figure.effect-roxy h2 {
	color: #fff;
	padding: 6%;
}

.blog-article-animation figure.effect-roxy .content {
	opacity: 0;
	vertical-align: middle;
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
	-webkit-transform: translate3d(-10px, 0, 0);
	transform: translate3d(-10px, 0, 0);
}

.blog-article-animation figure.effect-roxy:hover img {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.blog-article-animation figure.effect-roxy:hover h2 {
	color: #161616;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.blog-article-animation figure.effect-roxy:hover figcaption::before, .blog-article-animation figure.effect-roxy:hover .content {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.blog-article-animation figure.effect-roxy:hover figcaption .table {
	background: rgba(255, 255, 255, .8);
	-webkit-transition: background .35s, -webkit-transform .35s;
	transition: background .35s, transform .35s;
}

.blog-article-animation figure.effect-oscar img {
	opacity: .9;
	-webkit-transition: opacity .35s;
	transition: opacity .35s;
}

.blog-article-animation figure.effect-oscar figcaption {
	padding: 3em;
	-webkit-transition: background-color .35s;
	transition: background-color .35s;
}

.blog-article-animation figure.effect-oscar figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	content: "";
}

.blog-article-animation figure.effect-oscar h2 {
	margin: 20% 0 10px 0;
	-webkit-transition: -webkit-transform .35s;
	transition: transform .35s;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

.blog-article-animation figure.effect-oscar figcaption::before, .blog-article-animation figure.effect-oscar .content {
	opacity: 0;
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.blog-article-animation figure.effect-oscar:hover h2 {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.blog-article-animation figure.effect-oscar:hover figcaption::before, .blog-article-animation figure.effect-oscar:hover .content {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.blog-article-animation figure.effect-oscar:hover img {
	opacity: .2;
}

.blog-article-animation figure.effect-ruby img {
	opacity: .7;
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

.blog-article-animation figure.effect-ruby:hover img {
	opacity: .2;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.blog-article-animation figure.effect-ruby h2 {
	margin-top: 20%;
	-webkit-transition: -webkit-transform .35s;
	transition: transform .35s;
	-webkit-transform: translate3d(0, 20px, 0);
	transform: translate3d(0, 20px, 0);
	padding-bottom: .5em;
}

.blog-article-animation figure.effect-ruby .content {
	margin: 1em 0 0;
	margin: auto;
	padding: 1.5em;
	opacity: 0;
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
	-webkit-transform: translate3d(0, 20px, 0) scale(1.1);
	transform: translate3d(0, 20px, 0) scale(1.1);
	width: calc(85% - 20px);
}

.blog-article-animation figure.effect-ruby:hover h2 {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.blog-article-animation figure.effect-ruby:hover .content {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0) scale(1);
	transform: translate3d(0, 0, 0) scale(1);
}

.blog-article-animation figure.effect-milo {
	background: #fff;
}

.blog-article-animation figure.effect-milo img {
	max-width: none;
	width: -webkit-calc(100% + 60px);
	width: calc(100% + 60px);
	opacity: 1;
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
	-webkit-transform: translate3d(-30px, 0, 0) scale(1.12);
	transform: translate3d(-30px, 0, 0) scale(1.12);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.blog-article-animation figure.effect-milo:hover img {
	opacity: .15;
	-webkit-transform: translate3d(0, 0, 0) scale(1);
	transform: translate3d(0, 0, 0) scale(1);
}

.blog-article-animation figure.effect-milo h2 {
	position: absolute;
	left: 0%;
	right: 0%;
	bottom: 0%;
	text-align: center;
	padding: 8%;
	background-color: #fff;
	-webkit-transition: background .35s ease;
	transition: background .35s ease;
}

.blog-article-animation figure.effect-milo:hover h2 {
	background: transparent;
}

.blog-article-animation figure.effect-milo .content {
	margin: 0 auto;
	padding-bottom: 18%;
	width: 80%;
	border-right: 0 solid;
	text-align: center;
	opacity: 0;
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
}

.blog-article-animation figure.effect-milo:hover .content {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.blog-article-animation figure.effect-mila {
	background: #fff;
}

.blog-article-animation figure.effect-mila img {
	max-width: none;
	width: -webkit-calc(100% + 60px);
	width: calc(100% + 60px);
	opacity: 1;
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
	-webkit-transform: translate3d(-30px, 0, 0) scale(1.12);
	transform: translate3d(-30px, 0, 0) scale(1.12);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.blog-article-animation figure.effect-mila:hover img {
	opacity: .15;
	-webkit-transform: translate3d(0, 0, 0) scale(1);
	transform: translate3d(0, 0, 0) scale(1);
}

.blog-article-animation figure.effect-mila h2 {
	position: absolute;
	left: 0%;
	right: 0%;
	top: 0%;
	text-align: center;
	padding: 8%;
	background-color: #fff;
	-webkit-transition: background .35s ease;
	transition: background .35s ease;
}

.blog-article-animation figure.effect-mila:hover h2 {
	background: transparent;
}

.blog-article-animation figure.effect-mila .content {
	margin: 0 auto;
	padding-top: 18%;
	width: 80%;
	border-right: 0 solid;
	text-align: center;
	opacity: 0;
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
}

.blog-article-animation figure.effect-mila:hover .content {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.blog-article-animation figure.effect-goliath {
	background: #fff;
}

.blog-article-animation figure.effect-goliath img, .blog-article-animation figure.effect-goliath h2 {
	-webkit-transition: -webkit-transform .35s;
	transition: transform .35s;
}

.blog-article-animation figure.effect-goliath img {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.blog-article-animation figure.effect-goliath h2, .blog-article-animation figure.effect-goliath p {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 25px;
	text-align: center;
	width: 100%;
}

.blog-article-animation figure.effect-goliath p {
	padding: 25px;
}

.blog-article-animation figure.effect-goliath p {
	text-transform: none;
	font-size: 90%;
	opacity: 0;
	-webkit-transition: opacity .35s, -webkit-transform .35s;
	transition: opacity .35s, transform .35s;
	-webkit-transform: translate3d(0, 50px, 0);
	transform: translate3d(0, 50px, 0);
}

.blog-article-animation figure.effect-goliath:hover img {
	-webkit-transform: translate3d(0, -80px, 0);
	transform: translate3d(0, -80px, 0);
}

.blog-article-animation figure.effect-goliath:hover h2 {
	-webkit-transform: translate3d(0, -100px, 0);
	transform: translate3d(0, -100px, 0);
}

.blog-article-animation figure.effect-goliath:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.icon-eye::before {
	content: "";
}

.icon-paper-clip::before {
	content: "";
}

.icon-heart::before {
	content: "";
}

.blog-article-animation figure.effect-zoe h2 {
	display: inline-block;
}

.blog-article-animation figure.effect-zoe:hover p.description {
	opacity: 1;
}

.blog-article-animation figure.effect-zoe:hover figcaption, .blog-article-animation figure.effect-zoe:hover h2, .blog-article-animation figure.effect-zoe:hover p.icon-links a {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.blog-article-animation figure.effect-zoe:hover h2 {
	-webkit-transition-delay: .05s;
	transition-delay: .05s;
}

.blog-article-animation figure.effect-zoe:hover p.icon-links a:nth-child(3) {
	-webkit-transition-delay: .1s;
	transition-delay: .1s;
}

.blog-article-animation figure.effect-zoe:hover p.icon-links a:nth-child(2) {
	-webkit-transition-delay: .15s;
	transition-delay: .15s;
}

.blog-article-animation figure.effect-zoe:hover p.icon-links a:first-child {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}

@media screen and (max-width:50em) {
	.blog-article-animation figure .content {
		padding: 0;
		text-align: center;
	}
	
	.blog-article-animation figure {
		display: inline-block;
		float: none;
		width: 100%;
	}
}

.blog-article-animation figure figcaption .tablefull h2 {
	margin-top: 0;
	padding: 0;
}

.blog-article-animation figure.effect-sarah .tablefull h2 {
	padding: .5em 0;
}

.blog-article-animation .effect-roxy .tablefull h2 {
	padding: 20px;
}

.blog-article-animation figure:hover figcaption {
	-webkit-transition: background .35s, -webkit-transform .35s;
	transition: background .35s, transform .35s;
}

@media screen and (max-width:768px) {
	.blog-article-animation figure figcaption .tablefull h2 {
		font-size: 1.3rem;
	}
}
