/* Vertical Rhythm */
html {
	font-size: 125%;
	line-height: 1.4em;
}

/* Susy Grid */
/* Colours */
/* Font sizes */
/* Breakpoints */
*,
*:before,
*:after {
	box-sizing: border-box;
}

@font-face {
	font-family: "FigginsSans";
	src: url("../webfonts/35BF9C_0_0.eot");
	src: url("../webfonts/35BF9C_0_0.eot?#iefix") format("embedded-opentype"),
		url("../webfonts/35BF9C_0_0.woff2") format("woff2"),
		url("../webfonts/35BF9C_0_0.woff") format("woff"),
		url("../webfonts/35BF9C_0_0.ttf") format("truetype");
	font-weight: bold;
}
@font-face {
	font-family: "FigginsSans";
	src: url("../webfonts/35BF9C_1_0.eot");
	src: url("../webfonts/35BF9C_1_0.eot?#iefix") format("embedded-opentype"),
		url("../webfonts/35BF9C_1_0.woff2") format("woff2"),
		url("../webfonts/35BF9C_1_0.woff") format("woff"),
		url("../webfonts/35BF9C_1_0.ttf") format("truetype");
	font-weight: normal;
}
@font-face {
	font-family: "FigginsSans";
	src: url("../webfonts/35BF9C_2_0.eot");
	src: url("../webfonts/35BF9C_2_0.eot?#iefix") format("embedded-opentype"),
		url("../webfonts/35BF9C_2_0.woff2") format("woff2"),
		url("../webfonts/35BF9C_2_0.woff") format("woff"),
		url("../webfonts/35BF9C_2_0.ttf") format("truetype");
	font-weight: 900;
}
@font-face {
	font-family: "FigginsSans";
	src: url("../webfonts/35BF9C_3_0.eot");
	src: url("../webfonts/35BF9C_3_0.eot?#iefix") format("embedded-opentype"),
		url("../webfonts/35BF9C_3_0.woff2") format("woff2"),
		url("../webfonts/35BF9C_3_0.woff") format("woff"),
		url("../webfonts/35BF9C_3_0.ttf") format("truetype");
	font-style: italic;
}
/* Grid padding */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
	from,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}
@keyframes bounce {
	from,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}
.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}

@-webkit-keyframes flash {
	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(0.95, 1.05, 1);
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform: scale3d(1.05, 0.95, 1);
		transform: scale3d(1.05, 0.95, 1);
	}
	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(0.95, 1.05, 1);
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform: scale3d(1.05, 0.95, 1);
		transform: scale3d(1.05, 0.95, 1);
	}
	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(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}
@keyframes shake {
	from,
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}
.shake {
	-webkit-animation-name: shake;
	animation-name: shake;
}

@-webkit-keyframes 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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	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.39063deg) skewY(0.39063deg);
		transform: skewX(0.39063deg) skewY(0.39063deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
		transform: skewX(-0.19531deg) skewY(-0.19531deg);
	}
}
@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.39063deg) skewY(0.39063deg);
		transform: skewX(0.39063deg) skewY(0.39063deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
		transform: skewX(-0.19531deg) skewY(-0.19531deg);
	}
}
.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.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}
	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.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}
	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.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes bounceInDown {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}
	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.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes bounceInLeft {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
	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.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	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.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	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.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	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.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	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(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
}
@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
}
.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	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(0.95, 0.95, 0.95);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	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(0.95, 0.95, 0.95);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	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(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInDown {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInLeft {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInRight {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInUp {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
	from {
		opacity: 1;
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}
@keyframes zoomOut {
	from {
		opacity: 1;
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}
.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
}

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

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

@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
	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;
}

/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
	font-family: sans-serif;
	/* 1 */
	-ms-text-size-adjust: 100%;
	/* 2 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
	margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	/* 1 */
	display: block;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
	display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
	display: none;
	height: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
	display: none;
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
	background-color: transparent;
	/* 1 */
	-webkit-text-decoration-skip: objects;
	/* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
	outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	text-decoration: underline dotted;
	/* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
	font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
	font-style: italic;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
	background-color: #ff0;
	color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
	border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
	overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/**
 * Add the correct margin in IE 8.
 */
figure {
	margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	/* 1 */
	height: 0;
	/* 1 */
	overflow: visible;
	/* 2 */
}

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
	font: inherit;
	/* 1 */
	margin: 0;
	/* 2 */
}

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
	font-weight: bold;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	/* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	/* 1 */
	text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	/* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.54;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

body {
	background-color: #fff;
	font-family: "FigginsSans", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smooth: yes;
	padding-top: 85px;
	color: #575656;
}
@media (min-width: 768px) {
	body {
		padding-top: 125px;
	}
}

html {
	font-size: 1em;
	line-height: 1.4em;
}
@media (min-width: 768px) {
	html {
		font-size: 1.25em;
		line-height: 1.4em;
	}
}

.container {
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}
.container:after {
	content: " ";
	display: block;
	clear: both;
}

img {
	max-width: 100%;
}

.wrap {
	box-sizing: content-box;
	padding: 0 1.4em;
	*zoom: 1;
}
.wrap:before,
.wrap:after {
	content: "";
	display: table;
}
.wrap:after {
	clear: both;
}
@media (min-width: 1024px) {
	.wrap {
		max-width: 1140px;
		margin-left: auto;
		margin-right: auto;
		padding: 0 2.12766%;
	}
	.wrap:after {
		content: " ";
		display: block;
		clear: both;
	}
}

.ale-header {
	background-color: #fffeeb;
	padding: 2.1em 0;
	position: relative;
}

.ale-main--inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
@media (min-width: 1024px) {
	.ale-main--inner {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

.ale-content {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}

.ale-graphic {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.ale-header--logo {
	width: 120px;
	margin: 0 auto 1.4em auto;
}
@media (min-width: 1024px) {
	.ale-header--logo {
		width: 164px;
		margin: 0;
		border: 3px solid #fffeeb;
		border-radius: 100%;
		position: absolute;
		overflow: hidden;
		top: 100%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}
.ale-header--logo img {
	display: block;
}

@media (min-width: 1024px) {
	.ale-header--name {
		width: 48.93617%;
		float: right;
		margin-right: 0;
	}
}
.ale-header--name h1 {
	text-align: center;
	color: #009ccc;
	font-weight: 900;
	font-size: 1.75em;
	line-height: 1.2em;
	line-height: 1.2em;
	text-transform: uppercase;
	letter-spacing: 6px;
	margin: 0;
}
@media (min-width: 1024px) {
	.ale-header--name h1 {
		text-align: left;
		padding-top: 5px;
	}
}

.ale-main {
	background-color: #009ccc;
}

@media (min-width: 1024px) {
	.ale-main--inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.ale-graphic {
	display: block;
	margin: 2.8em auto 0 auto;
}
.ale-graphic img {
	display: block;
}
@media (min-width: 768px) {
	.ale-graphic {
		width: 48.93617%;
		margin: 2.8em auto 0 auto;
	}
}
@media (min-width: 1024px) {
	.ale-graphic {
		width: 48.93617%;
		margin-bottom: 0;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		position: relative;
		z-index: 100;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
	}
}

.ale-content {
	margin-top: 2.8em;
	margin-bottom: 2.8em;
	color: #fff;
}
@media (min-width: 768px) {
	.ale-content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
@media (min-width: 1024px) {
	.ale-content {
		width: 48.93617%;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
}

@media (min-width: 768px) {
	.ale-content--intro {
		width: 47.82609%;
	}
}
.ale-content--intro p {
	margin: 0 0 1.4em 0;
}

.ale-content--notes {
	margin-top: 2.8em;
}
.ale-content--notes p {
	font-size: 0.7em;
	line-height: 2em;
	font-weight: 900;
	line-height: 1.2em;
}
.ale-content--notes p a {
	display: inline-block;
	color: #fff;
	position: relative;
	text-decoration: none;
	padding: 0 1px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.ale-content--notes p a:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	width: 100%;
	left: -0.07em;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	opacity: 0;
	border-bottom: 3px solid #fff;
	-webkit-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}
.ale-content--notes p a:hover {
	color: #fff;
}
.ale-content--notes p a:hover:after {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

.ale-content--info {
	font-weight: bold;
}
@media (min-width: 768px) {
	.ale-content--info {
		width: 35%;
	}
}

.ale-info--row {
	border-bottom: 3px solid #fff;
	padding: 0.7em 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (min-width: 768px) {
	.ale-info--row {
		display: block;
	}
}
.ale-info--row:first-of-type {
	padding-top: 0;
}
.ale-info--row:last-of-type {
	border-bottom: 0;
	margin-bottom: 2.8em;
}

.ale-info--item {
	text-transform: uppercase;
	width: 100px;
}
.ale-info--item:after {
	content: ":";
}
@media (min-width: 768px) {
	.ale-info--item {
		width: auto;
	}
}

.ale-info--val {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.ale-cta {
	display: block;
	border: 2px solid #fff;
	color: #fff;
	padding: 1em 0;
	text-align: center;
	width: 100%;
	text-decoration: none;
	font-weight: 900;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.ale-cta:hover {
	background-color: #fff;
	color: #575656;
}

.ale-additional {
	background-color: #575656;
	padding: 1.4em 0;
}

.ale-availability {
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
@media (min-width: 768px) {
	.ale-availability {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

.ale-avail--header {
	color: #fff;
	font-weight: 900;
	margin-bottom: 1.4em;
}
@media (min-width: 768px) {
	.ale-avail--header {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-bottom: 0;
	}
}
@media (min-width: 768px) {
	.ale-avail--header:after {
		content: "";
		display: block;
		background-image: url(../img/arrow-white.svg);
		background-repeat: no-repeat;
		text-indent: -999em;
		width: 85px;
		height: 23px;
		margin-left: 10px;
	}
}

.ale-availability ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
@media (min-width: 768px) {
	.ale-availability ul {
		margin: 0 0 0 15px;
	}
}
.ale-availability ul li {
	margin: 0 15px;
}

.ale-avail--keg-lrg {
	display: block;
	width: 42px;
	height: 46px;
	background-image: url(../img/icon-keg-lrg.svg);
	background-repeat: no-repeat;
	text-indent: -999em;
}

.ale-avail--keg-sml {
	display: block;
	width: 38px;
	height: 41px;
	background-image: url(../img/icon-keg-sml.svg);
	background-repeat: no-repeat;
	text-indent: -999em;
}

.ale-avail--bottle {
	display: block;
	width: 12px;
	height: 44px;
	background-image: url(../img/icon-bottle.svg);
	background-repeat: no-repeat;
	text-indent: -999em;
}

.ale-avail--can {
	display: block;
	width: 13px;
	height: 24px;
	background-image: url(../img/icon-can.svg);
	background-repeat: no-repeat;
	text-indent: -999em;
}

.related-beers {
	margin: 2.8em 0;
}
@media (min-width: 768px) {
	.related-beers {
		margin: 5.6em 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
.related-beers.has-news {
	margin-bottom: 0;
	padding-bottom: 2.8em;
	border-bottom: 3px solid #575656;
}
@media (min-width: 768px) {
	.related-beers.has-news {
		margin-bottom: 2.8em;
		padding-bottom: 5.6em;
	}
}

.related-beers--header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-transform: uppercase;
	letter-spacing: 6px;
	font-weight: 100;
	margin-bottom: 20px;
	font-weight: 900;
	text-align: center;
}
@media (min-width: 768px) {
	.related-beers--header {
		width: 240px;
		margin-bottom: 0;
	}
}
@media (min-width: 768px) {
	.related-beers--header:after {
		content: "";
		display: block;
		background-image: url(../img/arrow-grey.svg);
		background-repeat: no-repeat;
		text-indent: -999em;
		width: 132px;
		height: 36px;
		margin-top: 15px;
	}
}

.related-beers--list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
@media (min-width: 768px) {
	.related-beers--list {
		margin: 0 0 0 30px;
	}
}
.related-beers--list li {
	margin: 0 15px;
	width: 125px;
}
.related-beers--list li img {
	display: block;
}
.related-beers--list li a {
	display: block;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.related-beers--list li a:hover {
	opacity: 0.5;
}

.beers-wrap {
	padding: 4.2em 0;
}

.beers-row {
	margin-bottom: 2.8em;
}
@media (min-width: 1024px) {
	.beers-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		-ms-flex-line-pack: end;
		align-content: flex-end;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.beer-item {
	width: 200px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 2.8em;
	padding-bottom: 40px;
	position: relative;
}
@media (min-width: 768px) {
	.beer-item {
		width: 20%;
		margin: 0 1.06383%;
		padding-left: 14px;
		padding-right: 14px;
	}
}
.beer-item .beer-item--img {
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.beer-item:hover .beer-item--img {
	opacity: 0.5;
}

.beer-item--img {
	display: block;
	margin: 0 0 1.4em 0;
}
.beer-item--img img {
	display: block;
	margin: 0 auto;
}

.beer-item--name {
	display: block;
	text-align: center;
	line-height: 1.4em !important;
	padding-bottom: 0.5em;
	font-weight: 900;
}

.beer-item--desc {
	display: block;
	text-align: center;
	font-size: 0.7em;
	line-height: 2em;
	line-height: 1.2em;
}

.beers-header {
	text-align: center;
}

.beers-header--page {
	font-weight: 900;
	text-align: center;
}

.beers-intro {
	margin-top: 1.4em;
	margin-bottom: 5.6em;
}
@media (min-width: 768px) {
	.beers-intro {
		width: 65.95745%;
		float: left;
		margin-right: 2.12766%;
		margin-left: 17.02128%;
	}
}
.beers-intro p {
	font-size: 2em;
	line-height: 1.4em;
	line-height: 1.2em;
	margin: 0 0 1.2em 0;
	text-align: center;
}
.beers-intro p:last-of-type {
	margin-bottom: 0;
}

.beers-intro--footer {
	margin: 2.8em 0 0 0;
	text-align: center;
}
.beers-intro--footer a {
	display: inline-block;
	border: 2px solid #575656;
	color: #575656;
	font-size: 0.7em;
	line-height: 2em;
	padding: 1em 2em;
	text-decoration: none;
	font-weight: 900;
	text-transform: uppercase;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	letter-spacing: 2px;
}
.beers-intro--footer a:hover {
	background-color: #575656;
	color: #fff;
}

.contact-wrap {
	padding: 5.6em 0;
}

@media (min-width: 768px) {
	.contact-details {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

@media (min-width: 768px) {
	.contact-details--addresses {
		width: 40%;
		float: left;
	}
}
@media (min-width: 1024px) {
	.contact-details--addresses {
		width: 31.91489%;
		float: left;
		margin-right: 2.12766%;
		margin-left: 17.02128%;
	}
}

.contact-details--address {
	text-align: center;
	padding-bottom: 2.8em;
	margin-top: 2.8em;
	border-bottom: 3px solid #575656;
}
.contact-details--address:first-of-type {
	margin-top: 0;
}
.contact-details--address:last-of-type {
	padding-bottom: 0;
	border-bottom: 0;
}
.contact-details--address address {
	font-style: normal;
	font-weight: 700;
	margin-bottom: 0.7em;
}
.contact-details--address address p {
	font-weight: normal;
	margin: 10px 0;
}
.contact-details--address address span {
	display: block;
}
.contact-details--address address span.city {
	display: inline-block;
}
.contact-details--address a {
	display: inline-block;
	text-decoration: none;
	color: #575656;
	position: relative;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.contact-details--address a:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #575656;
	-webkit-transform: translateY(-4px);
	transform: translateY(-4px);
	left: 0;
	bottom: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.contact-details--address a:hover {
	color: #9b9b9b;
}
.contact-details--address a:hover:after {
	background-color: #9b9b9b;
}
.contact-details--address .tel {
	font-size: 1.25em;
	line-height: 1.68em;
}

.contact-details--email {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	margin-top: 2.8em;
}
@media (min-width: 768px) {
	.contact-details--email {
		text-align: left;
		margin-top: 0;
		width: 48.93617%;
		float: left;
		margin-right: 2.12766%;
	}
}
@media (min-width: 1024px) {
	.contact-details--email {
		width: 31.91489%;
		float: right;
		margin-right: 0;
		margin-right: 8.51064%;
	}
}
.contact-details--email li {
	margin-bottom: 1.4em;
}
.contact-details--email li:last-of-type {
	margin-bottom: 0;
}
.contact-details--email li strong {
	display: block;
}
.contact-details--email li a {
	display: inline-block;
	color: #575656;
	position: relative;
	text-decoration: none;
	padding: 0 1px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.contact-details--email li a:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	width: 100%;
	left: -0.07em;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	opacity: 0;
	border-bottom: 3px solid #575656;
	-webkit-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}
.contact-details--email li a:hover {
	color: #575656;
}
.contact-details--email li a:hover:after {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

.news-row {
	margin-top: 2.8em;
}

@media (min-width: 768px) {
	.news-row--1 .news-item {
		width: 31.91489%;
		float: left;
		margin-right: 2.12766%;
		margin-left: 34.04255%;
	}
}

@media (min-width: 768px) {
	.news-row--2 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		-ms-flex-line-pack: end;
		align-content: flex-end;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media (min-width: 768px) {
	.news-row--2 .news-item {
		width: 31.91489%;
		margin-left: 1.06383%;
		margin-right: 1.06383%;
	}
}

@media (min-width: 768px) {
	.news-row--3 .news-item {
		width: 31.91489%;
		float: left;
	}
	.news-row--3 .news-item:nth-child(3n + 1) {
		margin-left: 0;
		margin-right: -100%;
		clear: both;
		margin-left: 0;
	}
	.news-row--3 .news-item:nth-child(3n + 2) {
		margin-left: 34.04255%;
		margin-right: -100%;
		clear: none;
	}
	.news-row--3 .news-item:nth-child(3n + 3) {
		margin-left: 68.08511%;
		margin-right: -100%;
		clear: none;
	}
}

.news-item {
	margin-bottom: 2.8em;
}

@media (min-width: 768px) {
	.blog .news-item,
	.category .news-item,
	.archive .news-item,
	.page-template-tmpl-past-events .news-item,
	.page-template-tmpl-jobs .news-item {
		width: 31.91489%;
		float: left;
	}
	.blog .news-item:nth-child(3n + 1),
	.category .news-item:nth-child(3n + 1),
	.archive .news-item:nth-child(3n + 1),
	.page-template-tmpl-past-events .news-item:nth-child(3n + 1),
	.page-template-tmpl-jobs .news-item:nth-child(3n + 1) {
		margin-left: 0;
		margin-right: -100%;
		clear: both;
		margin-left: 0;
	}
	.blog .news-item:nth-child(3n + 2),
	.category .news-item:nth-child(3n + 2),
	.archive .news-item:nth-child(3n + 2),
	.page-template-tmpl-past-events .news-item:nth-child(3n + 2),
	.page-template-tmpl-jobs .news-item:nth-child(3n + 2) {
		margin-left: 34.04255%;
		margin-right: -100%;
		clear: none;
	}
	.blog .news-item:nth-child(3n + 3),
	.category .news-item:nth-child(3n + 3),
	.archive .news-item:nth-child(3n + 3),
	.page-template-tmpl-past-events .news-item:nth-child(3n + 3),
	.page-template-tmpl-jobs .news-item:nth-child(3n + 3) {
		margin-left: 68.08511%;
		margin-right: -100%;
		clear: none;
	}
}

.pl-img {
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	background-color: #d8d8d8;
}

.news-item--img {
	display: block;
	margin-bottom: 1.4em;
	position: relative;
}
.news-item--img img {
	display: block;
}
.news-item--img:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	background-color: #fff;
}
.news-item--img:hover:after {
	opacity: 0.5;
}

.news-item--title {
	display: block;
	color: #575656;
	text-decoration: none;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.news-item--title:hover {
	color: #9b9b9b;
}

.news-item--date {
	display: block;
	margin-top: 0.5em;
	font-weight: 900;
	color: #575656;
	line-height: 1.2em !important;
}

.news-footer {
	margin-bottom: 2.8em;
	text-align: center;
}

.news-pagination {
	display: inline-block;
	border-bottom: 3px solid #d8d8d8;
	position: relative;
	padding-bottom: 0.7em;
}

.page-numbers {
	font-size: 14px;
	font-weight: 700;
	display: inline-block;
	position: relative;
	color: #575656;
	text-decoration: none;
	width: 30px;
	line-height: 30px;
	border-radius: 100%;
	float: left;
	margin: 0 0.7em;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.page-numbers:first-child {
	margin-left: 0;
}
.page-numbers:last-child {
	margin-right: 0;
}
.page-numbers.current {
	background-color: #575656;
	color: #fff;
}
.page-numbers.next {
	height: 30px;
	background-image: url(../img/small-arrow-right.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.page-numbers.prev {
	height: 30px;
	background-image: url(../img/small-arrow-left.svg);
	background-repeat: no-repeat;
	background-position: center center;
}

a.page-numbers:hover {
	background-color: #d8d8d8;
}

.archive-header {
	margin: 1.4em 0;
	*zoom: 1;
}
@media (min-width: 768px) {
	.archive-header {
		margin: 2.8em 0;
	}
}
.archive-header:before,
.archive-header:after {
	content: "";
	display: table;
}
.archive-header:after {
	clear: both;
}

.archive-header--title {
	margin-bottom: 0.7em;
}
@media (min-width: 768px) {
	.archive-header--title {
		margin-bottom: 0;
		width: 48.93617%;
		float: left;
		margin-right: 2.12766%;
	}
}

.back-button {
	font-weight: 700;
	font-size: 0.7em;
	line-height: 2em;
	display: inline-block;
	color: #575656;
	position: relative;
	text-decoration: none;
	padding: 0 1px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.back-button:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	width: 100%;
	left: -0.07em;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	opacity: 0;
	border-bottom: 3px solid #575656;
	-webkit-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}
.back-button:hover {
	color: #575656;
}
.back-button:hover:after {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.back-button:before {
	content: "";
	width: 10px;
	margin-right: 10px;
	display: inline-block;
	height: 0.8em;
	background-image: url(../img/small-arrow-left.svg);
	background-repeat: no-repeat;
	background-position: center center;
}

.fwd-button {
	font-weight: 700;
	font-size: 0.6em;
	line-height: 2.33333em;
	display: inline-block;
	color: #575656;
	position: relative;
	text-decoration: none;
	padding: 0 1px;
}
.fwd-button:before {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	width: 100%;
	left: -0.07em;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	opacity: 0;
	border-bottom: 3px solid #575656;
	-webkit-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}
.fwd-button:hover {
	color: #575656;
}
.fwd-button:hover:before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.fwd-button:after {
	content: "";
	width: 10px;
	margin-left: 10px;
	display: inline-block;
	height: 0.8em;
	background-image: url(../img/small-arrow-right.svg);
	background-repeat: no-repeat;
	background-position: center center;
}

.breadcrumbs {
	margin-bottom: 1.4em;
}
@media (min-width: 768px) {
	.breadcrumbs {
		margin-bottom: 0;
	}
}
.breadcrumbs ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.breadcrumbs ul li {
	display: inline-block;
	margin-right: 20px;
}
.breadcrumbs ul li:last-child:after {
	display: none;
}
.breadcrumbs ul li a {
	font-weight: 900;
	display: inline-block;
	color: #575656;
	position: relative;
	text-decoration: none;
	padding: 0 1px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.breadcrumbs ul li a:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	width: 100%;
	left: -0.07em;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	opacity: 0;
	border-bottom: 3px solid #575656;
	-webkit-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}
.breadcrumbs ul li a:hover {
	color: #575656;
}
.breadcrumbs ul li a:hover:after {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.breadcrumbs ul li a.breadcrumb-prev {
	display: inline-block;
	color: #575656;
	position: relative;
	text-decoration: none;
	padding: 0 1px;
	-webkit-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}
@media (min-width: 1024px) {
	.breadcrumbs ul li a.breadcrumb-prev:after {
		content: "";
		display: block;
		position: absolute;
		bottom: -2px;
		width: 100%;
		left: -0.07em;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
		border-bottom: 3px solid #d8d8d8;
		-webkit-transition: all 250ms ease-out;
		transition: all 250ms ease-out;
	}
}
.breadcrumbs ul li a.breadcrumb-prev:hover {
	color: #d8d8d8;
}
.breadcrumbs ul li a.breadcrumb-prev:hover:after {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.breadcrumbs ul li a.breadcrumb-alt {
	display: inline-block;
	color: #d8d8d8;
	position: relative;
	text-decoration: none;
	padding: 0 1px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.breadcrumbs ul li a.breadcrumb-alt:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	width: 100%;
	left: -0.07em;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	opacity: 0;
	border-bottom: 3px solid #d8d8d8;
	-webkit-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}
.breadcrumbs ul li a.breadcrumb-alt:hover {
	color: #d8d8d8;
}
.breadcrumbs ul li a.breadcrumb-alt:hover:after {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

.archive-header--links {
	*zoom: 1;
}
@media (min-width: 768px) {
	.archive-header--links {
		width: 31.91489%;
		float: right;
		margin-right: 0;
		text-align: right;
	}
}
@media (min-width: 1024px) {
	.archive-header--links {
		width: 14.89362%;
		float: right;
		margin-right: 0;
	}
}
.archive-header--links:before,
.archive-header--links:after {
	content: "";
	display: table;
}
.archive-header--links:after {
	clear: both;
}

.archive-header--filter {
	-webkit-appearance: none;
	outline: none;
	display: block;
	border-radius: 0;
	border: 0;
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 0 0;
	color: #575656;
	padding: 0;
	line-height: 30px;
	background-color: transparent;
}

.archive-filter--wrap {
	display: inline-block;
	position: relative;
	border-bottom: 3px solid #d8d8d8;
	padding-right: 30px;
}
@media (min-width: 768px) {
	.archive-filter--wrap {
		display: block;
		width: 100%;
		float: right;
	}
}
.archive-filter--wrap:after {
	content: "";
	width: 10px;
	height: 30px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	background-image: url(../img/small-arrow-down.svg);
	background-repeat: no-repeat;
	background-position: center center;
}

.related-posts {
	margin: 2.8em 0;
}

.related-posts--header,
.beers-header {
	font-weight: 900;
	border-bottom: 3px solid #575656;
	color: #575656;
	margin: 0 0 2.8em 0;
	padding: 1em 0;
}

.main {
	padding: 2.8em 0;
	min-height: 50vh;
}

@media (min-width: 768px) {
	.main-article {
		width: 65.95745%;
		/* float: left; */
		margin-right: 2.12766%;
		margin-left: 17.02128%;
	}
}
@media (min-width: 1024px) {
	.main-article {
		width: 48.93617%;
		/* float: left; */
		margin-right: 2.12766%;
		margin-left: 25.53191%;
	}
}

.shop-wrap {
	background-color: #fff;
}
.shop-wrap p {
	margin-top: 0;
}

.shop-header {
	margin-top: 30px;
	margin-bottom: 30px;
	color: #575656;
	font-weight: 900;
	text-align: center;
}
@media (min-width: 768px) {
	.shop-header {
		margin-top: 78px;
	}
}

.blog-article hgroup {
	padding-bottom: 1.4em;
	border-bottom: 3px solid #575656;
}
@media (min-width: 768px) {
	.blog-article hgroup {
		width: 65.95745%;
		/* float: left; */
		margin-right: 2.12766%;
		margin-left: 17.02128%;
	}
}
@media (min-width: 1024px) {
	.blog-article hgroup {
		width: 65.95745%;
		/* float: left; */
		margin-right: 2.12766%;
		margin-left: 17.02128%;
	}
}
.blog-article hgroup h1 {
	text-align: center;
	font-size: 2em;
	line-height: 1.4em;
	line-height: 1.2em;
	color: #575656;
	margin: 0;
}
.blog-article p {
	margin: 0 0 1.4em 0;
}
.blog-article p:last-of-type {
	margin: 0;
}

.single-post .archive-header,
.single-events .archive-header {
	margin-bottom: 1.4em;
}
.single-post .main,
.single-events .main {
	margin-top: 1.4em;
}

.main-article--intro,
.main-article--general {
	margin: 2.8em 0 0 0;
}

.article-image {
	margin: 2.8em 0 0 0;
}

.article-image--trim {
	margin: 2.8em 0 0 0;
}
@media (min-width: 768px) {
	.article-image--trim.center {
		width: 65.95745%;
		/* float: left; */
		margin-right: 2.12766%;
		margin-left: 17.02128%;
	}
}
@media (min-width: 1024px) {
	.article-image--trim.center {
		width: 48.93617%;
		/* float: left; */
		margin-right: 2.12766%;
		margin-left: 25.53191%;
	}
}
@media (min-width: 768px) {
	.article-image--trim.left {
		width: 65.95745%;
		/* float: left; */
		margin-right: 2.12766%;
		margin-right: 34.04255%;
	}
}
@media (min-width: 1024px) {
	.article-image--trim.left {
		width: 48.93617%;
		/* float: left; */
		margin-right: 2.12766%;
		margin-right: 51.06383%;
	}
}
@media (min-width: 768px) {
	.article-image--trim.right {
		width: 65.95745%;
		/* float: right; */
		margin-right: 0;
		margin-left: 34.04255%;
	}
}
@media (min-width: 1024px) {
	.article-image--trim.right {
		width: 48.93617%;
		/* float: right; */
		margin-right: 0;
		margin-left: 51.06383%;
	}
}

.article-image--full {
	margin: 2.8em 0 0 0;
}
@media (min-width: 768px) {
	.article-image--full {
		width: 100%;
		/* float: left; */
		margin-left: 0;
		margin-right: 0;
	}
}

.blog-article--footer {
	margin: 2.8em 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-top: 40px;
	border-top: 3px solid #d8d8d8;
}
@media (min-width: 768px) {
	.blog-article--footer {
		padding-top: 15px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		width: 65.95745%;
		float: left;
		margin-right: 2.12766%;
		margin-left: 17.02128%;
	}
}
@media (min-width: 1024px) {
	.blog-article--footer {
		width: 48.93617%;
		float: left;
		margin-right: 2.12766%;
		margin-left: 25.53191%;
	}
}

.share {
	width: 170px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
@media (min-width: 768px) {
	.share {
		margin-right: 30px;
	}
}
.share .share-button {
	display: block;
	text-indent: -999em;
	border: 2px solid #575656;
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 100%;
	cursor: pointer;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	margin-left: 5px;
	margin-right: 5px;
}
@media (min-width: 768px) {
	.share .share-button {
		margin-left: 0;
		margin-right: 10px;
	}
	.share .share-button:last-of-type {
		margin-right: 0;
	}
}
.share .share-button:hover {
	background-color: #d8d8d8;
}
.share .share-button.share-twitter {
	background-image: url(../img/icon-twitter-dark.svg);
}
.share .share-button.share-facebook {
	background-image: url(../img/icon-facebook-dark.svg);
}
.share .share-button.share-email {
	background-image: url(../img/icon-email-dark.svg);
}

.st-label {
	font-family: "FigginsSans", sans-serif;
	font-size: 14px !important;
	text-transform: uppercase;
	letter-spacing: 2px !important;
	font-weight: 700;
}

.blog-article--meta {
	margin-top: 15px;
	text-align: center;
	color: #575656;
}
@media (min-width: 768px) {
	.blog-article--meta {
		margin-top: 0;
		text-align: left;
	}
}
.blog-article--meta span {
	font-size: 0.7em;
	line-height: 2em;
	line-height: 1.4em;
	display: block;
}
.blog-article--meta .meta-author {
	font-weight: bold;
}

.blog-article--tickets {
	font-weight: bold;
	color: #575656;
}
@media (min-width: 768px) {
	.blog-article--tickets {
		width: calc(100% - 210px);
	}
}

.main-article--intro p {
	font-size: 1.5em;
	line-height: 1.4em;
}
.main-article--intro.align-right p {
	text-align: right;
}
.main-article--intro.align-left p {
	text-align: left;
}
.main-article--intro.align-center p {
	text-align: center;
}

.event-meta {
	margin-top: 2.8em;
	text-align: center;
	font-weight: 700;
}
@media (min-width: 768px) {
	.event-meta {
		width: 65.95745%;
		float: left;
		margin-right: 2.12766%;
		margin-left: 17.02128%;
	}
}
@media (min-width: 1024px) {
	.event-meta {
		width: 65.95745%;
		float: left;
		margin-right: 2.12766%;
		margin-left: 17.02128%;
	}
}
.event-meta span {
	display: block;
}

.tickets-cta {
	display: inline-block;
	border: 2px solid #c3303f;
	color: #fff;
	background-color: #c3303f;
	padding: 0.5em 2em;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.tickets-cta:hover {
	background-color: transparent;
	color: #c3303f;
}

.splash {
	background-color: #fffeeb;
	background-image: url("../img/legal.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: repeat-x;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5),
	all and (-o-min-device-pixel-ratio: 3 / 2),
	all and (min--moz-device-pixel-ratio: 1.5),
	all and (min-device-pixel-ratio: 1.5) {
	.splash {
		background-image: url("../img/legal@2x.jpg");
	}
}

.splash-logo {
	width: 100px;
	height: 95px;
	display: block;
	background-image: url(../img/logo-fivepoints-dark.svg);
	background-repeat: no-repeat;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.splash-logo {
		width: 140px;
		height: 133px;
	}
}

.splash-inner {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	padding: 0 1.4em;
	max-width: 750px;
	text-align: center;
	padding-bottom: 60px;
}
@media (min-width: 768px) {
	.splash-inner {
		padding-bottom: 100px;
		max-width: 640px;
	}
}
@media (min-width: 1024px) {
	.splash-inner {
		max-width: 750px;
	}
}
.splash-inner p {
	font-weight: bold;
}

.splash .cta-button {
	display: inline-block;
	border: 2px solid #575656;
	color: #575656;
	line-height: 1em !important;
	padding: 9px 2em 8px 2em;
	width: 195px;
	text-align: center;
	text-decoration: none;
	font-weight: 900;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.splash .cta-button:hover {
	background-color: #575656;
	color: #fffeeb;
}

.team-wrap {
	padding: 4.2em 0;
}

.team-row {
	*zoom: 1;
}
.team-row:before,
.team-row:after {
	content: "";
	display: table;
}
.team-row:after {
	clear: both;
}
@media (min-width: 1024px) {
	.team-row {
		width: 82.97872%;
		float: left;
		margin-right: 2.12766%;
		margin-left: 8.51064%;
	}
}

.team-item {
	width: 200px;
	margin: 0 auto;
	margin-bottom: 2.8em;
}
@media (min-width: 768px) {
	.team-item {
		width: 20%;
		float: left;
		margin-right: 6.66667%;
	}
	.team-item:nth-child(4n + 4) {
		margin-right: 0;
	}
}

@media (min-width: 768px) {
	.row-2 .team-item:first-of-type,
	.row-2 .beer-item:first-of-type {
		margin-left: 26.66667%;
	}
}

@media (min-width: 768px) {
	.row-3 .team-item:first-of-type,
	.row-3 .beer-item:first-of-type {
		margin-left: 13.33333%;
	}
}

@media (min-width: 768px) {
	.row-4 .team-item:last-of-type,
	.row-4 .beer-item:last-of-type {
		margin-right: 0;
	}
}

.team-item--img {
	margin: 0 0 1.4em 0;
	-webkit-clip-path: circle(50% at 50% 50%);
	clip-path: circle(50% at 50% 50%);
}
.team-item--img img {
	display: block;
}

.team-item--name {
	display: block;
	text-align: center;
	line-height: 1.4em !important;
	border-top: 3px solid #575656;
	padding-top: 1em;
	padding-bottom: 0.5em;
	font-weight: 900;
}

.team-item--title {
	display: block;
	text-align: center;
	font-size: 0.7em;
	line-height: 2em;
	line-height: 1.2em;
}

/*
Settings
*************************************************************************************/
.banner {
	position: relative;
	height: 320px;
	background-color: #d8d8d8;
}
@media (min-width: 768px) {
	.banner {
		height: 400px;
	}
}
@media (min-width: 1024px) {
	.banner {
		height: 560px;
	}
}

.banner-preloader {
	position: absolute;
	left: -999em;
	width: 0px;
	height: 0px;
}

.banner {
	opacity: 0;
	width: 100%;
}

.banner-slide {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.banner-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: "object-fit: cover;";
}

.banner-slide--desktop {
	display: none;
}
@media (min-width: 768px) {
	.banner-slide--desktop {
		display: block;
		height: 100%;
	}
}

.banner-slide--mobile {
	display: block;
	height: 100%;
}
@media (min-width: 768px) {
	.banner-slide--mobile {
		display: none;
	}
}

.banner-slide.reverse .banner-overlay p,
.banner-slide.reverse .banner-overlay header {
	color: #fff;
}
.banner-slide.reverse .banner-overlay footer {
	width: 100%;
}
.banner-slide.reverse .banner-overlay footer .cta-button {
	border-color: #fff;
	color: #fff;
	display: inline-block;
}
.banner-slide.reverse .banner-overlay footer .cta-button:hover {
	color: #575656;
	background-color: #fff;
}
.banner-slide.reverse .banner-overlay--header {
	color: #fff;
}

.banner-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	z-index: 300;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	text-align: center;
}
@media (min-width: 768px) {
	.banner-overlay {
		width: 500px;
	}
}
@media (min-width: 1024px) {
	.banner-overlay {
		width: 750px;
	}
}
.banner-overlay p {
	margin: 1.5em 0;
	font-weight: 700;
}
.banner-overlay footer {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.banner-overlay footer .cta-button {
	border: 2px solid #575656;
	color: #575656;
	padding: 1em 2em;
	text-decoration: none;
	font-weight: 900;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.banner-overlay footer .cta-button:hover {
	background-color: #575656;
	color: #fff;
}

.banner-overlay--header {
	position: absolute;
	z-index: 300;
	top: 30px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	font-weight: 900;
}
@media (min-width: 768px) {
	.banner-overlay--header {
		top: 78px;
	}
}

/*
jQuery Cycle Tools
*************************************************************************************/
.cycle-pager {
	z-index: 200;
	width: 100%;
	text-align: center;
	padding: 1.4em 0;
	line-height: 10px;
}
.cycle-pager span {
	display: inline-block;
	margin: 0 0.35em;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background-color: #575656;
	border: 2px solid #fff;
	cursor: pointer;
	text-indent: -999em;
	-webkit-transition: all 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cycle-pager span.cycle-pager-active {
	background-color: transparent;
	border: 2px solid #575656;
}

.cycle-next,
.cycle-prev {
	width: 1.4em;
	height: 1.4em;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	display: block;
	-webkit-transition: all 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
	top: 50%;
	border-top: 0;
	border-left: 0;
	border-bottom: 3px solid #fff;
	border-right: 3px solid #fff;
	right: 1.4em;
	z-index: 2;
	margin-top: -0.7em;
	z-index: 200;
	cursor: pointer;
	transition: all 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.cycle-prev {
	right: auto;
	left: 1.4em;
	border-top: 3px solid #fff;
	border-left: 3px solid #fff;
	border-bottom: 0;
	border-right: 0;
}

.slideshow-loader {
	display: block;
	width: 1.4em;
	height: 1.4em;
	line-height: 1.4em;
	position: absolute;
	left: 50%;
	top: calc(50% - 56px);
	margin-top: -0.7em;
	margin-left: -0.7em;
	z-index: 201;
	text-align: center;
	background-image: url(../img/oval.svg);
	background-repeat: no-repeat;
	background-position: center center;
}

.beer-selection {
	background-color: #fffeeb;
	padding: 2.8em 0;
}
@media (min-width: 768px) {
	.beer-selection {
		padding: 5.6em 0;
	}
}

.beer-selection--intro {
	border-bottom: 3px solid #575656;
	padding-bottom: 2.8em;
	margin-bottom: 2.8em;
}
@media (min-width: 768px) {
	.beer-selection--intro {
		padding-left: 6.38298%;
		padding-right: 6.38298%;
	}
}
@media (min-width: 768px) {
	.beer-selection--intro {
		padding-left: 23.40426%;
		padding-right: 23.40426%;
	}
}
.beer-selection--intro p {
	text-align: center;
	font-size: 1.2em;
	line-height: 1.16667em;
	margin: 0;
	font-weight: bold;
}
@media (min-width: 1024px) {
	.beer-selection--intro p {
		font-size: 1.5em;
		line-height: 1.4em;
	}
}

.beer-selection--list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.beer-selection--list li {
	margin: 10px;
	width: 100px;
}
.beer-selection--list li img {
	display: block;
}
.beer-selection--list li a {
	display: block;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.beer-selection--list li a:hover {
	opacity: 0.5;
}

.cf-form {
	margin: 2.8em 0;
	text-align: center;
}

.cf-form--title {
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05714em;
	margin-bottom: 1em;
}

.cf-form--item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.cf-form--label {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	text-align: center;
	font-weight: 900;
	padding: 1em 0;
}

.cf-form--input {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	text-align: center;
	display: block;
	font-size: 1em;
	line-height: 1.4em;
	background-color: transparent;
	border: 0;
	border-bottom: 2px solid #d6d6d9;
	width: 100%;
	font-family: "FigginsSans", sans-serif;
	padding: 0.7em;
	text-align: center;
	color: #444;
	outline: none;
	border-radius: 0;
}
@media (min-width: 768px) {
	.cf-form--input {
		margin-bottom: 0;
	}
}
.cf-form--input:focus {
	border-color: #575656;
}

.cf-form--select {
	-webkit-appearance: none;
	outline: none;
	display: block;
	text-align: center;
	border-radius: 0;
	border: 0;
	font-size: 14px;
	font-weight: 700;
	width: 100%;
	margin: 0 0 0 0;
	color: #575656;
	padding: 0;
	line-height: 30px;
	background-color: transparent;
	font-family: "FigginsSans", sans-serif;
}
.cf-form--select option {
	text-align: center;
}

.cf-form--selectwrap {
	display: inline-block;
	position: relative;
	border-bottom: 2px solid #d8d8d8;
	padding-right: 30px;
	margin-top: 1.4em;
}
@media (min-width: 768px) {
	.cf-form--selectwrap {
		display: block;
		width: 100%;
		float: right;
	}
}
.cf-form--selectwrap:after {
	content: "";
	width: 10px;
	height: 30px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	background-image: url(../img/small-arrow-down.svg);
	background-repeat: no-repeat;
	background-position: center center;
}

.cf-form--button {
	display: inline-block;
	background-color: transparent;
	margin-top: 4em;
	border-radius: 0;
	cursor: pointer;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	letter-spacing: 2px;
	border: 2px solid #575656;
	color: #575656;
	text-transform: uppercase;
	font-size: 0.7em;
	line-height: 2em;
	line-height: 10px;
	padding: 12px 2em 10px 2em;
	text-decoration: none;
	font-weight: 900;
	transition: all 0.4s;
}
.cf-form--button:hover {
	background-color: #575656;
	color: #fff;
}

.main-footer {
	background-color: #000;
	padding: 2.8em 0 0 0;
	padding-bottom: 172px;
}
.main-footer * {
	color: #fff;
}

.outer {
	background-color: #fff;
}
@media (min-width: 768px) {
	.outer {
		margin-bottom: 500px;
	}
}

@media (min-width: 772px) {
	.outer {
		margin-bottom: 440px;
	}
}

@media (min-width: 768px) {
	.main-footer {
		padding-bottom: 112px;
		position: fixed;
		width: 100%;
		bottom: 0;
		z-index: -1;
	}
}

.footer-details {
	margin-bottom: 2.8em;
}
@media (min-width: 768px) {
	.footer-details {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 57.44681%;
		float: left;
		margin-right: 2.12766%;
		margin-right: 8.51064%;
		margin-bottom: 0;
	}
}
@media (min-width: 1024px) {
	.footer-details {
		width: 31.91489%;
		float: left;
		margin-right: 2.12766%;
		margin-right: 42.55319%;
	}
}
.footer-details p {
	font-size: 0.6em;
	line-height: 2.33333em;
	letter-spacing: 2px;
	line-height: 1.4em;
	margin: 0 0 1.4em 0;
}
.footer-details p:last-of-type {
	margin-bottom: 0;
}
.footer-details p strong {
	font-weight: 900;
}
.footer-details p a {
	text-decoration: none;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.footer-details p a:hover {
	color: #9b9b9b;
}

.footer-details--logo {
	width: 95px;
	height: 95px;
	display: block;
	background-image: url(../img/logo-fivepoints.svg);
	background-repeat: no-repeat;
	margin: 0 auto;
	margin-bottom: 1.4em;
}
@media (min-width: 768px) {
	.footer-details--logo {
		margin-bottom: 0;
	}
}

.footer-details--info {
	text-align: center;
}
@media (min-width: 768px) {
	.footer-details--info {
		text-align: left;
		float: none;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		margin-left: 1.4em;
	}
}

.footer-column {
	width: 48.93617%;
	float: left;
	margin-right: 2.12766%;
	text-align: center;
}
.footer-column:last-of-type {
	margin-right: 0;
}
@media (min-width: 768px) {
	.footer-column {
		width: 42.85714%;
		float: left;
		margin-right: 14.28571%;
	}
	.footer-column:last-of-type {
		width: 42.85714%;
		float: right;
		margin-right: 0;
	}
}
@media (min-width: 768px) {
	.footer-column {
		text-align: left;
	}
}

.footer-column-navs {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}
@media (min-width: 768px) {
	.footer-column-navs {
		width: 31.91489%;
		float: right;
		margin-right: 0;
	}
}
@media (min-width: 1024px) {
	.footer-column-navs {
		width: 23.40426%;
		float: right;
		margin-right: 0;
	}
}

.footer-logos {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
	text-align: center;
	padding-left: 15px;
}
@media (min-width: 768px) {
	.footer-logos {
		padding-left: 0;
		text-align: left;
		width: 31.91489%;
		float: right;
		margin-right: 0;
	}
}
@media (min-width: 1024px) {
	.footer-logos {
		padding-left: 0;
		text-align: left;
		width: 23.40426%;
		float: right;
		margin-right: 0;
	}
}
.footer-logos .footer-accred {
	margin: 0 2px;
}
@media (min-width: 768px) {
	.footer-logos .footer-accred {
		margin: 0 10px 0 0;
	}
}

.footer-nav ul {
	font-weight: 900;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.6em;
	line-height: 2.33333em;
	line-height: 1.8em;
	margin: 0 0 1.8em 0;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.footer-nav ul li a {
	text-decoration: none;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.footer-nav ul li a:hover {
	color: #9b9b9b;
}

.footer-accred {
	display: inline-block;
}

.footer-credits {
	background-color: #fff;
	margin-top: 2.8em;
	padding: 0.7em 0;
}
.footer-credits p {
	font-size: 0.6em;
	line-height: 2.33333em;
	line-height: 1.4em;
	color: #9b9b9b;
	margin: 0;
	text-align: center;
}
.footer-credits p span {
	color: #9b9b9b;
	display: none;
}
@media (min-width: 768px) {
	.footer-credits p span {
		display: inline;
	}
}
@media (min-width: 768px) {
	.footer-credits p br {
		display: none;
	}
}
@media (min-width: 768px) {
	.footer-credits p {
		text-align: left;
	}
}
.footer-credits p a {
	display: inline-block;
	color: #9b9b9b;
	position: relative;
	text-decoration: none;
	padding: 0 1px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.footer-credits p a:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	width: 100%;
	left: -0.07em;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	opacity: 0;
	border-bottom: 3px solid #9b9b9b;
	-webkit-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}
.footer-credits p a:hover {
	color: #9b9b9b;
}
.footer-credits p a:hover:after {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

@media (min-width: 768px) {
	.footer-credits--copyright {
		width: 40.42553%;
		float: left;
		margin-right: 2.12766%;
	}
}

.footer-credits--creators {
	margin-top: 0.7em;
}
@media (min-width: 768px) {
	.footer-credits--creators {
		width: 57.44681%;
		float: left;
		margin-right: 2.12766%;
		margin-top: 0;
		float: right;
		margin-right: 0;
	}
	.footer-credits--creators p {
		text-align: right;
	}
}

.main-header {
	background-color: #fff;
	color: #9b9b9b;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 500;
}
.main-header:after {
	content: "";
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 8px;
	background: -webkit-linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
	background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}

.main-header,
.navbar-modal {
	padding: 29px 0;
}
@media (min-width: 768px) {
	.main-header,
	.navbar-modal {
		padding: 39px 0;
	}
}

.header-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-line-pack: justify;
	align-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.header-branding {
	width: 150px;
}
@media (min-width: 768px) {
	.header-branding {
		width: 263px;
	}
}

.header-branding--logo {
	display: block;
	text-indent: -999em;
	width: 100%;
	height: 0;
	padding-bottom: 17.87072%;
	background-image: url(../img/logo-grey.svg);
	background-repeat: no-repeat;
}

.navbar-modal .header-branding--logo {
	background-image: url(../img/logo-white.svg);
}

.header-toggle {
	width: 26px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.nav-toggle {
	display: block;
	height: 22px;
	cursor: pointer;
}

.nav-close {
	display: block;
	height: 21px;
	cursor: pointer;
}

.navbar-modal {
	background-color: #575656;
	position: fixed;
	width: 100%;
	height: 100%;
	height: 100vh;
	z-index: 94035;
	top: 0;
	left: 0;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.navbar-modal.active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.navbar-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	width: 80%;
}

.main-navbar ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 6px;
	font-weight: 900;
}
.main-navbar ul li {
	padding: 0.35em 0;
}
@media (min-width: 768px) {
	.main-navbar ul li {
		padding: 0.56em 0;
	}
}
.main-navbar ul li a {
	-webkit-transition: all 250ms;
	transition: all 250ms;
	font-size: 1em;
	line-height: 1.4em;
	display: inline-block;
	color: #fff;
	position: relative;
	text-decoration: none;
	padding: 0 1px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
@media (min-width: 768px) {
	.main-navbar ul li a {
		font-size: 1.4em;
		line-height: 1.5em;
		line-height: 1.1em;
	}
}
.main-navbar ul li a:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	width: 100%;
	left: -0.07em;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	opacity: 0;
	border-bottom: 3px solid #fff;
	-webkit-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}
.main-navbar ul li a:hover {
	color: #fff;
}
.main-navbar ul li a:hover:after {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.main-navbar:hover ul li a:not(:hover) {
	opacity: 0.5;
}

.social-navbar {
	margin-top: 0.7em;
}
@media (min-width: 375px) {
	.social-navbar {
		margin-top: 1.4em;
	}
}
@media (min-width: 768px) {
	.social-navbar {
		margin-top: 2.1em;
	}
}
.social-navbar ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-line-pack: justify;
	align-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.social-navbar ul li {
	margin: 0 0.7em;
}
.social-navbar ul li a {
	color: #fff;
	display: block;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.social-navbar ul li a.icon {
	border: 2px solid #fff;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	line-height: 30px;
}
@media (min-width: 768px) {
	.social-navbar ul li a.icon {
		width: 50px;
		height: 50px;
		border-radius: 50px;
		line-height: 50px;
	}
}
.social-navbar ul li a:hover {
	background-color: #fff;
	color: #575656;
}
.social-navbar ul li a.twitter {
	background-image: url(../img/icon-twitter.svg);
}
.social-navbar ul li a.facebook {
	background-image: url(../img/icon-facebook.svg);
}
.social-navbar ul li a.instagram {
	background-image: url(../img/icon-instagram.svg);
}

.navbar-signup {
	margin-top: 0.7em;
}

.signup {
	text-decoration: none;
	color: #fff;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	position: relative;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	font-weight: 900;
}
.signup:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 3px;
	background-color: #fff;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	left: 0;
	bottom: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.signup:hover {
	color: #9b9b9b;
}
.signup:hover:after {
	background-color: #9b9b9b;
}
.signup:after {
	bottom: -2px;
}

.subnav {
	background-color: #575656;
}
.subnav ul {
	list-style: none;
	margin: 0;
	padding: 0.7em 0;
	text-align: center;
}
.subnav ul li {
	display: inline-block;
	line-height: 0;
	margin: 0 0.7em;
}
.subnav ul li a {
	font-weight: 900;
	font-size: 0.7em;
	line-height: 2em;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #9b9b9b;
	text-decoration: none;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.subnav ul li a:hover {
	color: #fff;
}
.subnav ul li.current_page_item a {
	color: #fff;
}

.newsletter {
	background-color: #575656;
	padding: 40px 0;
	position: fixed;
	width: 100%;
	bottom: 0;
}

.newsletter-form {
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media (min-width: 768px) {
	.newsletter-form {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

.newsletter-email {
	font-size: 0.7em;
	line-height: 2em;
	background-color: transparent;
	border: 0;
	border-bottom: 2px solid #fff;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 0 1em;
	text-align: center;
	width: 180px;
	color: #eee;
	outline: none;
	border-radius: 0;
	margin-bottom: 1.5em;
}
@media (min-width: 768px) {
	.newsletter-email {
		margin-right: 2em;
		margin-bottom: 0;
	}
}
.newsletter-email:focus {
	border-color: #9b9b9b;
}

.bambino {
	position: absolute;
	left: -999em;
}

.newsletter-header {
	color: #fff;
	font-weight: 900;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
	font-size: 0.7em;
	line-height: 2em;
	line-height: 1.4em;
	margin-bottom: 0.5em;
}
@media (min-width: 768px) {
	.newsletter-header {
		font-size: 0.6em;
		line-height: 2.33333em;
		margin-right: 2.33333em;
		letter-spacing: 2px;
		margin-bottom: 0;
		text-align: left;
	}
}
@media (min-width: 1024px) {
	.newsletter-header {
		font-size: 0.7em;
		line-height: 2em;
		margin-right: 2em;
	}
}

.newsletter-submit--button {
	display: block;
	background-color: transparent;
	border-radius: 0;
	cursor: pointer;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	letter-spacing: 2px;
	border: 2px solid #fff;
	color: #fff;
	text-transform: uppercase;
	font-size: 0.6em;
	line-height: 2.33333em;
	line-height: 10px;
	padding: 10px 2.33333em 8px 2.33333em;
	text-decoration: none;
	font-weight: 900;
	transition: all 0.4s;
}
.newsletter-submit--button:hover {
	background-color: #fff;
	color: #575656;
}

.pull {
	padding: 2.8em 0;
}

.pull-grey {
	background-color: #686869;
	color: #fff;
}

.pull-text {
	text-align: center;
	font-weight: bold;
	font-size: 1.2em;
	line-height: 1.16667em;
}
@media (min-width: 1024px) {
	.pull-text {
		font-size: 1.5em;
		line-height: 1.4em;
	}
}
.pull-text br {
	display: none;
}
@media (min-width: 1024px) {
	.pull-text br {
		display: inline;
	}
}

.pull-link {
	display: block;
	background-image: url(../img/arrow-white.svg);
	background-repeat: no-repeat;
	text-indent: -999em;
	width: 85px;
	height: 23px;
	cursor: pointer;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	margin-top: 1.4em;
}
@media (min-width: 768px) {
	.pull-link {
		margin-top: 0;
		margin-left: 15px;
	}
}
.pull-link:focus,
.pull-link:hover {
	opacity: 0.5;
}

.shop-wrap,
.contact-wrap,
.main-wrap {
	min-height: calc(100vh - 85px);
}
@media (min-width: 768px) {
	.shop-wrap,
	.contact-wrap,
	.main-wrap {
		min-height: calc(100vh - 235px);
	}
}

.signup,
.news-item--date,
.cf-form--label {
	font-size: 0.6em;
	line-height: 2.33333em;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.banner-overlay p,
.related-beers--header,
.cf-form--title {
	font-size: 1.5em;
	line-height: 1.4em;
	line-height: 1.2em;
}
@media (min-width: 768px) {
	.banner-overlay p,
	.related-beers--header,
	.cf-form--title {
		font-size: 1.75em;
		line-height: 1.2em;
	}
}

.contact-details--address address span,
.contact-details--address address a,
.splash-inner p {
	font-size: 1.75em;
	line-height: 1.2em;
	line-height: 1.2em;
}
@media (min-width: 1024px) {
	.contact-details--address address span,
	.contact-details--address address a,
	.splash-inner p {
		font-size: 2em;
		line-height: 1.4em;
		line-height: 1.2em;
	}
}

.banner-overlay--header,
.banner-overlay footer .cta-button,
.team-item--name,
.beer-item--name,
.archive-header--title span,
.breadcrumbs ul,
.related-posts--header,
.beers-header,
.beers-header--page,
.ale-cta,
.tickets-cta,
.ale-avail--header,
.shop-header,
.splash .cta-button {
	font-size: 0.7em;
	line-height: 2em;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.cms-text h1 {
	font-size: 2em;
	line-height: 1.4em;
	margin: 0 0 0.7em 0;
}
.cms-text h2 {
	font-size: 1.75em;
	line-height: 1.2em;
	margin: 1.6em 0 0.8em 0;
}
.cms-text h3 {
	font-size: 1.5em;
	line-height: 1.4em;
	margin: 1.86667em 0 0.93333em 0;
}
.cms-text h4,
.cms-text h5,
.cms-text h6 {
	font-size: 0.7em;
	line-height: 2em;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin: 2em 0;
}
.cms-text h1 a,
.cms-text h2 a,
.cms-text h3 a,
.cms-text h4 a,
.cms-text h5 a {
	display: inline-block;
	text-decoration: none;
	color: #575656;
	position: relative;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.cms-text h1 a:after,
.cms-text h2 a:after,
.cms-text h3 a:after,
.cms-text h4 a:after,
.cms-text h5 a:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #575656;
	-webkit-transform: translateY(-4px);
	transform: translateY(-4px);
	left: 0;
	bottom: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.cms-text h1 a:hover,
.cms-text h2 a:hover,
.cms-text h3 a:hover,
.cms-text h4 a:hover,
.cms-text h5 a:hover {
	color: #9b9b9b;
}
.cms-text h1 a:hover:after,
.cms-text h2 a:hover:after,
.cms-text h3 a:hover:after,
.cms-text h4 a:hover:after,
.cms-text h5 a:hover:after {
	background-color: #9b9b9b;
}
.cms-text p {
	font-size: 1em;
	line-height: 1.4em;
	margin: 0 0 1.4em 0;
}
.cms-text p a {
	display: inline-block;
	text-decoration: none;
	color: #575656;
	position: relative;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.cms-text p a:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #575656;
	-webkit-transform: translateY(-4px);
	transform: translateY(-4px);
	left: 0;
	bottom: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.cms-text p a:hover {
	color: #9b9b9b;
}
.cms-text p a:hover:after {
	background-color: #9b9b9b;
}
.cms-text ul {
	margin: 0 0 1.4em 0;
	padding: 0 0 0 1em;
}
.cms-text ul a {
	display: inline-block;
	text-decoration: none;
	color: #575656;
	position: relative;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.cms-text ul a:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #575656;
	-webkit-transform: translateY(-4px);
	transform: translateY(-4px);
	left: 0;
	bottom: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.cms-text ul a:hover {
	color: #9b9b9b;
}
.cms-text ul a:hover:after {
	background-color: #9b9b9b;
}
.cms-text ol {
	margin: 0 0 1.4em 0;
}

.align-center .main-article--intro {
	text-align: center;
}
.align-center .cms-text {
	text-align: center;
}
.align-center .cms-text h1,
.align-center .cms-text h2,
.align-center .cms-text h3,
.align-center .cms-text h4,
.align-center .cms-text h5,
.align-center .cms-text h6,
.align-center .cms-text p,
.align-center .cms-text ol,
.align-center .cms-text ul {
	text-align: center;
}

.align-right .main-article--intro {
	text-align: right;
}
.align-right .cms-text {
	text-align: right;
}
.align-right .cms-text h1,
.align-right .cms-text h2,
.align-right .cms-text h3,
.align-right .cms-text h4,
.align-right .cms-text h5,
.align-right .cms-text h6,
.align-right .cms-text p,
.align-right .cms-text ol,
.align-right .cms-text ul {
	text-align: right;
}

/*# sourceMappingURL=main.css.map */
