.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}

@-webkit-keyframes bounce {
	from, 20%, 53%, 80%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	40%, 43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		-webkit-transform: translate3d(0, -6px, 0);
		transform: translate3d(0, -6px, 0);
	}

	90% {
		-webkit-transform: translate3d(0,-4px,0);
		transform: translate3d(0,-2px,0);
	}
}

@keyframes bounce {
	from, 20%, 53%, 80%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	40%, 43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		-webkit-transform: translate3d(0, -6px, 0);
		transform: translate3d(0, -6px, 0);
	}

	90% {
		-webkit-transform: translate3d(0,-4px,0);
		transform: translate3d(0,-2px,0);
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}

@-webkit-keyframes flash {
	from, 50%, to {
		opacity: 1;
	}

	25%, 75% {
		opacity: 0;
	}
}

@keyframes flash {
	from, 50%, to {
		opacity: 1;
	}

	25%, 75% {
		opacity: 0;
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
	from {
		-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);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes pulse {
	from {
		-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);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
}

@-webkit-keyframes rubberBand {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	30% {
		-webkit-transform: scale3d(1.25, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1);
	}

	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1);
	}

	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.85, 1);
	}

	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1);
	}

	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes rubberBand {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	30% {
		-webkit-transform: scale3d(1.25, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1);
	}

	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1);
	}

	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.85, 1);
	}

	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1);
	}

	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand;
}

@-webkit-keyframes shake {
	from, to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translate3d(-2px, 0, 0);
		transform: translate3d(-2px, 0, 0);
	}

	20%, 40%, 60%, 80% {
		-webkit-transform: translate3d(2px, 0, 0);
		transform: translate3d(2px, 0, 0);
	}
}

@keyframes shake {
	from, to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translate3d(-2px, 0, 0);
		transform: translate3d(-2px, 0, 0);
	}

	20%, 40%, 60%, 80% {
		-webkit-transform: translate3d(2px, 0, 0);
		transform: translate3d(2px, 0, 0);
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake;
}

@-webkit-keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg);
	}

	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg);
	}

	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg);
	}

	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg);
	}

	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg);
	}

	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg);
	}

	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg);
	}

	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg);
	}

	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.headShake {
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: headShake;
	animation-name: headShake;
}

@-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);
	}

	to {
		-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);
	}

	to {
		-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 {
	from {
		-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);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes tada {
	from {
		-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);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
	from {
		-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);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes wobble {
	from {
		-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);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble;
}

@-webkit-keyframes jello {
	from, 11.1%, to {
		-webkit-transform: none;
		transform: none;
	}

	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}

	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}

	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}

	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}

	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}

	77.7% {
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}

	88.8% {
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}

@keyframes jello {
	from, 11.1%, to {
		-webkit-transform: none;
		transform: none;
	}

	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}

	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}

	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}

	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}

	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}

	77.7% {
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}

	88.8% {
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}

.jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	-webkit-transform-origin: center;
	transform-origin: center;
}

@-webkit-keyframes bounceIn {
	from, 20%, 40%, 60%, 80%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}

	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9);
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}

	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97);
	}

	to {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes bounceIn {
	from, 20%, 40%, 60%, 80%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}

	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9);
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}

	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97);
	}

	to {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInDown {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}

	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}

	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInLeft {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}

	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}

	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	from {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInRight {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	from {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes bounceInUp {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}

	to {
		-webkit-transform: 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);
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
}

@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9);
	}

	50%, 55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}

	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}

	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

@keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}

	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}

	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDownBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInLeftBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRightBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUpBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

@keyframes fadeOutDown {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

@keyframes fadeOutDownBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes fadeOutLeft {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

@keyframes fadeOutLeftBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

@keyframes fadeOutRight {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

@keyframes fadeOutRightBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

@keyframes fadeOutUp {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

@keyframes fadeOutUpBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
	from {
		-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;
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

@keyframes flip {
	from {
		-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;
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip;
}

@-webkit-keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-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);
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

@keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-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);
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
}

@-webkit-keyframes flipInY {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-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);
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

@keyframes flipInY {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-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);
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
	from {
		-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;
	}

	to {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}

@keyframes flipOutX {
	from {
		-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;
	}

	to {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
	from {
		-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;
	}

	to {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}

@keyframes flipOutY {
	from {
		-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;
	}

	to {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}

.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
	from {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}

	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1;
	}

	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes lightSpeedIn {
	from {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}

	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1;
	}

	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
	from {
		opacity: 1;
	}

	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}

@keyframes lightSpeedOut {
	from {
		opacity: 1;
	}

	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateIn {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1;
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0;
	}
}

@keyframes rotateOut {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1;
	}

	to {
		-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 {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}

	to {
		-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 {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}

	to {
		-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 {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}

	to {
		-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 {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}

	to {
		-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 {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}

	to {
		-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 {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}

	to {
		-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 {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}

	to {
		-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 {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}

	to {
		-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;
	}

	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}

@keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	20%, 60% {
		-webkit-transform: 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;
	}

	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}

.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes rollIn {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
	from {
		opacity: 1;
	}

	to {
		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 {
	from {
		opacity: 1;
	}

	to {
		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 {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}

	50% {
		opacity: 1;
	}
}

@keyframes zoomIn {
	from {
		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 {
	from {
		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(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

@keyframes zoomInDown {
	from {
		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(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
	from {
		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(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

@keyframes zoomInLeft {
	from {
		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(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
	from {
		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(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

@keyframes zoomInRight {
	from {
		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(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
	from {
		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(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

@keyframes zoomInUp {
	from {
		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(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
	from {
		opacity: 1;
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}

	to {
		opacity: 0;
	}
}

@keyframes zoomOut {
	from {
		opacity: 1;
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}

	to {
		opacity: 0;
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}

.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center;
	}
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center;
	}
}

.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

@keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes slideOutLeft {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

@keyframes slideOutRight {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

@keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}

.animated-letter { display: inline-block; white-space: pre; }
.animated-letter-sim { display: inline-block; white-space: pre; }
.plain-text.animated { display: inline-block; }
.word-container { display: inline-block; }
.animated-letter:nth-child(1) { animation-delay: 0.0s; }
.animated-letter:nth-child(2) { animation-delay: 0.1s; }
.animated-letter:nth-child(3) { animation-delay: 0.2s; }
.animated-letter:nth-child(4) { animation-delay: 0.3s; }
.animated-letter:nth-child(5) { animation-delay: 0.4s; }
.animated-letter:nth-child(6) { animation-delay: 0.5s; }
.animated-letter:nth-child(7) { animation-delay: 0.6s; }
.animated-letter:nth-child(8) { animation-delay: 0.7s; }
.animated-letter:nth-child(9) { animation-delay: 0.8s; }
.animated-letter:nth-child(10) { animation-delay: 0.9s; }
.animated-letter:nth-child(11) { animation-delay: 1.0s; }
.animated-letter:nth-child(12) { animation-delay: 1.1s; }
.animated-letter:nth-child(13) { animation-delay: 1.2s; }
.animated-letter:nth-child(14) { animation-delay: 1.3s; }
.animated-letter:nth-child(15) { animation-delay: 1.4s; }
.animated-letter:nth-child(16) { animation-delay: 1.5s; }
.animated-letter:nth-child(17) { animation-delay: 1.6s; }
.animated-letter:nth-child(18) { animation-delay: 1.7s; }
.animated-letter:nth-child(19) { animation-delay: 1.8s; }
.animated-letter:nth-child(20) { animation-delay: 1.9s; }
.animated-letter:nth-child(21) { animation-delay: 2.0s; }
.animated-letter:nth-child(22) { animation-delay: 2.1s; }
.animated-letter:nth-child(23) { animation-delay: 2.2s; }
.animated-letter:nth-child(24) { animation-delay: 2.3s; }
.animated-letter:nth-child(25) { animation-delay: 2.4s; }
.animated-letter:nth-child(26) { animation-delay: 2.5s; }
.animated-letter:nth-child(27) { animation-delay: 2.6s; }
.animated-letter:nth-child(28) { animation-delay: 2.7s; }
.animated-letter:nth-child(29) { animation-delay: 2.8s; }
.animated-letter:nth-child(30) { animation-delay: 2.9s; }
.animated-letter:nth-child(31) { animation-delay: 3.0s; }
.animated-letter:nth-child(32) { animation-delay: 3.1s; }
.animated-letter:nth-child(33) { animation-delay: 3.2s; }
.animated-letter:nth-child(34) { animation-delay: 3.3s; }
.animated-letter:nth-child(35) { animation-delay: 3.4s; }
.animated-letter:nth-child(36) { animation-delay: 3.5s; }
.animated-letter:nth-child(37) { animation-delay: 3.6s; }
.animated-letter:nth-child(38) { animation-delay: 3.7s; }
.animated-letter:nth-child(39) { animation-delay: 3.8s; }
.animated-letter:nth-child(40) { animation-delay: 3.9s; }
.animated-letter:nth-child(41) { animation-delay: 4s; }
.animated-letter:nth-child(42) { animation-delay: 4.1s; }
.animated-letter:nth-child(43) { animation-delay: 4.2s; }
.animated-letter:nth-child(44) { animation-delay: 4.3s; }
.animated-letter:nth-child(45) { animation-delay: 4.4s; }
.animated-letter:nth-child(46) { animation-delay: 4.5s; }
.animated-letter:nth-child(47) { animation-delay: 4.6s; }
.animated-letter:nth-child(48) { animation-delay: 4.7s; }
.animated-letter:nth-child(49) { animation-delay: 4.8s; }
.animated-letter:nth-child(50) { animation-delay: 4.9s; }
.animated-letter:nth-child(51) { animation-delay: 5s; }
.animated-letter:nth-child(52) { animation-delay: 5.1s; }
.animated-letter:nth-child(53) { animation-delay: 5.2s; }
.animated-letter:nth-child(54) { animation-delay: 5.3s; }
.animated-letter:nth-child(55) { animation-delay: 5.4s; }
.animated-letter:nth-child(56) { animation-delay: 5.5s; }
.animated-letter:nth-child(57) { animation-delay: 5.6s; }
.animated-letter:nth-child(58) { animation-delay: 5.7s; }
.animated-letter:nth-child(59) { animation-delay: 5.8s; }
.animated-letter:nth-child(60) { animation-delay: 5.9s; }
.animated-letter:nth-child(61) { animation-delay: 6s; }
.animated-letter:nth-child(62) { animation-delay: 6.1s; }
.animated-letter:nth-child(63) { animation-delay: 6.2s; }
.animated-letter:nth-child(64) { animation-delay: 6.3s; }
.animated-letter:nth-child(65) { animation-delay: 6.4s; }
.animated-letter:nth-child(66) { animation-delay: 6.5s; }
.animated-letter:nth-child(67) { animation-delay: 6.6s; }
.animated-letter:nth-child(68) { animation-delay: 6.7s; }
.animated-letter:nth-child(69) { animation-delay: 6.8s; }
.animated-letter:nth-child(70) { animation-delay: 6.9s; }
.animated-letter:nth-child(71) { animation-delay: 7s; }
.animated-letter:nth-child(72) { animation-delay: 7.1s; }
.animated-letter:nth-child(73) { animation-delay: 7.2s; }
.animated-letter:nth-child(74) { animation-delay: 7.3s; }
.animated-letter:nth-child(75) { animation-delay: 7.4s; }
.animated-letter:nth-child(76) { animation-delay: 7.5s; }
.animated-letter:nth-child(77) { animation-delay: 7.6s; }
.animated-letter:nth-child(78) { animation-delay: 7.7s; }
.animated-letter:nth-child(79) { animation-delay: 7.8s; }
.animated-letter:nth-child(80) { animation-delay: 7.9s; }
.animated-letter:nth-child(81) { animation-delay: 8s; }
.animated-letter:nth-child(82) { animation-delay: 8.1s; }
.animated-letter:nth-child(83) { animation-delay: 8.2s; }
.animated-letter:nth-child(84) { animation-delay: 8.3s; }
.animated-letter:nth-child(85) { animation-delay: 8.4s; }
.animated-letter:nth-child(86) { animation-delay: 8.5s; }
.animated-letter:nth-child(87) { animation-delay: 8.6s; }
.animated-letter:nth-child(88) { animation-delay: 8.7s; }
.animated-letter:nth-child(89) { animation-delay: 8.8s; }
.animated-letter:nth-child(90) { animation-delay: 8.9s; }
.animated-letter:nth-child(91) { animation-delay: 9s; }
.animated-letter:nth-child(92) { animation-delay: 9.1s; }
.animated-letter:nth-child(93) { animation-delay: 9.2s; }
.animated-letter:nth-child(94) { animation-delay: 9.3s; }
.animated-letter:nth-child(95) { animation-delay: 9.4s; }
.animated-letter:nth-child(96) { animation-delay: 9.5s; }
.animated-letter:nth-child(97) { animation-delay: 9.6s; }
.animated-letter:nth-child(98) { animation-delay: 9.7s; }
.animated-letter:nth-child(99) { animation-delay: 9.8s; }
.animated-letter:nth-child(100) { animation-delay: 9.9s; }
.animated-letter:nth-child(101) { animation-delay: 10s; }
.animated-letter:nth-child(102) { animation-delay: 10.1s; }
.animated-letter:nth-child(103) { animation-delay: 10.2s; }
.animated-letter:nth-child(104) { animation-delay: 10.3s; }
.animated-letter:nth-child(105) { animation-delay: 10.4s; }
.animated-letter:nth-child(106) { animation-delay: 10.5s; }
.animated-letter:nth-child(107) { animation-delay: 10.6s; }
.animated-letter:nth-child(108) { animation-delay: 10.7s; }
.animated-letter:nth-child(109) { animation-delay: 10.8s; }
.animated-letter:nth-child(110) { animation-delay: 10.9s; }
.animated-letter:nth-child(111) { animation-delay: 11s; }
.animated-letter:nth-child(112) { animation-delay: 11.1s; }
.animated-letter:nth-child(113) { animation-delay: 11.2s; }
.animated-letter:nth-child(114) { animation-delay: 11.3s; }
.animated-letter:nth-child(115) { animation-delay: 11.4s; }
.animated-letter:nth-child(116) { animation-delay: 11.5s; }
.animated-letter:nth-child(117) { animation-delay: 11.6s; }
.animated-letter:nth-child(118) { animation-delay: 11.7s; }
.animated-letter:nth-child(119) { animation-delay: 11.8s; }
.animated-letter:nth-child(120) { animation-delay: 11.9s; }
.animated-letter:nth-child(121) { animation-delay: 12s; }
.animated-letter:nth-child(122) { animation-delay: 12.1s; }
.animated-letter:nth-child(123) { animation-delay: 12.2s; }
.animated-letter:nth-child(124) { animation-delay: 12.3s; }
.animated-letter:nth-child(125) { animation-delay: 12.4s; }
.animated-letter:nth-child(126) { animation-delay: 12.5s; }
.animated-letter:nth-child(127) { animation-delay: 12.6s; }
.animated-letter:nth-child(128) { animation-delay: 12.7s; }
.animated-letter:nth-child(129) { animation-delay: 12.8s; }
.animated-letter:nth-child(130) { animation-delay: 12.9s; }
.animated-letter:nth-child(131) { animation-delay: 13s; }
.animated-letter:nth-child(132) { animation-delay: 13.1s; }
.animated-letter:nth-child(133) { animation-delay: 13.2s; }
.animated-letter:nth-child(134) { animation-delay: 13.3s; }
.animated-letter:nth-child(135) { animation-delay: 13.4s; }
.animated-letter:nth-child(136) { animation-delay: 13.5s; }
.animated-letter:nth-child(137) { animation-delay: 13.6s; }
.animated-letter:nth-child(138) { animation-delay: 13.7s; }
.animated-letter:nth-child(139) { animation-delay: 13.8s; }
.animated-letter:nth-child(140) { animation-delay: 13.9s; }
.animated-letter:nth-child(141) { animation-delay: 14s; }
.animated-letter:nth-child(142) { animation-delay: 14.1s; }
.animated-letter:nth-child(143) { animation-delay: 14.2s; }
.animated-letter:nth-child(144) { animation-delay: 14.3s; }
.animated-letter:nth-child(145) { animation-delay: 14.4s; }
.animated-letter:nth-child(146) { animation-delay: 14.5s; }
.animated-letter:nth-child(147) { animation-delay: 14.6s; }
.animated-letter:nth-child(148) { animation-delay: 14.7s; }
.animated-letter:nth-child(149) { animation-delay: 14.8s; }
.animated-letter:nth-child(150) { animation-delay: 14.9s; }
.animated-letter:nth-child(151) { animation-delay: 15s; }
.animated-letter:nth-child(152) { animation-delay: 15.1s; }
.animated-letter:nth-child(153) { animation-delay: 15.2s; }
.animated-letter:nth-child(154) { animation-delay: 15.3s; }
.animated-letter:nth-child(155) { animation-delay: 15.4s; }
.animated-letter:nth-child(156) { animation-delay: 15.5s; }
.animated-letter:nth-child(157) { animation-delay: 15.6s; }
.animated-letter:nth-child(158) { animation-delay: 15.7s; }
.animated-letter:nth-child(159) { animation-delay: 15.8s; }
.animated-letter:nth-child(160) { animation-delay: 15.9s; }
.animated-letter:nth-child(161) { animation-delay: 16s; }
.animated-letter:nth-child(162) { animation-delay: 16.1s; }
.animated-letter:nth-child(163) { animation-delay: 16.2s; }
.animated-letter:nth-child(164) { animation-delay: 16.3s; }
.animated-letter:nth-child(165) { animation-delay: 16.4s; }
.animated-letter:nth-child(166) { animation-delay: 16.5s; }
.animated-letter:nth-child(167) { animation-delay: 16.6s; }
.animated-letter:nth-child(168) { animation-delay: 16.7s; }
.animated-letter:nth-child(169) { animation-delay: 16.8s; }
.animated-letter:nth-child(170) { animation-delay: 16.9s; }
.animated-letter:nth-child(171) { animation-delay: 17s; }
.animated-letter:nth-child(172) { animation-delay: 17.1s; }
.animated-letter:nth-child(173) { animation-delay: 17.2s; }
.animated-letter:nth-child(174) { animation-delay: 17.3s; }
.animated-letter:nth-child(175) { animation-delay: 17.4s; }
.animated-letter:nth-child(176) { animation-delay: 17.5s; }
.animated-letter:nth-child(177) { animation-delay: 17.6s; }
.animated-letter:nth-child(178) { animation-delay: 17.7s; }
.animated-letter:nth-child(179) { animation-delay: 17.8s; }
.animated-letter:nth-child(180) { animation-delay: 17.9s; }
.animated-letter:nth-child(181) { animation-delay: 18s; }
.animated-letter:nth-child(182) { animation-delay: 18.1s; }
.animated-letter:nth-child(183) { animation-delay: 18.2s; }
.animated-letter:nth-child(184) { animation-delay: 18.3s; }
.animated-letter:nth-child(185) { animation-delay: 18.4s; }
.animated-letter:nth-child(186) { animation-delay: 18.5s; }
.animated-letter:nth-child(187) { animation-delay: 18.6s; }
.animated-letter:nth-child(188) { animation-delay: 18.7s; }
.animated-letter:nth-child(189) { animation-delay: 18.8s; }
.animated-letter:nth-child(190) { animation-delay: 18.9s; }
.animated-letter:nth-child(191) { animation-delay: 19s; }
.animated-letter:nth-child(192) { animation-delay: 19.1s; }
.animated-letter:nth-child(193) { animation-delay: 19.2s; }
.animated-letter:nth-child(194) { animation-delay: 19.3s; }
.animated-letter:nth-child(195) { animation-delay: 19.4s; }
.animated-letter:nth-child(196) { animation-delay: 19.5s; }
.animated-letter:nth-child(197) { animation-delay: 19.6s; }
.animated-letter:nth-child(198) { animation-delay: 19.7s; }
.animated-letter:nth-child(199) { animation-delay: 19.8s; }
.animated-letter:nth-child(200) { animation-delay: 19.9s; }
.animated-letter:nth-child(201) { animation-delay: 20s; }
.animated-letter:nth-child(202) { animation-delay: 20.1s; }
.animated-letter:nth-child(203) { animation-delay: 20.2s; }
.animated-letter:nth-child(204) { animation-delay: 20.3s; }
.animated-letter:nth-child(205) { animation-delay: 20.4s; }
.animated-letter:nth-child(206) { animation-delay: 20.5s; }
.animated-letter:nth-child(207) { animation-delay: 20.6s; }
.animated-letter:nth-child(208) { animation-delay: 20.7s; }
.animated-letter:nth-child(209) { animation-delay: 20.8s; }
.animated-letter:nth-child(210) { animation-delay: 20.9s; }
.animated-letter:nth-child(211) { animation-delay: 21s; }
.animated-letter:nth-child(212) { animation-delay: 21.1s; }
.animated-letter:nth-child(213) { animation-delay: 21.2s; }
.animated-letter:nth-child(214) { animation-delay: 21.3s; }
.animated-letter:nth-child(215) { animation-delay: 21.4s; }
.animated-letter:nth-child(216) { animation-delay: 21.5s; }
.animated-letter:nth-child(217) { animation-delay: 21.6s; }
.animated-letter:nth-child(218) { animation-delay: 21.7s; }
.animated-letter:nth-child(219) { animation-delay: 21.8s; }
.animated-letter:nth-child(220) { animation-delay: 21.9s; }
.animated-letter:nth-child(221) { animation-delay: 22s; }
.animated-letter:nth-child(222) { animation-delay: 22.1s; }
.animated-letter:nth-child(223) { animation-delay: 22.2s; }
.animated-letter:nth-child(224) { animation-delay: 22.3s; }
.animated-letter:nth-child(225) { animation-delay: 22.4s; }
.animated-letter:nth-child(226) { animation-delay: 22.5s; }
.animated-letter:nth-child(227) { animation-delay: 22.6s; }
.animated-letter:nth-child(228) { animation-delay: 22.7s; }
.animated-letter:nth-child(229) { animation-delay: 22.8s; }
.animated-letter:nth-child(230) { animation-delay: 22.9s; }
.animated-letter:nth-child(231) { animation-delay: 23s; }
.animated-letter:nth-child(232) { animation-delay: 23.1s; }
.animated-letter:nth-child(233) { animation-delay: 23.2s; }
.animated-letter:nth-child(234) { animation-delay: 23.3s; }
.animated-letter:nth-child(235) { animation-delay: 23.4s; }
.animated-letter:nth-child(236) { animation-delay: 23.5s; }
.animated-letter:nth-child(237) { animation-delay: 23.6s; }
.animated-letter:nth-child(238) { animation-delay: 23.7s; }
.animated-letter:nth-child(239) { animation-delay: 23.8s; }
.animated-letter:nth-child(240) { animation-delay: 23.9s; }
.animated-letter:nth-child(241) { animation-delay: 24s; }
.animated-letter:nth-child(242) { animation-delay: 24.1s; }
.animated-letter:nth-child(243) { animation-delay: 24.2s; }
.animated-letter:nth-child(244) { animation-delay: 24.3s; }
.animated-letter:nth-child(245) { animation-delay: 24.4s; }
.animated-letter:nth-child(246) { animation-delay: 24.5s; }
.animated-letter:nth-child(247) { animation-delay: 24.6s; }
.animated-letter:nth-child(248) { animation-delay: 24.7s; }
.animated-letter:nth-child(249) { animation-delay: 24.8s; }
.animated-letter:nth-child(250) { animation-delay: 24.9s; }
.animated-letter:nth-child(251) { animation-delay: 25s; }
.animated-letter:nth-child(252) { animation-delay: 25.1s; }
.animated-letter:nth-child(253) { animation-delay: 25.2s; }
.animated-letter:nth-child(254) { animation-delay: 25.3s; }
.animated-letter:nth-child(255) { animation-delay: 25.4s; }
.animated-letter:nth-child(256) { animation-delay: 25.5s; }
.animated-letter:nth-child(257) { animation-delay: 25.6s; }
.animated-letter:nth-child(258) { animation-delay: 25.7s; }
.animated-letter:nth-child(259) { animation-delay: 25.8s; }
.animated-letter:nth-child(260) { animation-delay: 25.9s; }
.animated-letter:nth-child(261) { animation-delay: 26s; }
.animated-letter:nth-child(262) { animation-delay: 26.1s; }
.animated-letter:nth-child(263) { animation-delay: 26.2s; }
.animated-letter:nth-child(264) { animation-delay: 26.3s; }
.animated-letter:nth-child(265) { animation-delay: 26.4s; }
.animated-letter:nth-child(266) { animation-delay: 26.5s; }
.animated-letter:nth-child(267) { animation-delay: 26.6s; }
.animated-letter:nth-child(268) { animation-delay: 26.7s; }
.animated-letter:nth-child(269) { animation-delay: 26.8s; }
.animated-letter:nth-child(270) { animation-delay: 26.9s; }
.animated-letter:nth-child(271) { animation-delay: 27s; }
.animated-letter:nth-child(272) { animation-delay: 27.1s; }
.animated-letter:nth-child(273) { animation-delay: 27.2s; }
.animated-letter:nth-child(274) { animation-delay: 27.3s; }
.animated-letter:nth-child(275) { animation-delay: 27.4s; }
.animated-letter:nth-child(276) { animation-delay: 27.5s; }
.animated-letter:nth-child(277) { animation-delay: 27.6s; }
.animated-letter:nth-child(278) { animation-delay: 27.7s; }
.animated-letter:nth-child(279) { animation-delay: 27.8s; }
.animated-letter:nth-child(280) { animation-delay: 27.9s; }
.animated-letter:nth-child(281) { animation-delay: 28s; }
.animated-letter:nth-child(282) { animation-delay: 28.1s; }
.animated-letter:nth-child(283) { animation-delay: 28.2s; }
.animated-letter:nth-child(284) { animation-delay: 28.3s; }
.animated-letter:nth-child(285) { animation-delay: 28.4s; }
.animated-letter:nth-child(286) { animation-delay: 28.5s; }
.animated-letter:nth-child(287) { animation-delay: 28.6s; }
.animated-letter:nth-child(288) { animation-delay: 28.7s; }
.animated-letter:nth-child(289) { animation-delay: 28.8s; }
.animated-letter:nth-child(290) { animation-delay: 28.9s; }
.animated-letter:nth-child(291) { animation-delay: 29s; }
.animated-letter:nth-child(292) { animation-delay: 29.1s; }
.animated-letter:nth-child(293) { animation-delay: 29.2s; }
.animated-letter:nth-child(294) { animation-delay: 29.3s; }
.animated-letter:nth-child(295) { animation-delay: 29.4s; }
.animated-letter:nth-child(296) { animation-delay: 29.5s; }
.animated-letter:nth-child(297) { animation-delay: 29.6s; }
.animated-letter:nth-child(298) { animation-delay: 29.7s; }
.animated-letter:nth-child(299) { animation-delay: 29.8s; }
.animated-letter:nth-child(300) { animation-delay: 29.9s; }

.animated-letter:nth-child(1) { -webkit-animation-delay: 0.0s; }
.animated-letter:nth-child(2) { -webkit-animation-delay: 0.1s; }
.animated-letter:nth-child(3) { -webkit-animation-delay: 0.2s; }
.animated-letter:nth-child(4) { -webkit-animation-delay: 0.3s; }
.animated-letter:nth-child(5) { -webkit-animation-delay: 0.4s; }
.animated-letter:nth-child(6) { -webkit-animation-delay: 0.5s; }
.animated-letter:nth-child(7) { -webkit-animation-delay: 0.6s; }
.animated-letter:nth-child(8) { -webkit-animation-delay: 0.7s; }
.animated-letter:nth-child(9) { -webkit-animation-delay: 0.8s; }
.animated-letter:nth-child(10) { -webkit-animation-delay: 0.9s; }
.animated-letter:nth-child(11) { -webkit-animation-delay: 1.0s; }
.animated-letter:nth-child(12) { -webkit-animation-delay: 1.1s; }
.animated-letter:nth-child(13) { -webkit-animation-delay: 1.2s; }
.animated-letter:nth-child(14) { -webkit-animation-delay: 1.3s; }
.animated-letter:nth-child(15) { -webkit-animation-delay: 1.4s; }
.animated-letter:nth-child(16) { -webkit-animation-delay: 1.5s; }
.animated-letter:nth-child(17) { -webkit-animation-delay: 1.6s; }
.animated-letter:nth-child(18) { -webkit-animation-delay: 1.7s; }
.animated-letter:nth-child(19) { -webkit-animation-delay: 1.8s; }
.animated-letter:nth-child(20) { -webkit-animation-delay: 1.9s; }
.animated-letter:nth-child(21) { -webkit-animation-delay: 2.0s; }
.animated-letter:nth-child(22) { -webkit-animation-delay: 2.1s; }
.animated-letter:nth-child(23) { -webkit-animation-delay: 2.2s; }
.animated-letter:nth-child(24) { -webkit-animation-delay: 2.3s; }
.animated-letter:nth-child(25) { -webkit-animation-delay: 2.4s; }
.animated-letter:nth-child(26) { -webkit-animation-delay: 2.5s; }
.animated-letter:nth-child(27) { -webkit-animation-delay: 2.6s; }
.animated-letter:nth-child(28) { -webkit-animation-delay: 2.7s; }
.animated-letter:nth-child(29) { -webkit-animation-delay: 2.8s; }
.animated-letter:nth-child(30) { -webkit-animation-delay: 2.9s; }
.animated-letter:nth-child(31) { -webkit-animation-delay: 3.0s; }
.animated-letter:nth-child(32) { -webkit-animation-delay: 3.1s; }
.animated-letter:nth-child(33) { -webkit-animation-delay: 3.2s; }
.animated-letter:nth-child(34) { -webkit-animation-delay: 3.3s; }
.animated-letter:nth-child(35) { -webkit-animation-delay: 3.4s; }
.animated-letter:nth-child(36) { -webkit-animation-delay: 3.5s; }
.animated-letter:nth-child(37) { -webkit-animation-delay: 3.6s; }
.animated-letter:nth-child(38) { -webkit-animation-delay: 3.7s; }
.animated-letter:nth-child(39) { -webkit-animation-delay: 3.8s; }
.animated-letter:nth-child(40) { -webkit-animation-delay: 3.9s; }
.animated-letter:nth-child(41) { -webkit-animation-delay: 4s; }
.animated-letter:nth-child(42) { -webkit-animation-delay: 4.1s; }
.animated-letter:nth-child(43) { -webkit-animation-delay: 4.2s; }
.animated-letter:nth-child(44) { -webkit-animation-delay: 4.3s; }
.animated-letter:nth-child(45) { -webkit-animation-delay: 4.4s; }
.animated-letter:nth-child(46) { -webkit-animation-delay: 4.5s; }
.animated-letter:nth-child(47) { -webkit-animation-delay: 4.6s; }
.animated-letter:nth-child(48) { -webkit-animation-delay: 4.7s; }
.animated-letter:nth-child(49) { -webkit-animation-delay: 4.8s; }
.animated-letter:nth-child(50) { -webkit-animation-delay: 4.9s; }
.animated-letter:nth-child(51) { -webkit-animation-delay: 5s; }
.animated-letter:nth-child(52) { -webkit-animation-delay: 5.1s; }
.animated-letter:nth-child(53) { -webkit-animation-delay: 5.2s; }
.animated-letter:nth-child(54) { -webkit-animation-delay: 5.3s; }
.animated-letter:nth-child(55) { -webkit-animation-delay: 5.4s; }
.animated-letter:nth-child(56) { -webkit-animation-delay: 5.5s; }
.animated-letter:nth-child(57) { -webkit-animation-delay: 5.6s; }
.animated-letter:nth-child(58) { -webkit-animation-delay: 5.7s; }
.animated-letter:nth-child(59) { -webkit-animation-delay: 5.8s; }
.animated-letter:nth-child(60) { -webkit-animation-delay: 5.9s; }
.animated-letter:nth-child(61) { -webkit-animation-delay: 6s; }
.animated-letter:nth-child(62) { -webkit-animation-delay: 6.1s; }
.animated-letter:nth-child(63) { -webkit-animation-delay: 6.2s; }
.animated-letter:nth-child(64) { -webkit-animation-delay: 6.3s; }
.animated-letter:nth-child(65) { -webkit-animation-delay: 6.4s; }
.animated-letter:nth-child(66) { -webkit-animation-delay: 6.5s; }
.animated-letter:nth-child(67) { -webkit-animation-delay: 6.6s; }
.animated-letter:nth-child(68) { -webkit-animation-delay: 6.7s; }
.animated-letter:nth-child(69) { -webkit-animation-delay: 6.8s; }
.animated-letter:nth-child(70) { -webkit-animation-delay: 6.9s; }
.animated-letter:nth-child(71) { -webkit-animation-delay: 7s; }
.animated-letter:nth-child(72) { -webkit-animation-delay: 7.1s; }
.animated-letter:nth-child(73) { -webkit-animation-delay: 7.2s; }
.animated-letter:nth-child(74) { -webkit-animation-delay: 7.3s; }
.animated-letter:nth-child(75) { -webkit-animation-delay: 7.4s; }
.animated-letter:nth-child(76) { -webkit-animation-delay: 7.5s; }
.animated-letter:nth-child(77) { -webkit-animation-delay: 7.6s; }
.animated-letter:nth-child(78) { -webkit-animation-delay: 7.7s; }
.animated-letter:nth-child(79) { -webkit-animation-delay: 7.8s; }
.animated-letter:nth-child(80) { -webkit-animation-delay: 7.9s; }
.animated-letter:nth-child(81) { -webkit-animation-delay: 8s; }
.animated-letter:nth-child(82) { -webkit-animation-delay: 8.1s; }
.animated-letter:nth-child(83) { -webkit-animation-delay: 8.2s; }
.animated-letter:nth-child(84) { -webkit-animation-delay: 8.3s; }
.animated-letter:nth-child(85) { -webkit-animation-delay: 8.4s; }
.animated-letter:nth-child(86) { -webkit-animation-delay: 8.5s; }
.animated-letter:nth-child(87) { -webkit-animation-delay: 8.6s; }
.animated-letter:nth-child(88) { -webkit-animation-delay: 8.7s; }
.animated-letter:nth-child(89) { -webkit-animation-delay: 8.8s; }
.animated-letter:nth-child(90) { -webkit-animation-delay: 8.9s; }
.animated-letter:nth-child(91) { -webkit-animation-delay: 9s; }
.animated-letter:nth-child(92) { -webkit-animation-delay: 9.1s; }
.animated-letter:nth-child(93) { -webkit-animation-delay: 9.2s; }
.animated-letter:nth-child(94) { -webkit-animation-delay: 9.3s; }
.animated-letter:nth-child(95) { -webkit-animation-delay: 9.4s; }
.animated-letter:nth-child(96) { -webkit-animation-delay: 9.5s; }
.animated-letter:nth-child(97) { -webkit-animation-delay: 9.6s; }
.animated-letter:nth-child(98) { -webkit-animation-delay: 9.7s; }
.animated-letter:nth-child(99) { -webkit-animation-delay: 9.8s; }
.animated-letter:nth-child(100) { -webkit-animation-delay: 9.9s; }
.animated-letter:nth-child(101) { -webkit-animation-delay: 10s; }
.animated-letter:nth-child(102) { -webkit-animation-delay: 10.1s; }
.animated-letter:nth-child(103) { -webkit-animation-delay: 10.2s; }
.animated-letter:nth-child(104) { -webkit-animation-delay: 10.3s; }
.animated-letter:nth-child(105) { -webkit-animation-delay: 10.4s; }
.animated-letter:nth-child(106) { -webkit-animation-delay: 10.5s; }
.animated-letter:nth-child(107) { -webkit-animation-delay: 10.6s; }
.animated-letter:nth-child(108) { -webkit-animation-delay: 10.7s; }
.animated-letter:nth-child(109) { -webkit-animation-delay: 10.8s; }
.animated-letter:nth-child(110) { -webkit-animation-delay: 10.9s; }
.animated-letter:nth-child(111) { -webkit-animation-delay: 11s; }
.animated-letter:nth-child(112) { -webkit-animation-delay: 11.1s; }
.animated-letter:nth-child(113) { -webkit-animation-delay: 11.2s; }
.animated-letter:nth-child(114) { -webkit-animation-delay: 11.3s; }
.animated-letter:nth-child(115) { -webkit-animation-delay: 11.4s; }
.animated-letter:nth-child(116) { -webkit-animation-delay: 11.5s; }
.animated-letter:nth-child(117) { -webkit-animation-delay: 11.6s; }
.animated-letter:nth-child(118) { -webkit-animation-delay: 11.7s; }
.animated-letter:nth-child(119) { -webkit-animation-delay: 11.8s; }
.animated-letter:nth-child(120) { -webkit-animation-delay: 11.9s; }
.animated-letter:nth-child(121) { -webkit-animation-delay: 12s; }
.animated-letter:nth-child(122) { -webkit-animation-delay: 12.1s; }
.animated-letter:nth-child(123) { -webkit-animation-delay: 12.2s; }
.animated-letter:nth-child(124) { -webkit-animation-delay: 12.3s; }
.animated-letter:nth-child(125) { -webkit-animation-delay: 12.4s; }
.animated-letter:nth-child(126) { -webkit-animation-delay: 12.5s; }
.animated-letter:nth-child(127) { -webkit-animation-delay: 12.6s; }
.animated-letter:nth-child(128) { -webkit-animation-delay: 12.7s; }
.animated-letter:nth-child(129) { -webkit-animation-delay: 12.8s; }
.animated-letter:nth-child(130) { -webkit-animation-delay: 12.9s; }
.animated-letter:nth-child(131) { -webkit-animation-delay: 13s; }
.animated-letter:nth-child(132) { -webkit-animation-delay: 13.1s; }
.animated-letter:nth-child(133) { -webkit-animation-delay: 13.2s; }
.animated-letter:nth-child(134) { -webkit-animation-delay: 13.3s; }
.animated-letter:nth-child(135) { -webkit-animation-delay: 13.4s; }
.animated-letter:nth-child(136) { -webkit-animation-delay: 13.5s; }
.animated-letter:nth-child(137) { -webkit-animation-delay: 13.6s; }
.animated-letter:nth-child(138) { -webkit-animation-delay: 13.7s; }
.animated-letter:nth-child(139) { -webkit-animation-delay: 13.8s; }
.animated-letter:nth-child(140) { -webkit-animation-delay: 13.9s; }
.animated-letter:nth-child(141) { -webkit-animation-delay: 14s; }
.animated-letter:nth-child(142) { -webkit-animation-delay: 14.1s; }
.animated-letter:nth-child(143) { -webkit-animation-delay: 14.2s; }
.animated-letter:nth-child(144) { -webkit-animation-delay: 14.3s; }
.animated-letter:nth-child(145) { -webkit-animation-delay: 14.4s; }
.animated-letter:nth-child(146) { -webkit-animation-delay: 14.5s; }
.animated-letter:nth-child(147) { -webkit-animation-delay: 14.6s; }
.animated-letter:nth-child(148) { -webkit-animation-delay: 14.7s; }
.animated-letter:nth-child(149) { -webkit-animation-delay: 14.8s; }
.animated-letter:nth-child(150) { -webkit-animation-delay: 14.9s; }
.animated-letter:nth-child(151) { -webkit-animation-delay: 15s; }
.animated-letter:nth-child(152) { -webkit-animation-delay: 15.1s; }
.animated-letter:nth-child(153) { -webkit-animation-delay: 15.2s; }
.animated-letter:nth-child(154) { -webkit-animation-delay: 15.3s; }
.animated-letter:nth-child(155) { -webkit-animation-delay: 15.4s; }
.animated-letter:nth-child(156) { -webkit-animation-delay: 15.5s; }
.animated-letter:nth-child(157) { -webkit-animation-delay: 15.6s; }
.animated-letter:nth-child(158) { -webkit-animation-delay: 15.7s; }
.animated-letter:nth-child(159) { -webkit-animation-delay: 15.8s; }
.animated-letter:nth-child(160) { -webkit-animation-delay: 15.9s; }
.animated-letter:nth-child(161) { -webkit-animation-delay: 16s; }
.animated-letter:nth-child(162) { -webkit-animation-delay: 16.1s; }
.animated-letter:nth-child(163) { -webkit-animation-delay: 16.2s; }
.animated-letter:nth-child(164) { -webkit-animation-delay: 16.3s; }
.animated-letter:nth-child(165) { -webkit-animation-delay: 16.4s; }
.animated-letter:nth-child(166) { -webkit-animation-delay: 16.5s; }
.animated-letter:nth-child(167) { -webkit-animation-delay: 16.6s; }
.animated-letter:nth-child(168) { -webkit-animation-delay: 16.7s; }
.animated-letter:nth-child(169) { -webkit-animation-delay: 16.8s; }
.animated-letter:nth-child(170) { -webkit-animation-delay: 16.9s; }
.animated-letter:nth-child(171) { -webkit-animation-delay: 17s; }
.animated-letter:nth-child(172) { -webkit-animation-delay: 17.1s; }
.animated-letter:nth-child(173) { -webkit-animation-delay: 17.2s; }
.animated-letter:nth-child(174) { -webkit-animation-delay: 17.3s; }
.animated-letter:nth-child(175) { -webkit-animation-delay: 17.4s; }
.animated-letter:nth-child(176) { -webkit-animation-delay: 17.5s; }
.animated-letter:nth-child(177) { -webkit-animation-delay: 17.6s; }
.animated-letter:nth-child(178) { -webkit-animation-delay: 17.7s; }
.animated-letter:nth-child(179) { -webkit-animation-delay: 17.8s; }
.animated-letter:nth-child(180) { -webkit-animation-delay: 17.9s; }
.animated-letter:nth-child(181) { -webkit-animation-delay: 18s; }
.animated-letter:nth-child(182) { -webkit-animation-delay: 18.1s; }
.animated-letter:nth-child(183) { -webkit-animation-delay: 18.2s; }
.animated-letter:nth-child(184) { -webkit-animation-delay: 18.3s; }
.animated-letter:nth-child(185) { -webkit-animation-delay: 18.4s; }
.animated-letter:nth-child(186) { -webkit-animation-delay: 18.5s; }
.animated-letter:nth-child(187) { -webkit-animation-delay: 18.6s; }
.animated-letter:nth-child(188) { -webkit-animation-delay: 18.7s; }
.animated-letter:nth-child(189) { -webkit-animation-delay: 18.8s; }
.animated-letter:nth-child(190) { -webkit-animation-delay: 18.9s; }
.animated-letter:nth-child(191) { -webkit-animation-delay: 19s; }
.animated-letter:nth-child(192) { -webkit-animation-delay: 19.1s; }
.animated-letter:nth-child(193) { -webkit-animation-delay: 19.2s; }
.animated-letter:nth-child(194) { -webkit-animation-delay: 19.3s; }
.animated-letter:nth-child(195) { -webkit-animation-delay: 19.4s; }
.animated-letter:nth-child(196) { -webkit-animation-delay: 19.5s; }
.animated-letter:nth-child(197) { -webkit-animation-delay: 19.6s; }
.animated-letter:nth-child(198) { -webkit-animation-delay: 19.7s; }
.animated-letter:nth-child(199) { -webkit-animation-delay: 19.8s; }
.animated-letter:nth-child(200) { -webkit-animation-delay: 19.9s; }
.animated-letter:nth-child(201) { -webkit-animation-delay: 20s; }
.animated-letter:nth-child(202) { -webkit-animation-delay: 20.1s; }
.animated-letter:nth-child(203) { -webkit-animation-delay: 20.2s; }
.animated-letter:nth-child(204) { -webkit-animation-delay: 20.3s; }
.animated-letter:nth-child(205) { -webkit-animation-delay: 20.4s; }
.animated-letter:nth-child(206) { -webkit-animation-delay: 20.5s; }
.animated-letter:nth-child(207) { -webkit-animation-delay: 20.6s; }
.animated-letter:nth-child(208) { -webkit-animation-delay: 20.7s; }
.animated-letter:nth-child(209) { -webkit-animation-delay: 20.8s; }
.animated-letter:nth-child(210) { -webkit-animation-delay: 20.9s; }
.animated-letter:nth-child(211) { -webkit-animation-delay: 21s; }
.animated-letter:nth-child(212) { -webkit-animation-delay: 21.1s; }
.animated-letter:nth-child(213) { -webkit-animation-delay: 21.2s; }
.animated-letter:nth-child(214) { -webkit-animation-delay: 21.3s; }
.animated-letter:nth-child(215) { -webkit-animation-delay: 21.4s; }
.animated-letter:nth-child(216) { -webkit-animation-delay: 21.5s; }
.animated-letter:nth-child(217) { -webkit-animation-delay: 21.6s; }
.animated-letter:nth-child(218) { -webkit-animation-delay: 21.7s; }
.animated-letter:nth-child(219) { -webkit-animation-delay: 21.8s; }
.animated-letter:nth-child(220) { -webkit-animation-delay: 21.9s; }
.animated-letter:nth-child(221) { -webkit-animation-delay: 22s; }
.animated-letter:nth-child(222) { -webkit-animation-delay: 22.1s; }
.animated-letter:nth-child(223) { -webkit-animation-delay: 22.2s; }
.animated-letter:nth-child(224) { -webkit-animation-delay: 22.3s; }
.animated-letter:nth-child(225) { -webkit-animation-delay: 22.4s; }
.animated-letter:nth-child(226) { -webkit-animation-delay: 22.5s; }
.animated-letter:nth-child(227) { -webkit-animation-delay: 22.6s; }
.animated-letter:nth-child(228) { -webkit-animation-delay: 22.7s; }
.animated-letter:nth-child(229) { -webkit-animation-delay: 22.8s; }
.animated-letter:nth-child(230) { -webkit-animation-delay: 22.9s; }
.animated-letter:nth-child(231) { -webkit-animation-delay: 23s; }
.animated-letter:nth-child(232) { -webkit-animation-delay: 23.1s; }
.animated-letter:nth-child(233) { -webkit-animation-delay: 23.2s; }
.animated-letter:nth-child(234) { -webkit-animation-delay: 23.3s; }
.animated-letter:nth-child(235) { -webkit-animation-delay: 23.4s; }
.animated-letter:nth-child(236) { -webkit-animation-delay: 23.5s; }
.animated-letter:nth-child(237) { -webkit-animation-delay: 23.6s; }
.animated-letter:nth-child(238) { -webkit-animation-delay: 23.7s; }
.animated-letter:nth-child(239) { -webkit-animation-delay: 23.8s; }
.animated-letter:nth-child(240) { -webkit-animation-delay: 23.9s; }
.animated-letter:nth-child(241) { -webkit-animation-delay: 24s; }
.animated-letter:nth-child(242) { -webkit-animation-delay: 24.1s; }
.animated-letter:nth-child(243) { -webkit-animation-delay: 24.2s; }
.animated-letter:nth-child(244) { -webkit-animation-delay: 24.3s; }
.animated-letter:nth-child(245) { -webkit-animation-delay: 24.4s; }
.animated-letter:nth-child(246) { -webkit-animation-delay: 24.5s; }
.animated-letter:nth-child(247) { -webkit-animation-delay: 24.6s; }
.animated-letter:nth-child(248) { -webkit-animation-delay: 24.7s; }
.animated-letter:nth-child(249) { -webkit-animation-delay: 24.8s; }
.animated-letter:nth-child(250) { -webkit-animation-delay: 24.9s; }
.animated-letter:nth-child(251) { -webkit-animation-delay: 25s; }
.animated-letter:nth-child(252) { -webkit-animation-delay: 25.1s; }
.animated-letter:nth-child(253) { -webkit-animation-delay: 25.2s; }
.animated-letter:nth-child(254) { -webkit-animation-delay: 25.3s; }
.animated-letter:nth-child(255) { -webkit-animation-delay: 25.4s; }
.animated-letter:nth-child(256) { -webkit-animation-delay: 25.5s; }
.animated-letter:nth-child(257) { -webkit-animation-delay: 25.6s; }
.animated-letter:nth-child(258) { -webkit-animation-delay: 25.7s; }
.animated-letter:nth-child(259) { -webkit-animation-delay: 25.8s; }
.animated-letter:nth-child(260) { -webkit-animation-delay: 25.9s; }
.animated-letter:nth-child(261) { -webkit-animation-delay: 26s; }
.animated-letter:nth-child(262) { -webkit-animation-delay: 26.1s; }
.animated-letter:nth-child(263) { -webkit-animation-delay: 26.2s; }
.animated-letter:nth-child(264) { -webkit-animation-delay: 26.3s; }
.animated-letter:nth-child(265) { -webkit-animation-delay: 26.4s; }
.animated-letter:nth-child(266) { -webkit-animation-delay: 26.5s; }
.animated-letter:nth-child(267) { -webkit-animation-delay: 26.6s; }
.animated-letter:nth-child(268) { -webkit-animation-delay: 26.7s; }
.animated-letter:nth-child(269) { -webkit-animation-delay: 26.8s; }
.animated-letter:nth-child(270) { -webkit-animation-delay: 26.9s; }
.animated-letter:nth-child(271) { -webkit-animation-delay: 27s; }
.animated-letter:nth-child(272) { -webkit-animation-delay: 27.1s; }
.animated-letter:nth-child(273) { -webkit-animation-delay: 27.2s; }
.animated-letter:nth-child(274) { -webkit-animation-delay: 27.3s; }
.animated-letter:nth-child(275) { -webkit-animation-delay: 27.4s; }
.animated-letter:nth-child(276) { -webkit-animation-delay: 27.5s; }
.animated-letter:nth-child(277) { -webkit-animation-delay: 27.6s; }
.animated-letter:nth-child(278) { -webkit-animation-delay: 27.7s; }
.animated-letter:nth-child(279) { -webkit-animation-delay: 27.8s; }
.animated-letter:nth-child(280) { -webkit-animation-delay: 27.9s; }
.animated-letter:nth-child(281) { -webkit-animation-delay: 28s; }
.animated-letter:nth-child(282) { -webkit-animation-delay: 28.1s; }
.animated-letter:nth-child(283) { -webkit-animation-delay: 28.2s; }
.animated-letter:nth-child(284) { -webkit-animation-delay: 28.3s; }
.animated-letter:nth-child(285) { -webkit-animation-delay: 28.4s; }
.animated-letter:nth-child(286) { -webkit-animation-delay: 28.5s; }
.animated-letter:nth-child(287) { -webkit-animation-delay: 28.6s; }
.animated-letter:nth-child(288) { -webkit-animation-delay: 28.7s; }
.animated-letter:nth-child(289) { -webkit-animation-delay: 28.8s; }
.animated-letter:nth-child(290) { -webkit-animation-delay: 28.9s; }
.animated-letter:nth-child(291) { -webkit-animation-delay: 29s; }
.animated-letter:nth-child(292) { -webkit-animation-delay: 29.1s; }
.animated-letter:nth-child(293) { -webkit-animation-delay: 29.2s; }
.animated-letter:nth-child(294) { -webkit-animation-delay: 29.3s; }
.animated-letter:nth-child(295) { -webkit-animation-delay: 29.4s; }
.animated-letter:nth-child(296) { -webkit-animation-delay: 29.5s; }
.animated-letter:nth-child(297) { -webkit-animation-delay: 29.6s; }
.animated-letter:nth-child(298) { -webkit-animation-delay: 29.7s; }
.animated-letter:nth-child(299) { -webkit-animation-delay: 29.8s; }
.animated-letter:nth-child(300) { -webkit-animation-delay: 29.9s; }