/*
 * 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;
	}
}



#stacks_in_1 {
    background-image: url("A2FB3EEF-B164-424C-9A9C-0A2916A455E0.jpg");
	background-repeat: repeat;
	background-position: center;
}
/* 
 ______                    _            
|  ____|                  | |           
| |__ ___  _   _ _ __   __| |_ __ _   _ 
|  __/ _ \| | | | '_ \ / _` | '__| | | |
| | | (_) | |_| | | | | (_| | |  | |_| |
|_|  \___/ \__,_|_| |_|\__,_|_|   \__, |
								   __/ |
								  |___/ 

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-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	
	--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: var(--bs-primary);
		
		
	text-decoration-thickness: 0.05rem;
	text-underline-offset: 1.00px;
	
	
	
}

a:hover {
	
	color: var(--bs-gray-500);
	
	


	
		
		text-decoration-color: var(--bs-gray-500);
		
		
	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: var(--bs-white);
	}
	
	
	
	
	
	
	


	

	









/* 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;
}




:root { 
  --bs-primary: #0D6EFD;
  --bs-secondary: #6C757D;
  --bs-success: #198754;
  --bs-danger: #DC3545;
  --bs-warning: #FFC107;
  --bs-info: #0DCAF0;
}







  

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

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

    .foundry-typeface-one strong em {
      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: 'Helvetica, Arial', 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: 'Helvetica, Arial', sans-serif !important;
    }

  






  

    .foundry-typeface-two {
      font-family: 'Times New Roman', sans-serif;
      font-weight: 400;
      
    }

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

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

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

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

    h1.foundry-typeface-two,
    h2.foundry-typeface-two,
    h3.foundry-typeface-two,
    h4.foundry-typeface-two,
    h5.foundry-typeface-two,
    h6.foundry-typeface-two {
      font-family: 'Times New Roman', sans-serif !important;
    }

  



#stacks_in_110-wrapper,
#stacks_in_110-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_110-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_110-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_110-wrapper {
	background-position: center center;
}


#stacks_in_110-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_110-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_110-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_110-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_110-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_110-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_110-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_110-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_110-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_110-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_110-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_110-wrapper.bkg-solid-color {
	background: rgba(71, 71, 71, 1.00);
}

#stacks_in_110-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_110-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_110-wrapper.custom-corners,
#stacks_in_110-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_110-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_110-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_110-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_110-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_110-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_111-wrapper {
	
	max-width: 1200px;
	
}

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


/* Advanced Mode */
#stacks_in_111-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_111-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_111-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_111-wrapper.fdy-container {
	max-width: 960px;
  }
}






#stacks_in_113-wrapper,
#stacks_in_113-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_113-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_113-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_113-wrapper {
	background-position: center center;
}


#stacks_in_113-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_113-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_113-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_113-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_113-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_113-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_113-wrapper.bkg-image {
	background-image: url(../files/drag-and-drop-img-113.jpg);
}






#stacks_in_113-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_113-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_113-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_113-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_113-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_113-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_113-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_113-wrapper.custom-corners,
#stacks_in_113-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_113-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_113-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_113-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_113-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_113-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	






.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_115 {
	height: 20.00px;
}




















@media print {
	#spacerStackstacks_in_115 {
		display: none !important;
	}
}






@media (max-width: 575px) {
	
	#stacks_in_116-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}







h1.stacks_in_122-header {
	
	
	
	
	
	
	
	
	color: ;
	
	
	

	
	letter-spacing: 0.00px;
	
	
	line-height: 1.00;
	
	
}

h1.stacks_in_122-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h1.stacks_in_122-header {
	margin-bottom: 0;
}









h4.stacks_in_126-header {
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	line-height: 2.00;
	
	
}

h4.stacks_in_126-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_126-header {
	margin-bottom: 0;
}





.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_129 {
	height: 20.00px;
}




















@media print {
	#spacerStackstacks_in_129 {
		display: none !important;
	}
}
 

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

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

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

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

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


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


#stacks_in_130-navbar {
	
	
	
}

#stacks_in_130-navbar.fdy-unstuck {
	
	
	
}

#stacks_in_130-navbar.fdy-stuck {
	
	
	
}

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

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



#stacks_in_130-navbar {	
	
	background: var(--bs-gray-500);
	
	
	
	
}

#stacks_in_130-navbar.fdy-stuck {
	
	background: var(--bs-gray-100);
	
	

	
}

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





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

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







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

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

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

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

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

#stacks_in_130-navbar.fdy-stuck .branding-site-title {
	
	color: var(--bs-gray-500);
	
	
}

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

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

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

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

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

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


/* Navigation Items */

#stacks_in_130-navbar .navbar-nav .nav-item a.nav-link {
	
	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_130-navbar .navbar-nav .nav-item a.nav-link {
	font-size: 1.25rem;
}

@media (min-width: 576px) {
	#stacks_in_130-navbar .navbar-nav .nav-item a.nav-link {
		font-size: 1.25rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_130-navbar .navbar-nav .nav-item a.nav-link {
		font-size: 1.25rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_130-navbar .navbar-nav .nav-item a.nav-link {
		font-size: 1.25rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_130-navbar .navbar-nav .nav-item a.nav-link {
		font-size: 1.25rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_130-navbar .navbar-nav .nav-item a.nav-link {
		font-size: 1.25rem;
	}
}


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

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

#stacks_in_130-navbar .navbar-nav .nav-item a.nav-link,
#stacks_in_130-navbar .navbar-nav .nav-item a.nav-link:visited {
	font-weight: 400;
	
	color: var(--bs-dark);
	
	
	
}

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

#stacks_in_130-navbar .navbar-nav .nav-item a.nav-link.active,
#stacks_in_130-navbar .navbar-nav .nav-item a.nav-link.show,
#stacks_in_130-navbar .navbar-nav .nav-item a.nav-link:hover {
	
	color: var(--bs-white);
	
	
	
	
	background-color: var(--bs-gray-500);
	
	
}


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

#stacks_in_130-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link.active,
#stacks_in_130-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link.show,
#stacks_in_130-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link:hover {
	
	
	color: var(--bs-white);
	
	
	
	
	background-color: var(--bs-gray-500);
	
}


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

#stacks_in_130-navbar .nav-item.dropdown .dropdown-menu {
	
		
	border-color: var(--bs-gray-200);
	
	
}

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

#stacks_in_130-navbar .nav-item.dropdown a.dropdown-item,
#stacks_in_130-navbar .nav-item.dropdown a.dropdown-item:visited {
	
	
	color: var(--bs-gray-500);
	
}

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

	
	
	background-color: var(--bs-gray-500);
	
}

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

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

}

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

	
}

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

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

	
	
	background-color: var(--bs-gray-500);
	
}

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

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

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

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


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


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



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

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

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

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

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


	

	

	
 

#stacks_in_130-navbar .dropdown-menu {
	
}






@media (max-width: 767px) {







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

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

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




#stacks_in_130-navbar .navbar-nav .dropdown a.dropdown-item {
	
}







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

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

	

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


.stacks_in_131-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_131-item.nav-item a.nav-link,
.stacks_in_131-item.nav-item a.nav-link:visited {
		
	
	
}

.stacks_in_131-item.nav-item a.nav-link.active,
.stacks_in_131-item.nav-item a.nav-link.show,
.stacks_in_131-item.nav-item a.nav-link:hover {
	
		
	
}


.fdy-stuck .stacks_in_131-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_131-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_131-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_131-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_131-item.nav-item a.nav-link:hover {
	
		
	
}



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

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

	

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


.stacks_in_133-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_133-item.nav-item a.nav-link,
.stacks_in_133-item.nav-item a.nav-link:visited {
		
	
	
}

.stacks_in_133-item.nav-item a.nav-link.active,
.stacks_in_133-item.nav-item a.nav-link.show,
.stacks_in_133-item.nav-item a.nav-link:hover {
	
		
	
}


.fdy-stuck .stacks_in_133-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_133-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_133-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_133-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_133-item.nav-item a.nav-link:hover {
	
		
	
}



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

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

	

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


.stacks_in_134-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_134-item.nav-item a.nav-link,
.stacks_in_134-item.nav-item a.nav-link:visited {
		
	
	
}

.stacks_in_134-item.nav-item a.nav-link.active,
.stacks_in_134-item.nav-item a.nav-link.show,
.stacks_in_134-item.nav-item a.nav-link:hover {
	
		
	
}


.fdy-stuck .stacks_in_134-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_134-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_134-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_134-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_134-item.nav-item a.nav-link:hover {
	
		
	
}



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

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

	

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


.stacks_in_135-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_135-item.nav-item a.nav-link,
.stacks_in_135-item.nav-item a.nav-link:visited {
		
	
	
}

.stacks_in_135-item.nav-item a.nav-link.active,
.stacks_in_135-item.nav-item a.nav-link.show,
.stacks_in_135-item.nav-item a.nav-link:hover {
	
		
	
}


.fdy-stuck .stacks_in_135-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_135-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_135-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_135-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_135-item.nav-item a.nav-link:hover {
	
		
	
}



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

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

	

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


.stacks_in_136-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_136-item.nav-item a.nav-link,
.stacks_in_136-item.nav-item a.nav-link:visited {
		
	
	
}

.stacks_in_136-item.nav-item a.nav-link.active,
.stacks_in_136-item.nav-item a.nav-link.show,
.stacks_in_136-item.nav-item a.nav-link:hover {
	
		
	
}


.fdy-stuck .stacks_in_136-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_136-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_136-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_136-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_136-item.nav-item a.nav-link:hover {
	
		
	
}



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

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

	

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


.stacks_in_137-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_137-item.nav-item a.nav-link,
.stacks_in_137-item.nav-item a.nav-link:visited {
		
	
	
}

.stacks_in_137-item.nav-item a.nav-link.active,
.stacks_in_137-item.nav-item a.nav-link.show,
.stacks_in_137-item.nav-item a.nav-link:hover {
	
		
	
}


.fdy-stuck .stacks_in_137-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_137-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_137-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_137-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_137-item.nav-item a.nav-link:hover {
	
		
	
}



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

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

	

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


.stacks_in_138-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_138-item.nav-item a.nav-link,
.stacks_in_138-item.nav-item a.nav-link:visited {
		
	
	
}

.stacks_in_138-item.nav-item a.nav-link.active,
.stacks_in_138-item.nav-item a.nav-link.show,
.stacks_in_138-item.nav-item a.nav-link:hover {
	
		
	
}


.fdy-stuck .stacks_in_138-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_138-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_138-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_138-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_138-item.nav-item a.nav-link:hover {
	
		
	
}




#stacks_in_142-wrapper {
	
	border-color: var(--bs-gray-600) !important;
	
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_142-wrapper .border-badge {
	
	background-color: var(--bs-warning) !important;
	
	
	color: rgba(242, 100, 12, 1.00);
}

#stacks_in_142-wrapper .border-badge {
	
}

#stacks_in_142-wrapper.custom-width {
	width: 80%;
}


#stacks_in_143-wrapper {
	
	border-color: var(--bs-gray-500) !important;
	
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_143-wrapper .border-badge {
	
	background-color: var(--bs-secondary) !important;
	
	
	color: rgba(0, 64, 181, 1.00);
}

#stacks_in_143-wrapper .border-badge {
	
}

#stacks_in_143-wrapper.custom-width {
	width: 80%;
}


h4.stacks_in_154-header {
	
	
	
	
	
	
	
	
	color: ;
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_154-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_154-header {
	margin-bottom: 0;
}







#stacks_in_202-wrapper {
	
	border-color: var(--bs-gray-600) !important;
	
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_202-wrapper .border-badge {
	
	background-color: var(--bs-warning) !important;
	
	
	color: rgba(242, 100, 12, 1.00);
}

#stacks_in_202-wrapper .border-badge {
	
}

#stacks_in_202-wrapper.custom-width {
	width: 80%;
}


#stacks_in_307-wrapper {
	
	max-width: 1000px;
	
}

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


/* Advanced Mode */
#stacks_in_307-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_307-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_307-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_307-wrapper.fdy-container {
	max-width: 960px;
  }
}










@media (max-width: 575px) {
	
	#stacks_in_291-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}




.stacks_in_294-zoom {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	opacity: 0.01;
	transition: 0.15s ease;
	z-index: 3000;
	will-change: opacity;
}

.stacks_in_294-zoom {
	background: rgba(73, 80, 80, 0.85); 
	background: radial-gradient(circle, rgba(73, 80, 80, 0.85) 0%, rgba(28, 28, 28, 0.50) 100%);
	-webkit-backdrop-filter:    ;
	backdrop-filter:    ;
}

.stacks_in_294-zoom.basicLightbox--visible {
	opacity: 1;
}

.stacks_in_294-zoom .basicLightbox__placeholder {
	max-width: 100%;
	transform: scale(0.8);
	transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.320, 1.275);  /* Easing -- Ease out and back */
	z-index: 1;
	will-change: transform;
}

.stacks_in_294-zoom .basicLightbox__placeholder > iframe:first-child:last-child,
.stacks_in_294-zoom .basicLightbox__placeholder > img:first-child:last-child,
.stacks_in_294-zoom .basicLightbox__placeholder > video:first-child:last-child {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 95%;
	max-height: 95%;
}

.stacks_in_294-zoom .basicLightbox__placeholder > iframe:first-child:last-child,
.stacks_in_294-zoom .basicLightbox__placeholder > video:first-child:last-child {
	pointer-events: auto;
}

.stacks_in_294-zoom .basicLightbox__placeholder > img:first-child:last-child,
.stacks_in_294-zoom .basicLightbox__placeholder > video:first-child:last-child {
	width: auto;
	height: auto;
}

.stacks_in_294-zoom.basicLightbox--iframe .basicLightbox__placeholder,
.stacks_in_294-zoom.basicLightbox--img .basicLightbox__placeholder,
.stacks_in_294-zoom.basicLightbox--video .basicLightbox__placeholder {
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.stacks_in_294-zoom.basicLightbox--visible .basicLightbox__placeholder {
	transform: scale(1);
}

.stacks_in_294-zoom.basicLightbox--iframe .basicLightbox__placeholder {
	width: 90vw;
	position: relative;
	padding-bottom: calc(9/16 * 90%);
	height: 0;
}

.stacks_in_294-zoom.basicLightbox--iframe .basicLightbox__placeholder iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#stacks_in_294-closer .closer-icon {
	width: 24px;
	height: 24px;
}

#stacks_in_294-closer {
	position: fixed; 
	cursor: pointer; 
	z-index: 100000; 
	background-color: rgba(33, 37, 41, 1.00);
	color: rgba(248, 249, 250, 1.00);
	
}

#stacks_in_294-closer.show-closer:hover {
	transform: scale(1.1);
}

#stacks_in_294-closer.closed {
	transition-duration: 0.15s;
	transition-timing-function: ease;
	opacity: 0;
	top: 20px; 
	right: 20px; 
	transform: scale(0.5);
	pointer-events: none;
}

#stacks_in_294-closer.show-closer {
	transition-duration: 0.15s;
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	opacity: 1;
	top: 20px; 
	right: 20px; 
	transform: scale(1);
	pointer-events: initial;
}

.stacks_in_294-wrapper .indicator-icon-sizing {
	height: 24px;
	width: 24px;
}

#stacks_in_294-zoom-indicator {
	line-height: 59px;
	height: 64px;
	width: 64px;
}

@media (min-width: 576px) {
	.stacks_in_294-wrapper .indicator-icon-sizing {
		height: 28px;
		width: 28px;
	}
	
	#stacks_in_294-zoom-indicator {
		line-height: 63px;
		height: 68px;
		width: 68px;
	}
}

@media (min-width: 768px) {
	.stacks_in_294-wrapper .indicator-icon-sizing {
		height: 32px;
		width: 32px;
	}
	
#stacks_in_294-zoom-indicator {
		line-height: 67px;
		height: 72px;
		width: 72px;
	}
}

@media (min-width: 992px) {
	.stacks_in_294-wrapper .indicator-icon-sizing {
		height: 32px;
		width: 32px;
	}
	
	#stacks_in_294-zoom-indicator {
		line-height: 67px;
		height: 72px;
		width: 72px;
	}
}

@media (min-width: 1200px) {
	.stacks_in_294-wrapper .indicator-icon-sizing {
		height: 36px;
		width: 36px;
	}
	
	#stacks_in_294-zoom-indicator {
		line-height: 71px;
		height: 76px;
		width: 76px;
	}
}

@media (min-width: 1400px) {
	.stacks_in_294-wrapper .indicator-icon-sizing {
		height: 42px;
		width: 42px;
	}
	
	#stacks_in_294-zoom-indicator {
		line-height: 77px;
		height: 82px;
		width: 82px;
	}
}


.stacks_in_294-wrapper .zoom-indicator {
	

	z-index: 100;
	background-color: rgba(255, 255, 255, 0.50);
	color: rgba(44, 49, 54, 1.00);
	
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	transition-duration: 0.1s;
	transition-property: transform;
	
	
	transform: scale(1);
	bottom: 10px; right: 10px;
	
}

.stacks_in_294-wrapper:hover .zoom-indicator {
	background-color: rgba(255, 255, 255, 0.80);
	color: rgba(44, 49, 54, 1.00);
	transition-duration: 0.1s;
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	
	
	transform: scale(1);
	bottom: 10px; right: 10px;
	
}

.stacks_in_294-zoom-modal.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}


@media (max-width: 576px) {
	.stacks_in_294-wrapper .zoom-indicator {
		
		transform: translate(-50%, -50%) scale(1);
		right: initial;
		bottom: initial;
		top: 50%;
		left: 50%;
		
	}
	
	.stacks_in_294-wrapper:hover .zoom-indicator {
		
		transform: translate(-50%, -50%) scale(1);
		right: initial;
		bottom: initial;
		top: 50%;
		left: 50%;
		
	}
}

.stacks_in_294-wrapper picture.fdy-img {
	margin: 0;
    vertical-align: top;
}



/* Base Margins */
.stacks_in_294-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_294-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_294-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_294-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_294-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_294-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_294-wrapper img {
	margin: 0 !important;
}



/* Base Margins */
.stacks_in_296.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_296.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_296.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_296.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_296.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_296.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_296.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_296.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_296.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_296.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_298-wrapper {
	
	
	
}









	#stacks_in_298-wrapper p:last-of-type {
		margin-bottom: 0;
	}






.stacks_in_301-zoom {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	opacity: 0.01;
	transition: 0.15s ease;
	z-index: 3000;
	will-change: opacity;
}

.stacks_in_301-zoom {
	background: rgba(73, 80, 80, 0.85); 
	background: radial-gradient(circle, rgba(73, 80, 80, 0.85) 0%, rgba(28, 28, 28, 0.50) 100%);
	-webkit-backdrop-filter:    ;
	backdrop-filter:    ;
}

.stacks_in_301-zoom.basicLightbox--visible {
	opacity: 1;
}

.stacks_in_301-zoom .basicLightbox__placeholder {
	max-width: 100%;
	transform: scale(0.8);
	transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.320, 1.275);  /* Easing -- Ease out and back */
	z-index: 1;
	will-change: transform;
}

.stacks_in_301-zoom .basicLightbox__placeholder > iframe:first-child:last-child,
.stacks_in_301-zoom .basicLightbox__placeholder > img:first-child:last-child,
.stacks_in_301-zoom .basicLightbox__placeholder > video:first-child:last-child {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 95%;
	max-height: 95%;
}

.stacks_in_301-zoom .basicLightbox__placeholder > iframe:first-child:last-child,
.stacks_in_301-zoom .basicLightbox__placeholder > video:first-child:last-child {
	pointer-events: auto;
}

.stacks_in_301-zoom .basicLightbox__placeholder > img:first-child:last-child,
.stacks_in_301-zoom .basicLightbox__placeholder > video:first-child:last-child {
	width: auto;
	height: auto;
}

.stacks_in_301-zoom.basicLightbox--iframe .basicLightbox__placeholder,
.stacks_in_301-zoom.basicLightbox--img .basicLightbox__placeholder,
.stacks_in_301-zoom.basicLightbox--video .basicLightbox__placeholder {
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.stacks_in_301-zoom.basicLightbox--visible .basicLightbox__placeholder {
	transform: scale(1);
}

.stacks_in_301-zoom.basicLightbox--iframe .basicLightbox__placeholder {
	width: 90vw;
	position: relative;
	padding-bottom: calc(9/16 * 90%);
	height: 0;
}

.stacks_in_301-zoom.basicLightbox--iframe .basicLightbox__placeholder iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#stacks_in_301-closer .closer-icon {
	width: 24px;
	height: 24px;
}

#stacks_in_301-closer {
	position: fixed; 
	cursor: pointer; 
	z-index: 100000; 
	background-color: rgba(33, 37, 41, 1.00);
	color: rgba(248, 249, 250, 1.00);
	
}

#stacks_in_301-closer.show-closer:hover {
	transform: scale(1.1);
}

#stacks_in_301-closer.closed {
	transition-duration: 0.15s;
	transition-timing-function: ease;
	opacity: 0;
	top: 20px; 
	right: 20px; 
	transform: scale(0.5);
	pointer-events: none;
}

#stacks_in_301-closer.show-closer {
	transition-duration: 0.15s;
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	opacity: 1;
	top: 20px; 
	right: 20px; 
	transform: scale(1);
	pointer-events: initial;
}

.stacks_in_301-wrapper .indicator-icon-sizing {
	height: 24px;
	width: 24px;
}

#stacks_in_301-zoom-indicator {
	line-height: 59px;
	height: 64px;
	width: 64px;
}

@media (min-width: 576px) {
	.stacks_in_301-wrapper .indicator-icon-sizing {
		height: 28px;
		width: 28px;
	}
	
	#stacks_in_301-zoom-indicator {
		line-height: 63px;
		height: 68px;
		width: 68px;
	}
}

@media (min-width: 768px) {
	.stacks_in_301-wrapper .indicator-icon-sizing {
		height: 32px;
		width: 32px;
	}
	
#stacks_in_301-zoom-indicator {
		line-height: 67px;
		height: 72px;
		width: 72px;
	}
}

@media (min-width: 992px) {
	.stacks_in_301-wrapper .indicator-icon-sizing {
		height: 32px;
		width: 32px;
	}
	
	#stacks_in_301-zoom-indicator {
		line-height: 67px;
		height: 72px;
		width: 72px;
	}
}

@media (min-width: 1200px) {
	.stacks_in_301-wrapper .indicator-icon-sizing {
		height: 36px;
		width: 36px;
	}
	
	#stacks_in_301-zoom-indicator {
		line-height: 71px;
		height: 76px;
		width: 76px;
	}
}

@media (min-width: 1400px) {
	.stacks_in_301-wrapper .indicator-icon-sizing {
		height: 42px;
		width: 42px;
	}
	
	#stacks_in_301-zoom-indicator {
		line-height: 77px;
		height: 82px;
		width: 82px;
	}
}


.stacks_in_301-wrapper .zoom-indicator {
	

	z-index: 100;
	background-color: rgba(255, 255, 255, 0.50);
	color: rgba(44, 49, 54, 1.00);
	
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	transition-duration: 0.1s;
	transition-property: transform;
	
	
	transform: scale(1);
	bottom: 10px; right: 10px;
	
}

.stacks_in_301-wrapper:hover .zoom-indicator {
	background-color: rgba(255, 255, 255, 0.80);
	color: rgba(44, 49, 54, 1.00);
	transition-duration: 0.1s;
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	
	
	transform: scale(1);
	bottom: 10px; right: 10px;
	
}

.stacks_in_301-zoom-modal.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}


@media (max-width: 576px) {
	.stacks_in_301-wrapper .zoom-indicator {
		
		transform: translate(-50%, -50%) scale(1);
		right: initial;
		bottom: initial;
		top: 50%;
		left: 50%;
		
	}
	
	.stacks_in_301-wrapper:hover .zoom-indicator {
		
		transform: translate(-50%, -50%) scale(1);
		right: initial;
		bottom: initial;
		top: 50%;
		left: 50%;
		
	}
}

.stacks_in_301-wrapper picture.fdy-img {
	margin: 0;
    vertical-align: top;
}



/* Base Margins */
.stacks_in_301-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_301-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_301-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_301-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_301-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_301-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_301-wrapper img {
	margin: 0 !important;
}



/* Base Margins */
.stacks_in_303.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_303.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_303.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_303.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_303.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_303.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_303.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_303.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_303.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_303.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_305-wrapper {
	
	
	
}









	#stacks_in_305-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_309-wrapper {
	
	border-color: var(--bs-dark) !important;
	
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_309-wrapper .border-badge {
	
	background-color: var(--bs-secondary) !important;
	
	
	color: rgba(0, 64, 181, 1.00);
}

#stacks_in_309-wrapper .border-badge {
	
}

#stacks_in_309-wrapper.custom-width {
	width: 80%;
}


#stacks_in_203-wrapper {
	
	max-width: 1050px;
	
}

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


/* Advanced Mode */
#stacks_in_203-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_203-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_203-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_203-wrapper.fdy-container {
	max-width: 960px;
  }
}







#stacks_in_204-wrapper {
	
	
	
}




/* Base Margins */
#stacks_in_204-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_204-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_204-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_204-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_204-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_204-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_204-wrapper p:last-of-type {
		margin-bottom: 0;
	}


#sc_stacks_in_207{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:320px;}#sc_stacks_in_207 iframe{width:100%;height:320px}#sc_stacks_in_207 .sc-placeholder{text-align:center;color:#FF6633;margin:10px}#sc_stacks_in_207 .sc-placeholder svg{max-height:100px;fill:#FF6633}#sc_stacks_in_207 .sc-placeholder p{margin:0}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_208 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_208 {
		display: none !important;
	}
}



#stacks_in_209-wrapper {
	
	border-color: var(--bs-dark) !important;
	
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_209-wrapper .border-badge {
	
	background-color: var(--bs-secondary) !important;
	
	
	color: rgba(0, 64, 181, 1.00);
}

#stacks_in_209-wrapper .border-badge {
	
}

#stacks_in_209-wrapper.custom-width {
	width: 80%;
}


#stacks_in_210-wrapper {
	
	
	
}




/* Base Margins */
#stacks_in_210-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_210-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_210-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_210-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_210-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_210-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_210-wrapper p:last-of-type {
		margin-bottom: 0;
	}



.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_214 {
	height: 20.00px;
}




















@media print {
	#spacerStackstacks_in_214 {
		display: none !important;
	}
}
#sc_stacks_in_215{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:320px;}#sc_stacks_in_215 iframe{width:100%;height:320px}#sc_stacks_in_215 .sc-placeholder{text-align:center;color:#FF6633;margin:10px}#sc_stacks_in_215 .sc-placeholder svg{max-height:100px;fill:#FF6633}#sc_stacks_in_215 .sc-placeholder p{margin:0}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_216 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_216 {
		display: none !important;
	}
}



#stacks_in_217-wrapper {
	
	border-color: var(--bs-dark) !important;
	
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_217-wrapper .border-badge {
	
	background-color: var(--bs-secondary) !important;
	
	
	color: rgba(0, 64, 181, 1.00);
}

#stacks_in_217-wrapper .border-badge {
	
}

#stacks_in_217-wrapper.custom-width {
	width: 80%;
}


#stacks_in_218-wrapper {
	
	
	
}




/* Base Margins */
#stacks_in_218-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_218-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_218-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_218-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_218-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_218-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_218-wrapper p:last-of-type {
		margin-bottom: 0;
	}



.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_222 {
	height: 20.00px;
}




















@media print {
	#spacerStackstacks_in_222 {
		display: none !important;
	}
}
#sc_stacks_in_255{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:170px;}#sc_stacks_in_255 iframe{width:100%;height:170px}#sc_stacks_in_255 .sc-placeholder{text-align:center;color:#FF6633;margin:10px}#sc_stacks_in_255 .sc-placeholder svg{max-height:100px;fill:#FF6633}#sc_stacks_in_255 .sc-placeholder p{margin:0}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_256 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_256 {
		display: none !important;
	}
}



#stacks_in_225-wrapper {
	
	border-color: var(--bs-dark) !important;
	
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_225-wrapper .border-badge {
	
	background-color: var(--bs-secondary) !important;
	
	
	color: rgba(0, 64, 181, 1.00);
}

#stacks_in_225-wrapper .border-badge {
	
}

#stacks_in_225-wrapper.custom-width {
	width: 80%;
}
.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_270 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_270 {
		display: none !important;
	}
}






@media (max-width: 575px) {
	
	#stacks_in_258-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}






/* Base Margins */
.stacks_in_266.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_266.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_266.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_266.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_266.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_266.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_266.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_266.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_266.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_266.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}







/* Base Margins */
.stacks_in_267.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_267.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_267.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_267.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_267.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_267.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_267.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_267.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_267.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_267.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}






#stacks_in_268-wrapper {
	
	
	
}









	#stacks_in_268-wrapper p:last-of-type {
		margin-bottom: 0;
	}



.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_195 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_195 {
		display: none !important;
	}
}

.spacerStack {
	height: 300.00px;
}

#spacerStackstacks_in_156 {
	height: 300.00px;
}




















@media print {
	#spacerStackstacks_in_156 {
		display: none !important;
	}
}


.stacks_in_271-list {
	list-style: none;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_271-list {
	
	color: var(--bs-dark) !important;
	
	
	
}

.stacks_in_271-list .list-icon {
	
	color: var(--bs-dark) !important;
	
	
	
}

.stacks_in_271-list a,
.stacks_in_271-list a:visited,
.stacks_in_271-list a:hover,
.stacks_in_271-list a:active {
	text-decoration: none;
}

.stacks_in_271-list a,
.stacks_in_271-list a:visited {
	
	color: var(--bs-dark) !important;
	
	
	
	text-decoration: none;
}

.stacks_in_271-list a:hover,
.stacks_in_271-list a:active {
	
	
	color: var(--bs-warning) !important;
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_271-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_271-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_271-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_271-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_271-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_271-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_271-list .list-inline-item:not(:last-child) {

	
		margin-left: 0 !important;
		margin-right: 0 !important;
	

}

.stacks_in_271-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_271-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_273-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

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

.stacks_in_273-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_275-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

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

.stacks_in_275-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_276-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

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

.stacks_in_276-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_277-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

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

.stacks_in_277-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_278-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

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

.stacks_in_278-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_279-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

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

.stacks_in_279-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_280-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

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

.stacks_in_280-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}





@media (max-width: 575px) {
	
}









#stacks_in_285-footer-info {
	font-weight: 400;
	
	color: var(--bs-dark);
	
	
}

#stacks_in_285-footer-info a,
#stacks_in_285-footer-info a:visited {
	
}

#stacks_in_285-footer-info a:hover,
#stacks_in_285-footer-info a:active {
	
}






#stacks_in_288-wrapper {
	
	line-height: 3.00;
	
	
	letter-spacing: 3.53px;
	
	
}







#stacks_in_288-wrapper {
	font-size: 1.00rem;
}

@media (min-width: 576px) {
	#stacks_in_288-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_288-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_288-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_288-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_288-wrapper {
		font-size: 0.50rem;
	}
}



	#stacks_in_288-wrapper p:last-of-type {
		margin-bottom: 0;
	}


