/*
 * foundry animation
 */

@keyframes fdy-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fdy-fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

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

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

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

@keyframes fdy-fadeInTopLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, -100%, 0);
		transform: translate3d(-100%, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInTopRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, -100%, 0);
		transform: translate3d(100%, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInBottomLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 100%, 0);
		transform: translate3d(-100%, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInBottomRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-flip-in-hor {
	0% {
		transform: rotateX(80deg);
		opacity: 0;
	}
	100% {
		transform: rotateX(0);
		opacity: 1;
	}
}

@keyframes fdy-flip-in-ver {
	0% {
		transform: rotateY(-80deg);
		opacity: 0;
	}
	100% {
		transform: rotateY(0);
		opacity: 1;
	}
}

@keyframes fdy-scale-in-center {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes fdy-scale-in-top {
	0% {
		transform: scale(0);
		transform-origin: 50% 0%;
		opacity: 0;
	}
	100% {
		transform: scale(1);
		transform-origin: 50% 0%;
		opacity: 1;
	}
}

@keyframes fdy-scale-in-bottom {
	0% {
		transform: scale(0);
		transform-origin: 50% 100%;
		opacity: 0;
	}
	100% {
		transform: scale(1);
		transform-origin: 50% 100%;
		opacity: 1;
	}
}

@keyframes fdy-scale-in-left {
	0% {
		transform: scale(0);
		transform-origin: 0% 50%;
		opacity: 0;
	}
	100% {
		transform: scale(1);
		transform-origin: 0% 50%;
		opacity: 1;
	}
}

@keyframes fdy-scale-in-right {
	0% {
		transform: scale(0);
		transform-origin: 100% 50%;
		opacity: 0;
	}
	100% {
		transform: scale(1);
		transform-origin: 100% 50%;
		opacity: 1;
	}
}

@keyframes fdy-scale-in-ver-center {
	0% {
		transform: scaleY(0);
		opacity: 0;
	}
	100% {
		transform: scaleY(1);
		opacity: 1;
	}
}

@keyframes fdy-scale-in-hor-center {
	0% {
		transform: scaleX(0);
		opacity: 0;
	}
	100% {
		transform: scaleX(1);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-center {
	0% {
		transform: rotate(-360deg);
		opacity: 0;
	}
	100% {
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-top {
	0% {
		transform: rotate(-360deg);
		transform-origin: top;
		opacity: 0;
	}
	100% {
		transform: rotate(0deg);
		transform-origin: top;
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-bottom {
	0% {
		transform: rotate(-360deg);
		transform-origin: bottom;
		opacity: 0;
	}
	100% {
		transform: rotate(0deg);
		transform-origin: bottom;
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-left {
	0% {
		transform: rotate(-360deg);
		transform-origin: left;
		opacity: 0;
	}
	100% {
		transform: rotate(0deg);
		transform-origin: left;
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-right {
	0% {
		transform: rotate(-360deg);
		transform-origin: right;
		opacity: 0;
	}
	100% {
		transform: rotate(0deg);
		transform-origin: right;
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-hor {
	0% {
		transform: rotateX(360deg);
		opacity: 0;
	}
	100% {
		transform: rotateX(0deg);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-ver {
	0% {
		transform: rotateY(-360deg);
		opacity: 0;
	}
	100% {
		transform: rotateY(0deg);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-subtle-cw {
	0% {
		transform: rotate(-45deg);
		opacity: 0;
	}
	100% {
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-subtle-ccw {
	0% {
		transform: rotate(45deg);
		opacity: 0;
	}
	100% {
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-subtle-fwd-cw {
	0% {
		transform: scale(0.5) rotate(-45deg);
		opacity: 0;
	}
	100% {
		transform: scale(1) rotate(0);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-subtle-fwd-ccw {
	0% {
		transform: scale(0.5) rotate(45deg);
		opacity: 0;
	}
	100% {
		transform: scale(1) rotate(0);
		opacity: 1;
	}
}

@keyframes fdy-swirl-in-fwd {
	0% {
		transform: rotate(-540deg) scale(0);
		opacity: 0;
	}
	100% {
		transform: rotate(0) scale(1);
		opacity: 1;
	}
}

@keyframes fdy-swirl-in-bck {
	0% {
		transform: rotate(540deg) scale(5);
		opacity: 0;
	}
	100% {
		transform: rotate(0) scale(1);
		opacity: 1;
	}
}

@keyframes fdy-slit-in-vertical {
	0% {
		transform: scale(0.25) rotateY(90deg);
		opacity: 0;
	}
	40% {
		transform: scale(0.85) rotateY(88deg);
		opacity: 1;
	}
	100% {
		transform: scale(1) translateZ(0) rotateY(0);
	}
}

@keyframes fdy-slit-in-horizontal {
	0% {
		transform: scale(0.25) rotateX(90deg);
		opacity: 0;
	}
	40% {
		transform: scale(0.85) rotateX(88deg);
		opacity: 1;
	}
	100% {
		transform: scale(1) translateZ(0) rotateX(0);
	}
}

@keyframes fdy-puff-in-center {
	0% {
		transform: scale(2);
		filter: blur(4px);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		filter: blur(0px);
		opacity: 1;
	}
}

@keyframes fdy-slide-in-bck-center {
	0% {
		transform: scale(6);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes fdy-bounce-in-top {
	0% {
		transform: translateY(-500px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: translateY(0);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: translateY(-65px);
		animation-timing-function: ease-in;
	}
	72% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
	81% {
		transform: translateY(-28px);
		animation-timing-function: ease-in;
	}
	90% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
	95% {
		transform: translateY(-8px);
		animation-timing-function: ease-in;
	}
	100% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-bounce-in-bottom {
	0% {
		transform: translateY(500px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: translateY(0);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: translateY(65px);
		animation-timing-function: ease-in;
	}
	72% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
	81% {
		transform: translateY(28px);
		animation-timing-function: ease-in;
	}
	90% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
	95% {
		transform: translateY(8px);
		animation-timing-function: ease-in;
	}
	100% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-bounce-in-left {
	0% {
		transform: translateX(-600px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: translateX(0);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: translateX(-68px);
		animation-timing-function: ease-in;
	}
	72% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
	81% {
		transform: translateX(-28px);
		animation-timing-function: ease-in;
	}
	90% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
	95% {
		transform: translateX(-8px);
		animation-timing-function: ease-in;
	}
	100% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-bounce-in-right {
	0% {
		transform: translateX(600px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: translateX(0);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: translateX(68px);
		animation-timing-function: ease-in;
	}
	72% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
	81% {
		transform: translateX(32px);
		animation-timing-function: ease-in;
	}
	90% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
	95% {
		transform: translateX(8px);
		animation-timing-function: ease-in;
	}
	100% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-bounce-in-fwd {
	0% {
		transform: scale(0);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: scale(1);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: scale(0.7);
		animation-timing-function: ease-in;
	}
	72% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
	81% {
		transform: scale(0.84);
		animation-timing-function: ease-in;
	}
	89% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
	95% {
		transform: scale(0.95);
		animation-timing-function: ease-in;
	}
	100% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-bounce-in-bck {
	0% {
		transform: scale(7);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: scale(1);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: scale(1.5);
		animation-timing-function: ease-in;
	}
	72% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
	81% {
		transform: scale(1.24);
		animation-timing-function: ease-in;
	}
	89% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
	95% {
		transform: scale(1.04);
		animation-timing-function: ease-in;
	}
	100% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-roll-in-top {
	0% {
		transform: translateY(-800px) rotate(-540deg);
		opacity: 0;
	}
	100% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
}

@keyframes fdy-roll-in-bottom {
	0% {
		transform: translateY(800px) rotate(540deg);
		opacity: 0;
	}
	100% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
}

@keyframes fdy-roll-in-left {
	0% {
		transform: translateX(-800px) rotate(-540deg);
		opacity: 0;
	}
	100% {
		transform: translateX(0) rotate(0deg);
		opacity: 1;
	}
}

@keyframes fdy-roll-in-right {
	0% {
		transform: translateX(800px) rotate(540deg);
		opacity: 0;
	}
	100% {
		transform: translateX(0) rotate(0deg);
		opacity: 1;
	}
}

@keyframes fdy-wobble-hor-bottom {
	0%, 100% {
		transform: translateX(0%);
		transform-origin: 50% 50%;
	}
	15% {
		transform: translateX(-30px) rotate(-6deg);
	}
	30% {
		transform: translateX(15px) rotate(6deg);
	}
	45% {
		transform: translateX(-15px) rotate(-3.6deg);
	}
	60% {
		transform: translateX(9px) rotate(2.4deg);
	}
	75% {
		transform: translateX(-6px) rotate(-1.2deg);
	}
}

@keyframes fdy-wobble-hor-top {
	0%, 100% {
		transform: translateX(0%);
		transform-origin: 50% 50%;
	}
	15% {
		transform: translateX(-30px) rotate(6deg);
	}
	30% {
		transform: translateX(15px) rotate(-6deg);
	}
	45% {
		transform: translateX(-15px) rotate(3.6deg);
	}
	60% {
		transform: translateX(9px) rotate(-2.4deg);
	}
	75% {
		transform: translateX(-6px) rotate(1.2deg);
	}
}

@keyframes fdy-jello-horizontal {
	0% {
		transform: scale3d(1, 1, 1);
	}
	30% {
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		transform: scale3d(1.05, 0.95, 1);
	}
	100% {
		transform: scale3d(1, 1, 1);
	}
}

@keyframes fdy-jello-vertical {
	0% {
		transform: scale3d(1, 1, 1);
	}
	30% {
		transform: scale3d(0.75, 1.25, 1);
	}
	40% {
		transform: scale3d(1.25, 0.75, 1);
	}
	50% {
		transform: scale3d(0.85, 1.15, 1);
	}
	65% {
		transform: scale3d(1.05, 0.95, 1);
	}
	75% {
		transform: scale3d(0.95, 1.05, 1);
	}
	100% {
		transform: scale3d(1, 1, 1);
	}
}

@keyframes fdy-jello-diagonal {
	0% {
		transform: skew(0deg 0deg);
	}
	30% {
		transform: skew(25deg 25deg);
	}
	40% {
		transform: skew(-15deg, -15deg);
	}
	50% {
		transform: skew(15deg, 15deg);
	}
	65% {
		transform: skew(-5deg, -5deg);
	}
	75% {
		transform: skew(5deg, 5deg);
	}
	100% {
		transform: skew(0deg 0deg);
	}
}

@keyframes fdy-heartbeat {
	from {
		transform: scale(1);
		transform-origin: center center;
		animation-timing-function: ease-out;
	}
	10% {
		transform: scale(0.91);
		animation-timing-function: ease-in;
	}
	17% {
		transform: scale(0.98);
		animation-timing-function: ease-out;
	}
	33% {
		transform: scale(0.87);
		animation-timing-function: ease-in;
	}
	45% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
}

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

@keyframes fdy-shake-vertical {
	0%, 100% {
		transform: translateY(0);
	}
	10%, 30%, 50%, 70% {
		transform: translateY(-8px);
	}
	20%, 40%, 60% {
		transform: translateY(8px);
	}
	80% {
		transform: translateY(6.4px);
	}
	90% {
		transform: translateY(-6.4px);
	}
}

@keyframes fdy-shake-bottom {
	0%, 100% {
		transform: rotate(0deg);
		transform-origin: 50% 100%;
	}
	10% {
		transform: rotate(2deg);
	}
	20%, 40%, 60% {
		transform: rotate(-4deg);
	}
	30%, 50%, 70% {
		transform: rotate(4deg);
	}
	80% {
		transform: rotate(-2deg);
	}
	90% {
		transform: rotate(2deg);
	}
}

@keyframes fdy-shake-top {
	0%, 100% {
		transform: rotate(0deg);
		transform-origin: 50% 0;
	}
	10% {
		transform: rotate(2deg);
	}
	20%, 40%, 60% {
		transform: rotate(-4deg);
	}
	30%, 50%, 70% {
		transform: rotate(4deg);
	}
	80% {
		transform: rotate(-2deg);
	}
	90% {
		transform: rotate(2deg);
	}
}

@keyframes fdy-subtle-bounce-top {
	0% {
		transform: translateY(-45px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	24% {
		opacity: 1;
	}
	40% {
		transform: translateY(-24px);
		animation-timing-function: ease-in;
	}
	65% {
		transform: translateY(-12px);
		animation-timing-function: ease-in;
	}
	82% {
		transform: translateY(-6px);
		animation-timing-function: ease-in;
	}
	93% {
		transform: translateY(-4px);
		animation-timing-function: ease-in;
	}
	25%, 55%, 75%, 87% {
		transform: translateY(0px);
		animation-timing-function: ease-out;
	}
	100% {
		transform: translateY(0px);
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

@keyframes fdy-subtle-bounce-bottom {
	0% {
		transform: translateY(45px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	24% {
		opacity: 1;
	}
	40% {
		transform: translateY(24px);
		animation-timing-function: ease-in;
	}
	65% {
		transform: translateY(12px);
		animation-timing-function: ease-in;
	}
	82% {
		transform: translateY(6px);
		animation-timing-function: ease-in;
	}
	93% {
		transform: translateY(4px);
		animation-timing-function: ease-in;
	}
	25%, 55%, 75%, 87% {
		transform: translateY(0px);
		animation-timing-function: ease-out;
	}
	100% {
		transform: translateY(0px);
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

@keyframes fdy-subtle-bounce-left {
	0% {
		transform: translateX(-48px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	24% {
		opacity: 1;
	}
	40% {
		transform: translateX(-26px);
		animation-timing-function: ease-in;
	}
	65% {
		transform: translateX(-13px);
		animation-timing-function: ease-in;
	}
	82% {
		transform: translateX(-6.5px);
		animation-timing-function: ease-in;
	}
	93% {
		transform: translateX(-4px);
		animation-timing-function: ease-in;
	}
	25%, 55%, 75%, 87%, 98% {
		transform: translateX(0px);
		animation-timing-function: ease-out;
	}
	100% {
		transform: translateX(0px);
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

@keyframes fdy-subtle-bounce-right {
	0% {
		transform: translateX(48px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	24% {
		opacity: 1;
	}
	40% {
		transform: translateX(26px);
		animation-timing-function: ease-in;
	}
	65% {
		transform: translateX(13px);
		animation-timing-function: ease-in;
	}
	82% {
		transform: translateX(6.5px);
		animation-timing-function: ease-in;
	}
	93% {
		transform: translateX(4px);
		animation-timing-function: ease-in;
	}
	25%, 55%, 75%, 87%, 98% {
		transform: translateX(0px);
		animation-timing-function: ease-out;
	}
	100% {
		transform: translateX(0px);
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

@keyframes fdy-subtle-fade-in-top {
	0% {
		transform: translateY(-50px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fdy-subtle-fade-in-right {
	0% {
		transform: translateX(50px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fdy-subtle-fade-in-left {
	0% {
		transform: translateX(-50px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fdy-subtle-fade-in-bottom {
	0% {
		transform: translateY(50px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}



@charset "UTF-8";

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

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

@-webkit-keyframes elxr_bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes elxr_bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

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

@-webkit-keyframes elxr_flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes elxr_flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes elxr_rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes elxr_shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes elxr_shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

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

@-webkit-keyframes elxr_swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes elxr_swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

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

@-webkit-keyframes elxr_tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes elxr_tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes elxr_wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

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

@-webkit-keyframes elxr_bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes elxr_bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes elxr_bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes elxr_bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes elxr_bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

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

@-webkit-keyframes elxr_bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes elxr_bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes elxr_bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes elxr_bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes elxr_fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes elxr_fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes elxr_fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes elxr_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes elxr_fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

  100% {
    opacity: 0;
  }
}

@keyframes elxr_fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes elxr_fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

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

@-webkit-keyframes elxr_fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes elxr_fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes elxr_fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

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

@-webkit-keyframes elxr_fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes elxr_fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes elxr_fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

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

@-webkit-keyframes elxr_fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes elxr_fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes elxr_fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

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

@-webkit-keyframes elxr_fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes elxr_flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes elxr_flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes elxr_flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes elxr_flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes elxr_flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes elxr_flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes elxr_flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes elxr_lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes elxr_lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes elxr_slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes elxr_slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes elxr_slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes elxr_slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes elxr_slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes elxr_hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes elxr_hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes elxr_rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes elxr_rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

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

@-webkit-keyframes elxr_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes elxr_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

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

@-webkit-keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    -ms-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

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

@-webkit-keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    -ms-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

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

@-webkit-keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

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

@-webkit-keyframes elxr_zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes elxr_zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

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

@-webkit-keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    -ms-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}

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

@-webkit-keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    -ms-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}

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

@-webkit-keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

@keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}

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



@charset "UTF-8";/*!
Magic - http://minimamente.com
Licensed under the MIT license

Copyright (c) 2014 Christian Pucci

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.magictime {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.elxr_elxr_perspectiveDownRetourn {
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveDownRetourn;
  -moz-animation-name: elxr_perspectiveDownRetourn;
  -ms-animation-name: elxr_perspectiveDownRetourn;
  -o-animation-name: elxr_perspectiveDownRetourn;
  animation-name: elxr_perspectiveDownRetourn;
}
.elxr_elxr_perspectiveLeftRetourn {
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveLeftRetourn;
  -moz-animation-name: elxr_perspectiveLeftRetourn;
  -ms-animation-name: elxr_perspectiveLeftRetourn;
  -o-animation-name: elxr_perspectiveLeftRetourn;
  animation-name: elxr_perspectiveLeftRetourn;
}
.elxr_elxr_perspectiveRightRetourn {
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveRightRetourn;
  -moz-animation-name: elxr_perspectiveRightRetourn;
  -ms-animation-name: elxr_perspectiveRightRetourn;
  -o-animation-name: elxr_perspectiveRightRetourn;
  animation-name: elxr_perspectiveRightRetourn;
}
.elxr_elxr_perspectiveUpRetourn {
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveUpRetourn;
  -moz-animation-name: elxr_perspectiveUpRetourn;
  -ms-animation-name: elxr_perspectiveUpRetourn;
  -o-animation-name: elxr_perspectiveUpRetourn;
  animation-name: elxr_perspectiveUpRetourn;
}
.elxr_elxr_puffIn {
  -webkit-animation-name: elxr_puffIn;
  -moz-animation-name: elxr_puffIn;
  -ms-animation-name: elxr_puffIn;
  -o-animation-name: elxr_puffIn;
  animation-name: elxr_puffIn;
}
.elxr_elxr_twisterInUp {
  -webkit-animation-name: elxr_twisterInUp;
  -moz-animation-name: elxr_twisterInUp;
  -ms-animation-name: elxr_twisterInUp;
  -o-animation-name: elxr_twisterInUp;
  animation-name: elxr_twisterInUp;
}
.elxr_elxr_vanishIn {
  -webkit-animation-name: elxr_vanishIn;
  -moz-animation-name: elxr_vanishIn;
  -ms-animation-name: elxr_vanishIn;
  -o-animation-name: elxr_vanishIn;
  animation-name: elxr_vanishIn;
}
.elxr_elxr_tinRightIn {
  -webkit-animation-name: elxr_tinRightIn;
  -moz-animation-name: elxr_tinRightIn;
  -ms-animation-name: elxr_tinRightIn;
  -o-animation-name: elxr_tinRightIn;
  animation-name: elxr_tinRightIn;
}
.elxr_elxr_tinLeftIn {
  -webkit-animation-name: elxr_tinLeftIn;
  -moz-animation-name: elxr_tinLeftIn;
  -ms-animation-name: elxr_tinLeftIn;
  -o-animation-name: elxr_tinLeftIn;
  animation-name: elxr_tinLeftIn;
}


@-moz-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-moz-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-moz-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(2,2);
    -moz-filter: blur(2px);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(1,1);
    -moz-filter: blur(0px);
  }
}
@-webkit-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2,2);
    -webkit-filter: blur(2px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(1,1);
    -webkit-filter: blur(0px);
  }
}
@-o-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(2,2);
    -webkit-filter: blur(2px);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(1,1);
    -webkit-filter: blur(0px);
  }
}
@-ms-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(2,2);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(1,1);
    filter: blur(0px);
  }
}
@keyframes elxr_puffIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2,2);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1,1);
    filter: blur(0px);
  }
}
@-moz-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-webkit-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-o-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-ms-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {;
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 0 0;
    -ms-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-moz-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-webkit-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-o-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-ms-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-moz-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
@-moz-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}






  

    .foundry-typeface-fifteen {
      font-family: 'Montserrat', sans-serif;
      font-weight: 400;
      
    }

    .foundry-typeface-fifteen strong {
      font-weight: 700;
    }

    .foundry-typeface-fifteen strong em {
      font-weight: 700;
      font-style: italic;
    }

    .foundry-typeface-fifteen em {
      font-weight: 400;
      font-style: italic;
    }

    body.foundry-typeface-fifteen-page-wide-headers h1,
    body.foundry-typeface-fifteen-page-wide-headers h2,
    body.foundry-typeface-fifteen-page-wide-headers h3,
    body.foundry-typeface-fifteen-page-wide-headers h4,
    body.foundry-typeface-fifteen-page-wide-headers h5,
    body.foundry-typeface-fifteen-page-wide-headers h6, {
      font-family: 'Montserrat', sans-serif;
    }

    h1.foundry-typeface-fifteen,
    h2.foundry-typeface-fifteen,
    h3.foundry-typeface-fifteen,
    h4.foundry-typeface-fifteen,
    h5.foundry-typeface-fifteen,
    h6.foundry-typeface-fifteen {
      font-family: 'Montserrat', sans-serif !important;
    }

  






  /* LOAD LOCAL FONTS */
  
    /* Thin - Normal */
    @font-face {
        font-family: 'Montserrat';
        src: url('../') format('woff2');
        font-weight: 100;
        font-style: normal;
        
    }
  

  
    /* Thin - Italic */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-thinitalic-webfont.woff2') format('woff2');
        font-weight: 100;
        font-style: italic;
        
    }
  


  
    /* Ultra Light - Normal */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-extralight-webfont.woff2') format('woff2');
        font-weight: 200;
        font-style: normal;
        
    }
  

  
    /* Ultra Light - Italic */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-extralightitalic-webfont.woff2') format('woff2');
        font-weight: 200;
        font-style: italic;
        
    }
  


  
    /* Light - Normal */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-light-webfont.woff2') format('woff2');
        font-weight: 300;
        font-style: normal;
        
    }
  

  
    /* Light - Italic */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-lightitalic-webfont.woff2') format('woff2');
        font-weight: 300;
        font-style: italic;
        
    }
  


  
    /* Normal - Normal */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-regular-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        
    }
  

  
    /* Normal - Italic */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-italic-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: italic;
        
    }
  


  
    /* Medium - Normal */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-medium-webfont.woff2') format('woff2');
        font-weight: 500;
        font-style: normal;
        
    }
  

  
    /* Medium - Italic */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-mediumitalic-webfont.woff2') format('woff2');
        font-weight: 500;
        font-style: italic;
        
    }
  


  
     /* Demi-Bold - Normal */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-semibold-webfont.woff2') format('woff2');
        font-weight: 600;
        font-style: normal;
        
    }
  

  
    /* Demi-Bold - Italic */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-semibolditalic-webfont.woff2') format('woff2');
        font-weight: 600;
        font-style: italic;
        
    }
  


  
     /* Bold - Normal */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-bold-webfont.woff2') format('woff2');
        font-weight: 700;
        font-style: normal;
        
    }
  

  
    /* Bold - Italic */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-bolditalic-webfont.woff2') format('woff2');
        font-weight: 700;
        font-style: italic;
        
    }
  


  
    /* Heavy - Normal */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-extrabold-webfont.woff2') format('woff2');
        font-weight: 800;
        font-style: normal;
        
    }
  

  
    /* Heavy - Italic */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-extrabolditalic-webfont.woff2') format('woff2');
        font-weight: 800;
        font-style: italic;
        
    }
  


  
    /* Black - Normal */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-black-webfont.woff2') format('woff2');
        font-weight: 900;
        font-style: normal;
        
    }
  

  
    /* Black - Italic */
    @font-face {
        font-family: 'Montserrat';
        src: url('../../resources/Fonts/Montserrat/montserrat-blackitalic-webfont.woff2') format('woff2');
        font-weight: 900;
        font-style: italic;
        
    }
  
  /* End Font Loading */


  

    .foundry-typeface-one {
      font-family: 'Montserrat', sans-serif;
      font-weight: 400;
    }

    .foundry-typeface-one strong {
      font-weight: 700;
    }

    .foundry-typeface-one strong em,
    .foundry-typeface-one em strong {
      font-weight: 700;
      font-style: italic;
    }

    .foundry-typeface-one em {
      font-weight: 400;
      font-style: italic;
    }

    body.foundry-typeface-one-page-wide-headers h1,
    body.foundry-typeface-one-page-wide-headers h2,
    body.foundry-typeface-one-page-wide-headers h3,
    body.foundry-typeface-one-page-wide-headers h4,
    body.foundry-typeface-one-page-wide-headers h5,
    body.foundry-typeface-one-page-wide-headers h6 {
      font-family: 'Montserrat', sans-serif;
    }

    h1.foundry-typeface-one,
    h2.foundry-typeface-one,
    h3.foundry-typeface-one,
    h4.foundry-typeface-one,
    h5.foundry-typeface-one,
    h6.foundry-typeface-one {
      font-family: 'Montserrat', sans-serif !important;
    }

  


/* 
 ______                    _            
|  ____|                  | |           
| |__ ___  _   _ _ __   __| |_ __ _   _ 
|  __/ _ \| | | | '_ \ / _` | '__| | | |
| | | (_) | |_| | | | | (_| | |  | |_| |
|_|  \___/ \__,_|_| |_|\__,_|_|   \__, |
								   __/ |
								  |___/ 

Version: 3.2024.01.17
Copyright Elixir Graphics 2006-2023
More Info: https://foundry.elixirgraphics.com
  Support: https://elixir.support

*/ 




/* Hack to get rid of margin-left and margin-right being set to AUTO by Stacks */
.stacks_out {
	margin-left: initial;
	margin-right: initial;
}


/* Preview & Publish */
:root {
	   --fdy-base-margin-xs: 1.25rem;
	   --fdy-base-margin-sm: 1.25rem;
	   --fdy-base-margin-md: 1.25rem;
	   --fdy-base-margin-lg: 1.25rem;
	   --fdy-base-margin-xl: 1.25rem;
	  --fdy-base-margin-xxl: 1.25rem;
}

* {
	-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
}
/* End Preview & Publish */

	


/* All Modes */

/* Remove overflow from the Stacks stacks_top class */
.stacks_top {
	overflow: initial !important;
}


/* Foundry - Custom Classes */
/* Shadows & Text Shadows */
.fdy-shadow {
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-shadow-multi {
  box-shadow: 0 0.15rem 0.25rem rgba(0, 0, 0, 0.2), 0 0.4rem 1rem rgba(0, 0, 0, 0.2) !important;
}

.fdy-shadow-wide,
.fdy-shadow-wide-hover:hover {
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px !important;
}

.fdy-shadow-shallow-1 {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px !important;
}

.fdy-shadow-shallow-2 {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px !important;
}

.fdy-shadow-shallow-3 {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px !important;
}

.fdy-shadow-floating {
	box-shadow: rgba(0, 0, 0, 0.55) 0px 15px 10px -10px !important;
}

.fdy-shadow-smooth {
	box-shadow: 0 1px 1px rgba(0,0,0,0.12), 
	  0 2px 2px rgba(0,0,0,0.12), 
	  0 4px 4px rgba(0,0,0,0.12), 
	  0 8px 8px rgba(0,0,0,0.12),
	  0 16px 16px rgba(0,0,0,0.12) !important;
}

.fdy-user-preset-shadow,
.fdy-user-preset-shadow-hover:hover {
	box-shadow: 0px 5px 10px -1px rgba(0, 0, 0, 0.50);
}

.fdy-no-shadow-hover:hover {
	box-shadow: 0 0 0 0 rgba(0,0,0,0.0) !important;
}

.fdy-shadow-hover:hover {
	box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-shadow-sm-hover:hover {
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-shadow-multi-hover:hover {
	box-shadow: 0 0.15rem 0.25rem rgba(0, 0, 0, 0.2), 0 0.4rem 1rem rgba(0, 0, 0, 0.2) !important;
}

.fdy-shadow-wide-hover:hover {	
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px !important;
}

.fdy-shadow-shallow-1-hover:hover {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px !important;
}

.fdy-shadow-shallow-2-hover:hover {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px !important;
}

.fdy-shadow-shallow-3-hover:hover {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px !important;
}

.fdy-shadow-floating-hover:hover {
	box-shadow: rgba(0, 0, 0, 0.55) 0px 15px 10px -10px !important;
}

.fdy-shadow-smooth-hover:hover {
	box-shadow: 0 1px 1px rgba(0,0,0,0.12), 
	  0 2px 2px rgba(0,0,0,0.12), 
	  0 4px 4px rgba(0,0,0,0.12), 
	  0 8px 8px rgba(0,0,0,0.12),
	  0 16px 16px rgba(0,0,0,0.12) !important;
}

.fdy-control-center-small-shadow {
	box-shadow: 0 1px 3px rgba(0,0,0,0.17);  
}

.fdy-text-shadow {
  text-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-text-shadow-sm {
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-text-shadow-multi {
  text-shadow: 0 0.15rem 0.25rem rgba(0, 0, 0, 0.2), 0 0.4rem 1rem rgba(0, 0, 0, 0.2) !important;
}

.fdy-text-shadow-wide {
	text-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px !important;
}

.fdy-text-shadow-shallow-1 {
	text-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px, rgba(0, 0, 0, 0.3) 0px 3px 7px !important;
}

.fdy-text-shadow-shallow-2 {
	text-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px rgba(60, 64, 67, 0.15) !important;
}

.fdy-text-shadow-shallow-3 {
	text-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px !important;
}

.fdy-text-shadow-floating {
	text-shadow: rgba(0, 0, 0, 0.55) 0px 15px 15px !important;
}

.fdy-text-shadow-smooth {
	text-shadow: 0 1px 1px rgba(0,0,0,0.12), 
	  0 2px 2px rgba(0,0,0,0.12), 
	  0 4px 4px rgba(0,0,0,0.12), 
	  0 8px 8px rgba(0,0,0,0.12),
	  0 16px 16px rgba(0,0,0,0.12) !important;
}

.fdy-text-user-preset-shadow {
	text-shadow: 0px 5px 10px  rgba(0, 0, 0, 0.50);
}

.shadow-none,
.shadow-none-hover:hover {
	box-shadow: none !important;
}

:root {
	--fdy-transparent: transparent;
	
	--bs-body-font-size: 1.00rem;
	--bs-body-line-height: 1.50;
	--bs-body-font-weight: 400;

	
	--bs-body-color: var(--bs-dark);
	
	
}


/* Helper Classes */

.img-100-pct {
  width: 100%;
  height: auto;
}

.fdy-bg-transparent {
	background: var(--fdy-transparent);
}

.fdy-bg-white {
	background: #ffffff;
}

.fdy-translate-middle-end {
	transform: translate(-100%,-50%) !important;
}

.fdy-translate-middle-start {
	transform: translate(0%,-50%) !important;
}

.fdy-pointer-events-none {
	pointer-events: none;
}

.fdy-dropdown-menu-start {
	left: 0 !important;
	right: initial !important;
}

.fdy-dropdown-menu-end {
	right: 0 !important;
	left: initial !important;
}


/* List Group Classes */
.list-group-item.disabled-link {
  pointer-events: none;
}
	
/* Hide box-shadow at each breakpoint */
@media (max-width: 575px) {
	.fdy-hide-shadow-xs {
		box-shadow: none !important;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.fdy-hide-shadow-sm {
		box-shadow: none !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.fdy-hide-shadow-md {
		box-shadow: none !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.fdy-hide-shadow-lg {
		box-shadow: none !important;
	}
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.fdy-hide-shadow-xl {
		box-shadow: none !important;
	}
}

@media (min-width: 1400px) {
	.fdy-hide-shadow-xxl {
		box-shadow: none !important;
	}
}
	


/* Custom padding classes for x-axis */
@media (max-width: 575px) {
	.fdy-px-xs-0 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.fdy-px-sm-0 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.fdy-px-md-0 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.fdy-px-lg-0 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.fdy-px-xl-0 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 1400px) {
	.fdy-px-xxl-0 {
		padding-left: 0;
		padding-right: 0;
	}
}


/* Card Group Class Helper for Container stack */
.fdy-card-group {
	display: flex;
	flex-flow: row wrap;
}

.fdy-card-group > .card {
	flex: 1 0 0%;
	margin-bottom: 0;
}

.fdy-card-group > .card + .card {
	margin-left: 0 !important;
	border-left: 0 !important;
}

.fdy-card-group > .card:not(:last-child) .card-img-top .fdy-img,
.fdy-card-group > .card:not(:last-child) {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.fdy-card-group > .card:not(:first-child) {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.fdy-card-group > .card:not(:first-child) .card-img-top .fdy-img,
.fdy-card-group > .card:not(:first-child) .card-header {
	border-top-left-radius: 0 !important;
}



/* Custom Header Settings */

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-weight: 500;
  
  line-height: 1.20;
  
  
	
	color: inherit;
	
	
}





















.lead {
  line-height: 1.50;
  font-weight: 300;
}



mark, 
.mark {
	
	
}

kbd, 
.kbd {
	
	
}



a, 
a:hover {
	
	color: var(--bs-primary);
	
	
	
	
	
	
	text-decoration-color: transparent;
	
}

a:hover {
	
	color: var(--bs-primary);
	
	


	
		
		text-decoration-color: var(--bs-primary);
		
		
	text-decoration-thickness: 0.05rem !important;
	text-underline-offset: 1.00px !important;
	
	
	
}



	body {
		background-position: center center;
		
		

		
		background-size: cover;
		background-repeat: no-repeat;
		
		
		

	}	

	
	
	
	
	body {
		background: rgba(254, 250, 236, 1.00);
	}
	
	
	
	
	


	

	









/* Translates our Foundry preset colors to standard classes */

/* Border Color */
.border-primary {
	border-color: var(--bs-primary) !important;
}

.border-secondary {
	border-color: var(--bs-secondary) !important;
}

.border-success {
	border-color: var(--bs-success) !important;
}

.border-danger {
	border-color: var(--bs-danger) !important;
}

.border-warning {
	border-color: var(--bs-warning) !important;
}

.border-info {
	border-color: var(--bs-info) !important;
}


/* Text Color */
.text-primary {
	color: var(--bs-primary) !important;
}

.text-secondary {
	color: var(--bs-secondary) !important;
}

.text-success {
	color: var(--bs-success) !important;
}

.text-danger {
	color: var(--bs-danger) !important;
}

.text-warning {
	color: var(--bs-warning) !important;
}

.text-info {
	color: var(--bs-info) !important;
}


/* Background */
.bg-primary {
	background-color: var(--bs-primary) !important;
}

.bg-secondary {
	background-color: var(--bs-secondary) !important;
}

.bg-success {
	background-color: var(--bs-success) !important;
}

.bg-danger {
	background-color: var(--bs-danger) !important;
}

.bg-warning {
	background-color: var(--bs-warning) !important;
}

.bg-info {
	background-color: var(--bs-info) !important;
}

.btn-close {
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
}

.btn-close-white {
  filter: var(--bs-btn-close-white-filter);
}


.fdy-border-1 {
  border-width: 1px !important;
}

.fdy-border-2 {
  border-width: 2px !important;
}

.fdy-border-3 {
  border-width: 3px !important;
}

.fdy-border-4 {
  border-width: 4px !important;
}

.fdy-border-5 {
  border-width: 5px !important;
}
/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../files/fa-fonts/fa-brands-400.eot");
  src: url("../files/fa-fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../files/fa-fonts/fa-brands-400.woff2") format("woff2"), url("../files/fa-fonts/fa-brands-400.woff") format("woff"), url("../files/fa-fonts/fa-brands-400.ttf") format("truetype"), url("../files/fa-fonts/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400; }
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../files/fa-fonts/fa-regular-400.eot");
  src: url("../files/fa-fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../files/fa-fonts/fa-regular-400.woff2") format("woff2"), url("../files/fa-fonts/fa-regular-400.woff") format("woff"), url("../files/fa-fonts/fa-regular-400.ttf") format("truetype"), url("../files/fa-fonts/fa-regular-400.svg#fontawesome") format("svg"); }

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400; }
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../files/fa-fonts/fa-solid-900.eot");
  src: url("../files/fa-fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../files/fa-fonts/fa-solid-900.woff2") format("woff2"), url("../files/fa-fonts/fa-solid-900.woff") format("woff"), url("../files/fa-fonts/fa-solid-900.ttf") format("truetype"), url("../files/fa-fonts/fa-solid-900.svg#fontawesome") format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }



:root { 
  --bs-primary: #663420;
  --bs-secondary: #C4DADA;
  --bs-success: #CC985B;
  --bs-danger: #8887BC;
  --bs-warning: #2FAE90;
  --bs-info: #FEFAEC;
}
/* PMBeautifier stack v1.0.7 */body #rapidweaver_privacy_message {	display: block;		left: 0;	background-color: rgba(213, 209, 200, 1.00);												}body #rapidweaver_privacy_message p:not(button) {						text-align:center;							margin: 20px 20px 20px 20px;}body #rapidweaver_privacy_message p:not(button) span {	}body #rapidweaver_privacy_message p a:link {		}body #rapidweaver_privacy_message p a:visited {		}body #rapidweaver_privacy_message p a:hover {		}body #rapidweaver_privacy_message p a:active {		}body #rapidweaver_privacy_message button {											margin: 20px 20px 20px 20px;		background-color: rgba(188, 138, 76, 1.00);		font-weight: bold;			}body #rapidweaver_privacy_message button:hover {		background-color: rgba(167, 166, 173, 1.00);	}body #rapidweaver_privacy_message button:active {		background-color: rgba(188, 138, 76, 1.00);	}/* End of PMBeautifier stack */
#stacks_in_2_14 {
	background-color: rgba(204, 204, 204, 1.00);
}


.sk--fadeIn {
	animation: sk--fadeIn;
	animation-duration: 1s;
}

@keyframes sk--fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
} 

html {
	-webkit-scroll-behavior: smooth;
	scroll-behavior: smooth;
}

#stacks_in_2_15-navbar {
	z-index: 1040 !important;
}

.stacks_in_2_15-navbar *:focus {
	outline: none !important;
}

#stacks_in_2_15-navbar .branding-link {
	text-decoration: none !important;
}

/* Animate Navigation Bar on Page Load */
/* #stacks_in_2_15-navbar {
	
	animation: fdy-fadeIn;
	animation-duration: 0.5s;
	
} */


.fdy-fixed-nav #stacks_in_2_15-navbar {
	position: fixed;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
}	


#stacks_in_2_15-navbar {
	
	
	
}

#stacks_in_2_15-navbar.fdy-unstuck {
	
	
	
}

#stacks_in_2_15-navbar.fdy-stuck {
	
	
	
}

@keyframes fdyNavHeight{
  from {
  	height: 90px;
  }
  to {
	height: 90px;
  }
}

@keyframes fdyNavHeightRv{
  from {
	height: 90px;
  }
  to {
	  height: 90px;
  }
}



#stacks_in_2_15-navbar {	
	
	
	background: rgba(188, 138, 76, 0.97);
	
	
	
}

#stacks_in_2_15-navbar.fdy-stuck {
	
	
	background: rgba(188, 138, 76, 0.97);
	

	
}

#stacks_in_2_15-navbar .fdy-sticky-logo {
	display: none;
}


#stacks_in_2_15-navbar.fdy-stuck .fdy-normal-logo {
	display: none;
}

#stacks_in_2_15-navbar.fdy-stuck .fdy-sticky-logo {
	display: initial;
}







#stacks_in_2_15-navbar .fdy-normal-logo {
	width: 36px;
	height: auto;
}

#stacks_in_2_15-navbar .fdy-sticky-logo {
	width: 36px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_2_15-navbar .fdy-normal-logo {
		width: 36px;
		height: auto;
	}
	
	#stacks_in_2_15-navbar .fdy-sticky-logo {
		width: 36px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_2_15-navbar .fdy-normal-logo {
		width: 36px;
		height: auto;
	}
	
	#stacks_in_2_15-navbar .fdy-sticky-logo {
		width: 36px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_2_15-navbar .fdy-normal-logo {
		width: 52px;
		height: auto;
	}
	
	#stacks_in_2_15-navbar .fdy-sticky-logo {
		width: 52px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_2_15-navbar .fdy-normal-logo {
		width: 52px;
		height: auto;
	}
	
	#stacks_in_2_15-navbar .fdy-sticky-logo {
		width: 52px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_2_15-navbar .fdy-normal-logo {
		width: 52px;
		height: auto;
	}
	
	#stacks_in_2_15-navbar .fdy-sticky-logo {
		width: 52px;
		height: auto;
	}
}






/* Navigation Bar Styling */
#stacks_in_2_15-navbar {
	
	
	border-color: var(--bs-gray-200) !important;
	
}

#stacks_in_2_15-navbar.fdy-stuck {
	
	
	border-color: var(--bs-gray-200) !important;
	
}

#stacks_in_2_15-navbar.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_2_15-navbar.custom-shadow-sticky {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

/* Branding */
#stacks_in_2_15-navbar .branding-site-title {
	font-weight: 700;
	
	color: var(--bs-gray-500);
	
	
	letter-spacing: 0.00px;	
}

#stacks_in_2_15-navbar.fdy-stuck .branding-site-title {
	
	color: var(--bs-primary);
	
	
}

#stacks_in_2_15-navbar .branding-site-title {
	font-size: 1.25rem;
}

@media (min-width: 576px) {
	#stacks_in_2_15-navbar .branding-site-title {
		font-size: 1.25rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_2_15-navbar .branding-site-title {
		font-size: 1.25rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_2_15-navbar .branding-site-title {
		font-size: 1.50rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_2_15-navbar .branding-site-title {
		font-size: 1.50rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_2_15-navbar .branding-site-title {
		font-size: 1.50rem;
	}
}


/* Navigation Items */

#stacks_in_2_15-navbar .navbar-nav .nav-item a.nav-link {
	
	font-size: 0.85rem;
	
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	margin-left: 1px;
	margin-right: 1px;
}



#stacks_in_2_15-navbar .navbar-nav .nav-item:first-child a.nav-link {
	margin-left: 0px;
}

#stacks_in_2_15-navbar .navbar-nav .nav-item:last-child a.nav-link {
	margin-right: 0px;
}

#stacks_in_2_15-navbar .navbar-nav .nav-item a.nav-link,
#stacks_in_2_15-navbar .navbar-nav .nav-item a.nav-link:visited {
	font-weight: 500;
	
	color: var(--bs-primary);
	
	
	
}

#stacks_in_2_15-navbar .navbar-nav .nav-item a.nav-link.active {
	font-weight: 700;
}

#stacks_in_2_15-navbar .navbar-nav .nav-item a.nav-link.active,
#stacks_in_2_15-navbar .navbar-nav .nav-item a.nav-link.show,
#stacks_in_2_15-navbar .navbar-nav .nav-item a.nav-link:hover {
	
	color: var(--bs-primary);
	
	
	
	
	
	background-color: rgba(188, 138, 76, 0.97);
	
}


#stacks_in_2_15-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link,
#stacks_in_2_15-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link:visited {
	font-weight: ;
	
	
	color: var(--bs-primary);
	
}

#stacks_in_2_15-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link.active,
#stacks_in_2_15-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link.show,
#stacks_in_2_15-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link:hover {
	
	
	color: var(--bs-primary);
	
	
	
	background-color: rgba(188, 138, 76, 1.00);
	
	
}


/* Drop Down */
#stacks_in_2_15-navbar .nav-item.dropdown .dropdown-menu {
	
	background-color: var(--bs-info);
	
	
}

#stacks_in_2_15-navbar .nav-item.dropdown .dropdown-menu {
	
		
	border-color: var(--bs-primary);
	
	
}

#stacks_in_2_15-navbar .nav-item.dropdown .dropdown-menu.no-drop-down-border {
	border: none !important;
}

#stacks_in_2_15-navbar .nav-item.dropdown a.dropdown-item,
#stacks_in_2_15-navbar .nav-item.dropdown a.dropdown-item:visited {
	
	
	color: var(--bs-primary);
	
}

#stacks_in_2_15-navbar .nav-item.dropdown a.dropdown-item.active,
#stacks_in_2_15-navbar .nav-item.dropdown a.dropdown-item:hover {
	
	
	color: var(--bs-primary);
	

	
	
	background-color: var(--bs-success);
	
}

#stacks_in_2_15-navbar .drop-down-indicator {
  line-height: 1.4rem;
}

#stacks_in_2_15-navbar.fdy-stuck .nav-item.dropdown .dropdown-menu {
	
	
	background-color: var(--bs-info);
	

}

#stacks_in_2_15-navbar.fdy-stuck .nav-item.dropdown .dropdown-menu {
	
	
	border-color: var(--bs-success) !important;
	

	
}

#stacks_in_2_15-navbar.fdy-stuck .nav-item.dropdown a.dropdown-item,
#stacks_in_2_15-navbar.fdy-stuck .nav-item.dropdown a.dropdown-item:visited {
	
	
	color: var(--bs-primary);
	
}

#stacks_in_2_15-navbar.fdy-stuck .nav-item.dropdown a.dropdown-item.active,
#stacks_in_2_15-navbar.fdy-stuck .nav-item.dropdown a.dropdown-item:hover {
	
	
	color: var(--bs-primary);
	

	
	
	background-color: var(--bs-success);
	
}

#stacks_in_2_15-navbar hr.dropdown-divider {
	opacity: 1 !important;
	
	
	color: var(--bs-primary);
	border-color: var(--bs-primary);
		
}

#stacks_in_2_15-navbar.fdy-stuck hr.dropdown-divider {
	opacity: 1 !important;
	
	
	color: var(--bs-primary);
	border-color: var(--bs-primary);
		
}

#stacks_in_2_15-navbar .small-header h6 {
	opacity: 1 !important;
	
	
	color: var(--bs-primary);
	
}

#stacks_in_2_15-navbar.fdy-stuck .small-header h6 {
	opacity: 1 !important;
	
	
	color: var(--bs-primary);
	
}


/* Inner Max-Width - Similar to Max-Width stack */


#stacks_in_2_15-navbar .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}



#stacks_in_2_15-navbar.navbar-light .navbar-toggler {
	
	
		border-color: var(--bs-info);
		color: var(--bs-info);
	
}

#stacks_in_2_15-navbar.navbar-light .navbar-toggler.collapsed {
	
	
		border-color: var(--bs-info);
		color: var(--bs-info);
	
}

#stacks_in_2_15-navbar.fdy-stuck.navbar-light .navbar-toggler {
	
	
		border-color: var(--bs-info);
		color: var(--bs-info);
	
}

#stacks_in_2_15-navbar.fdy-stuck.navbar-light .navbar-toggler.collapsed {
	
	
		border-color: var(--bs-info) !important;
		color: var(--bs-info) !important;
	
}	

#stacks_in_2_15-navbar.navbar-light .navbar-toggler-icon {
  background-image: none;
}


	
		

		

		
		@media (min-width: 992px) {
		

		

		


			#stacks_in_2_15-navbar .fdy-normal-logo,
			#stacks_in_2_15-navbar .branding-site-title,
			#stacks_in_2_15-navbar .navbar-nav
			 {
				padding-top: 0 !important;
				padding-bottom: 0 !important;
			}
			
			#stacks_in_2_15-navbar {
				padding-top: 0px !important;
				padding-bottom: 0px !important;
			}
			
			#stacks_in_2_15-navbar ul.navbar-nav > li > .nav-link {
				padding-top: 20px !important;
				padding-bottom: 20px !important;
				padding-left: 15px !important;
				padding-right: 10px !important;
			}
			
			#stacks_in_2_15-navbar ul.navbar-nav > .vert-divider {
				padding-top: 8px !important;
				padding-bottom: 8px !important;
			}
			
		}
	

	
	
	
	
	
	
	@media (min-width: 992px) {
	
	
	
	
	
		
		#stacks_in_2_15-navbar.fdy-stuck .fdy-normal-logo,
		#stacks_in_2_15-navbar.fdy-stuck .branding-site-title,
		#stacks_in_2_15-navbar.fdy-stuck .navbar-nav {
			padding-top: 0 !important;
			padding-bottom: 0 !important;
		}
		
		#stacks_in_2_15-navbar.fdy-stuck {
			padding-top: 0px !important;
			padding-bottom: 0px !important;
		}
		
		#stacks_in_2_15-navbar.fdy-stuck ul.navbar-nav > li > .nav-link {
			padding-top: 20px !important;
			padding-bottom: 20px !important;
			padding-left: 15px !important;
			padding-right: 10px !important;
		}
		
		#stacks_in_2_15-navbar.fdy-stuck ul.navbar-nav > .vert-divider {
			padding-top: 8px !important;
			padding-bottom: 8px !important;
		}
		
	}
	

	
 

#stacks_in_2_15-navbar .dropdown-menu {
	
}








@media (max-width: 991px) {





	#stacks_in_2_15-navbar,
	#stacks_in_2_15-navbar.fdy-stuck {
		height: initial !important;
	}

	#stacks_in_2_15-navbar .dropdown-menu {
		display: none !important;
		
	}

	#stacks_in_2_15-navbar .show {
		animation: none !important;
		animation-duration: 0s !important;
		display: block !important;
		opacity: 1 !important;
	}
	
}




#stacks_in_2_15-navbar .navbar-nav .dropdown a.dropdown-item {
	
	font-size: 0.80rem;
	
}







.stacks_in_2_17-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_2_17-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_2_17-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_2_17-item.nav-item a.nav-link,
.stacks_in_2_17-item.nav-item a.nav-link:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
	
	
}

.stacks_in_2_17-item.nav-item a.nav-link.active,
.stacks_in_2_17-item.nav-item a.nav-link.show,
.stacks_in_2_17-item.nav-item a.nav-link:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	

	
}


.fdy-stuck .stacks_in_2_17-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_2_17-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_2_17-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_2_17-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_2_17-item.nav-item a.nav-link:hover {
	
		
	
}



.stacks_in_2_59-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_2_59-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_2_59-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_2_59-item.nav-item a.nav-link,
.stacks_in_2_59-item.nav-item a.nav-link:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
	
	
}

.stacks_in_2_59-item.nav-item a.nav-link.active,
.stacks_in_2_59-item.nav-item a.nav-link.show,
.stacks_in_2_59-item.nav-item a.nav-link:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	

	
}


.fdy-stuck .stacks_in_2_59-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_2_59-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_2_59-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_2_59-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_2_59-item.nav-item a.nav-link:hover {
	
		
	
}



.stacks_in_2_28-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_2_28-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_2_28-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_2_28-item > ul.dropdown-menu.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}


.stacks_in_2_28-item.nav-item a.nav-link,
.stacks_in_2_28-item.nav-item a.nav-link:visited {
		
	
	
}

.stacks_in_2_28-item.nav-item a.nav-link.active,
.stacks_in_2_28-item.nav-item a.nav-link.show,
.stacks_in_2_28-item.nav-item a.nav-link:hover {
	
		
	
}


.fdy-stuck .stacks_in_2_28-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_2_28-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_2_28-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_2_28-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_2_28-item.nav-item a.nav-link:hover {
	
		
	
}


.stacks_in_2_28-item > ul.dropdown-menu {
	
		
	
	
}

.stacks_in_2_28-item > ul.dropdown-menu.show {
	pointer-events: initial;
	opacity: 1;
	
	
		
	
}



.stacks_in_2_29-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_2_29-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_2_29-item a.dropdown-item,
.stacks_in_2_29-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_2_29-item a.dropdown-item.active,
.stacks_in_2_29-item a.dropdown-item.show,
.stacks_in_2_29-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_2_29-item a.dropdown-item,
.fdy-stuck .stacks_in_2_29-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_2_29-item a.dropdown-item.active,
.fdy-stuck .stacks_in_2_29-item a.dropdown-item.show,
.fdy-stuck .stacks_in_2_29-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_2_31-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_2_31-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_2_31-item a.dropdown-item,
.stacks_in_2_31-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_2_31-item a.dropdown-item.active,
.stacks_in_2_31-item a.dropdown-item.show,
.stacks_in_2_31-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_2_31-item a.dropdown-item,
.fdy-stuck .stacks_in_2_31-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_2_31-item a.dropdown-item.active,
.fdy-stuck .stacks_in_2_31-item a.dropdown-item.show,
.fdy-stuck .stacks_in_2_31-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_2_58-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_2_58-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_2_58-item a.dropdown-item,
.stacks_in_2_58-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_2_58-item a.dropdown-item.active,
.stacks_in_2_58-item a.dropdown-item.show,
.stacks_in_2_58-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_2_58-item a.dropdown-item,
.fdy-stuck .stacks_in_2_58-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_2_58-item a.dropdown-item.active,
.fdy-stuck .stacks_in_2_58-item a.dropdown-item.show,
.fdy-stuck .stacks_in_2_58-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_2_57-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_2_57-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_2_57-item a.dropdown-item,
.stacks_in_2_57-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_2_57-item a.dropdown-item.active,
.stacks_in_2_57-item a.dropdown-item.show,
.stacks_in_2_57-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_2_57-item a.dropdown-item,
.fdy-stuck .stacks_in_2_57-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_2_57-item a.dropdown-item.active,
.fdy-stuck .stacks_in_2_57-item a.dropdown-item.show,
.fdy-stuck .stacks_in_2_57-item a.dropdown-item:hover {
	
		
	
}


.stacks_in_2_46-divider hr.dropdown-divider {
	opacity: 1 !important;
	
}

.fdy-stuck .stacks_in_2_46-divider hr.dropdown-divider {
	
}


.hide-shadow {
	box-shadow: none !important;
}


.stacks_in_2_47-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_2_47-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_2_47-item a.dropdown-item,
.stacks_in_2_47-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_2_47-item a.dropdown-item.active,
.stacks_in_2_47-item a.dropdown-item.show,
.stacks_in_2_47-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_2_47-item a.dropdown-item,
.fdy-stuck .stacks_in_2_47-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_2_47-item a.dropdown-item.active,
.fdy-stuck .stacks_in_2_47-item a.dropdown-item.show,
.fdy-stuck .stacks_in_2_47-item a.dropdown-item:hover {
	
		
	
}


.stacks_in_2_20-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_2_20-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_2_20-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_2_20-item.nav-item a.nav-link,
.stacks_in_2_20-item.nav-item a.nav-link:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
	
	
}

.stacks_in_2_20-item.nav-item a.nav-link.active,
.stacks_in_2_20-item.nav-item a.nav-link.show,
.stacks_in_2_20-item.nav-item a.nav-link:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	

	
}


.fdy-stuck .stacks_in_2_20-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_2_20-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_2_20-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_2_20-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_2_20-item.nav-item a.nav-link:hover {
	
		
	
}



.stacks_in_2_55-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_2_55-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_2_55-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_2_55-item.nav-item a.nav-link,
.stacks_in_2_55-item.nav-item a.nav-link:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
	
	
}

.stacks_in_2_55-item.nav-item a.nav-link.active,
.stacks_in_2_55-item.nav-item a.nav-link.show,
.stacks_in_2_55-item.nav-item a.nav-link:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	

	
}


.fdy-stuck .stacks_in_2_55-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_2_55-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_2_55-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_2_55-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_2_55-item.nav-item a.nav-link:hover {
	
		
	
}



.stacks_in_2_21-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_2_21-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_2_21-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_2_21-item.nav-item a.nav-link,
.stacks_in_2_21-item.nav-item a.nav-link:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
	
	
}

.stacks_in_2_21-item.nav-item a.nav-link.active,
.stacks_in_2_21-item.nav-item a.nav-link.show,
.stacks_in_2_21-item.nav-item a.nav-link:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	

	
}


.fdy-stuck .stacks_in_2_21-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_2_21-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_2_21-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_2_21-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_2_21-item.nav-item a.nav-link:hover {
	
		
	
}



.stacks_in_2_22-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_2_22-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_2_22-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_2_22-item.nav-item a.nav-link,
.stacks_in_2_22-item.nav-item a.nav-link:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
	
	
}

.stacks_in_2_22-item.nav-item a.nav-link.active,
.stacks_in_2_22-item.nav-item a.nav-link.show,
.stacks_in_2_22-item.nav-item a.nav-link:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	

	
}


.fdy-stuck .stacks_in_2_22-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_2_22-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_2_22-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_2_22-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_2_22-item.nav-item a.nav-link:hover {
	
		
	
}



#stacks_in_133-wrapper,
#stacks_in_133-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_133-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_133-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_133-wrapper {
	background-position: center center;
}


#stacks_in_133-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_133-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_133-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_133-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_133-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_133-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_133-wrapper.bkg-image {
	background-image: url(../files/drag-and-drop-img-133.png);
}



@media only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {

	#stacks_in_133-wrapper.bkg-image {
		background-image: url(../files/drag-and-drop-retina-img-133.png);
	}

}




#stacks_in_133-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_133-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_133-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_133-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_133-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_133-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_133-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_133-wrapper.custom-corners,
#stacks_in_133-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_133-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_133-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_133-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_133-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_133-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	#stacks_in_133-wrapper > .bkg-overlay {
		display: grid;
		align-content: center;
	}

	#stacks_in_133-wrapper.height-responsive {
		height: 300px;
	}
	
	@media (min-width: 576px) {
		#stacks_in_133-wrapper.height-responsive {
			height: 300px;
		}
	}
	
	@media (min-width: 768px) {
		#stacks_in_133-wrapper.height-responsive {
			height: 400px;
		}
	}
	
	@media (min-width: 992px) {
		#stacks_in_133-wrapper.height-responsive {
			height: 400px;
		}
	}
	
	@media (min-width: 1200px) {
		#stacks_in_133-wrapper.height-responsive {
			height: 400px;
		}
	}
	
	@media (min-width: 1400px) {
		#stacks_in_133-wrapper.height-responsive {
			height: 400px;
		}
	}
	

	








#stacks_in_134-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_134-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	
	
}


#stacks_in_134-margins.margins-advanced {
	margin: 0.00% 0.00% 0.00% 0.00%;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_134-margins.padding-advanced {
	padding: 0.00% 0.00% 0.00% 0.00%;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_134-margins.padding-advanced {
		padding: 0.00% 49.00% 0.00% 8.00%;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_138-wrapper,
#stacks_in_138-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_138-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_138-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_138-wrapper {
	background-position: left top;
}


#stacks_in_138-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_138-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_138-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_138-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_138-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_138-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_138-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_138-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_138-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_138-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_138-wrapper.bkg-preset {
	background: var(--bs-cyan);
}

#stacks_in_138-wrapper.bkg-solid-color {
	background: rgba(16, 128, 128, 0.16);
}

#stacks_in_138-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_138-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_138-wrapper.custom-corners,
#stacks_in_138-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_138-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_138-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_138-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_138-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_138-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	
	#stacks_in_138-wrapper.height-minimum > .bkg-overlay {
		display: grid;
		align-content: center;
	}
	
	#stacks_in_138-wrapper.height-minimum,
	#stacks_in_138-wrapper.height-minimum > .bkg-overlay {
		min-height: 400px;
	}
	
	@media (min-width: 576px) {
		#stacks_in_138-wrapper.height-minimum,
		#stacks_in_138-wrapper.height-minimum > .bkg-overlay {
		min-height: 400px;
		}
	}
	
	@media (min-width: 768px) {
		#stacks_in_138-wrapper.height-minimum,
		#stacks_in_138-wrapper.height-minimum > .bkg-overlay {
			min-height: 500px;
		}
	}
	
	@media (min-width: 992px) {
		#stacks_in_138-wrapper.height-minimum,
		#stacks_in_138-wrapper.height-minimum > .bkg-overlay {
			min-height: 600px;
		}
	}
	
	@media (min-width: 1200px) {
		#stacks_in_138-wrapper.height-minimum,
		#stacks_in_138-wrapper.height-minimum > .bkg-overlay {
			min-height: 700px;
		}
	}
	
	@media (min-width: 1400px) {
		#stacks_in_138-wrapper.height-minimum,
		#stacks_in_138-wrapper.height-minimum > .bkg-overlay {
			min-height: 800px;
		}
	}
	








#stacks_in_140-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_140-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	padding-right: 0px !important;
}


#stacks_in_140-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_140-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




/* Base Margins */
.stacks_in_142.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_142.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_142.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_142.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_142.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_142.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_142.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_142.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_142.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_142.fdy-img.img-max-width {
	max-width: 100%;
	width: 128px;
	height: auto;
}




h2.stacks_in_144-header {
	
	
	
	
	
	
	
	
	color: ;
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_144-header > small {
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

}



/* Base Margins */
h2.stacks_in_144-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_144-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_144-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_144-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_144-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_144-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}








#stacks_in_146-wrapper {
	
	
	letter-spacing: 2.18px;
	
	
		
		
		color: var(--bs-primary);
		
	
}







#stacks_in_146-wrapper {
	font-size: 0.90rem;
}

@media (min-width: 576px) {
	#stacks_in_146-wrapper {
		font-size: 0.90rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_146-wrapper {
		font-size: 0.90rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_146-wrapper {
		font-size: 0.90rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_146-wrapper {
		font-size: 0.90rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_146-wrapper {
		font-size: 0.90rem;
	}
}



	#stacks_in_146-wrapper p:last-of-type {
		margin-bottom: 0;
	}






#stacks_in_149-wrapper,
#stacks_in_149-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_149-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_149-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_149-wrapper {
	background-position: center center;
}


#stacks_in_149-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_149-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_149-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_149-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_149-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_149-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_149-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_149-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_149-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_149-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_149-wrapper.bkg-preset {
	background: var(--bs-cyan);
}

#stacks_in_149-wrapper.bkg-solid-color {
	background: rgba(16, 128, 128, 0.00);
}

#stacks_in_149-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_149-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_149-wrapper.custom-corners,
#stacks_in_149-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_149-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_149-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_149-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_149-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_149-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	
	#stacks_in_149-wrapper.height-minimum > .bkg-overlay {
		display: grid;
		align-content: center;
	}
	
	#stacks_in_149-wrapper.height-minimum,
	#stacks_in_149-wrapper.height-minimum > .bkg-overlay {
		min-height: 400px;
	}
	
	@media (min-width: 576px) {
		#stacks_in_149-wrapper.height-minimum,
		#stacks_in_149-wrapper.height-minimum > .bkg-overlay {
		min-height: 400px;
		}
	}
	
	@media (min-width: 768px) {
		#stacks_in_149-wrapper.height-minimum,
		#stacks_in_149-wrapper.height-minimum > .bkg-overlay {
			min-height: 500px;
		}
	}
	
	@media (min-width: 992px) {
		#stacks_in_149-wrapper.height-minimum,
		#stacks_in_149-wrapper.height-minimum > .bkg-overlay {
			min-height: 600px;
		}
	}
	
	@media (min-width: 1200px) {
		#stacks_in_149-wrapper.height-minimum,
		#stacks_in_149-wrapper.height-minimum > .bkg-overlay {
			min-height: 700px;
		}
	}
	
	@media (min-width: 1400px) {
		#stacks_in_149-wrapper.height-minimum,
		#stacks_in_149-wrapper.height-minimum > .bkg-overlay {
			min-height: 800px;
		}
	}
	








#stacks_in_151-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_151-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	padding-right: 0px !important;
}


#stacks_in_151-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_151-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




/* Base Margins */
.stacks_in_153.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_153.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_153.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_153.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_153.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_153.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_153.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_153.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_153.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_153.fdy-img.img-max-width {
	max-width: 100%;
	width: 128px;
	height: auto;
}




h2.stacks_in_155-header {
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_155-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_155-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_155-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_155-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_155-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_155-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_155-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}








#stacks_in_157-wrapper {
	
	
	letter-spacing: 2.18px;
	
	
		
		
		color: var(--bs-primary);
		
	
}







#stacks_in_157-wrapper {
	font-size: 0.90rem;
}

@media (min-width: 576px) {
	#stacks_in_157-wrapper {
		font-size: 0.90rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_157-wrapper {
		font-size: 0.90rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_157-wrapper {
		font-size: 0.90rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_157-wrapper {
		font-size: 0.90rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_157-wrapper {
		font-size: 0.90rem;
	}
}



	#stacks_in_157-wrapper p:last-of-type {
		margin-bottom: 0;
	}




#stacks_in_52-wrapper,
#stacks_in_52-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_52-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_52-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_52-wrapper {
	background-position: center center;
}


#stacks_in_52-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_52-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_52-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_52-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_52-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_52-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_52-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_52-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_52-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_52-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_52-wrapper.bkg-preset {
	background: var(--bs-info);
}

#stacks_in_52-wrapper.bkg-solid-color {
	background: rgba(196, 218, 218, 1.00);
}

#stacks_in_52-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_52-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_52-wrapper.custom-corners,
#stacks_in_52-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_52-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_52-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_52-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_52-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_52-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








.stacks_in_69-alchemy {
	opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
	
	
	.stacks_in_69-alchemy-transition {
		
			opacity: 1;
			animation-name: fdy-swirl-in-fwd;
			animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			animation-duration: 3.00s;
			animation-delay: 0.00s;
			animation-fill-mode: both;
			
			
		

		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_69-alchemy {
	}
		
	.stacks_in_69-alchemy-transition {
	  opacity: 1;
	}
}




#stacks_in_70-wrapper {
	
}

#stacks_in_70-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_70-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_70-wrapper.fdy-container {
	max-width: 640px;
  }
}



@media (min-width: 768px) {
  #stacks_in_70-wrapper.fdy-container {
	max-width: 640px;
  }
}



@media (min-width: 992px) {
  #stacks_in_70-wrapper.fdy-container {
	max-width: 640px;
  }
}







#stacks_in_72-alert.alert {
	margin-bottom: 0;
}


#stacks_in_72-alert {
	
	background-color: var(--bs-success);
	
	

	
	color: var(--bs-white);
	
	

	
}

#stacks_in_72-alert.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_72-alert.custom-shadow:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_72-alert,
#stacks_in_72-alert.custom-shadow,
#stacks_in_72-alert.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}






#stacks_in_74-wrapper {
	
	
	
}









	#stacks_in_74-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_26-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	
	
}

#stacks_in_26-margins.padding-easy-presets {
	/* Padding Settings */
	
	padding-bottom: 0px !important;
	
	
}


#stacks_in_26-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_26-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_14-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}


/* 
Formsnap v.3.0.11 Stylesheet 
MODIFIED: 2019/10/16 10:27:16
*/




/* live edits to work in formsnap */
#stacks_in_28 .control-group.incase,
#stacks_in_28 .yd-radio-checkbox,
#stacks_in_28 .yd-file
{
  width:100%;
  margin: 0px 0px 25px 0px !important;
}



#stacks_in_28, #stacks_out_28, .stacks_top, #%id# .out
{
	 overflow: visible;
 }

/* custom overrides */

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #9A9A9A;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #9A9A9A;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #9A9A9A;
}

#stacks_in_28 .control-group .img-drop, 
#stacks_in_28 .control-group .incase-box, 
#stacks_in_28 .control-group input:not(.and-up), 
#stacks_in_28 .control-group select, 
#stacks_in_28 .control-group textarea {
  font-family: "Montserrat","Roboto Mono", monospace;
  font-size: 15px;
  color: #663420;
  border-color: #CFCFCF;
  border-width: 1px;
  background-color: #E6E6E6;
}

#stacks_in_28 .control-group.incase input:focus, 
#stacks_in_28 .control-group.incase select:focus, 
#stacks_in_28 .control-group.incase textarea:focus {
  border-color: #CFCFCF;
  outline: 0;
  box-shadow: none;
}

/* #stacks_in_28  .yd-file:before {
  background-color: #E6E6E6;
  border-color: #CFCFCF;
  border-width: 1px;
  color: #663420;
} */

#stacks_in_28  .yd-file .yd-file-in {
  background: #E6E6E6;
  border-color: #CFCFCF;
  border-width: 1px;
/*  border: 1px solid #dbdbdb;*/
}

#stacks_in_28 .yd-rating.yd-no-label .yd-star-menu {
  padding-top:6px;
}

#stacks_in_28  .yd-rating .yd-rating-in {
  background: #E6E6E6;
  border-color: #CFCFCF;
  border-width: 1px;
/*  border: 1px solid #dbdbdb;*/
}

#stacks_in_28 .yd-file.yd-no-label .selected-file {
  padding-top:6px;
}

#stacks_in_28  .yd-required {
  color: #C53626;
}

#stacks_in_28 .yd-sub-text {
  color: #999999;
  font-size: 13px;
}

#stacks_in_28 .yd-border {
  border-color: #CFCFCF;
  border-width: 1px;
}

#stacks_in_28 .yd-trumbowyg .trumbowyg-button-pane {
  background:  #E6E6E6;
  border-color: #CFCFCF;
  border-width: 1px;
}

#stacks_in_28 .trumbowyg-button-pane button {
  background:  #E6E6E6;
  border-color: #CFCFCF;
  border-width: 1px;
  color: #663420;
}
#stacks_in_28 .yd-trumbowyg {
  background:  #E6E6E6;
  background-color:  #E6E6E6;
}

#stacks_in_28 .yd-trumbowyg .trumbowyg-editor {
  background:  #E6E6E6;
  border-color: #CFCFCF;
  border-width: 1px;
}

#stacks_in_28 .trumbowyg-button-pane button.trumbowyg-active, 
#stacks_in_28 .trumbowyg-button-pane button:not(.trumbowyg-disable):focus, 
#stacks_in_28 .trumbowyg-button-pane button:not(.trumbowyg-disable):hover {
  background-color: transparent;
}


#stacks_in_28 .parsley-errors-list li,
#stacks_in_28 .yd-invalid-msg {
  color:#8E2F2E;
  font-size:14px;
}

#stacks_in_28 button.yd-btn {
  background: #C4DADA;
  color: #663420;
  font-size: 15px;
  padding: 10px 10px;
  font-family: "Montserrat","Roboto Mono", monospace;
}

#stacks_in_28 button.yd-btn:disabled,
#stacks_in_28 button.yd-btn[disabled]{
  opacity:.5;
  cursor: not-allowed !important;
}

#stacks_in_28 button.yd-btn:hover {
  background: #ABC1C1;
}

#stacks_in_28 button.yd-btn.yd-primary {
  background: #9BC0C0;
  color: #663420;
  font-size:  15px;
}

#stacks_in_28 button.yd-btn.yd-primary:hover {
  background: #82A7A7;
}

#stacks_in_28 .refresh-captcha {
  background-color: #E6E6E6;
  border-color: #CFCFCF;
  border-width: 1px;
  color: #663420;
  border-bottom-width: 0;
/*  border: 1px solid #DBDBDB;*/
}


#stacks_in_28 .accent-color, 
.calentim-container .calentim-input .calentim-timepickers .calentim-timepicker .calentim-hour-minute-seperator, 
.calentim-container-mobile .calentim-input .calentim-timepickers .calentim-timepicker .calentim-hour-minute-seperator, 
#stacks_in_28 .control-group.incase label, 
#stacks_in_28 div[class^=yd-]>div>label {
color: #663420;
/* font-size:  15px;
font-family: "Montserrat","Helvetica Neue","Helvetica","Arial","Verdana","sans-serif"; */
}

input.yd-star:checked ~ label.yd-star:before {
  color:#663420;
  transition: all .25s;
}

input.yd-rating-star-5:checked ~ label.yd-star:before {
  color:#663420;
}


#stacks_in_28 .control-group.incase label, 
#stacks_in_28 div[class^=yd-]>div>label {
color: #663420;
font-size:  15px;
font-family: "Montserrat","Helvetica Neue","Helvetica","Arial","Verdana","sans-serif";
}

.yd-add-item {
	font-size:  15px;
  font-family: "Montserrat","Helvetica Neue","Helvetica","Arial","Verdana","sans-serif"; /* same size as labels */
}

#stacks_in_28 .fs-checkbox-label{
	color: #663420;
	font-size:  15px;
}

#stacks_in_28 .yd-file:before { color: #663420; }

#stacks_in_28 .fs-checkbox-label{
	color: #663420;
	font-family: "Montserrat","Helvetica Neue","Helvetica","Arial","Verdana","sans-serif";
}

#stacks_in_28 .radio_checkbox li a{;
  font-family: "Montserrat","Helvetica Neue","Helvetica","Arial","Verdana","sans-serif";
  font-size:  15px;
}

#stacks_in_28 .control-group.incase .incase-box, 
#stacks_in_28 .control-group.incase input, 
#stacks_in_28 .control-group.incase select, 
#stacks_in_28 .control-group.incase textarea{
	color: #663420;
	font-size:  15px;
	font-family: "Montserrat","Roboto Mono", monospace;
  border-color: #CFCFCF;
  border-width: 1px;
  /* padding-top: %input-padding-top%; */
}

/* select down arrow color */
#stacks_in_28 .control-group.yd-select>div:after {
  border-top: 6px solid #CFCFCF;
}


#stacks_in_28 .fs-checkbox-radio .fs-checkbox-flag, 
#stacks_in_28 .rangeslider__fill {
background: #C4DADA;
}

#stacks_in_28 .fs-checkbox-flag:before {
  border-color: #C4DADA;
}

#stacks_in_28 .steps .yd-step.current {
  border-color: #CFCFCF;
}

#stacks_in_28 .yd-step-dots ul li i.fa { color:#CFCFCF !important; }
#stacks_in_28 .yd-step-dots ul li.active i.fa { color:#C4DADA !important; }

/* mobile buttons */
.calentim-container-mobile .calentim-input .calentim-footer button.calentim-cancel {
	color: #C4DADA;
	border: 1px solid #C4DADA;
}

.calentim-container-mobile .calentim-input .calentim-footer button.calentim-apply {
	background: #C4DADA;
	border: 1px solid #C4DADA
}


.calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-end:hover,
.calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-selected.calentim-end span:hover, 
.calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-selected:hover, 
.calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-start:hover, 
.calentim-container .calentim-input .calentim-timepickers .calentim-timepicker .calentim-timepicker-ampm .calentim-ampm-selected:hover, 
.calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-end:hover, 
.calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-selected.calentim-end span:hover, 
.calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-selected:hover, 
.calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-start:hover, 
.calentim-container-mobile .calentim-input .calentim-timepickers .calentim-timepicker .calentim-timepicker-ampm .calentim-ampm-selected:hover, 
.calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-end, 
.calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-selected, 
.calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-selected.calentim-end span, 
.calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-start, 
.calentim-container .calentim-input .calentim-timepickers .calentim-timepicker .calentim-timepicker-ampm .calentim-ampm-selected, 
.calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-end, 
.calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-selected, 
.calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-selected.calentim-end span, 
.calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-start, 
.calentim-container-mobile .calentim-input .calentim-timepickers .calentim-timepicker .calentim-timepicker-ampm .calentim-ampm-selected {
background: #C4DADA; border-color: #C4DADA;
}

 .calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-selected.calentim-start span, 
.calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-selected.calentim-start span {
    background:#ABC1C1; color:#fff;
    }

		/* hight light color */
.calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-hovered:not(.calentim-selected), 
.calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-hovered:not(.calentim-selected) {
	background-color: #FFFFFF;
	}
 .calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-hovered:not(.calentim-selected) span, 
.calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-hovered:not(.calentim-selected) span {
		background-color: #FFFFFF;
		}

.calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-today, 
.calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-today {
		color: #C4DADA;
		}

.calentim-container .calentim-input, .calentim-container-mobile .calentim-input {
  border-color: #CFCFCF;
/*  border-width: 1px;*/
}

/* light pre-select color on drag */
.calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-hovered:not(.calentim-selected), 
.calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-hovered:not(.calentim-selected) {
  background-color: #FFFFFF;
  }

/* selected day inner span */
.calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-selected.calentim-start span, 
.calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-days-container .calentim-day.calentim-selected.calentim-start span {
  background: #C4DADA;
  }

/* hide top pointer */
#stacks_in_28 .calentim-box-arrow-top:before {
  border-color: rgba(184,184,184,0);
  border-bottom-color:  #CFCFCF;
}

/* header link hover */
.calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-title span .calentim-month-switch:hover, .calentim-container .calentim-input .calentim-calendars .calentim-calendar .calentim-title span .calentim-year-switch:hover, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-title span .calentim-month-switch:hover, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-calendar .calentim-title span .calentim-year-switch:hover{
  color: #C4DADA;
}

/* month selected */
.calentim-container .calentim-input .calentim-calendars .calentim-month-selector .calentim-ms-month.current, .calentim-container .calentim-input .calentim-calendars .calentim-year-selector .calentim-ms-month.current, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-month-selector .calentim-ms-month.current, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-year-selector .calentim-ms-month.current {
  background: #C4DADA;
}

/* month hover */
.calentim-container .calentim-input .calentim-calendars .calentim-month-selector .calentim-ms-month:hover, .calentim-container .calentim-input .calentim-calendars .calentim-year-selector .calentim-ms-month:hover, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-month-selector .calentim-ms-month:hover, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-year-selector .calentim-ms-month:hover
 {
  background: #DDF3F3;
}

/* year selected */
.calentim-container .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year-next.current, .calentim-container .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year-prev.current, .calentim-container .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year.current, .calentim-container .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year-next.current, .calentim-container .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year-prev.current, .calentim-container .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year.current, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year-next.current, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year-prev.current, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year.current, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year-next.current, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year-prev.current, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year.current {
  background: #C4DADA;
}

/* year carets */
.calentim-container .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year-next, .calentim-container .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year-prev, .calentim-container .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year-next, .calentim-container .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year-prev, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year-next, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year-prev, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year-next, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year-prev {
  color: #C4DADA;
}

/* year hover */
.calentim-container .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year-next:hover, .calentim-container .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year-prev:hover, .calentim-container .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year:hover, .calentim-container .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year-next:hover, .calentim-container .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year-prev:hover, .calentim-container .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year:hover, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year-next:hover, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year-prev:hover, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-month-selector .calentim-ys-year:hover, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year-next:hover, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year-prev:hover, .calentim-container-mobile .calentim-input .calentim-calendars .calentim-year-selector .calentim-ys-year:hover {
  background: #DDF3F3;
}

/* Alerts */

#stacks_in_28 .yd-alert {
  font-family: "Montserrat","Helvetica Neue","Helvetica","Arial","Verdana","sans-serif";
}

#stacks_in_28 .rangeslider__value-bubble {
	background-color: #C4DADA;
}

#stacks_in_28 .rangeslider__value-bubble::before {
	border-top: 6px solid #C4DADA;
}

#stacks_in_28 .color-well {
	position:absolute; top:26px; left:11px; width:12px; height:12px; border-radius:3px;
}



#stacks_in_28 .color-well {
	top:45px;
}

#stacks_in_28 .yd-captcha>div{
  top: unset !important;
}

#stacks_in_28 .yd-captcha label {
  margin-left: 6px;
}

#stacks_in_28 .control-group.incase label {
	position: relative;
	white-space: normal;
	width: auto;
	line-height: inherit;
	padding-left: 0;
}

#stacks_in_28 .control-group.yd-trumbowyg.incase label {
	display: block;
	padding: 6px 5px 5px;
	background: #fff;
	position: absolute;
	line-height: 10px;
	font-weight: 600;
	top: 42px;
	left: 6px;
}

#stacks_in_28 .control-group.incase input, .control-group.incase textarea, 
#stacks_in_28 .control-group.incase select {
	padding: 12px 10px 12px 10px;
}

#stacks_in_28 .yd-file { padding-top:20px }
#stacks_in_28 .yd-file label {top:-20px !important }

#stacks_in_28 .yd-file .selected-file
{
  padding:7px 10px 7px;
}

#stacks_in_28 .yd-rating { padding-top:20px }
#stacks_in_28 .yd-rating label {top:-20px !important }
#stacks_in_28 .yd-rating .yd-star-menu{ padding:34px 8px 8px 0; }

#stacks_in_28 .control-group.yd-select > div:after {
	top: 30px
}

#stacks_in_28 i.yd-card-type { top:46px; }



/* .yd-error.yd-textarea .yd-counter
{
	bottom: 34px !important;
} */
.yd-error .yd-tooltip {
	bottom: 38px !important;
}

#stacks_in_28 .form-navigation  {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: -ms-grid;
  /* for shitty ie support */
  display: grid;
  -ms-grid-columns: 12 1fr;
  grid-template-columns: repeat(12, 1fr);
	grid-gap: 20px; 
}

#stacks_in_28 .form-navigation .fs-col-1,
#stacks_in_28 .form-navigation .fs-col-2,
#stacks_in_28 .form-navigation .fs-col-3,
#stacks_in_28 .form-navigation .fs-col-4,
#stacks_in_28 .form-navigation .fs-col-5,
#stacks_in_28 .form-navigation .fs-col-6,
#stacks_in_28 .form-navigation .fs-col-7,
#stacks_in_28 .form-navigation .fs-col-8,
#stacks_in_28 .form-navigation .fs-col-9,
#stacks_in_28 .form-navigation .fs-col-10,
#stacks_in_28 .form-navigation .fs-col-11,
#stacks_in_28 .form-navigation .fs-col-12 {
  -ms-grid-column: 12;
  -ms-grid-row: 1;
  grid-column: span 12; }

@media (min-width: 600px) {
  #stacks_in_28 .form-navigation .fs-col-1 {
    -ms-grid-column: 1;
    grid-column: span 1; }
		#stacks_in_28 .form-navigation .fs-col-2 {
    -ms-grid-column: 2;
    grid-column: span 2; }
		#stacks_in_28 .form-navigation .fs-col-3 {
    -ms-grid-column: 3;
    grid-column: span 3; }
		#stacks_in_28 .form-navigation .fs-col-4 {
    -ms-grid-column: 4;
    grid-column: span 4; }
		#stacks_in_28 .form-navigation .fs-col-5 {
    -ms-grid-column: 5;
    grid-column: span 5; }
		#stacks_in_28 .form-navigation .fs-col-6 {
    -ms-grid-column: 6;
    grid-column: span 6; }
		#stacks_in_28 .form-navigation .fs-col-7 {
    -ms-grid-column: 7;
    grid-column: span 7; }
		#stacks_in_28 .form-navigation .fs-col-8 {
    -ms-grid-column: 8;
    grid-column: span 8; }
		#stacks_in_28 .form-navigation .fs-col-9 {
    -ms-grid-column: 9;
    grid-column: span 9; }
		#stacks_in_28 .form-navigation .fs-col-10 {
    -ms-grid-column: 10;
    grid-column: span 10; }
		#stacks_in_28 .form-navigation .fs-col-11 {
    -ms-grid-column: 11;
    grid-column: span 11; }
		#stacks_in_28 .form-navigation .fs-col-12 {
    -ms-grid-column: 12;
    grid-column: span 12; } }

	#stacks_in_28 .form-navigation:not(:first-child) {
  margin: 20px 0 20px 0; }

  
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .incase.control-group {
    float: none !important; }
		#stacks_in_28 .form-navigation .fs-grid-container {
    display: block; }
		#stacks_in_28 .form-navigation .fs-col-1,
		#stacks_in_28 .form-navigation .fs-col-2,
		#stacks_in_28 .form-navigation .fs-col-3,
		#stacks_in_28 .form-navigation .fs-col-4,
		#stacks_in_28 .form-navigation .fs-col-5,
		#stacks_in_28 .form-navigation .fs-col-6,
		#stacks_in_28 .form-navigation .fs-col-7,
		#stacks_in_28 .form-navigation .fs-col-8,
		#stacks_in_28 .form-navigation .fs-col-9,
		#stacks_in_28 .form-navigation .fs-col-10,
		#stacks_in_28 .form-navigation .fs-col-11,
		#stacks_in_28 .form-navigation .fs-col-12 {
    width: 100%;
		margin: 10px auto; } 
	}


	/* modal custom colors */
  #stacks_in_28 .yd-overlay{background: rgba(0, 0, 0, 0.80);}
  #stacks_in_28 .yd-content{background:rgba(255, 255, 255, 1.00);color:rgba(102, 52, 32, 1.00);}
  #stacks_in_28 .yd-content h3{border-bottom-color: rgba(0, 0, 0, 0.15);}
  #stacks_in_28 .yd-content .yd-body{border-bottom-color: rgba(0, 0, 0, 0.15);}
  #stacks_in_28 .yd-modal.error .yd-content h3{color:rgba(102, 52, 32, 1.00);}
  #stacks_in_28 .yd-modal.success .yd-content h3{color:rgba(102, 52, 32, 1.00);}
  #stacks_in_28 .yd-modal-show.yd-effect-12 ~ .yd-overlay {background: rgba(255, 255, 255, 1.00)} 
  #stacks_in_28 .yd-modal-show.yd-effect-16 ~ .yd-overlay {background: rgba(0, 0, 0, 0.80);}
  #stacks_in_28 .yd-modal.process .yd-content button { display:none !important; }

/* loader */

#stacks_in_28 .yd-loader {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
#stacks_in_28 .yd-loader div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #C4DADA;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
#stacks_in_28 .yd-loader div:nth-child(1) {
  left: 6px;
  animation: yd-loader1 0.6s infinite;
}
#stacks_in_28 .yd-loader div:nth-child(2) {
  left: 6px;
  animation: yd-loader2 0.6s infinite;
}
#stacks_in_28 .yd-loader div:nth-child(3) {
  left: 26px;
  animation: yd-loader2 0.6s infinite;
}
#stacks_in_28 .yd-loader div:nth-child(4) {
  left: 45px;
  animation: yd-loader3 0.6s infinite;
}
@keyframes yd-loader1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes yd-loader3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes yd-loader2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}



 


/* Color picker style settings */







	
	#stacks_in_30 p,
	#stacks_in_30 {
		
	}
	

	
	
	
	
	



#stacks_in_30 p,
#stacks_in_30 {
	
}

          /* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_45 article,
#stacks_in_45 aside,
#stacks_in_45 details,
#stacks_in_45 figcaption,
#stacks_in_45 figure,
#stacks_in_45 footer,
#stacks_in_45 header,
#stacks_in_45 hgroup,
#stacks_in_45 main,
#stacks_in_45 nav,
#stacks_in_45 section,
#stacks_in_45 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_45 audio,
#stacks_in_45 canvas,
#stacks_in_45 progress,
#stacks_in_45 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_45 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_45 [hidden],
#stacks_in_45 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_45 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_45 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_45 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_45 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_45 code,
#stacks_in_45 kbd,
#stacks_in_45 pre,
#stacks_in_45 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_45 *,
#stacks_in_45 *:before,
#stacks_in_45 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_45 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_45 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_45 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_45 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_45 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_45 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

*/


#stacks_in_45 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_45 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_45 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_45 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_45 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_45 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_45 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_45 *,
#stacks_in_45 *:before,
#stacks_in_45 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_45 .left {
  float: left !important; }

#stacks_in_45 .right {
  float: right !important; }

#stacks_in_45 .clearfix:before,
#stacks_in_45 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_45 .clearfix:after {
  clear: both; }

#stacks_in_45 .hide {
  display: none; }

#stacks_in_45 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_45 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_45 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_45 select {
  width: 100%; }

#stacks_in_45 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_45 .row:before,
#stacks_in_45 .row:after {
  content: " ";
  display: table; }

#stacks_in_45 .row:after {
  clear: both; }

#stacks_in_45 .row.collapse > .column,
#stacks_in_45 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_45 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_45 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_45 .row .row:before,
#stacks_in_45 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_45 .row .row:after {
  clear: both; }

#stacks_in_45 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_45 .row .row.collapse:before,
#stacks_in_45 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_45 .row .row.collapse:after {
  clear: both; }

#stacks_in_45 .column,
#stacks_in_45 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_45 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_45 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_45 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_45 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_45 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_45 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_45 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_45 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_45 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_45 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_45 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_45 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_45 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_45 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_45 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_45 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_45 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_45 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_45 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_45 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_45 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_45 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_45 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_45 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_45 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_45 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_45 .column,
  #stacks_in_45 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_45 .small-1 {
    width: 8.33333%; }

  #stacks_in_45 .small-2 {
    width: 16.66667%; }

  #stacks_in_45 .small-3 {
    width: 25%; }

  #stacks_in_45 .small-4 {
    width: 33.33333%; }

  #stacks_in_45 .small-5 {
    width: 41.66667%; }

  #stacks_in_45 .small-6 {
    width: 50%; }

  #stacks_in_45 .small-7 {
    width: 58.33333%; }

  #stacks_in_45 .small-8 {
    width: 66.66667%; }

  #stacks_in_45 .small-9 {
    width: 75%; }

  #stacks_in_45 .small-10 {
    width: 83.33333%; }

  #stacks_in_45 .small-11 {
    width: 91.66667%; }

  #stacks_in_45 .small-12 {
    width: 100%; }

  #stacks_in_45 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_45 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_45 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_45 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_45 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_45 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_45 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_45 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_45 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_45 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_45 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_45 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_45 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_45 .column.small-centered,
  #stacks_in_45 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_45 .column.small-uncentered,
  #stacks_in_45 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_45 .column.small-centered:last-child,
  #stacks_in_45 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_45 .column.small-uncentered:last-child,
  #stacks_in_45 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_45 .column.small-uncentered.opposite,
  #stacks_in_45 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_45 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_45 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_45 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_45 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_45 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_45 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_45 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_45 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_45 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_45 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_45 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_45 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_45 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_45 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_45 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_45 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_45 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_45 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_45 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_45 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_45 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_45 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_45 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_45 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_45 .column,
  #stacks_in_45 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_45 .medium-1 {
    width: 8.33333%; }

  #stacks_in_45 .medium-2 {
    width: 16.66667%; }

  #stacks_in_45 .medium-3 {
    width: 25%; }

  #stacks_in_45 .medium-4 {
    width: 33.33333%; }

  #stacks_in_45 .medium-5 {
    width: 41.66667%; }

  #stacks_in_45 .medium-6 {
    width: 50%; }

  #stacks_in_45 .medium-7 {
    width: 58.33333%; }

  #stacks_in_45 .medium-8 {
    width: 66.66667%; }

  #stacks_in_45 .medium-9 {
    width: 75%; }

  #stacks_in_45 .medium-10 {
    width: 83.33333%; }

  #stacks_in_45 .medium-11 {
    width: 91.66667%; }

  #stacks_in_45 .medium-12 {
    width: 100%; }

  #stacks_in_45 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_45 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_45 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_45 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_45 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_45 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_45 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_45 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_45 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_45 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_45 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_45 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_45 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_45 .column.medium-centered,
  #stacks_in_45 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_45 .column.medium-uncentered,
  #stacks_in_45 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_45 .column.medium-centered:last-child,
  #stacks_in_45 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_45 .column.medium-uncentered:last-child,
  #stacks_in_45 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_45 .column.medium-uncentered.opposite,
  #stacks_in_45 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_45 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_45 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_45 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_45 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_45 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_45 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_45 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_45 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_45 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_45 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_45 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_45 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_45 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_45 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_45 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_45 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_45 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_45 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_45 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_45 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_45 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_45 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_45 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_45 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_45 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_45 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_45 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_45 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_45 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_45 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_45 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_45 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_45 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_45 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_45 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_45 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_45 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_45 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_45 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_45 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_45 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_45 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_45 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_45 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_45 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_45 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_45 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_45 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_45 .column,
  #stacks_in_45 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_45 .large-1 {
    width: 8.33333%; }

  #stacks_in_45 .large-2 {
    width: 16.66667%; }

  #stacks_in_45 .large-3 {
    width: 25%; }

  #stacks_in_45 .large-4 {
    width: 33.33333%; }

  #stacks_in_45 .large-5 {
    width: 41.66667%; }

  #stacks_in_45 .large-6 {
    width: 50%; }

  #stacks_in_45 .large-7 {
    width: 58.33333%; }

  #stacks_in_45 .large-8 {
    width: 66.66667%; }

  #stacks_in_45 .large-9 {
    width: 75%; }

  #stacks_in_45 .large-10 {
    width: 83.33333%; }

  #stacks_in_45 .large-11 {
    width: 91.66667%; }

  #stacks_in_45 .large-12 {
    width: 100%; }

  #stacks_in_45 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_45 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_45 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_45 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_45 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_45 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_45 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_45 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_45 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_45 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_45 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_45 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_45 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_45 .column.large-centered,
  #stacks_in_45 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_45 .column.large-uncentered,
  #stacks_in_45 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_45 .column.large-centered:last-child,
  #stacks_in_45 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_45 .column.large-uncentered:last-child,
  #stacks_in_45 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_45 .column.large-uncentered.opposite,
  #stacks_in_45 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_45 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_45 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_45 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_45 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_45 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_45 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_45 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_45 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_45 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_45 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_45 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_45 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_45 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_45 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_45 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_45 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_45 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_45 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_45 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_45 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_45 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_45 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_45 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_45 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_45 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_45 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_45 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_45 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_45 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_45 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_45 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_45 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_45 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_45 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_45 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_45 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_45 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_45 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_45 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_45 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_45 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_45 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_45 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_45 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_45 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_45 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_45 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_45 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_45 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_45 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_45 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_45 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_45 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_45 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_45 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_45 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_45 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_45 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_45 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_45 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_45 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_45 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_45 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_45 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_45 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_45 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_45 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_45 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_45 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_45 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_45 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_45 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_45 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_45 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_45 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_45 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_45 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_45 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_45 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_45 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_45 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_45 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_45 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_45 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_45 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_45 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_45 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_45 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_45 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_45 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_45 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_45 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_45 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_45 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_45 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_45 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_45 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_45 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_45 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_45 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_45 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_45 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_45 {
	padding: 0px 16px 0px 16px;
}

a.formsnap-reset:hover,
a.formsnap-reset:focus{
	cursor: pointer;
}
 
a.formsnap-reset:hover,
a.formsnap-reset:focus{
	cursor: pointer;
}
 







.stacks_in_25.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_25.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_25.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_25.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}



#stacks_in_5_2-wrapper,
#stacks_in_5_2-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_5_2-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_5_2-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_5_2-wrapper {
	background-position: center center;
}


#stacks_in_5_2-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_5_2-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_5_2-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_5_2-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_5_2-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_5_2-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_5_2-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_5_2-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_5_2-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_5_2-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_5_2-wrapper.bkg-preset {
	background: var(--bs-success);
}

#stacks_in_5_2-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_5_2-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_5_2-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_5_2-wrapper.custom-corners,
#stacks_in_5_2-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_5_2-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_5_2-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_5_2-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_5_2-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_5_2-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








.stacks_in_5_4-container {
	
	
	

	
	
	

}









#stacks_in_5_6-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5_6-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_5_6-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5_6-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_5_8-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}





#stacks_in_5_12-wrapper {
	
	
	
}




/* Base Margins */
#stacks_in_5_12-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_5_12-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_5_12-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_5_12-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_5_12-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_5_12-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_5_12-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_5_54-icon-badges {
	display: grid;
	gap: 7px;
	grid-template-columns: repeat(auto-fit, minmax(48px, 48px));
}

#stacks_in_5_54-icon-badges .icon-item {
	height: 48px;
	line-height: 48px;
	position: relative;
}

#stacks_in_5_54-icon-badges .icon-item i {
	line-height: 48px;
	font-size: 1.25rem;
}




#stacks_in_5_54-icon-badges .icon-item {
	justify-content: center;

	
	color: var(--bs-white);
	
	
	

	text-align: center;
	position: relative;
}

#stacks_in_5_54-icon-badges .icon-item i {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
}

#stacks_in_5_54-icon-badges .icon-item a,
#stacks_in_5_54-icon-badges .icon-item a:visited {
	
	color: var(--bs-white);
	
	
	
	text-decoration: none;
}






/* Base Margins */
#stacks_in_5_54-icon-badges {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_5_54-icon-badges {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_5_54-icon-badges {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_5_54-icon-badges {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_5_54-icon-badges {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_5_54-icon-badges {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


















.stacks_in_5_56-item {
	
	
	transition-duration: 250ms;
	transition-property: background, color, box-shadow;
	
	
	background: var(--bs-secondary);
	
	
	
	
	
}

.stacks_in_5_56-item:hover {
	

		
		background: var(--bs-secondary);
		
		
		

	
	
	

}



.stacks_in_5_56-item.icon-item,
.stacks_in_5_56-item.icon-item a,
.stacks_in_5_56-item.icon-item a:visited,
.stacks_in_5_56-item.icon-item i {
	
		
		color: var(--bs-primary);
		
		
		
	
}

.stacks_in_5_56-item.icon-item:hover,
.stacks_in_5_56-item.icon-item a:hover,
.stacks_in_5_56-item.icon-item a:active,
.stacks_in_5_56-item.icon-item:hover i {
	
		
		color: var(--bs-primary);
		
		
		
	
}

.stacks_in_5_57-item {
	
	
	transition-duration: 250ms;
	transition-property: background, color, box-shadow;
	
	
	background: var(--bs-secondary);
	
	
	
	
	
}

.stacks_in_5_57-item:hover {
	

		
		background: var(--bs-secondary);
		
		
		

	
	
	

}



.stacks_in_5_57-item.icon-item,
.stacks_in_5_57-item.icon-item a,
.stacks_in_5_57-item.icon-item a:visited,
.stacks_in_5_57-item.icon-item i {
	
		
		color: var(--bs-primary);
		
		
		
	
}

.stacks_in_5_57-item.icon-item:hover,
.stacks_in_5_57-item.icon-item a:hover,
.stacks_in_5_57-item.icon-item a:active,
.stacks_in_5_57-item.icon-item:hover i {
	
		
		color: var(--bs-primary);
		
		
		
	
}





/* Base Margins */
.stacks_in_5_14.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_5_14.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_5_14.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_5_14.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_5_14.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_5_14.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_5_14.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_5_14.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_5_14.fdy-img.img-custom-pct {
	width: 9%;
	height: auto;
}

.stacks_in_5_14.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}



.stacks_in_5_46-button,
.stacks_in_5_46-button:focus {
	
}











#stacks_in_5_46-wrapper a {
	outline: none;
}

#stacks_in_5_46-wrapper .btn {
	
	
}



#stacks_in_5_46-wrapper .btn.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_5_46-wrapper .btn,
#stacks_in_5_46-wrapper .btn.custom-shadow,
#stacks_in_5_46-wrapper .btn.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_5_46-wrapper .btn .badge {
	background-color: var(--bs-danger);
	color: rgba(255, 255, 255, 1.00);
}
















#stacks_in_5_19-wrapper {
	
	
	
}




/* Base Margins */
#stacks_in_5_19-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_5_19-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_5_19-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_5_19-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_5_19-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_5_19-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_5_19-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_5_21-wrapper {
	
	
	
}









	#stacks_in_5_21-wrapper p:last-of-type {
		margin-bottom: 0;
	}






.stacks_in_5_66-button,
.stacks_in_5_66-button:focus {
	
}











#stacks_in_5_66-wrapper a {
	outline: none;
}

#stacks_in_5_66-wrapper .btn {
	
	
}



#stacks_in_5_66-wrapper .btn.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_5_66-wrapper .btn,
#stacks_in_5_66-wrapper .btn.custom-shadow,
#stacks_in_5_66-wrapper .btn.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_5_66-wrapper .btn .badge {
	background-color: var(--bs-danger);
	color: rgba(255, 255, 255, 1.00);
}







/* Base Margins */
#stacks_in_5_66-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_5_66-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_5_66-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_5_66-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_5_66-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_5_66-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}







.stacks_in_5_43-button,
.stacks_in_5_43-button:focus {
	
}











#stacks_in_5_43-wrapper a {
	outline: none;
}

#stacks_in_5_43-wrapper .btn {
	
	
}



#stacks_in_5_43-wrapper .btn.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_5_43-wrapper .btn,
#stacks_in_5_43-wrapper .btn.custom-shadow,
#stacks_in_5_43-wrapper .btn.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_5_43-wrapper .btn .badge {
	background-color: var(--bs-danger);
	color: rgba(255, 255, 255, 1.00);
}







/* Base Margins */
#stacks_in_5_43-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_5_43-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_5_43-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_5_43-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_5_43-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_5_43-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}











/* Base Margins */
.stacks_in_5_27.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_5_27.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_5_27.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_5_27.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_5_27.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_5_27.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_5_27.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_5_27.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_5_27.fdy-img.img-custom-pct {
	width: 13%;
	height: auto;
}

.stacks_in_5_27.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}



.stacks_in_5_42-button,
.stacks_in_5_42-button:focus {
	
}











#stacks_in_5_42-wrapper a {
	outline: none;
}

#stacks_in_5_42-wrapper .btn {
	
	
}



#stacks_in_5_42-wrapper .btn.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_5_42-wrapper .btn,
#stacks_in_5_42-wrapper .btn.custom-shadow,
#stacks_in_5_42-wrapper .btn.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_5_42-wrapper .btn .badge {
	background-color: var(--bs-danger);
	color: rgba(255, 255, 255, 1.00);
}













.stacks_in_5_30-modal {
	z-index: 20000;
}

.stacks_in_5_30-modal .modal-content.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_5_30-modal .modal-footer {
	
}

.stacks_in_5_30-modal .modal-content {
	
	
	
	background-color: var(--bs-white);
	

	
}

.stacks_in_5_30-modal .modal-title {
	
	
	
	color: var(--bs-gray-500);
	
}

.stacks_in_5_30-modal .modal-title.custom-title-styling {
	color: rgba(126, 73, 245, 1.00);
}

.stacks_in_5_30-modal .modal-header .btn-close {
	padding: 0.5rem 0.5rem !important;
	margin: 0.5rem 0.5rem 0.5rem auto !important;
}

/*  */




.stacks_in_5_30-modal .close-modal-btn {
	
	background-color: var(--bs-secondary);
	border-color: var(--bs-secondary);
	color: rgba(255, 255, 255, 1.00);
	
	
	
}
	
.stacks_in_5_30-modal .close-modal-btn:hover {
	
	background-color: var(--bs-secondary);
	border-color: var(--bs-secondary);
	color: rgba(255, 255, 255, 1.00);
	
	
	

	opacity: 0.850000;	
}



#stacks_in_5_62-wrapper {
	
	
	
}









	#stacks_in_5_62-wrapper p:last-of-type {
		margin-bottom: 0;
	}




.stacks_in_5_33-modal {
	z-index: 20000;
}

.stacks_in_5_33-modal .modal-content.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_5_33-modal .modal-footer {
	
}

.stacks_in_5_33-modal .modal-content {
	
	
	
	background-color: var(--bs-white);
	

	
}

.stacks_in_5_33-modal .modal-title {
	
	
	
	color: var(--bs-gray-500);
	
}

.stacks_in_5_33-modal .modal-title.custom-title-styling {
	color: rgba(126, 73, 245, 1.00);
}

.stacks_in_5_33-modal .modal-header .btn-close {
	padding: 0.5rem 0.5rem !important;
	margin: 0.5rem 0.5rem 0.5rem auto !important;
}

/*  */




.stacks_in_5_33-modal .close-modal-btn {
	
	background-color: var(--bs-secondary);
	border-color: var(--bs-secondary);
	color: rgba(255, 255, 255, 1.00);
	
	
	
}
	
.stacks_in_5_33-modal .close-modal-btn:hover {
	
	background-color: var(--bs-secondary);
	border-color: var(--bs-secondary);
	color: rgba(255, 255, 255, 1.00);
	
	
	

	opacity: 0.850000;	
}



#stacks_in_5_60-wrapper {
	
	
	
}









	#stacks_in_5_60-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_5_36-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5_36-margins.padding-easy-presets {
	/* Padding Settings */
	
	padding-bottom: 0px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_5_36-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5_36-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_5_52-wrapper {
	
	
	
		
		
		color: var(--bs-info);
		
	
}







#stacks_in_5_52-wrapper {
	font-size: 7.00px;
}

@media (min-width: 576px) {
	#stacks_in_5_52-wrapper {
		font-size: 9.00px;
	}
}

@media (min-width: 768px) {
	#stacks_in_5_52-wrapper {
		font-size: 9.00px;
	}
}

@media (min-width: 992px) {
	#stacks_in_5_52-wrapper {
		font-size: 9.00px;
	}
}

@media (min-width: 1200px) {
	#stacks_in_5_52-wrapper {
		font-size: 9.00px;
	}
}

@media (min-width: 1400px) {
	#stacks_in_5_52-wrapper {
		font-size: 9.00px;
	}
}



	#stacks_in_5_52-wrapper p:last-of-type {
		margin-bottom: 0;
	}


