html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}body{-webkit-text-size-adjust:none}mark{background-color:transparent;color:inherit}input::-moz-focus-inner{border:0;padding:0}input[type="text"],input[type="email"],select,textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none}

*, *:before, *:after {
	box-sizing: border-box;
}

body {
	line-height: 1.0;
	min-height: var(--viewport-height);
	min-width: 320px;
	overflow-x: hidden;
	word-wrap: break-word;
}

body:before {
	content: '';
	display: block;
	background-attachment: scroll;
	height: var(--background-height);
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scale(1);
	width: 100vw;
	z-index: 0;
	background-image: url('images/bg.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #F7F7F7;
}

body:after {
	background-color: #FFFFFF;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scale(1);
	transition: opacity 1s ease-in-out 0.5s, visibility 1s 0.5s;
	visibility: hidden;
	width: 100%;
	z-index: 1;
}

body.is-loading:after {
	opacity: 1;
	visibility: visible;
}

:root {
	--background-height: 100vh;
	--site-language-alignment: left;
	--site-language-direction: ltr;
	--site-language-flex-alignment: flex-start;
	--site-language-indent-left: 1;
	--site-language-indent-right: 0;
	--site-language-margin-left: 0;
	--site-language-margin-right: auto;
	--viewport-height: 100vh;
}

html {
	font-size: 18pt;
}

u {
	text-decoration: underline;
}

strong {
	color: inherit;
	font-weight: bolder;
}

em {
	font-style: italic;
}

code {
	background-color: rgba(144,144,144,0.25);
	border-radius: 0.25em;
	font-family: 'Lucida Console', 'Courier New', monospace;
	font-size: 0.9em;
	font-weight: normal;
	letter-spacing: 0;
	margin: 0 0.25em;
	padding: 0.25em 0.5em;
	text-indent: 0;
}

mark {
	background-color: rgba(144,144,144,0.25);
}

spoiler-text {
	-webkit-text-stroke: 0;
	background-color: rgba(32,32,32,0.75);
	text-shadow: none;
	text-stroke: 0;
	color: transparent;
	cursor: pointer;
	transition: color 0.1s ease-in-out;
}

spoiler-text.active {
	color: #FFFFFF;
	cursor: text;
}

s {
	text-decoration: line-through;
}

sub {
	font-size: smaller;
	vertical-align: sub;
}

sup {
	font-size: smaller;
	vertical-align: super;
}

a {
	color: inherit;
	text-decoration: underline;
	transition: none;
}

a[onclick]:not([href]) {
	cursor: pointer;
}

deferred-script {
	display: none;
}

#wrapper {
	-webkit-overflow-scrolling: touch;
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: var(--viewport-height);
	overflow: hidden;
	position: relative;
	z-index: 2;
}

#main {
	--alignment: var(--site-language-alignment);
	--flex-alignment: var(--site-language-flex-alignment);
	--indent-left: var(--site-language-indent-left);
	--indent-right: var(--site-language-indent-right);
	--margin-left: var(--site-language-margin-left);
	--margin-right: var(--site-language-margin-right);
	--border-radius-tl: 0;
	--border-radius-tr: 0;
	--border-radius-br: 0;
	--border-radius-bl: 0;
	align-items: center;
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	justify-content: center;
	max-width: 100%;
	position: relative;
	text-align: var(--alignment);
	z-index: 1;
}

#main > .inner {
	--padding-horizontal: 1.25rem;
	--padding-vertical: 0rem;
	--spacing: 0rem;
	--width: 70rem;
	border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
	max-width: 100%;
	position: relative;
	width: var(--width);
	z-index: 1;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#main > .inner > header {
	margin-bottom: var(--spacing);
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#main > .inner > footer {
	margin-top: var(--spacing);
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#main > .inner > * > * {
	margin-top: var(--spacing);
	margin-bottom: var(--spacing);
}

#main > .inner > * > :first-child {
	margin-top: 0 !important;
}

#main > .inner > * > :last-child {
	margin-bottom: 0 !important;
}

#main > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
	width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
}

#main > .inner > .full:first-child {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#main > .inner > .full:last-child {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#main > .inner > .full.screen {
	border-radius: 0 !important;
	max-width: 100vw;
	position: relative;
	width: 100vw;
	left: 50%;
	margin-left: -50vw;
	right: auto;
}

#main > .inner > * > .full {
	margin-left: calc(-1.25rem);
	max-width: calc(100% + 2.5rem + 0.4725px);
	width: calc(100% + 2.5rem + 0.4725px);
}

#main > .inner > * > .full.screen {
	border-radius: 0 !important;
	max-width: 100vw;
	position: relative;
	width: 100vw;
	left: 50%;
	margin-left: -50vw;
	right: auto;
}

#main > .inner > header > .full:first-child {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	margin-top: 0rem !important;
}

#main > .inner > footer > .full:last-child {
	margin-bottom: 0rem !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

body.is-instant #main, body.is-instant #main > .inner > *,body.is-instant #main > .inner > section > *  {
	transition: none !important;
}

body.is-instant:after {
	display: none !important;
	transition: none !important;
}

@keyframes loading-spinner {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.deferred:before {
	content: '';
	display: block;
	width: 4rem;
	height: 4rem;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -2rem 0 0 -2rem;
	animation: loading-spinner 1s infinite linear;
	transition: opacity 0.25s ease;
	transition-delay: 0.5s;
	opacity: 0;
	z-index: -1;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNmZmY7IHN0cm9rZS13aWR0aDogMS41cHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 3rem;
}

.deferred.loading:before {
	opacity: 0.35;
	z-index: 0;
}

.slideshow-background:after {
	content: '';
	display: block;
	width: 4rem;
	height: 4rem;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -2rem 0 0 -2rem;
	animation: loading-spinner 1s infinite linear;
	transition: opacity 0.25s ease;
	transition-delay: 1s;
	opacity: 0;
	pointer-events: none;
	z-index: -1;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNmZmY7IHN0cm9rZS13aWR0aDogMS41cHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 3rem;
}

.slideshow-background.is-loading:after {
	opacity: 0.35;
	z-index: 0;
}

.slideshow-background > div {
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	opacity: 0;
	z-index: -2;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

.slideshow-background > .initial {
	transition: none;
}

.slideshow-background > .visible {
	opacity: 1;
}

.slideshow-background > .top {
	z-index: -1;
}

.slideshow-background.instant > div {
	visibility: hidden;
}

.slideshow-background.instant > .visible {
	visibility: visible;
}

.slideshow-background.crossfade > div {
	transition: opacity 2s ease-in-out;
	visibility: hidden;
}

.slideshow-background.crossfade > .visible {
	visibility: visible;
}

.slideshow-background.fade > div {
	transition: opacity 2s ease-in-out;
	visibility: visible;
}

.slideshow-background.fade > .visible {
	visibility: visible;
}

.slideshow-background > .left, .slideshow-background > .right {
	width: 150% !important;
}

.slideshow-background > .up, .slideshow-background > .down {
	height: 150% !important;
}

.slideshow-background > .in, .slideshow-background > .out {
	transform-origin: 50% 50%;
}

.slideshow-background > .left.is-playing {
	animation-name: slideshow-background-left;
}

.slideshow-background > .right.is-playing {
	animation-name: slideshow-background-right;
}

.slideshow-background > .up.is-playing {
	animation-name: slideshow-background-up;
}

.slideshow-background > .down.is-playing {
	animation-name: slideshow-background-down;
}

.slideshow-background > .in.is-playing {
	animation-name: slideshow-background-in;
}

.slideshow-background > .out.is-playing {
	animation-name: slideshow-background-out;
}

.slideshow-background > .slow {
	animation-duration: 60s;
}

.slideshow-background > .normal {
	animation-duration: 45s;
}

.slideshow-background > .fast {
	animation-duration: 30s;
}

@keyframes slideshow-background-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-25%);
	}
}

@keyframes slideshow-background-right {
	from {
		transform: translateX(-25%);
	}
	to {
		transform: translateX(0);
	}
}

@keyframes slideshow-background-up {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-25%);
	}
}

@keyframes slideshow-background-down {
	from {
		transform: translateY(-25%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes slideshow-background-in {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(2);
	}
}

@keyframes slideshow-background-out {
	from {
		transform: scale(2);
	}
	to {
		transform: scale(1);
	}
}

.image {
	display: block;
	line-height: 0;
	max-width: 100%;
	position: relative;
}

.image .frame {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	vertical-align: top;
	width: 100%;
}

.image .frame img {
	border-radius: 0 !important;
	max-width: 100%;
	vertical-align: top;
	width: inherit;
}

.image.full .frame {
	display: block;
}

.image.full:first-child .frame {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.image.full:last-child .frame {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#image04 .frame {
	width: 100vw;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 2rem 0rem #ADADAD;
	transition: none;
}

#image04 img {
	-webkit-touch-callout: none;
	user-select: none;
}

#image04 .frame img {
	transition: none;
}

#image07 .frame {
	width: 100vw;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 2rem 0rem #ADADAD;
	transition: none;
}

#image07 img {
	-webkit-touch-callout: none;
	user-select: none;
}

#image07 .frame img {
	transition: none;
}

#image05 .frame {
	width: 100vw;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 2rem 0rem #ADADAD;
	transition: none;
}

#image05 img {
	-webkit-touch-callout: none;
	user-select: none;
}

#image05 .frame img {
	transition: none;
}

#image08 .frame {
	max-width: 100%;
	width: 91px;
	transition: none;
}

#image08 .frame img {
	transition: none;
}

#image01 .frame {
	max-width: 100%;
	width: 193px;
	transition: none;
}

#image01 .frame img {
	transition: none;
}

#image03 .frame {
	width: 100vw;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 2rem 0rem #ADADAD;
	transition: none;
}

#image03 img {
	-webkit-touch-callout: none;
	user-select: none;
}

#image03 .frame img {
	transition: none;
}

#image13 .frame {
	max-width: 100%;
	width: 193px;
	transition: none;
}

#image13 .frame img {
	transition: none;
}

#image40 .frame {
	width: 100vw;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 2rem 0rem #ADADAD;
	transition: none;
}

#image40 .frame img {
	transition: none;
}

#image06:not(:first-child) {
	margin-top: 1rem !important;
}

#image06:not(:last-child) {
	margin-bottom: 1rem !important;
}

#image06 .frame {
	width: 100vw;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 2rem 0rem #ADADAD;
	transition: none;
}

#image06 .frame img {
	transition: none;
}

#image10:not(:first-child) {
	margin-top: 1rem !important;
}

#image10:not(:last-child) {
	margin-bottom: 1rem !important;
}

#image10 .frame {
	width: 100vw;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 2rem 0rem #ADADAD;
	transition: none;
}

#image10 .frame img {
	transition: none;
}

#image16 .frame {
	max-width: 100%;
	width: auto;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 2rem 0rem #ADADAD;
	transition: none;
}

#image16 .frame img {
	transition: none;
}

#image41 .frame {
	max-width: 100%;
	width: auto;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 2rem 0rem #ADADAD;
	transition: none;
}

#image41 .frame img {
	transition: none;
}

#image24 .frame {
	max-width: 100%;
	width: auto;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 2rem 0rem #ADADAD;
	transition: none;
}

#image24 .frame img {
	transition: none;
}

#image22 .frame {
	width: 100vw;
	box-shadow: 0rem 0rem 0rem 0rem transparent;
	transition: none;
}

#image22 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	-webkit-touch-callout: none;
	user-select: none;
}

#image22 .frame img {
	transition: none;
}

#image23 .frame {
	width: 100vw;
	box-shadow: 0rem 0rem 0rem 0rem transparent;
	transition: none;
}

#image23 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
}

#image23 .frame img {
	transition: none;
}

#image25 .frame {
	max-width: 100%;
	width: auto;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 0rem 0rem transparent;
	transition: none;
}

#image25 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	-webkit-touch-callout: none;
	user-select: none;
}

#image25 .frame img {
	transition: none;
}

#image15 .frame {
	max-width: 100%;
	width: 217px;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 0rem 0rem transparent;
	transition: none;
}

#image15 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	-webkit-touch-callout: none;
	user-select: none;
}

#image15 .frame img {
	transition: none;
}

#image26 .frame {
	max-width: 100%;
	width: 189px;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 0rem 0rem transparent;
	transition: none;
}

#image26 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	-webkit-touch-callout: none;
	user-select: none;
}

#image26 .frame img {
	transition: none;
}

#image32 .frame {
	max-width: 100%;
	width: 222px;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 0rem 0rem transparent;
	transition: none;
}

#image32 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	-webkit-touch-callout: none;
	user-select: none;
}

#image32 .frame img {
	transition: none;
}

#image33 .frame {
	max-width: 100%;
	width: 219px;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 0rem 0rem transparent;
	transition: none;
}

#image33 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	-webkit-touch-callout: none;
	user-select: none;
}

#image33 .frame img {
	transition: none;
}

#image30 .frame {
	max-width: 100%;
	width: 216px;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 0rem 0rem transparent;
	transition: none;
}

#image30 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	-webkit-touch-callout: none;
	user-select: none;
}

#image30 .frame img {
	transition: none;
}

#image35 .frame {
	max-width: 100%;
	width: 218px;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 0rem 0rem transparent;
	transition: none;
}

#image35 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	-webkit-touch-callout: none;
	user-select: none;
}

#image35 .frame img {
	transition: none;
}

#image36 .frame {
	max-width: 100%;
	width: 217px;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 0rem 0rem transparent;
	transition: none;
}

#image36 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	-webkit-touch-callout: none;
	user-select: none;
}

#image36 .frame img {
	transition: none;
}

#image37 .frame {
	max-width: 100%;
	width: 216px;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 0rem 0rem transparent;
	transition: none;
}

#image37 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	-webkit-touch-callout: none;
	user-select: none;
}

#image37 .frame img {
	transition: none;
}

#image38 .frame {
	max-width: 100%;
	width: 216px;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 0rem 0rem transparent;
	transition: none;
}

#image38 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	-webkit-touch-callout: none;
	user-select: none;
}

#image38 .frame img {
	transition: none;
}

#image39 .frame {
	max-width: 100%;
	width: 215px;
	border-radius: 0.5rem;
	box-shadow: 0rem 0rem 0rem 0rem transparent;
	transition: none;
}

#image39 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	-webkit-touch-callout: none;
	user-select: none;
}

#image39 .frame img {
	transition: none;
}

#image14 .frame {
	max-width: 100%;
	width: 282px;
	transition: none;
}

#image14 .frame img {
	transition: none;
}

#image02 .frame {
	max-width: 100%;
	width: 218px;
	transition: none;
}

#image02 .frame img {
	transition: none;
}

h1, h2, h3, p {
	direction: var(--site-language-direction);
	position: relative;
}

h1 span.p, h2 span.p, h3 span.p, p span.p {
	display: block;
	position: relative;
}

h1 span[style], h2 span[style], h3 span[style], p span[style], h1 strong, h2 strong, h3 strong, p strong, h1 a, h2 a, h3 a, p a, h1 code, h2 code, h3 code, p code, h1 mark, h2 mark, h3 mark, p mark, h1 spoiler-text, h2 spoiler-text, h3 spoiler-text, p spoiler-text {
	-webkit-text-fill-color: currentcolor;
}

h1.style6, h2.style6, h3.style6, p.style6 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #242424;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.125;
	font-weight: 400;
}

h1.style6 a, h2.style6 a, h3.style6 a, p.style6 a {
	text-decoration: none;
}

h1.style6 a:hover, h2.style6 a:hover, h3.style6 a:hover, p.style6 a:hover {
	text-decoration: underline;
}

h1.style6 span.p:nth-child(n + 2), h2.style6 span.p:nth-child(n + 2), h3.style6 span.p:nth-child(n + 2), p.style6 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

h1.style1, h2.style1, h3.style1, p.style1 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: rgba(36,36,36,0.71);
	font-family: 'Open Sans', sans-serif;
	font-size: 0.875em;
	line-height: 1.875;
	font-weight: 300;
}

h1.style1 mark, h2.style1 mark, h3.style1 mark, p.style1 mark {
	color: #000000;
	background-color: #FFF505;
}

h1.style1 a, h2.style1 a, h3.style1 a, p.style1 a {
	color: #5C83EE;
	text-decoration: none;
}

h1.style1 a:hover, h2.style1 a:hover, h3.style1 a:hover, p.style1 a:hover {
	color: #10182F;
}

h1.style1 span.p:nth-child(n + 2), h2.style1 span.p:nth-child(n + 2), h3.style1 span.p:nth-child(n + 2), p.style1 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text71 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.5em;
	line-height: 1.625;
	font-weight: 300;
}

#text71 a {
	text-decoration: underline;
}

#text71 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text08 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	text-transform: uppercase;
	color: #000000;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.2rem;
	width: calc(100% + 0.2rem);
	font-size: 0.75em;
	line-height: 1.375;
	font-weight: 500;
}

#text08 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text08 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text08 a:hover {
	text-decoration: underline;
}

#text08 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text16 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Playfair Display', serif;
	letter-spacing: -0.125rem;
	width: 100%;
	font-size: 3.25em;
	line-height: 1;
	font-weight: 400;
}

#text16 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text16 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text16 a:hover {
	text-decoration: underline;
}

#text16 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text20:not(:first-child) {
	margin-top: 1rem !important;
}

#text20:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text20 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: rgba(36,36,36,0.71);
	font-family: 'Open Sans', sans-serif;
	font-size: 0.875em;
	line-height: 1.875;
	font-weight: 300;
}

#text20 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text20 a {
	color: #5C83EE;
	text-decoration: none;
}

#text20 a:hover {
	color: #10182F;
}

#text20 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text69 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Playfair Display', serif;
	font-size: 1.75em;
	line-height: 1.625;
	font-weight: 400;
}

#text69 a:hover {
	color: #5F3FBA;
}

#text69 a {
	text-decoration: underline;
}

#text69 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text36 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.75;
	font-weight: 300;
}

#text36 a:hover {
	color: #5F3FBA;
}

#text36 a {
	text-decoration: underline;
}

#text36 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

h1.style2, h2.style2, h3.style2, p.style2 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.1rem;
	width: 100%;
	font-size: 2.125em;
	line-height: 1.25;
	font-weight: 400;
}

h1.style2 mark, h2.style2 mark, h3.style2 mark, p.style2 mark {
	color: #FFFFFF;
	background-color: transparent;
}

h1.style2 a, h2.style2 a, h3.style2 a, p.style2 a {
	color: #FFFFFF;
	text-decoration: none;
}

h1.style2 a:hover, h2.style2 a:hover, h3.style2 a:hover, p.style2 a:hover {
	text-decoration: underline;
}

h1.style2 span.p:nth-child(n + 2), h2.style2 span.p:nth-child(n + 2), h3.style2 span.p:nth-child(n + 2), p.style2 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text42 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	text-transform: uppercase;
	color: #000000;
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.2rem;
	width: calc(100% + 0.2rem);
	font-size: 0.875em;
	line-height: 1.75;
	font-weight: 500;
}

#text42 mark {
	background-color: transparent;
}

#text42 a {
	color: #5C83EE;
	text-decoration: none;
}

#text42 a:hover {
	color: #10182F;
}

#text42 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text42 mark {
	background: radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#text07 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Inter', sans-serif;
	letter-spacing: -0.1rem;
	width: 100%;
	font-size: 2.125em;
	line-height: 1.25;
	font-weight: 400;
}

#text07 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text07 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text07 a:hover {
	text-decoration: underline;
}

#text07 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

h1.style12, h2.style12, h3.style12, p.style12 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: rgba(36,36,36,0.71);
	font-family: 'Open Sans', sans-serif;
	font-size: 0.875em;
	line-height: 1.875;
	font-weight: 300;
}

h1.style12 mark, h2.style12 mark, h3.style12 mark, p.style12 mark {
	color: #D4AF37;
	background-color: transparent;
}

h1.style12 a, h2.style12 a, h3.style12 a, p.style12 a {
	color: #5C83EE;
	text-decoration: none;
}

h1.style12 a:hover, h2.style12 a:hover, h3.style12 a:hover, p.style12 a:hover {
	color: #10182F;
}

h1.style12 span.p:nth-child(n + 2), h2.style12 span.p:nth-child(n + 2), h3.style12 span.p:nth-child(n + 2), p.style12 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

h1.style8, h2.style8, h3.style8, p.style8 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	text-transform: uppercase;
	color: #7E64ED;
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.2rem;
	width: calc(100% + 0.2rem);
	font-size: 0.875em;
	line-height: 1.75;
	font-weight: 500;
}

h1.style8 mark, h2.style8 mark, h3.style8 mark, p.style8 mark {
	color: #D4AF37;
	background-color: transparent;
}

h1.style8 a, h2.style8 a, h3.style8 a, p.style8 a {
	color: #5C83EE;
	text-decoration: none;
}

h1.style8 a:hover, h2.style8 a:hover, h3.style8 a:hover, p.style8 a:hover {
	color: #10182F;
}

h1.style8 span.p:nth-child(n + 2), h2.style8 span.p:nth-child(n + 2), h3.style8 span.p:nth-child(n + 2), p.style8 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text33 mark {
	background: linear-gradient(90deg, rgba(204,43,94,1) 0%, rgba(117,58,136,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#text62 mark {
	background: radial-gradient(circle, rgba(36,198,220,1) 0%, rgba(81,74,157,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#text26 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	text-transform: uppercase;
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.2rem;
	width: calc(100% + 0.2rem);
	font-size: 0.875em;
	line-height: 1.75;
	font-weight: 500;
	background-image: linear-gradient(0deg, transparent 0%, #FFFFFF 0%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#text26 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text26 a {
	color: #5C83EE;
	text-decoration: none;
}

#text26 a:hover {
	color: #10182F;
}

#text26 span.p:nth-child(n + 2) {
	margin-top: 1rem;
	-webkit-text-fill-color: currentcolor;
}

#text26 span.p {
	background-image: linear-gradient(0deg, transparent 0%, #FFFFFF 0%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent !important;
}

#text09 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	letter-spacing: -0.1rem;
	width: 100%;
	font-size: 2.875em;
	line-height: 1.25;
	font-weight: 400;
	background-image: linear-gradient(45deg, #C2C2C2 0%, #FFFFFF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 0.01em transparent;
	text-stroke: 0.01em transparent;
}

#text09 mark {
	color: transparent;
	background-color: transparent;
}

#text09 a {
	text-decoration: none;
}

#text09 a:hover {
	text-decoration: underline;
}

#text09 span.p:nth-child(n + 2) {
	margin-top: 1rem;
	-webkit-text-fill-color: currentcolor;
}

#text09 span.p {
	background-image: linear-gradient(45deg, #C2C2C2 0%, #FFFFFF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent !important;
}

#text09 mark {
	background: linear-gradient(90deg, rgba(255,193,113,1) 3%, rgba(255,26,125,1) 95%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#text41 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	font-size: 0.875em;
	line-height: 1.875;
	font-weight: 300;
}

#text41 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text41 a {
	color: #5C83EE;
	text-decoration: none;
}

#text41 a:hover {
	color: #10182F;
}

#text41 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text27 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	text-transform: uppercase;
	color: #000000;
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.2rem;
	width: calc(100% + 0.2rem);
	font-size: 0.875em;
	line-height: 1.75;
	font-weight: 500;
}

#text27 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text27 a {
	color: #5C83EE;
	text-decoration: none;
}

#text27 a:hover {
	color: #10182F;
}

#text27 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text27 mark {
	background: linear-gradient(90deg, rgba(255,193,113,1) 3%, rgba(255,26,125,1) 95%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#text60 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Inter', sans-serif;
	letter-spacing: -0.1rem;
	width: 100%;
	font-size: 2.125em;
	line-height: 1.25;
	font-weight: 400;
}

#text60 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text60 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text60 a:hover {
	text-decoration: underline;
}

#text60 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text43:not(:first-child) {
	margin-top: 1rem !important;
}

#text43:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text43 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Inter', sans-serif;
	font-size: 0.625em;
	line-height: 1.875;
	font-weight: 300;
}

#text43 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text43 a {
	text-decoration: underline;
}

#text43 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text57:not(:first-child) {
	margin-top: 1rem !important;
}

#text57:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text57 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Inter', sans-serif;
	font-size: 0.625em;
	line-height: 1.875;
	font-weight: 300;
}

#text57 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text57 a {
	text-decoration: underline;
}

#text57 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text90 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.75em;
	line-height: 0.75;
	font-weight: 700;
}

#text90 mark {
	background-color: transparent;
}

#text90 a {
	text-decoration: none;
}

#text90 a:hover {
	text-decoration: underline;
}

#text90 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text110:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text110:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text110 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 300;
}

#text110 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text110 a {
	color: #5C83EE;
	text-decoration: none;
}

#text110 a:hover {
	color: #10182F;
}

#text110 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text132:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text132:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text132 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	text-transform: uppercase;
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 0.1rem;
	width: calc(100% + 0.1rem);
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 700;
}

#text132 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text132 a {
	color: #5C83EE;
	text-decoration: none;
}

#text132 a:hover {
	color: #10182F;
}

#text132 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text132 mark {
	background: linear-gradient(90deg, rgba(97,67,133,1) 0%, rgba(94,0,255,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#text134:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text134:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text134 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
	line-height: 1.875;
	font-weight: 300;
}

#text134 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text134 a {
	text-decoration: underline;
}

#text134 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text112:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text112:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text112 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.875;
	font-weight: 300;
}

#text112 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text112 a {
	text-decoration: underline;
}

#text112 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text130:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text130:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text130 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.875;
	font-weight: 300;
}

#text130 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text130 a {
	text-decoration: underline;
}

#text130 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text135 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 300;
}

#text135 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text135 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text135 a:hover {
	text-decoration: underline;
}

#text135 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text136:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text136:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text136 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text136 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text136 a {
	color: #5C83EE;
	text-decoration: none;
}

#text136 a:hover {
	color: #10182F;
}

#text136 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text137:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text137:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text137 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 0.1rem;
	width: calc(100% + 0.1rem);
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 700;
}

#text137 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text137 a {
	color: #5C83EE;
	text-decoration: none;
}

#text137 a:hover {
	color: #10182F;
}

#text137 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text137 mark {
	background: linear-gradient(90deg, rgba(97,67,133,1) 0%, rgba(94,0,255,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#text138:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text138:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text138 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.875;
	font-weight: 300;
}

#text138 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text138 a {
	text-decoration: underline;
}

#text138 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text48 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.875em;
	line-height: 1.125;
	font-weight: 300;
}

#text48 a {
	text-decoration: none;
}

#text48 a:hover {
	text-decoration: underline;
}

#text48 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text34 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #242424;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.125;
	font-weight: 400;
}

#text34 a {
	text-decoration: none;
}

#text34 a:hover {
	text-decoration: underline;
}

#text34 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text50 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.75;
	font-weight: 300;
}

#text50 a {
	color: #000000;
	text-decoration: underline;
}

#text50 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text51 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.875em;
	line-height: 1.125;
	font-weight: 300;
}

#text51 a {
	text-decoration: none;
}

#text51 a:hover {
	text-decoration: underline;
}

#text51 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text52 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #242424;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.125;
	font-weight: 400;
}

#text52 a {
	text-decoration: none;
}

#text52 a:hover {
	text-decoration: underline;
}

#text52 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text55 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.75;
	font-weight: 300;
}

#text55 a {
	text-decoration: none;
}

#text55 a:hover {
	text-decoration: underline;
}

#text55 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text53 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.875em;
	line-height: 1.125;
	font-weight: 300;
}

#text53 a {
	text-decoration: none;
}

#text53 a:hover {
	text-decoration: underline;
}

#text53 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text54 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #242424;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.125;
	font-weight: 400;
}

#text54 a {
	text-decoration: none;
}

#text54 a:hover {
	text-decoration: underline;
}

#text54 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text56 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.75;
	font-weight: 300;
}

#text56 a {
	text-decoration: none;
}

#text56 a:hover {
	text-decoration: underline;
}

#text56 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text14 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.875em;
	line-height: 1.125;
	font-weight: 300;
}

#text14 a {
	text-decoration: none;
}

#text14 a:hover {
	text-decoration: underline;
}

#text14 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text19 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #242424;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.125;
	font-weight: 400;
}

#text19 a {
	text-decoration: none;
}

#text19 a:hover {
	text-decoration: underline;
}

#text19 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text37 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.75;
	font-weight: 300;
}

#text37 a {
	color: #000000;
	text-decoration: underline;
}

#text37 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text111 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.75em;
	line-height: 0.75;
	font-weight: 700;
}

#text111 mark {
	background-color: transparent;
}

#text111 a {
	text-decoration: none;
}

#text111 a:hover {
	text-decoration: underline;
}

#text111 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text190:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text190:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text190 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 300;
}

#text190 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text190 a {
	color: #5C83EE;
	text-decoration: none;
}

#text190 a:hover {
	color: #10182F;
}

#text190 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text24:not(:first-child) {
	margin-top: 1rem !important;
}

#text24:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text24 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Inter', sans-serif;
	font-size: 0.625em;
	line-height: 1.875;
	font-weight: 300;
}

#text24 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text24 a {
	text-decoration: underline;
}

#text24 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text77 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.75em;
	line-height: 1.5;
	font-weight: 700;
}

#text77 mark {
	background-color: transparent;
}

#text77 a {
	text-decoration: none;
}

#text77 a:hover {
	text-decoration: underline;
}

#text77 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text32:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text32:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text32 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text32 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text32 a {
	color: #5C83EE;
	text-decoration: none;
}

#text32 a:hover {
	color: #10182F;
}

#text32 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text25 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.75em;
	line-height: 1.5;
	font-weight: 700;
}

#text25 mark {
	background-color: transparent;
}

#text25 a {
	text-decoration: none;
}

#text25 a:hover {
	text-decoration: underline;
}

#text25 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text44:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text44:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text44 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text44 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text44 a {
	color: #5C83EE;
	text-decoration: none;
}

#text44 a:hover {
	color: #10182F;
}

#text44 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text30 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.75em;
	line-height: 1.5;
	font-weight: 700;
}

#text30 mark {
	background-color: transparent;
}

#text30 a {
	text-decoration: none;
}

#text30 a:hover {
	text-decoration: underline;
}

#text30 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

h1.style13:not(:first-child), h2.style13:not(:first-child), h3.style13:not(:first-child), p.style13:not(:first-child) {
	margin-top: 0.5rem !important;
}

h1.style13:not(:last-child), h2.style13:not(:last-child), h3.style13:not(:last-child), p.style13:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

h1.style13, h2.style13, h3.style13, p.style13 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

h1.style13 mark, h2.style13 mark, h3.style13 mark, p.style13 mark {
	color: #D4AF37;
	background-color: transparent;
}

h1.style13 a, h2.style13 a, h3.style13 a, p.style13 a {
	color: #5C83EE;
	text-decoration: none;
}

h1.style13 a:hover, h2.style13 a:hover, h3.style13 a:hover, p.style13 a:hover {
	color: #10182F;
}

h1.style13 span.p:nth-child(n + 2), h2.style13 span.p:nth-child(n + 2), h3.style13 span.p:nth-child(n + 2), p.style13 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text79 mark {
	background: linear-gradient(90deg, rgba(221,94,137,1) 0%, rgba(247,187,151,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#text80 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.5em;
	line-height: 1.25;
	font-weight: 400;
}

#text80 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text80 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text80 a:hover {
	text-decoration: underline;
}

#text80 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text80 mark {
	background: linear-gradient(90deg, rgba(255,193,113,1) 3%, rgba(255,26,125,1) 95%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#text81:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text81:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text81 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text81 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text81 a {
	color: #5C83EE;
	text-decoration: none;
}

#text81 a:hover {
	color: #10182F;
}

#text81 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text83 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.25em;
	line-height: 1.5;
	font-weight: 300;
}

#text83 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text83 a {
	color: #000000;
	text-decoration: underline;
}

#text83 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text67 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 300;
}

#text67 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text67 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text67 a:hover {
	text-decoration: underline;
}

#text67 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text194 mark {
	background: linear-gradient(90deg, rgba(221,94,137,1) 0%, rgba(247,187,151,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#text195 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.5em;
	line-height: 1.25;
	font-weight: 400;
}

#text195 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text195 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text195 a:hover {
	text-decoration: underline;
}

#text195 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text196:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text196:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text196 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text196 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text196 a {
	color: #5C83EE;
	text-decoration: none;
}

#text196 a:hover {
	color: #10182F;
}

#text196 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text121 mark {
	background: linear-gradient(90deg, rgba(221,94,137,1) 0%, rgba(247,187,151,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#text122 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.5em;
	line-height: 1.25;
	font-weight: 400;
}

#text122 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text122 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text122 a:hover {
	text-decoration: underline;
}

#text122 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text123:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text123:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text123 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text123 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text123 a {
	color: #5C83EE;
	text-decoration: none;
}

#text123 a:hover {
	color: #10182F;
}

#text123 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text22 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.75em;
	line-height: 1.5;
	font-weight: 700;
}

#text22 mark {
	background-color: transparent;
}

#text22 a {
	text-decoration: none;
}

#text22 a:hover {
	text-decoration: underline;
}

#text22 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text116:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text116:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text116 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text116 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text116 a {
	color: #5C83EE;
	text-decoration: none;
}

#text116 a:hover {
	color: #10182F;
}

#text116 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text45 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.75em;
	line-height: 1.5;
	font-weight: 700;
}

#text45 mark {
	background-color: transparent;
}

#text45 a {
	text-decoration: none;
}

#text45 a:hover {
	text-decoration: underline;
}

#text45 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text193:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text193:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text193 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text193 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text193 a {
	color: #5C83EE;
	text-decoration: none;
}

#text193 a:hover {
	color: #10182F;
}

#text193 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text117:not(:first-child) {
	margin-top: 1rem !important;
}

#text117:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text117 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Inter', sans-serif;
	font-size: 0.625em;
	line-height: 1.875;
	font-weight: 300;
}

#text117 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text117 a {
	text-decoration: underline;
}

#text117 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text39 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.75em;
	line-height: 1.5;
	font-weight: 700;
}

#text39 mark {
	background-color: transparent;
}

#text39 a {
	text-decoration: none;
}

#text39 a:hover {
	text-decoration: underline;
}

#text39 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text46:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text46:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text46 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text46 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text46 a {
	color: #5C83EE;
	text-decoration: none;
}

#text46 a:hover {
	color: #10182F;
}

#text46 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text58 mark {
	background: linear-gradient(90deg, rgba(255,193,113,1) 3%, rgba(255,26,125,1) 95%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#text106 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.25em;
	line-height: 1.5;
	font-weight: 300;
}

#text106 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text106 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text106 a:hover {
	text-decoration: underline;
}

#text106 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text107:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text107:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text107 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text107 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text107 a {
	color: #5C83EE;
	text-decoration: none;
}

#text107 a:hover {
	color: #10182F;
}

#text107 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text108:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text108:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text108 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text108 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text108 a {
	color: #5C83EE;
	text-decoration: none;
}

#text108 a:hover {
	color: #10182F;
}

#text108 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text109:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text109:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text109 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text109 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text109 a {
	color: #881C1D;
	text-decoration: underline;
}

#text109 a:hover {
	color: #10182F;
}

#text109 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text120 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.5em;
	line-height: 1.25;
	font-weight: 300;
}

#text120 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text120 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text120 a:hover {
	text-decoration: underline;
}

#text120 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text59 mark {
	background: linear-gradient(90deg, rgba(255,193,113,1) 3%, rgba(255,26,125,1) 95%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#text113 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 300;
}

#text113 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text113 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text113 a:hover {
	text-decoration: underline;
}

#text113 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text114:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text114:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text114 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text114 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text114 a {
	color: #5C83EE;
	text-decoration: none;
}

#text114 a:hover {
	color: #10182F;
}

#text114 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text124 mark {
	background: linear-gradient(90deg, rgba(255,193,113,1) 3%, rgba(255,26,125,1) 95%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#text125 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.25em;
	line-height: 1.5;
	font-weight: 300;
}

#text125 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text125 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text125 a:hover {
	text-decoration: underline;
}

#text125 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text126:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text126:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text126 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text126 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text126 a {
	color: #5C83EE;
	text-decoration: none;
}

#text126 a:hover {
	color: #10182F;
}

#text126 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text03:not(:first-child) {
	margin-top: 1rem !important;
}

#text03:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text03 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Inter', sans-serif;
	font-size: 0.625em;
	line-height: 1.875;
	font-weight: 300;
}

#text03 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text03 a {
	text-decoration: underline;
}

#text03 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text74 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.75em;
	line-height: 0.75;
	font-weight: 700;
}

#text74 mark {
	background-color: transparent;
}

#text74 a {
	text-decoration: none;
}

#text74 a:hover {
	text-decoration: underline;
}

#text74 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text75:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text75:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text75 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 300;
}

#text75 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text75 a {
	color: #5C83EE;
	text-decoration: none;
}

#text75 a:hover {
	color: #10182F;
}

#text75 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text01 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.25em;
	line-height: 1.5;
	font-weight: 300;
}

#text01 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text01 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text01 a:hover {
	text-decoration: underline;
}

#text01 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text76:not(:first-child) {
	margin-top: 1rem !important;
}

#text76:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text76 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text76 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text76 a {
	text-decoration: underline;
}

#text76 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text87:not(:first-child) {
	margin-top: 1rem !important;
}

#text87:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text87 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text87 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text87 a {
	text-decoration: underline;
}

#text87 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text88:not(:first-child) {
	margin-top: 1rem !important;
}

#text88:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text88 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text88 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text88 a {
	text-decoration: underline;
}

#text88 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text89:not(:first-child) {
	margin-top: 1rem !important;
}

#text89:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text89 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text89 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text89 a {
	text-decoration: underline;
}

#text89 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text91:not(:first-child) {
	margin-top: 1rem !important;
}

#text91:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text91 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text91 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text91 a {
	text-decoration: underline;
}

#text91 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text92:not(:first-child) {
	margin-top: 1rem !important;
}

#text92:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text92 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text92 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text92 a {
	text-decoration: underline;
}

#text92 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text02:not(:first-child) {
	margin-top: 1rem !important;
}

#text02:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text02 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text02 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text02 a {
	text-decoration: underline;
}

#text02 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text65:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text65:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text65 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text65 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text65 a {
	color: #5C83EE;
	text-decoration: none;
}

#text65 a:hover {
	color: #10182F;
}

#text65 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text70:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text70:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text70 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text70 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text70 a {
	text-decoration: underline;
}

#text70 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text82:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text82:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text82 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text82 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text82 a {
	color: #5C83EE;
	text-decoration: none;
}

#text82 a:hover {
	color: #10182F;
}

#text82 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text84 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.25em;
	line-height: 1.5;
	font-weight: 300;
}

#text84 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text84 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text84 a:hover {
	text-decoration: underline;
}

#text84 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text85 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.5em;
	line-height: 1.625;
	font-weight: 400;
}

#text85 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text85 a {
	text-decoration: underline;
}

#text85 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text93 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.25em;
	line-height: 1.5;
	font-weight: 300;
}

#text93 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text93 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text93 a:hover {
	text-decoration: underline;
}

#text93 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text94 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.5em;
	line-height: 1.625;
	font-weight: 400;
}

#text94 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text94 a {
	text-decoration: underline;
}

#text94 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text95:not(:first-child) {
	margin-top: 1rem !important;
}

#text95:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text95 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text95 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text95 a {
	text-decoration: underline;
}

#text95 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text96:not(:first-child) {
	margin-top: 1rem !important;
}

#text96:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text96 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text96 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text96 a {
	text-decoration: underline;
}

#text96 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text97:not(:first-child) {
	margin-top: 1rem !important;
}

#text97:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text97 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text97 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text97 a {
	text-decoration: underline;
}

#text97 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text98:not(:first-child) {
	margin-top: 1rem !important;
}

#text98:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text98 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text98 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text98 a {
	text-decoration: underline;
}

#text98 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text99:not(:first-child) {
	margin-top: 1rem !important;
}

#text99:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text99 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text99 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text99 a {
	text-decoration: underline;
}

#text99 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text100:not(:first-child) {
	margin-top: 1rem !important;
}

#text100:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text100 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text100 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text100 a {
	text-decoration: underline;
}

#text100 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text101:not(:first-child) {
	margin-top: 1rem !important;
}

#text101:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text101 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text101 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text101 a {
	text-decoration: underline;
}

#text101 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text185:not(:first-child) {
	margin-top: 1rem !important;
}

#text185:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text185 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Inter', sans-serif;
	font-size: 0.625em;
	line-height: 1.875;
	font-weight: 300;
}

#text185 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text185 a {
	text-decoration: underline;
}

#text185 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text188 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.75em;
	line-height: 0.75;
	font-weight: 700;
}

#text188 mark {
	background-color: transparent;
}

#text188 a {
	text-decoration: none;
}

#text188 a:hover {
	text-decoration: underline;
}

#text188 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text189:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text189:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text189 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 300;
}

#text189 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text189 a {
	color: #5C83EE;
	text-decoration: none;
}

#text189 a:hover {
	color: #10182F;
}

#text189 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text04 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #242424;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.25em;
	line-height: 1.5;
	font-weight: 300;
}

#text04 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text04 a {
	color: #000000;
	text-decoration: underline;
}

#text04 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text131:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text131:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text131 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text131 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text131 a {
	text-decoration: underline;
}

#text131 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text133:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text133:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text133 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
	line-height: 1.625;
	font-weight: 300;
}

#text133 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text133 a {
	text-decoration: underline;
}

#text133 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text143:not(:first-child) {
	margin-top: 0.5rem !important;
}

#text143:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#text143 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
	line-height: 1.625;
	font-weight: 300;
}

#text143 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text143 a {
	text-decoration: underline;
}

#text143 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text153 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Playfair Display', serif;
	font-size: 0.875em;
	line-height: 1.625;
	font-weight: 400;
}

#text153 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text153 a {
	text-decoration: underline;
}

#text153 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text154 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.5;
	font-weight: 300;
}

#text154 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text154 a {
	text-decoration: underline;
}

#text154 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text155 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 300;
}

#text155 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text155 a {
	text-decoration: underline;
}

#text155 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text156 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Playfair Display', serif;
	font-size: 0.875em;
	line-height: 1.625;
	font-weight: 400;
}

#text156 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text156 a {
	text-decoration: underline;
}

#text156 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text157 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.5;
	font-weight: 300;
}

#text157 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text157 a {
	text-decoration: underline;
}

#text157 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text158 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 300;
}

#text158 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text158 a {
	text-decoration: underline;
}

#text158 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text162 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Playfair Display', serif;
	font-size: 0.875em;
	line-height: 1.625;
	font-weight: 400;
}

#text162 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text162 a {
	text-decoration: underline;
}

#text162 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text174 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.5;
	font-weight: 300;
}

#text174 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text174 a {
	text-decoration: underline;
}

#text174 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text164 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 300;
}

#text164 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text164 a {
	text-decoration: underline;
}

#text164 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text165 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Playfair Display', serif;
	font-size: 0.875em;
	line-height: 1.625;
	font-weight: 400;
}

#text165 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text165 a {
	text-decoration: underline;
}

#text165 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text186 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.5;
	font-weight: 300;
}

#text186 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text186 a {
	text-decoration: underline;
}

#text186 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text167 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 300;
}

#text167 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text167 a {
	text-decoration: underline;
}

#text167 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text146 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Playfair Display', serif;
	font-size: 0.875em;
	line-height: 1.625;
	font-weight: 400;
}

#text146 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text146 a {
	text-decoration: underline;
}

#text146 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text147 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.5;
	font-weight: 300;
}

#text147 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text147 a {
	text-decoration: underline;
}

#text147 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text148 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 300;
}

#text148 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text148 a {
	text-decoration: underline;
}

#text148 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text149 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Playfair Display', serif;
	font-size: 0.875em;
	line-height: 1.625;
	font-weight: 400;
}

#text149 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text149 a {
	text-decoration: underline;
}

#text149 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text150 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.5;
	font-weight: 300;
}

#text150 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text150 a {
	text-decoration: underline;
}

#text150 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text151 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 300;
}

#text151 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text151 a {
	text-decoration: underline;
}

#text151 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text152 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Playfair Display', serif;
	font-size: 0.875em;
	line-height: 1.625;
	font-weight: 400;
}

#text152 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text152 a {
	text-decoration: underline;
}

#text152 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text171 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.5;
	font-weight: 300;
}

#text171 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text171 a {
	text-decoration: underline;
}

#text171 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text172 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 300;
}

#text172 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text172 a {
	text-decoration: underline;
}

#text172 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text173 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Playfair Display', serif;
	font-size: 0.875em;
	line-height: 1.625;
	font-weight: 400;
}

#text173 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text173 a {
	text-decoration: underline;
}

#text173 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text182 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.5;
	font-weight: 300;
}

#text182 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text182 a {
	text-decoration: underline;
}

#text182 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text175 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 300;
}

#text175 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text175 a {
	text-decoration: underline;
}

#text175 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text176 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Playfair Display', serif;
	font-size: 0.875em;
	line-height: 1.625;
	font-weight: 400;
}

#text176 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text176 a {
	text-decoration: underline;
}

#text176 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text183 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.5;
	font-weight: 300;
}

#text183 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text183 a {
	text-decoration: underline;
}

#text183 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text178 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 300;
}

#text178 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text178 a {
	text-decoration: underline;
}

#text178 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text179 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Playfair Display', serif;
	font-size: 0.875em;
	line-height: 1.625;
	font-weight: 400;
}

#text179 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text179 a {
	text-decoration: underline;
}

#text179 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text184 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.5;
	font-weight: 300;
}

#text184 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text184 a {
	text-decoration: underline;
}

#text184 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text181 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 300;
}

#text181 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text181 a {
	text-decoration: underline;
}

#text181 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text187:not(:first-child) {
	margin-top: 1rem !important;
}

#text187:not(:last-child) {
	margin-bottom: 1rem !important;
}

#text187 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Inter', sans-serif;
	font-size: 0.625em;
	line-height: 1.875;
	font-weight: 300;
}

#text187 mark {
	color: #D4AF37;
	background-color: transparent;
}

#text187 a {
	text-decoration: underline;
}

#text187 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text40 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.875em;
	line-height: 1.625;
	font-weight: 400;
}

#text40 a:hover {
	color: #5F3FBA;
}

#text40 a {
	text-decoration: underline;
}

#text40 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text47 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text47 a:hover {
	color: #0E0E0F;
}

#text47 a {
	text-decoration: underline;
}

#text47 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text68 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text68 a:hover {
	color: #5F3FBA;
}

#text68 a {
	text-decoration: underline;
}

#text68 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text35 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.625;
	font-weight: 300;
}

#text35 a:hover {
	color: #5F3FBA;
}

#text35 a {
	text-decoration: underline;
}

#text35 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text23 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Playfair Display', serif;
	font-size: 0.875em;
	line-height: 1.625;
	font-weight: 400;
}

#text23 a {
	text-decoration: underline;
}

#text23 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text28 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 300;
}

#text28 a:hover {
	color: #5F3FBA;
}

#text28 a {
	text-decoration: underline;
}

#text28 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text18 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.5em;
	line-height: 1.625;
	font-weight: 400;
}

#text18 a:hover {
	color: #5F3FBA;
}

#text18 a {
	text-decoration: underline;
}

#text18 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text31 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.5em;
	line-height: 1.625;
	font-weight: 300;
}

#text31 a:hover {
	color: #5F3FBA;
}

#text31 a {
	text-decoration: underline;
}

#text31 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text63 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.5em;
	line-height: 1.625;
	font-weight: 400;
}

#text63 a:hover {
	color: #5F3FBA;
}

#text63 a {
	text-decoration: underline;
}

#text63 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text72 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.5em;
	line-height: 1.625;
	font-weight: 400;
}

#text72 a {
	text-decoration: underline;
}

#text72 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

hr {
	align-items: center;
	border: 0;
	display: flex;
	justify-content: var(--flex-alignment);
	min-height: 1rem;
	padding: 0;
	position: relative;
	width: 100%;
}

hr:before {
	content: '';
}

hr.style1 {
	justify-content: flex-start;
}

hr.style1:before {
	width: 2rem;
	background-color: #A8A8A8;
	height: 2px;
	border-radius: 0px;
}

#divider11:before {
	width: 9rem;
	border-top: dotted 1px rgba(64,64,64,0.439);
	height: 1px;
}

#divider05:before {
	width: 9rem;
	border-top: dotted 1px rgba(64,64,64,0.439);
	height: 1px;
}

#divider12:before {
	width: 9rem;
	border-top: dotted 1px rgba(64,64,64,0.439);
	height: 1px;
}

#divider17 {
	justify-content: flex-start;
}

#divider17:before {
	width: 5rem;
	background-color: rgba(230,230,230,0.141);
	height: 2px;
	border-radius: 0px;
}

#divider13:before {
	width: 9rem;
	border-top: dotted 1px rgba(64,64,64,0.439);
	height: 1px;
}

#divider08:before {
	width: 19rem;
	background-color: rgba(168,168,168,0.439);
	height: 1px;
	border-radius: 0px;
}

#divider06:before {
	width: 19rem;
	background-color: rgba(168,168,168,0.439);
	height: 1px;
	border-radius: 0px;
}

#divider14:before {
	width: 9rem;
	border-top: dotted 1px rgba(64,64,64,0.439);
	height: 1px;
}

#divider15:before {
	width: 9rem;
	border-top: dotted 1px rgba(64,64,64,0.439);
	height: 1px;
}

#divider16:before {
	width: 9rem;
	border-top: dotted 1px rgba(64,64,64,0.439);
	height: 1px;
}

#divider10:before {
	width: 9rem;
	border-top: dotted 1px rgba(64,64,64,0.439);
	height: 1px;
}

#divider03:before {
	width: 9rem;
	border-top: dotted 1px rgba(64,64,64,0.439);
	height: 1px;
}

.container {
	position: relative;
}

.container > .wrapper {
	vertical-align: top;
	position: relative;
	max-width: 100%;
	border-radius: inherit;
}

.container > .wrapper > .inner {
	vertical-align: top;
	position: relative;
	max-width: 100%;
	border-radius: inherit;
	text-align: var(--alignment);
}

#main .container.full:first-child > .wrapper {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#main .container.full:last-child > .wrapper {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#main .container.full:first-child > .wrapper > .inner {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#main .container.full:last-child > .wrapper > .inner {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container08 {
	--alignment: right;
	--flex-alignment: flex-end;
	--indent-left: 0;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: 0;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #FFFFFF;
	box-shadow: 0rem 0rem 0rem 0rem transparent;
}

#container08 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 0.5rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container08 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container08.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container08.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container08.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container08.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container08.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container08.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container08.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container08.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container08.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container08.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container08.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container08.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container08.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container08.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container08.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container08.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container08.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container08.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container08.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container08.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container08 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + (var(--gutters) / 2));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container08 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 2));
}

#container01 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #E8E8E8;
}

#container01 > .wrapper > .inner {
	--gutters: 12rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0.875rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container01 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container01.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container01.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container01.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container01.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container01.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container01.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container01.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container01.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container01.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container01.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container01.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container01.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container01.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container01.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container01.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container01.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container01.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container01.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container01.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container01.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container12 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	min-height: 25rem;
	align-items: center;
	justify-content: center;
	background-attachment: fixed;
	background-color: #FFFFFF;
	background-image: linear-gradient(to top, rgba(255,255,255,0.329), rgba(255,255,255,0.329)), url('images/container12.svg');
	background-position: 0% 0%, 50% calc(50% - (((var(--scroll-y, 0) * 1px) - (var(--element-top, 0) * 1px)) * var(--background-parallax-intensity, 0)) );
	background-repeat: repeat, no-repeat;
	background-size: auto, cover;
}

#container12 > .wrapper > .inner {
	--gutters: 2.5rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 0rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container12 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

body.is-touch #container12 {
	background-attachment: scroll;
}

#container12.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container12.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container12.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container12.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container12.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container12.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container12.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container12.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container12.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container12.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container12.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container12.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container12.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container12.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container12.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container12.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container12.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container12.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: 25rem;
}

#container12.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container12.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container12.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container12.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container12 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + (var(--gutters) / 2));
}

#container12 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 2));
}

#container09 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container09:not(:first-child) {
	margin-top: 3rem !important;
}

#container09:not(:last-child) {
	margin-bottom: 0rem !important;
}

#container09 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 65rem;
	background-color: #FFFFFF;
	border-color: #F1F1F1;
	border-style: solid;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-radius: 0.5rem;
}

#container09 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 3rem;
	--spacing: 0.75rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 1px);
}

#container09.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container09.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container09.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container09.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container09.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container09.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container09.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container09.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container09.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container09.columns > .wrapper > .inner > *:before {
	border-left: solid 1px #F1F1F1;
	content: '';
	display: block;
	margin-left: calc((var(--gutters) * -0.5) - 0.5px);
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
}

#container09.columns > .wrapper > .inner > *:first-child:before {
	display: none;
}

#container09.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container09.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container09.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container09.columns > .wrapper > .inner > div > .full {
	margin-left: calc((var(--gutters) * -0.5) + 0.5px);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px - 1px);
}

#container09.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px - 0.5px);
}

#container09.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px - 0.5px);
}

#container09.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container09.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container09.columns > .wrapper > .inner > div:first-child, #container09.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container09.columns > .wrapper > .inner > div:last-child, #container09.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container09.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container09.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container09.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container09 > .wrapper > .inner > :nth-child(1) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#container09 > .wrapper > .inner > :nth-child(2) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#container09 > .wrapper > .inner > :nth-child(3) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#container06 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container06:not(:first-child) {
	margin-top: 3rem !important;
}

#container06:not(:last-child) {
	margin-bottom: 5rem !important;
}

#container06 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container06 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container06.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container06.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container06.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container06.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container06.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container06.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container06.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container06.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container06.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container06.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container06.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container06.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container06.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container06.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container06.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container06.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container06.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container06.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container06.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container06.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container06.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container06.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container06 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + (var(--gutters) / 2));
}

#container06 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 2));
}

#container32 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container32:not(:first-child) {
	margin-top: 3rem !important;
}

#container32:not(:last-child) {
	margin-bottom: 3rem !important;
}

#container32 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container32 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container32.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container32.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container32.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container32.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container32.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container32.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container32.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container32.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container32.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container32.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container32.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container32.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container32.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container32.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container32.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container32.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container32.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container32.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container32.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container32.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container32.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container32.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container32 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + (var(--gutters) / 2));
}

#container32 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 2));
}

#container07 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-attachment: fixed;
	background-color: rgba(255,255,255,0.549);
	border-color: #E9E9E9;
	border-style: solid;
	border-top-width: 1px;
	border-bottom-width: 1px;
	background-image: linear-gradient(45deg, rgba(43,43,43,0.753) 0%, transparent 100%), url('images/container07.jpg');
	background-position: 0% 0%, 50% calc(50% - (((var(--scroll-y, 0) * 1px) - (var(--element-top, 0) * 1px)) * var(--background-parallax-intensity, 0)) );
	background-repeat: repeat, no-repeat;
	background-size: cover, cover;
}

#container07:not(:first-child) {
	margin-top: 3rem !important;
}

#container07 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 12rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container07 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

body.is-touch #container07 {
	background-attachment: scroll;
}

#container07.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container07.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container07.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container07.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container07.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container07.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container07.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container07.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container07.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container07.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container07.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container07.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container07.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container07.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container07.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container07.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container07.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container07.columns > .wrapper > .inner > div:first-child, #container07.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container07.columns > .wrapper > .inner > div:last-child, #container07.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container07.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container07.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container07.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container07.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container07.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container07 > .wrapper > .inner > :nth-child(1) {
	width: calc(70% + (var(--gutters) / 2));
}

#container07 > .wrapper > .inner > :nth-child(2) {
	width: calc(30% + (var(--gutters) / 2));
}

#container34 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container34:not(:first-child) {
	margin-top: 3rem !important;
}

#container34:not(:last-child) {
	margin-bottom: 5rem !important;
}

#container34 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container34 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container34.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container34.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container34.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container34.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container34.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container34.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container34.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container34.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container34.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container34.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container34.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container34.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container34.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container34.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container34.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container34.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container34.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container34.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container34.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container34.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container34.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container34.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container34 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + (var(--gutters) / 2));
}

#container34 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 2));
}

#container35 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container35:not(:first-child) {
	margin-top: 3rem !important;
}

#container35 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container35 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container35.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container35.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container35.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container35.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container35.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container35.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container35.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container35.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container35.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container35.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container35.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container35.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container35.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container35.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container35.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container35.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container35.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container35.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container35.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container35.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container35.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container35.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container35 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + (var(--gutters) / 2));
}

#container35 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 2));
}

#container63 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container63 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 2rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container63 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container63.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container63.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container63.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container63.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container63.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container63.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container63.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container63.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container63.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container63.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container63.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container63.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container63.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container63.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container63.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container63.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container63.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container63.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container63.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container63.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container63.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container63.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container29 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container29 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container29 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container29.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container29.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container29.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container29.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container29.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container29.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container29.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container29.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container29.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container29.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container29.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container29.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container29.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container29.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container29.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container29.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container29.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container29.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container29.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container29.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container29.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container29.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container20 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container20 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 50rem;
	background-attachment: scroll;
	background-color: transparent;
	border-radius: 0.125rem;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201024%201024%22%20width%3D%221024%22%20height%3D%221024%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%3E%20circle%20%7B%20fill%3A%20%23A8A8A8%3B%20%7D%20%3C%2Fstyle%3E%20%3Ccircle%20cx%3D%22256%22%20cy%3D%22256%22%20r%3D%222.01%25%22%20%2F%3E%20%3Ccircle%20cx%3D%22768%22%20cy%3D%22768%22%20r%3D%222.01%25%22%20%2F%3E%3C%2Fsvg%3E'), linear-gradient(38deg, rgba(0,0,0,0.69) 34%, transparent 100%), url('images/container20.jpg');
	background-size: 6px, cover, cover;
	background-position: center, 0% 0%, 50% 50%;
	background-repeat: repeat, repeat, no-repeat;
}

#container20 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 2.5rem;
	--padding-vertical: 2.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.125rem - 1px);
}

#container20.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container20.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container20.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container20.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container20.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container20.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container20.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container20.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container20.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container20.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container20.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container20.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container20.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container20.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container20.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container20.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container20.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container20.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container20.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container20.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container20.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container20.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container73 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container73:not(:last-child) {
	margin-bottom: 1.5rem !important;
}

#container73 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 2rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container73 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container73.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container73.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container73.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container73.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container73.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container73.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container73.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container73.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container73.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container73.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container73.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container73.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container73.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container73.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container73.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container73.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container73.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container73.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container73.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container73.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container73.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container73.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container73 > .wrapper > .inner > :nth-child(1) {
	width: calc(60% + (var(--gutters) / 2));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container73 > .wrapper > .inner > :nth-child(2) {
	width: calc(40% + (var(--gutters) / 2));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container72 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container72:not(:last-child) {
	margin-bottom: 2rem !important;
}

#container72 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container72 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container72.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container72.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container72.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container72.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container72.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container72.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container72.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container72.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container72.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container72.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container72.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container72.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container72.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container72.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container72.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container72.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container72.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container72.columns > .wrapper > .inner > div:first-child, #container72.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container72.columns > .wrapper > .inner > div:last-child, #container72.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container72.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container72.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container72.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container72.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container72.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container72 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + (var(--gutters) / 2));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container72 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 2));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container39 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container39:not(:last-child) {
	margin-bottom: 1rem !important;
}

#container39 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container39 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container39.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container39.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container39.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container39.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container39.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container39.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container39.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container39.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container39.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container39.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container39.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container39.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container39.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container39.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container39.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container39.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container39.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container39.columns > .wrapper > .inner > div:first-child, #container39.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container39.columns > .wrapper > .inner > div:last-child, #container39.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container39.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container39.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container39.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container39.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container39.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container.style1 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container.style1:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.container.style1 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 45rem;
	background-color: #F0F0F0;
	border-color: transparent;
	border-style: solid;
	border-width: 1px;
}

.container.style1 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container.style1.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container.style1.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container.style1.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container.style1.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

.container.style1.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container.style1.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container.style1.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container.style1.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container.style1.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container.style1.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container.style1.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container.style1.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container.style1.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container.style1.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container.style1.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container.style1.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container.style1.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container.style1.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: 20rem;
}

.container.style1.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container.style1.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container.style1.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container.style1.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container23 > .wrapper > .inner > :nth-child(1) {
	width: calc(80% + (var(--gutters) / 2));
}

#container23 > .wrapper > .inner > :nth-child(2) {
	width: calc(20% + (var(--gutters) / 2));
}

.container.style2 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container.style2 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 45rem;
	background-color: transparent;
}

.container.style2 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-vertical: 0.75rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container.style2.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container.style2.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container.style2.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container.style2.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

.container.style2.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container.style2.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container.style2.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container.style2.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container.style2.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container.style2.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container.style2.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container.style2.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container.style2.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container.style2.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container.style2.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container.style2.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container.style2.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container.style2.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: 20rem;
}

.container.style2.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container.style2.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container.style2.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container.style2.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container25 > .wrapper > .inner > :nth-child(1) {
	width: calc(80% + (var(--gutters) / 2));
}

#container25 > .wrapper > .inner > :nth-child(2) {
	width: calc(20% + (var(--gutters) / 2));
}

#container26 > .wrapper > .inner > :nth-child(1) {
	width: calc(80% + (var(--gutters) / 2));
}

#container26 > .wrapper > .inner > :nth-child(2) {
	width: calc(20% + (var(--gutters) / 2));
}

#container28 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container28 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 45rem;
	background-color: transparent;
}

#container28 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-vertical: 0.75rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container28.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container28.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container28.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container28.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container28.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container28.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container28.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container28.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container28.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container28.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container28.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container28.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container28.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container28.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container28.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container28.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container28.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container28.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: 20rem;
}

#container28.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container28.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container28.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container28.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container42 > .wrapper > .inner > :nth-child(1) {
	width: calc(80% + (var(--gutters) / 2));
}

#container42 > .wrapper > .inner > :nth-child(2) {
	width: calc(20% + (var(--gutters) / 2));
}

#container31 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container31 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 45rem;
	background-color: transparent;
}

#container31 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-vertical: 0.75rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container31.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container31.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container31.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container31.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container31.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container31.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container31.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container31.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container31.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container31.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container31.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container31.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container31.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container31.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container31.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container31.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container31.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container31.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: 20rem;
}

#container31.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container31.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container31.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container31.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container40 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container40:not(:first-child) {
	margin-top: 2.5rem !important;
}

#container40 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 50rem;
	background-attachment: scroll;
	background-color: transparent;
	border-radius: 0.125rem;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201024%201024%22%20width%3D%221024%22%20height%3D%221024%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%3E%20circle%20%7B%20fill%3A%20%23A8A8A8%3B%20%7D%20%3C%2Fstyle%3E%20%3Ccircle%20cx%3D%22256%22%20cy%3D%22256%22%20r%3D%222.01%25%22%20%2F%3E%20%3Ccircle%20cx%3D%22768%22%20cy%3D%22768%22%20r%3D%222.01%25%22%20%2F%3E%3C%2Fsvg%3E'), linear-gradient(38deg, rgba(0,0,0,0.69) 34%, transparent 100%), url('images/container40.jpg');
	background-size: 6px, cover, cover;
	background-position: center, 0% 0%, 0% 0%;
	background-repeat: repeat, repeat, no-repeat;
}

#container40 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 2.5rem;
	--padding-vertical: 9rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.125rem - 1px);
}

#container40.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container40.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container40.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container40.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container40.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container40.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container40.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container40.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container40.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container40.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container40.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container40.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container40.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container40.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container40.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container40.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container40.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container40.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container40.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container40.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container40.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container40.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container40 > .wrapper > .inner > :nth-child(1) {
	width: calc(60% + (var(--gutters) / 2));
}

#container40 > .wrapper > .inner > :nth-child(2) {
	width: calc(40% + (var(--gutters) / 2));
}

#container64 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container64 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 2rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container64 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container64.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container64.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container64.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container64.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container64.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container64.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container64.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container64.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container64.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container64.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container64.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container64.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container64.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container64.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container64.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container64.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container64.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container64.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container64.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container64.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container64.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container64.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container14 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container14 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container14 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container14.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container14.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container14.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container14.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container14.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container14.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container14.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container14.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container14.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container14.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container14.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container14.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container14.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container14.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container14.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container14.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container14.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container14.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container14.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container14.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container14.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container14.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container17 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container17 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 50rem;
	background-attachment: fixed;
	background-color: transparent;
	border-radius: 0.125rem;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201024%201024%22%20width%3D%221024%22%20height%3D%221024%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%3E%20circle%20%7B%20fill%3A%20%23A8A8A8%3B%20%7D%20%3C%2Fstyle%3E%20%3Ccircle%20cx%3D%22256%22%20cy%3D%22256%22%20r%3D%222.01%25%22%20%2F%3E%20%3Ccircle%20cx%3D%22768%22%20cy%3D%22768%22%20r%3D%222.01%25%22%20%2F%3E%3C%2Fsvg%3E'), linear-gradient(38deg, rgba(0,0,0,0.69) 34%, transparent 100%), url('images/container17.jpg');
	background-size: 6px, cover, cover;
	background-position: center, 0% 0%, 0% calc(0% - (((var(--scroll-y, 0) * 1px) - (var(--element-top, 0) * 1px)) * var(--background-parallax-intensity, 0)) );
	background-repeat: repeat, repeat, no-repeat;
}

#container17 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 2.5rem;
	--padding-vertical: 5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.125rem - 1px);
}

body.is-touch #container17 > .wrapper {
	background-attachment: scroll;
}

#container17.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container17.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container17.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container17.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container17.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container17.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container17.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container17.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container17.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container17.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container17.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container17.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container17.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container17.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container17.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container17.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container17.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container17.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container17.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container17.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container17.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container17.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container17 > .wrapper > .inner > :nth-child(1) {
	width: calc(60% + (var(--gutters) / 2));
}

#container17 > .wrapper > .inner > :nth-child(2) {
	width: calc(40% + (var(--gutters) / 2));
}

#container61 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container61:not(:first-child) {
	margin-top: 3rem !important;
}

#container61:not(:last-child) {
	margin-bottom: 3rem !important;
}

#container61 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container61 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container61.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container61.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container61.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container61.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container61.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container61.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container61.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container61.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container61.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container61.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container61.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container61.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container61.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container61.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container61.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container61.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container61.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container61.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container61.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container61.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container61.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container61.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container61 > .wrapper > .inner > :nth-child(1) {
	width: calc(60% + (var(--gutters) / 2));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container61 > .wrapper > .inner > :nth-child(2) {
	width: calc(40% + (var(--gutters) / 2));
	--alignment: right;
	--flex-alignment: flex-end;
	--indent-left: 0;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: 0;
}

#container45 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container45:not(:first-child) {
	margin-top: 3rem !important;
}

#container45:not(:last-child) {
	margin-bottom: 3rem !important;
}

#container45 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container45 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container45.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container45.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container45.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container45.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container45.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container45.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container45.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container45.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container45.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container45.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container45.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container45.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container45.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container45.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container45.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container45.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container45.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container45.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container45.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container45.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container45.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container45.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container45 > .wrapper > .inner > :nth-child(1) {
	width: calc(40% + (var(--gutters) / 2));
	--alignment: right;
	--flex-alignment: flex-end;
	--indent-left: 0;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: 0;
}

#container45 > .wrapper > .inner > :nth-child(2) {
	width: calc(60% + (var(--gutters) / 2));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container37 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container37:not(:first-child) {
	margin-top: 3rem !important;
}

#container37:not(:last-child) {
	margin-bottom: 3rem !important;
}

#container37 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container37 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container37.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container37.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container37.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container37.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container37.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container37.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container37.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container37.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container37.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container37.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container37.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container37.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container37.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container37.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container37.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container37.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container37.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container37.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container37.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container37.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container37.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container37.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container37 > .wrapper > .inner > :nth-child(1) {
	width: calc(60% + (var(--gutters) / 2));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container37 > .wrapper > .inner > :nth-child(2) {
	width: calc(40% + (var(--gutters) / 2));
	--alignment: right;
	--flex-alignment: flex-end;
	--indent-left: 0;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: 0;
}

#container13 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container13 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 50rem;
	background-attachment: scroll;
	background-color: transparent;
	border-radius: 0.125rem;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201024%201024%22%20width%3D%221024%22%20height%3D%221024%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%3E%20circle%20%7B%20fill%3A%20%23A8A8A8%3B%20%7D%20%3C%2Fstyle%3E%20%3Ccircle%20cx%3D%22256%22%20cy%3D%22256%22%20r%3D%222.01%25%22%20%2F%3E%20%3Ccircle%20cx%3D%22768%22%20cy%3D%22768%22%20r%3D%222.01%25%22%20%2F%3E%3C%2Fsvg%3E'), linear-gradient(38deg, rgba(0,0,0,0.69) 34%, transparent 100%), url('images/container13.jpg');
	background-size: 6px, cover, cover;
	background-position: center, 0% 0%, 0% 0%;
	background-repeat: repeat, repeat, no-repeat;
}

#container13 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 2.5rem;
	--padding-vertical: 9rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.125rem - 1px);
}

#container13.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container13.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container13.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container13.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container13.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container13.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container13.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container13.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container13.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container13.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container13.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container13.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container13.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container13.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container13.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container13.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container13.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container13.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container13.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container13.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container13.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container13.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container13 > .wrapper > .inner > :nth-child(1) {
	width: calc(60% + (var(--gutters) / 2));
}

#container13 > .wrapper > .inner > :nth-child(2) {
	width: calc(40% + (var(--gutters) / 2));
}

#container65 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container65 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 2rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container65 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container65.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container65.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container65.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container65.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container65.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container65.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container65.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container65.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container65.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container65.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container65.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container65.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container65.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container65.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container65.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container65.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container65.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container65.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container65.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container65.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container65.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container65.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container03 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container03 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container03 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container03.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container03.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container03.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container03.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container03.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container03.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container03.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container03.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container03.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container03.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container03.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container03.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container03.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container03.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container03.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container03.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container03.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container03.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container03.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container03.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container03.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container03.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container18 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container18 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 55rem;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 0.125rem;
}

#container18 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 2.5rem;
	--padding-vertical: 4rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.125rem - 1px);
}

#container18 > .wrapper > .slideshow-background {
	border-radius: inherit;
	height: 100%;
	left: 0;
	object-fit: cover;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -2;
	background-color: #000000;
}

#container18 > .wrapper:before {
	border-radius: inherit;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201024%201024%22%20width%3D%221024%22%20height%3D%221024%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%3E%20circle%20%7B%20fill%3A%20%23A8A8A8%3B%20%7D%20%3C%2Fstyle%3E%20%3Ccircle%20cx%3D%22256%22%20cy%3D%22256%22%20r%3D%222.01%25%22%20%2F%3E%20%3Ccircle%20cx%3D%22768%22%20cy%3D%22768%22%20r%3D%222.01%25%22%20%2F%3E%3C%2Fsvg%3E'), linear-gradient(38deg, rgba(0,0,0,0.69) 39%, transparent 100%);
	background-size: 6px, cover;
	background-position: center, 0% 0%;
	background-repeat: repeat, repeat;
}

#container18 > .wrapper > .slideshow-background > .slow {
	animation-duration: 37.5s;
}

#container18 > .wrapper > .slideshow-background > .normal {
	animation-duration: 28.125s;
}

#container18 > .wrapper > .slideshow-background > .fast {
	animation-duration: 18.75s;
}

#container18 > .wrapper > .slideshow-background > div {
	transition-duration: 0.75s;
}

#container18.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container18.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container18.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container18.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container18.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container18.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container18.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container18.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container18.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container18.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container18.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container18.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container18.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container18.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container18.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container18.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container18.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container18.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container18.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container18.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container18.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container18.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container18 > .wrapper > .inner > :nth-child(1) {
	width: calc(60% + (var(--gutters) / 2));
}

#container18 > .wrapper > .inner > :nth-child(2) {
	width: calc(40% + (var(--gutters) / 2));
}

#container05 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container05:not(:first-child) {
	margin-top: 2rem !important;
}

#container05 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container05 > .wrapper {
	max-width: 55rem;
	width: 100%;
}

#container05.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container05.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container05.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container05.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container05.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container05.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container05.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container05.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container05.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container05.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container05.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container05.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container05.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container05.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container05.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container05.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container05.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container05.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container05.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container05.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container05.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container05.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container22 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container22:not(:first-child) {
	margin-top: 2rem !important;
}

#container22 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container22 > .wrapper {
	max-width: 55rem;
	width: 100%;
}

#container22.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container22.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container22.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container22.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container22.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container22.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container22.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container22.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container22.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container22.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container22.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container22.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container22.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container22.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container22.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container22.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container22.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container22.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container22.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container22.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container22.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container22.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container22 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + (var(--gutters) / 2));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container22 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 2));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container60 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container60:not(:first-child) {
	margin-top: 2rem !important;
}

#container60:not(:last-child) {
	margin-bottom: 2rem !important;
}

#container60 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container60 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container60.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container60.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container60.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container60.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container60.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container60.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container60.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container60.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container60.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container60.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container60.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container60.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container60.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container60.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container60.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container60.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container60.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container60.columns > .wrapper > .inner > div:first-child, #container60.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container60.columns > .wrapper > .inner > div:last-child, #container60.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container60.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container60.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container60.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container60.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container60.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container44 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container44 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 1.5rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container44 > .wrapper {
	max-width: 55rem;
	width: 100%;
}

#container44.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container44.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container44.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container44.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container44.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container44.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container44.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container44.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container44.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container44.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container44.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container44.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container44.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container44.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container44.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container44.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container44.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container44.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container44.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container44.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container44.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container44.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container44 > .wrapper > .inner > :nth-child(1) {
	width: calc(40% + (var(--gutters) / 2));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container44 > .wrapper > .inner > :nth-child(2) {
	width: calc(60% + (var(--gutters) / 2));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container43 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container43:not(:first-child) {
	margin-top: 2rem !important;
}

#container43:not(:last-child) {
	margin-bottom: 2rem !important;
}

#container43 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container43 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container43.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container43.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container43.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container43.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container43.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container43.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container43.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container43.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container43.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container43.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container43.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container43.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container43.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container43.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container43.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container43.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container43.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container43.columns > .wrapper > .inner > div:first-child, #container43.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container43.columns > .wrapper > .inner > div:last-child, #container43.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container43.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container43.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container43.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container43.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container43.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container46 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container46:not(:last-child) {
	margin-bottom: 2rem !important;
}

#container46 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container46 > .wrapper {
	max-width: 55rem;
	width: 100%;
}

#container46.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container46.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container46.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container46.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container46.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container46.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container46.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container46.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container46.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container46.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container46.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container46.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container46.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container46.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container46.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container46.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container46.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container46.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container46.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container46.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container46.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container46.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container46 > .wrapper > .inner > :nth-child(1) {
	width: calc(60% + (var(--gutters) / 2));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container46 > .wrapper > .inner > :nth-child(2) {
	width: calc(40% + (var(--gutters) / 2));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container15 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container15 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 55rem;
	background-attachment: scroll;
	background-color: transparent;
	border-radius: 0.125rem;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201024%201024%22%20width%3D%221024%22%20height%3D%221024%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%3E%20circle%20%7B%20fill%3A%20%23A8A8A8%3B%20%7D%20%3C%2Fstyle%3E%20%3Ccircle%20cx%3D%22256%22%20cy%3D%22256%22%20r%3D%222.01%25%22%20%2F%3E%20%3Ccircle%20cx%3D%22768%22%20cy%3D%22768%22%20r%3D%222.01%25%22%20%2F%3E%3C%2Fsvg%3E'), linear-gradient(38deg, rgba(0,0,0,0.69) 34%, transparent 100%), url('images/container15.jpg');
	background-size: 6px, cover, cover;
	background-position: center, 0% 0%, 0% 0%;
	background-repeat: repeat, repeat, no-repeat;
}

#container15 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 2.5rem;
	--padding-vertical: 9rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.125rem - 1px);
}

#container15.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container15.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container15.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container15.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container15.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container15.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container15.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container15.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container15.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container15.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container15.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container15.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container15.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container15.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container15.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container15.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container15.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container15.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container15.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container15.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container15 > .wrapper > .inner > :nth-child(1) {
	width: calc(60% + (var(--gutters) / 2));
}

#container15 > .wrapper > .inner > :nth-child(2) {
	width: calc(40% + (var(--gutters) / 2));
}

#container66 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container66 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 2rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container66 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container66.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container66.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container66.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container66.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container66.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container66.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container66.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container66.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container66.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container66.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container66.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container66.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container66.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container66.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container66.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container66.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container66.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container66.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container66.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container66.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container66.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container66.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container11 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container11 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container11 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container11.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container11.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container11.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container11.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container11.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container11.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container11.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container11.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container11.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container11.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container11.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container11.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container11.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container11.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container11.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container11.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container11.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container11.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container11.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container11.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container11.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container11.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container36 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container36:not(:last-child) {
	margin-bottom: 1.5rem !important;
}

#container36 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 50rem;
	background-attachment: scroll;
	background-color: transparent;
	border-color: transparent;
	border-style: solid;
	border-width: 1px;
	border-radius: 0.125rem;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201024%201024%22%20width%3D%221024%22%20height%3D%221024%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%3E%20circle%20%7B%20fill%3A%20%23A8A8A8%3B%20%7D%20%3C%2Fstyle%3E%20%3Ccircle%20cx%3D%22256%22%20cy%3D%22256%22%20r%3D%222.01%25%22%20%2F%3E%20%3Ccircle%20cx%3D%22768%22%20cy%3D%22768%22%20r%3D%222.01%25%22%20%2F%3E%3C%2Fsvg%3E'), linear-gradient(38deg, rgba(0,0,0,0.69) 34%, transparent 100%), url('images/container36.jpg');
	background-size: 6px, cover, cover;
	background-position: center, 0% 0%, 50% 50%;
	background-repeat: repeat, repeat, no-repeat;
}

#container36 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 2.5rem;
	--padding-vertical: 8rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.125rem - 1px);
}

#container36.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container36.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container36.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container36.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container36.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container36.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container36.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container36.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container36.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container36.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container36.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container36.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container36.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container36.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container36.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container36.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container36.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container36.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container36.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container36.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container36.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container36.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container19 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container19:not(:first-child) {
	margin-top: 2rem !important;
}

#container19:not(:last-child) {
	margin-bottom: 1rem !important;
}

#container19 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container19 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container19.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container19.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container19.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container19.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container19.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container19.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container19.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container19.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container19.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container19.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container19.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container19.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container19.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container19.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container19.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container19.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container19.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container19.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container19.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container19.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container19.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container19.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container69 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container69:not(:last-child) {
	margin-bottom: 1rem !important;
}

#container69 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container69 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container69.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container69.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container69.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container69.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container69.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container69.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container69.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container69.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container69.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container69.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container69.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container69.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container69.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container69.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container69.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container69.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container69.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container69.columns > .wrapper > .inner > div:first-child, #container69.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container69.columns > .wrapper > .inner > div:last-child, #container69.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container69.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container69.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container69.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container69.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container69.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container70 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #E8E8E8;
}

#container70:not(:last-child) {
	margin-bottom: 1rem !important;
}

#container70 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 1rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container70 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container70.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container70.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container70.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container70.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container70.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container70.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container70.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container70.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container70.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container70.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container70.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container70.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container70.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container70.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container70.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container70.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container70.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container70.columns > .wrapper > .inner > div:first-child, #container70.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container70.columns > .wrapper > .inner > div:last-child, #container70.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container70.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container70.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container70.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container70.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container70.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container71 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container71:not(:last-child) {
	margin-bottom: 1rem !important;
}

#container71 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container71 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container71.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container71.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container71.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container71.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container71.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container71.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container71.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container71.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container71.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container71.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container71.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container71.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container71.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container71.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container71.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container71.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container71.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container71.columns > .wrapper > .inner > div:first-child, #container71.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container71.columns > .wrapper > .inner > div:last-child, #container71.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container71.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container71.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container71.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container71.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container71.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container48 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #E8E8E8;
}

#container48:not(:last-child) {
	margin-bottom: 1rem !important;
}

#container48 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 1rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container48 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container48.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container48.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container48.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container48.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container48.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container48.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container48.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container48.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container48.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container48.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container48.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container48.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container48.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container48.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container48.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container48.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container48.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container48.columns > .wrapper > .inner > div:first-child, #container48.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container48.columns > .wrapper > .inner > div:last-child, #container48.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container48.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container48.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container48.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container48.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container48.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container33 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container33:not(:last-child) {
	margin-bottom: 1rem !important;
}

#container33 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container33 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container33.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container33.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container33.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container33.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container33.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container33.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container33.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container33.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container33.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container33.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container33.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container33.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container33.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container33.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container33.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container33.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container33.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container33.columns > .wrapper > .inner > div:first-child, #container33.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container33.columns > .wrapper > .inner > div:last-child, #container33.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container33.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container33.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container33.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container33.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container33.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container68 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container68 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 2rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container68 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container68.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container68.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container68.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container68.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container68.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container68.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container68.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container68.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container68.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container68.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container68.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container68.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container68.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container68.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container68.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container68.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container68.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container68.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container68.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container68.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container68.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container68.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container55 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container55 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container55 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container55.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container55.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container55.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container55.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container55.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container55.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container55.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container55.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container55.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container55.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container55.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container55.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container55.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container55.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container55.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container55.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container55.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container55.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container55.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container55.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container55.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container55.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container57 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container57:not(:last-child) {
	margin-bottom: 1.5rem !important;
}

#container57 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 50rem;
	background-attachment: scroll;
	background-color: transparent;
	border-radius: 0.125rem;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201024%201024%22%20width%3D%221024%22%20height%3D%221024%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%3E%20circle%20%7B%20fill%3A%20%23A8A8A8%3B%20%7D%20%3C%2Fstyle%3E%20%3Ccircle%20cx%3D%22256%22%20cy%3D%22256%22%20r%3D%222.01%25%22%20%2F%3E%20%3Ccircle%20cx%3D%22768%22%20cy%3D%22768%22%20r%3D%222.01%25%22%20%2F%3E%3C%2Fsvg%3E'), linear-gradient(38deg, rgba(0,0,0,0.69) 34%, transparent 100%), url('images/container57.jpg');
	background-size: 6px, cover, cover;
	background-position: center, 0% 0%, 50% 50%;
	background-repeat: repeat, repeat, no-repeat;
}

#container57 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 2.5rem;
	--padding-vertical: 6rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.125rem - 1px);
}

#container57.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container57.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container57.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container57.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container57.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container57.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container57.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container57.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container57.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container57.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container57.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container57.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container57.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container57.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container57.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container57.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container57.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container57.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container57.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container57.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container57.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container57.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container59 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container59:not(:first-child) {
	margin-top: 2rem !important;
}

#container59:not(:last-child) {
	margin-bottom: 1.5rem !important;
}

#container59 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container59 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container59.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container59.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container59.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container59.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container59.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container59.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container59.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container59.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container59.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container59.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container59.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container59.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container59.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container59.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container59.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container59.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container59.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container59.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container59.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container59.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container59.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container59.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container16 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container16:not(:last-child) {
	margin-bottom: 1.5rem !important;
}

#container16 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 50rem;
	background-color: #FFFFFF;
	border-color: transparent;
	border-style: solid;
	border-radius: 0.5rem;
}

#container16 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 3rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 1px);
}

#container16.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container16.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container16.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container16.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container16.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container16.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container16.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container16.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container16.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container16.columns > .wrapper > .inner > *:before {
	border-left: solid 1px transparent;
	content: '';
	display: block;
	margin-left: calc((var(--gutters) * -0.5) - 0.5px);
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
}

#container16.columns > .wrapper > .inner > *:first-child:before {
	display: none;
}

#container16.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container16.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container16.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container16.columns > .wrapper > .inner > div > .full {
	margin-left: calc((var(--gutters) * -0.5) + 0.5px);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px - 1px);
}

#container16.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px - 0.5px);
}

#container16.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px - 0.5px);
}

#container16.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container16.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container16.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container16.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container16.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container16.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container16.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container16 > .wrapper > .inner > :nth-child(1) {
	width: calc(30% + (var(--gutters) / 2));
}

#container16 > .wrapper > .inner > :nth-child(2) {
	width: calc(70% + (var(--gutters) / 2));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container49 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container49:not(:last-child) {
	margin-bottom: 2rem !important;
}

#container49 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container49 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container49.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container49.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container49.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container49.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container49.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container49.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container49.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container49.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container49.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container49.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container49.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container49.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container49.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container49.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container49.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container49.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container49.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container49.columns > .wrapper > .inner > div:first-child, #container49.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container49.columns > .wrapper > .inner > div:last-child, #container49.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container49.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container49.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container49.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container49.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container49.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container52 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container52:not(:first-child) {
	margin-top: 2rem !important;
}

#container52 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container52 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container52.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container52.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container52.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container52.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container52.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container52.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container52.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container52.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container52.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container52.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container52.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container52.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container52.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container52.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container52.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container52.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container52.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container52.columns > .wrapper > .inner > div:first-child, #container52.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container52.columns > .wrapper > .inner > div:last-child, #container52.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container52.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container52.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container52.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container52.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container52.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container53 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container53 > .wrapper > .inner {
	--gutters: 1.5rem;
	--padding-horizontal: 2.5rem;
	--padding-vertical: 1rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container53 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container53.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container53.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container53.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container53.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container53.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container53.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container53.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container53.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container53.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container53.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container53.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container53.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container53.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container53.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container53.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container53.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container53.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container53.columns > .wrapper > .inner > div:first-child, #container53.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container53.columns > .wrapper > .inner > div:last-child, #container53.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container53.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container53.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container53.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container53.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container53.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container53 > .wrapper > .inner > :nth-child(1) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container53 > .wrapper > .inner > :nth-child(2) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container53 > .wrapper > .inner > :nth-child(3) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container47 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container47 > .wrapper > .inner {
	--gutters: 1.5rem;
	--padding-horizontal: 2.5rem;
	--padding-vertical: 1rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container47 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container47.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container47.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container47.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container47.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container47.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container47.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container47.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container47.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container47.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container47.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container47.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container47.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container47.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container47.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container47.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container47.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container47.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container47.columns > .wrapper > .inner > div:first-child, #container47.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container47.columns > .wrapper > .inner > div:last-child, #container47.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container47.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container47.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container47.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container47.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container47.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container47 > .wrapper > .inner > :nth-child(1) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container47 > .wrapper > .inner > :nth-child(2) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container47 > .wrapper > .inner > :nth-child(3) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container50 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container50:not(:first-child) {
	margin-top: 2rem !important;
}

#container50 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container50 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container50.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container50.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container50.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container50.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container50.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container50.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container50.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container50.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container50.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container50.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container50.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container50.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container50.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container50.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container50.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container50.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container50.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container50.columns > .wrapper > .inner > div:first-child, #container50.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container50.columns > .wrapper > .inner > div:last-child, #container50.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container50.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container50.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container50.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container50.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container50.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container54 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container54 > .wrapper > .inner {
	--gutters: 1.5rem;
	--padding-horizontal: 2.5rem;
	--padding-vertical: 1rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container54 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container54.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container54.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container54.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container54.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container54.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container54.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container54.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container54.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container54.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container54.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container54.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container54.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container54.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container54.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container54.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container54.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container54.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container54.columns > .wrapper > .inner > div:first-child, #container54.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container54.columns > .wrapper > .inner > div:last-child, #container54.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container54.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container54.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container54.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container54.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container54.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container54 > .wrapper > .inner > :nth-child(1) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container54 > .wrapper > .inner > :nth-child(2) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container54 > .wrapper > .inner > :nth-child(3) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container51 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container51 > .wrapper > .inner {
	--gutters: 1.5rem;
	--padding-horizontal: 2.5rem;
	--padding-vertical: 1rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container51 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container51.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container51.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container51.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container51.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container51.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container51.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container51.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container51.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container51.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container51.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container51.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container51.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container51.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container51.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container51.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container51.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container51.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container51.columns > .wrapper > .inner > div:first-child, #container51.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container51.columns > .wrapper > .inner > div:last-child, #container51.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container51.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container51.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container51.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container51.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container51.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container51 > .wrapper > .inner > :nth-child(1) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container51 > .wrapper > .inner > :nth-child(2) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container51 > .wrapper > .inner > :nth-child(3) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container67 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container67 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 2rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container67 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container67.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container67.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container67.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container67.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container67.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container67.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container67.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container67.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container67.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container67.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container67.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container67.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container67.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container67.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container67.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container67.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container67.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container67.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container67.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container67.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container67.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container67.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container56 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container56 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container56 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container56.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container56.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container56.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container56.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container56.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container56.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container56.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container56.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container56.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container56.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container56.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container56.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container56.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container56.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container56.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container56.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container56.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container56.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container56.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container56.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container56.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container56.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container41 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container41:not(:last-child) {
	margin-bottom: 1.5rem !important;
}

#container41 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 50rem;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 0.125rem;
}

#container41 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 2.5rem;
	--padding-vertical: 10rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.125rem - 1px);
}

#container41 > .wrapper > .slideshow-background {
	border-radius: inherit;
	height: 100%;
	left: 0;
	object-fit: cover;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -2;
	background-color: #000000;
}

#container41 > .wrapper:before {
	border-radius: inherit;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201024%201024%22%20width%3D%221024%22%20height%3D%221024%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%3E%20circle%20%7B%20fill%3A%20%23A8A8A8%3B%20%7D%20%3C%2Fstyle%3E%20%3Ccircle%20cx%3D%22256%22%20cy%3D%22256%22%20r%3D%222.01%25%22%20%2F%3E%20%3Ccircle%20cx%3D%22768%22%20cy%3D%22768%22%20r%3D%222.01%25%22%20%2F%3E%3C%2Fsvg%3E'), linear-gradient(23deg, rgba(0,0,0,0.69) 47%, transparent 100%);
	background-size: 6px, cover;
	background-position: center, 0% 0%;
	background-repeat: repeat, repeat;
}

#container41 > .wrapper > .slideshow-background > .slow {
	animation-duration: 27.5s;
}

#container41 > .wrapper > .slideshow-background > .normal {
	animation-duration: 20.625s;
}

#container41 > .wrapper > .slideshow-background > .fast {
	animation-duration: 13.75s;
}

#container41 > .wrapper > .slideshow-background > div {
	transition-duration: 0.875s;
}

#container41.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container41.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container41.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container41.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container41.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container41.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container41.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container41.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container41.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container41.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container41.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container41.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container41.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container41.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container41.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container41.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container41.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container41.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container41.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container41.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container41.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container41.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container38 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container38:not(:first-child) {
	margin-top: 2rem !important;
}

#container38:not(:last-child) {
	margin-bottom: 1rem !important;
}

#container38 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 2.5rem;
	--padding-vertical: 0rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container38 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container38.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container38.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container38.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container38.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container38.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container38.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container38.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container38.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container38.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container38.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container38.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container38.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container38.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container38.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container38.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container38.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container38.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container38.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container38.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container38.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container38.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container38.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container58 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container58:not(:last-child) {
	margin-bottom: 1.5rem !important;
}

#container58 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 50rem;
	background-color: transparent;
}

#container58 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 2.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container58.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container58.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container58.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container58.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container58.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container58.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container58.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container58.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container58.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container58.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container58.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container58.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container58.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container58.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container58.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container58.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container58.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container58.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container58.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container58.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container58.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container58.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container21 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container21 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 2rem;
	--spacing: 0.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container21 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container21.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container21.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container21.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container21.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container21.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container21.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container21.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container21.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container21.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container21.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container21.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container21.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container21.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container21.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container21.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container21.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container21.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container21.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container21.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container21.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container21.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container21.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container04 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container04 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container04 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container04.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container04.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container04.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container04.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container04.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container04.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container04.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container04.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container04.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container04.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container04.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container04.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container04.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container04.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container04.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container04.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container04.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container04.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container04.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container04.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container04.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container04.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container02 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container02 > .wrapper > .inner {
	--gutters: 7rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 7rem;
	--spacing: 1.625rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container02 > .wrapper {
	max-width: 31rem;
	width: 100%;
}

#container02.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container02.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container02.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container02.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container02.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container02.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container02.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container02.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container02.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container02.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container02.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container02.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container02.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container02.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container02.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container02.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container02.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container02.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container02.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container02.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container30 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #FFFFFF;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%22384%22%20height%3D%22216%22%20viewBox%3D%220%200%20384%20216%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%20rect%20%7B%20fill%3A%20rgba(0,0,0,0.02)%3B%20%7D%20%3C%2Fstyle%3E%20%3Crect%20x%3D%222.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%222.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%222.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%222.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%222.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%222.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%222.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.6%22%20%2F%3E%20%3Crect%20x%3D%222.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%222.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.1%22%20%2F%3E%20%3Crect%20x%3D%2226.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%2226.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%2226.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%2226.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%2226.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Crect%20x%3D%2226.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%2226.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.1%22%20%2F%3E%20%3Crect%20x%3D%2226.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%2226.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%2250.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.1%22%20%2F%3E%20%3Crect%20x%3D%2250.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%2250.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.5%22%20%2F%3E%20%3Crect%20x%3D%2250.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%2250.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%2250.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Crect%20x%3D%2250.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.4%22%20%2F%3E%20%3Crect%20x%3D%2250.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%2250.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.5%22%20%2F%3E%20%3Crect%20x%3D%2274.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%2274.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.6%22%20%2F%3E%20%3Crect%20x%3D%2274.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%2274.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.3%22%20%2F%3E%20%3Crect%20x%3D%2274.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%2274.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%2274.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%2274.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%2274.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%2298.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%2298.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%2298.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.1%22%20%2F%3E%20%3Crect%20x%3D%2298.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.5%22%20%2F%3E%20%3Crect%20x%3D%2298.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.6%22%20%2F%3E%20%3Crect%20x%3D%2298.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%2298.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.5%22%20%2F%3E%20%3Crect%20x%3D%2298.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%2298.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Crect%20x%3D%22122.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.5%22%20%2F%3E%20%3Crect%20x%3D%22122.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.3%22%20%2F%3E%20%3Crect%20x%3D%22122.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22122.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22122.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Crect%20x%3D%22122.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Crect%20x%3D%22122.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22122.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Crect%20x%3D%22122.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22146.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.6%22%20%2F%3E%20%3Crect%20x%3D%22146.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.7%22%20%2F%3E%20%3Crect%20x%3D%22146.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22146.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.4%22%20%2F%3E%20%3Crect%20x%3D%22146.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Crect%20x%3D%22146.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.7%22%20%2F%3E%20%3Crect%20x%3D%22146.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22146.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.5%22%20%2F%3E%20%3Crect%20x%3D%22146.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22170.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22170.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22170.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22170.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22170.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22170.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22170.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.6%22%20%2F%3E%20%3Crect%20x%3D%22170.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22170.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22194.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22194.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.4%22%20%2F%3E%20%3Crect%20x%3D%22194.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.6%22%20%2F%3E%20%3Crect%20x%3D%22194.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22194.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22194.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Crect%20x%3D%22194.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22194.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.4%22%20%2F%3E%20%3Crect%20x%3D%22194.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.5%22%20%2F%3E%20%3Crect%20x%3D%22218.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22218.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22218.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.4%22%20%2F%3E%20%3Crect%20x%3D%22218.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22218.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22218.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Crect%20x%3D%22218.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Crect%20x%3D%22218.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.6%22%20%2F%3E%20%3Crect%20x%3D%22218.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22242.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22242.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.6%22%20%2F%3E%20%3Crect%20x%3D%22242.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22242.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.5%22%20%2F%3E%20%3Crect%20x%3D%22242.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22242.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22242.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22242.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Crect%20x%3D%22242.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.1%22%20%2F%3E%20%3Crect%20x%3D%22266.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22266.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Crect%20x%3D%22266.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22266.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22266.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.5%22%20%2F%3E%20%3Crect%20x%3D%22266.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.4%22%20%2F%3E%20%3Crect%20x%3D%22266.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.4%22%20%2F%3E%20%3Crect%20x%3D%22266.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.3%22%20%2F%3E%20%3Crect%20x%3D%22266.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.1%22%20%2F%3E%20%3Crect%20x%3D%22290.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22290.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.3%22%20%2F%3E%20%3Crect%20x%3D%22290.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22290.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22290.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22290.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22290.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22290.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22290.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.1%22%20%2F%3E%20%3Crect%20x%3D%22314.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22314.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.3%22%20%2F%3E%20%3Crect%20x%3D%22314.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22314.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22314.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22314.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22314.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22314.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22314.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22338.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22338.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22338.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22338.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22338.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.7%22%20%2F%3E%20%3Crect%20x%3D%22338.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22338.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Crect%20x%3D%22338.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Crect%20x%3D%22338.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22362.0%22%20y%3D%222.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22362.0%22%20y%3D%2226.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Crect%20x%3D%22362.0%22%20y%3D%2250.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%221%22%20%2F%3E%20%3Crect%20x%3D%22362.0%22%20y%3D%2274.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.2%22%20%2F%3E%20%3Crect%20x%3D%22362.0%22%20y%3D%2298.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22362.0%22%20y%3D%22122.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Crect%20x%3D%22362.0%22%20y%3D%22146.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220.8%22%20%2F%3E%20%3Crect%20x%3D%22362.0%22%20y%3D%22170.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%20%3Crect%20x%3D%22362.0%22%20y%3D%22194.0%22%20width%3D%2220.0%22%20height%3D%2220.0%22%20fill-opacity%3D%220%22%20%2F%3E%3C%2Fsvg%3E');
	background-size: 886px;
	background-position: center;
	background-repeat: repeat;
	border-color: rgba(125,125,125,0.22);
	border-style: solid;
	border-top-width: 1px;
	border-bottom-width: 1px;
	box-shadow: 1rem 0rem 0rem 0rem transparent;
}

#container30 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-vertical: 3rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container30 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container30.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container30.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container30.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container30.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container30.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container30.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container30.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container30.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container30.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container30.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container30.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container30.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container30.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container30.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container30.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container30.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container30.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container30.columns > .wrapper > .inner > div:first-child, #container30.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container30.columns > .wrapper > .inner > div:last-child, #container30.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container30.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container30.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container30.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container30.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container30.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container30 > .wrapper > .inner > :nth-child(1) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#container30 > .wrapper > .inner > :nth-child(2) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#container30 > .wrapper > .inner > :nth-child(3) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: right;
	--flex-alignment: flex-end;
	--indent-left: 0;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: 0;
}

#container10 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #F5F5F5;
}

#container10 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-vertical: 2rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container10 > .wrapper {
	max-width: 50rem;
	width: 100%;
}

#container10.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container10.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container10.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container10.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container10.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container10.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container10.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container10.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container10.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container10.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container10.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container10.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container10.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container10.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container10.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container10.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container10.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container10.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container10.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container10.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container10.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container10.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container10 > .wrapper > .inner > :nth-child(1) {
	width: 50%;
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container10 > .wrapper > .inner > :nth-child(2) {
	width: 50%;
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#header {
	margin-bottom: 0rem !important;
}

.links {
	display: flex;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	line-height: 1.5;
	padding: 0;
}

.links li {
	position: relative;
}

.links li a {
	direction: var(--site-language-direction);
	display: block;
}

#links01 {
	gap: 1.75rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	font-weight: 300;
}

#links01:not(:first-child) {
	margin-top: 0.875rem !important;
}

#links01:not(:last-child) {
	margin-bottom: 0.875rem !important;
}

#links01 li a {
	color: rgba(0,0,0,0.82);
	text-decoration: none;
}

#links01 li a:hover {
	color: #000000;
}

#links01 .n01 a:hover {
	color: #000000;
}

#links01 .n02 a:hover {
	color: #000000;
}

#links01 .n03 a:hover {
	color: #000000;
}

#links01 .n04 a:hover {
	color: #000000;
}

#links01 .n05 a:hover {
	color: #000000;
}

#links01 .n06 a:hover {
	color: #000000;
}

.buttons {
	cursor: default;
	display: flex;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	padding: 0;
}

.buttons li {
	max-width: 100%;
	text-align: var(--alignment);
}

.buttons li a {
	align-items: center;
	justify-content: center;
	max-width: 100%;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	white-space: nowrap;
}

#buttons01 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons01:not(:first-child) {
	margin-top: 0.5rem !important;
}

#buttons01:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#buttons01 li a {
	display: inline-flex;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 0.625em;
	font-weight: 400;
	border-radius: 1.375rem;
	flex-direction: row-reverse;
	justify-content: flex-end;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons01 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	width: 1em;
	margin-left: 0.5em;
	margin-right: calc(-0.125em + 0rem);
	transition: fill 0.25s ease;
}

#buttons01 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
	flex-grow: 1;
	flex-shrink: 1;
	text-align: left;
	width: 100%;
}

#buttons01 .button {
	background-color: #6E74FF;
	color: #FFFFFF;
}

#buttons01 .n01 svg {
	fill: #FFFFFF;
}

#buttons01 .n01 {
	background-color: rgba(0,150,106,0.71);
	color: #FFFFFF;
}

#buttons01 .n01:hover {
	background-color: #00A355 !important;
}

#buttons01 .n02 {
	background-color: #0088C2;
}

#buttons01 .n02:hover {
	background-color: #0079AD !important;
}

#buttons08 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons08:not(:first-child) {
	margin-top: 0.5rem !important;
}

#buttons08:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#buttons08 li a {
	display: inline-flex;
	width: auto;
	height: 2.25rem;
	line-height: 2.25rem;
	padding: 0 1.125rem;
	vertical-align: middle;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 1.25rem;
	box-shadow: 0rem 0rem 1.875rem 0rem rgba(0,0,0,0.29);
	flex-direction: row-reverse;
	justify-content: flex-end;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons08 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	width: 1em;
	margin-left: 0.5em;
	margin-right: calc(-0.125em + 0rem);
	transition: fill 0.25s ease;
}

#buttons08 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
	flex-grow: 1;
	flex-shrink: 1;
	text-align: left;
	width: 100%;
}

#buttons08 .button {
	background-color: rgba(0,150,106,0.71);
	color: #FFFFFF;
	background-image: linear-gradient(45deg, #00A355 0%, rgba(0,150,106,0.004) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

#buttons08 .button:hover {
	background-color: #CCFF00 !important;
}

.buttons.style1 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons.style1 li a {
	display: inline-flex;
	width: auto;
	height: 2.25rem;
	line-height: 2.25rem;
	padding: 0 1.125rem;
	vertical-align: middle;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 0.875em;
	font-weight: 300;
	border-radius: 1.125rem;
	flex-direction: row-reverse;
	justify-content: flex-end;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons.style1 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	width: 1.25em;
	margin-left: 0.5em;
	margin-right: calc(-0.125em + 0rem);
	transition: fill 0.25s ease;
}

.buttons.style1 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
	flex-grow: 1;
	flex-shrink: 1;
	text-align: left;
	width: 100%;
}

.buttons.style1 .button {
	background-color: #6E74FF;
	color: #FFFFFF;
}

.buttons.style1 .button:hover {
	background-color: #A3A3A3 !important;
}

#buttons12 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons12:not(:first-child) {
	margin-top: 0.5rem !important;
}

#buttons12:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#buttons12 li a {
	display: inline-flex;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 0.625em;
	font-weight: 400;
	border-radius: 1.375rem;
	flex-direction: row-reverse;
	justify-content: flex-end;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons12 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	width: 1em;
	margin-left: 0.5em;
	margin-right: calc(-0.125em + 0rem);
	transition: fill 0.25s ease;
}

#buttons12 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
	flex-grow: 1;
	flex-shrink: 1;
	text-align: left;
	width: 100%;
}

#buttons12 .button {
	background-color: #6E74FF;
	color: #FFFFFF;
}

#buttons12 .n01 {
	background-color: #0088C2;
}

#buttons12 .n01:hover {
	background-color: #0079AD !important;
}

#buttons11 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons11 li a {
	display: inline-flex;
	width: auto;
	height: 2.25rem;
	line-height: 2.25rem;
	padding: 0 1.125rem;
	vertical-align: middle;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 0.15rem;
	padding-left: calc(0.15rem + 1.125rem);
	font-size: 0.625em;
	font-weight: 600;
	border-radius: 1.125rem;
	box-shadow: 0.5rem 0rem 2rem 0rem rgba(0,0,0,0.549);
	flex-direction: row-reverse;
	justify-content: flex-end;
	transition: color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons11 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 18px;
	width: 1.5625em;
	margin-left: 0.5rem;
	margin-right: calc(-0.125em + 0.15rem);
	transition: fill 0.375s ease;
}

#buttons11 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
	flex-grow: 1;
	flex-shrink: 1;
	text-align: left;
	width: 100%;
}

#buttons11 .button {
	background-color: #FFAB6E;
	color: #FFFFFF;
	background-image: linear-gradient(45deg, #7A00D9 0%, rgba(255,171,110,0.008) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

#buttons11 .button svg {
	fill: #FFFFFF;
}

#buttons11 .button:hover {
	background-color: #14FFE3 !important;
}

#buttons10 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons10:not(:first-child) {
	margin-top: 0.5rem !important;
}

#buttons10:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#buttons10 li a {
	display: inline-flex;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 0.625em;
	font-weight: 400;
	border-radius: 1.375rem;
	flex-direction: row-reverse;
	justify-content: flex-end;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons10 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	width: 1em;
	margin-left: 0.5em;
	margin-right: calc(-0.125em + 0rem);
	transition: fill 0.25s ease;
}

#buttons10 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
	flex-grow: 1;
	flex-shrink: 1;
	text-align: left;
	width: 100%;
}

#buttons10 .button {
	background-color: #6E74FF;
	color: #FFFFFF;
}

#buttons10 .n01 svg {
	fill: #FFFFFF;
}

#buttons10 .n01 {
	background-color: rgba(0,150,106,0.71);
	color: #FFFFFF;
}

#buttons10 .n01:hover {
	background-color: #00A355 !important;
}

#buttons07 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons07:not(:first-child) {
	margin-top: 0.5rem !important;
}

#buttons07:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

#buttons07 li a {
	display: inline-flex;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 0.625em;
	font-weight: 400;
	border-radius: 1.375rem;
	flex-direction: row-reverse;
	justify-content: flex-end;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons07 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	width: 1em;
	margin-left: 0.5em;
	margin-right: calc(-0.125em + 0rem);
	transition: fill 0.25s ease;
}

#buttons07 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
	flex-grow: 1;
	flex-shrink: 1;
	text-align: left;
	width: 100%;
}

#buttons07 .button {
	background-color: #6E74FF;
	color: #FFFFFF;
}

#buttons07 .n01 svg {
	fill: #FFFFFF;
}

#buttons07 .n01 {
	background-color: rgba(0,150,106,0.71);
	color: #FFFFFF;
}

#buttons07 .n01:hover {
	background-color: #00A355 !important;
}

#buttons06 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons06 li a {
	display: inline-flex;
	width: auto;
	height: 2.25rem;
	line-height: 2.25rem;
	padding: 0 1.125rem;
	vertical-align: middle;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 0.15rem;
	padding-left: calc(0.15rem + 1.125rem);
	font-size: 0.625em;
	font-weight: 600;
	border-radius: 2.5rem;
	box-shadow: 0.5rem 0rem 2rem 0rem rgba(0,0,0,0.549);
	flex-direction: row-reverse;
	justify-content: flex-end;
	transition: color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons06 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 18px;
	width: 1.5625em;
	margin-left: 0.5rem;
	margin-right: calc(-0.125em + 0.15rem);
	transition: fill 0.375s ease;
}

#buttons06 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
	flex-grow: 1;
	flex-shrink: 1;
	text-align: left;
	width: 100%;
}

#buttons06 .button {
	background-color: #FFAB6E;
	color: #FFFFFF;
	background-image: linear-gradient(45deg, #7A00D9 0%, rgba(255,171,110,0.008) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

#buttons06 .button svg {
	fill: #FFFFFF;
}

#buttons06 .button:hover {
	background-color: #14FFE3 !important;
}

#buttons05 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons05 li a {
	display: inline-flex;
	width: auto;
	height: 2.25rem;
	line-height: 2.25rem;
	padding: 0 1.125rem;
	vertical-align: middle;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 0.15rem;
	padding-left: calc(0.15rem + 1.125rem);
	font-size: 0.625em;
	font-weight: 600;
	border-radius: 1.125rem;
	box-shadow: 0.5rem 0rem 2rem 0rem rgba(0,0,0,0.549);
	flex-direction: row-reverse;
	justify-content: flex-end;
	transition: color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons05 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 18px;
	width: 1.5625em;
	margin-left: 0.5rem;
	margin-right: calc(-0.125em + 0.15rem);
	transition: fill 0.375s ease;
}

#buttons05 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
	flex-grow: 1;
	flex-shrink: 1;
	text-align: left;
	width: 100%;
}

#buttons05 .button {
	background-color: #FFAB6E;
	color: #FFFFFF;
	background-image: linear-gradient(45deg, #7A00D9 0%, rgba(255,171,110,0.008) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

#buttons05 .button svg {
	fill: #FFFFFF;
}

#buttons05 .button:hover {
	background-color: #14FFE3 !important;
}

.slideshow {
	display: block;
	max-width: 100%;
	position: relative;
}

.slideshow .content {
	display: inline-block;
	max-width: 100%;
	position: relative;
	vertical-align: top;
}

.slideshow .bg {
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	vertical-align: top;
	width: 100%;
	z-index: 1;
}

.slideshow .nav {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	display: flex;
	height: 100%;
	max-width: 25%;
	opacity: 0.5;
	position: absolute;
	top: 0;
	transition: opacity 0.25s ease, transform 0.5s ease;
	width: 8rem;
	z-index: 1;
}

.slideshow .nav:before {
	content: '';
	display: block;
	transition: opacity 0.25s ease, transform 0.5s ease;
}

.slideshow .nav:hover {
	opacity: 1;
}

.slideshow .nav.next {
	right: 0;
}

.slideshow .nav.previous {
	left: 0;
	transform: scaleX(-1) !important;
}

.slideshow.full .bg {
	display: block;
}

.slideshow.full:first-child .content {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.slideshow.full:last-child .content {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.slideshow.full:first-child .bg {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.slideshow.full:last-child .bg {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#slideshow01 {
	-webkit-touch-callout: none;
	user-select: none;
}

#slideshow01 .bg {
	width: 100vw;
	height: 15.875rem;
	border-radius: 1.5rem;
	background-color: #000000;
}

#slideshow01 .bg > .slow {
	animation-duration: 30s;
}

#slideshow01 .bg > .normal {
	animation-duration: 22.5s;
}

#slideshow01 .bg > .fast {
	animation-duration: 15s;
}

#slideshow01 .bg > div {
	transition-duration: 0.625s;
}

.video {
	position: relative;
}

.video video {
	display: inline-block;
	max-width: 100%;
	vertical-align: top;
}

.video .frame {
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	vertical-align: top;
}

.video .frame:before {
	content: '';
	display: block;
	width: 100%;
}

.video .frame iframe {
	bottom: 0px;
	height: 100%;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
	width: 100%;
	background-color: #000000;
}

.video.full video {
	display: block;
}

.video.full:first-child video {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.video.full:last-child video {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.video.full .frame {
	display: block;
}

.video.full:first-child .frame {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.video.full:last-child .frame {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#video02 video {
	width: 100vw;
}

#video02 .frame {
	width: 100vw;
}

#video02 .frame:before {
	padding-top: 56.25%;
}

.list {
	display: block;
}

.list ul, .list ol {
	display: inline-block;
	max-width: 100%;
	text-align: var(--site-language-alignment);
	vertical-align: middle;
}

.list ul li, .list ol li {
	direction: var(--site-language-direction);
	display: flex;
	position: relative;
}

.list ul li:before, .list ol li:before {
	background-repeat: no-repeat;
	content: '';
	display: block;
	flex-grow: 0;
	flex-shrink: 0;
	font-variant: normal !important;
	letter-spacing: 0 !important;
	order: 1;
	position: relative;
}

.list ul li:after, .list ol li:after {
	content: '';
	display: block;
	flex-grow: 0;
	flex-shrink: 0;
	order: 2;
	pointer-events: none;
}

.list ul li p, .list ol li p {
	flex-grow: 1;
	flex-shrink: 1;
	order: 3;
}

.list ul li:first-child, .list ol li:first-child {
	margin-top: 0 !important;
}

#list01 {
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	line-height: 1.75;
	font-weight: 300;
}

#list01 mark {
	color: #D4AF37;
	background-color: transparent;
}

#list01 a {
	color: #5C83EE;
	text-decoration: none;
}

#list01 a:hover {
	color: #10182F;
}

#list01 ul {
	width: 100%;
}

#list01 ul li {
	margin-top: 0.5rem;
}

#list01 ul li:after {
	width: 0.5rem;
}

#list01 ul li:before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%231F1F1F%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 100%;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 1.3125rem;
	line-height: 1.3125rem;
	min-width: 0.84375rem;
}

.icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	padding: 0;
}

.icons li {
	position: relative;
	z-index: 1;
}

.icons li a {
	align-items: center;
	display: flex;
	justify-content: center;
}

.icons li a svg {
	display: block;
	position: relative;
}

.icons li a + svg {
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.icons li a .label {
	display: none;
}

#icons05 {
	font-size: 0.875em;
	gap: 0.75rem;
}

#icons05 li a {
	border-radius: 100%;
	height: 1em;
	width: 1em;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons05 li a svg {
	height: 100%;
	width: 100%;
	transition: fill 0.25s ease;
}

#icons05 a svg {
	fill: #000000;
}

#icons05 a:hover svg {
	fill: rgba(36,36,36,0.878) !important;
}

#icons05 li a + svg {
	transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

#icons05 li a:hover {
	transform: scale(1.1125);
}

#icons05 li a:hover + svg {
	transform: scale(1.1125);
}

#icons06 {
	font-size: 0.875em;
	gap: 0.75rem;
}

#icons06 li a {
	border-radius: 100%;
	height: 1em;
	width: 1em;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons06 li a svg {
	height: 100%;
	width: 100%;
	transition: fill 0.25s ease;
}

#icons06 a svg {
	fill: #000000;
}

#icons06 a:hover svg {
	fill: rgba(36,36,36,0.878) !important;
}

#icons06 li a + svg {
	transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

#icons06 li a:hover {
	transform: scale(1.1125);
}

#icons06 li a:hover + svg {
	transform: scale(1.1125);
}

#icons08 {
	font-size: 0.875em;
	gap: 0.75rem;
}

#icons08 li a {
	border-radius: 100%;
	height: 1em;
	width: 1em;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons08 li a svg {
	height: 100%;
	width: 100%;
	transition: fill 0.25s ease;
}

#icons08 a svg {
	fill: #000000;
}

#icons08 a:hover svg {
	fill: rgba(36,36,36,0.878) !important;
}

#icons08 li a + svg {
	transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

#icons08 li a:hover {
	transform: scale(1.1125);
}

#icons08 li a:hover + svg {
	transform: scale(1.1125);
}

#icons09 {
	font-size: 0.875em;
	gap: 0.75rem;
}

#icons09 li a {
	border-radius: 100%;
	height: 1em;
	width: 1em;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons09 li a svg {
	height: 100%;
	width: 100%;
	transition: fill 0.25s ease;
}

#icons09 a svg {
	fill: #000000;
}

#icons09 a:hover svg {
	fill: rgba(36,36,36,0.878) !important;
}

#icons09 li a + svg {
	transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

#icons09 li a:hover {
	transform: scale(1.1125);
}

#icons09 li a:hover + svg {
	transform: scale(1.1125);
}

#icons02 {
	font-size: 0.875em;
	gap: 0.75rem;
}

#icons02 li a {
	border-radius: 100%;
	height: 1em;
	width: 1em;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons02 li a svg {
	height: 100%;
	width: 100%;
	transition: fill 0.25s ease;
}

#icons02 a svg {
	fill: #000000;
}

#icons02 a:hover svg {
	fill: rgba(36,36,36,0.878) !important;
}

#icons02 li a + svg {
	transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

#icons02 li a:hover {
	transform: scale(1.1125);
}

#icons02 li a:hover + svg {
	transform: scale(1.1125);
}

#icons04 {
	font-size: 0.875em;
	gap: 0.75rem;
}

#icons04 li a {
	border-radius: 100%;
	height: 1em;
	width: 1em;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons04 li a svg {
	height: 100%;
	width: 100%;
	transition: fill 0.25s ease;
}

#icons04 a svg {
	fill: #000000;
}

#icons04 a:hover svg {
	fill: rgba(36,36,36,0.878) !important;
}

#icons04 li a + svg {
	transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

#icons04 li a:hover {
	transform: scale(1.1125);
}

#icons04 li a:hover + svg {
	transform: scale(1.1125);
}

#icons11 {
	font-size: 0.875em;
	gap: 0.75rem;
}

#icons11 li a {
	border-radius: 100%;
	height: 1em;
	width: 1em;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons11 li a svg {
	height: 100%;
	width: 100%;
	transition: fill 0.25s ease;
}

#icons11 a svg {
	fill: #000000;
}

#icons11 a:hover svg {
	fill: rgba(36,36,36,0.878) !important;
}

#icons11 li a + svg {
	transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

#icons11 li a:hover {
	transform: scale(1.1125);
}

#icons11 li a:hover + svg {
	transform: scale(1.1125);
}

#icons12 {
	font-size: 0.875em;
	gap: 0.75rem;
}

#icons12 li a {
	border-radius: 100%;
	height: 1em;
	width: 1em;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons12 li a svg {
	height: 100%;
	width: 100%;
	transition: fill 0.25s ease;
}

#icons12 a svg {
	fill: #000000;
}

#icons12 a:hover svg {
	fill: rgba(36,36,36,0.878) !important;
}

#icons12 li a + svg {
	transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

#icons12 li a:hover {
	transform: scale(1.1125);
}

#icons12 li a:hover + svg {
	transform: scale(1.1125);
}

#icons13 {
	font-size: 0.875em;
	gap: 0.75rem;
}

#icons13 li a {
	border-radius: 100%;
	height: 1em;
	width: 1em;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons13 li a svg {
	height: 100%;
	width: 100%;
	transition: fill 0.25s ease;
}

#icons13 a svg {
	fill: #000000;
}

#icons13 a:hover svg {
	fill: rgba(36,36,36,0.878) !important;
}

#icons13 li a + svg {
	transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

#icons13 li a:hover {
	transform: scale(1.1125);
}

#icons13 li a:hover + svg {
	transform: scale(1.1125);
}

#icons14 {
	font-size: 0.875em;
	gap: 0.75rem;
}

#icons14 li a {
	border-radius: 100%;
	height: 1em;
	width: 1em;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons14 li a svg {
	height: 100%;
	width: 100%;
	transition: fill 0.25s ease;
}

#icons14 a svg {
	fill: #000000;
}

#icons14 a:hover svg {
	fill: rgba(36,36,36,0.878) !important;
}

#icons14 li a + svg {
	transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

#icons14 li a:hover {
	transform: scale(1.1125);
}

#icons14 li a:hover + svg {
	transform: scale(1.1125);
}

#icons03 {
	font-size: 1.875em;
	gap: 1.5rem;
}

#icons03 li a {
	border-radius: 100%;
	height: 1em;
	width: 1em;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons03 li a svg {
	height: 100%;
	width: 100%;
	transition: fill 0.25s ease;
}

#icons03 a svg {
	fill: rgba(36,36,36,0.588);
}

#icons03 a:hover svg {
	fill: rgba(36,36,36,0.878) !important;
}

#icons03 li a + svg {
	transition: fill 0.25s ease, stroke 0.25s ease;
}

#icons03 .n01 svg {
	fill: #0085FF;
}

form {
	display: flex;
	justify-content: var(--flex-alignment);
}

form .inner {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	max-width: 100%;
}

form label {
	direction: var(--site-language-direction);
	display: block;
}

form .field[data-type="label"] + div {
	margin-top: 0 !important;
}

form .field button {
	align-items: center;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	display: flex;
	justify-content: center;
	position: absolute;
}

form .field button > svg {
	height: 50%;
	min-width: 100%;
}

form input[type="text"], form input[type="email"], form input[type="tel"], form input[type="number"], form textarea, form select, form .file, form .date {
	background-color: transparent;
	border: 0;
	direction: var(--site-language-direction);
	display: block;
	outline: 0;
	text-align: var(--site-language-alignment);
	width: 100%;
}

form input[type="tel"] {
	-webkit-appearance: none;
}

form textarea {
	height: 10rem;
	line-height: normal;
}

form select {
	background-repeat: no-repeat;
	background-size: 1rem;
	text-overflow: ellipsis;
	-webkit-appearance: none;
}

form select option {
	background-color: white;
	color: black;
}

form select::-ms-expand {
	display: none;
}

form p {
	display: block;
}

form input[type="checkbox"] {
	-webkit-appearance: none;
	display: block;
	float: left;
	margin-right: -2rem;
	opacity: 0;
	width: 1rem;
	z-index: -1;
}

form input[type="checkbox"] + label {
	align-items: center;
	display: inline-flex;
	line-height: 1.6;
	text-align: var(--site-language-alignment);
}

form input[type="checkbox"] + label:before {
	background-position: center;
	background-repeat: no-repeat;
	content: '';
	cursor: pointer;
	display: inline-block;
	flex-grow: 0;
	flex-shrink: 0;
	vertical-align: middle;
}

form input[type="number"] {
	-webkit-appearance: none;
	-moz-appearance: textfield;
}

form input[type="number"]::-webkit-inner-spin-button, form input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
}

form .number {
	position: relative;
}

form .number > input[type="number"] {
	text-align: center;
}

form .field .number > button > svg {
	height: 40%;
}

form .file {
	position: relative;
}

form .file > input[type="file"] {
	cursor: pointer;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

form .file[data-filename]:before {
	background-repeat: no-repeat;
	content: attr(data-filename);
	display: block;
	height: 100%;
	overflow: hidden;
	position: absolute;
	text-overflow: ellipsis;
	top: 0;
	white-space: nowrap;
}

form .file[data-filename=""]:before {
	background-image: none !important;
	content: attr(data-placeholder);
	padding-left: 0 !important;
}

form .field .file > button > svg {
	height: 53%;
}

form .date {
	overflow: hidden;
	position: relative;
}

form .date input[type="date"] {
	cursor: pointer;
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100vw;
}

form .date[data-value]:before {
	background-repeat: no-repeat;
	display: block;
	height: 100%;
	overflow: hidden;
	position: absolute;
	text-overflow: ellipsis;
	top: 0;
	white-space: nowrap;
}

form .date:not([data-value=""]):before {
	content: attr(data-value);
}

form .date[data-value=""]:before {
	content: attr(data-placeholder);
}

form .field .date > button > svg {
	height: 60%;
}

form .actions {
	max-width: 100%;
}

form .actions button {
	align-items: center;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	max-width: 100%;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}

form .actions button:disabled {
	cursor: default;
	opacity: 0.35;
	pointer-events: none;
}

@keyframes button-spinner {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

#form01:not(:first-child) {
	margin-top: 2rem !important;
}

#form01:not(:last-child) {
	margin-bottom: 2rem !important;
}

#form01 .inner > * {
	margin: 1rem 0 0 0;
	max-width: 100%;
}

#form01 .inner > :first-child {
	margin: 0;
}

#form01 .inner {
	width: 25rem;
}

#form01 label:first-child {
	margin: 0.25rem 0 0.75rem 0;
	text-align: left;
	font-size: 0.875em;
	line-height: 1.5;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-weight: 400;
	color: #FFFFFF;
}

#form01 .field button {
	background-size: cover;
	height: 2rem;
	line-height: 2rem;
	width: 2rem;
	border-radius: 0.32rem;
	background-color: #FF12F6;
	background-image: linear-gradient(45deg, #0069B5 0%, rgba(255,18,246,0.008) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#form01 .field button:hover {
	background-color: rgba(0,163,153,0.961);
}

#form01 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

#form01 input[type="text"], #form01 input[type="email"], #form01 input[type="tel"], #form01 input[type="number"], #form01 textarea, #form01 select, #form01 .file, #form01 .date {
	font-size: 0.75em;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	border-radius: 0.5rem;
	color: #000000;
	border: solid 1px #666666;
}

#form01 input[type="text"]:focus, #form01 input[type="email"]:focus, #form01 input[type="tel"]:focus, #form01 input[type="number"]:focus, #form01 textarea:focus, #form01 select:focus, #form01 .file:focus, #form01 .date.focus {
	border-color: #000000;
	box-shadow: 0 0 0 1px #000000;
}

#form01 input[type="text"], #form01 input[type="email"], #form01 input[type="tel"], #form01 input[type="number"], #form01 select, #form01 .file, #form01 .date {
	height: 2.5rem;
	padding: 0 0.875rem;
	line-height: calc(2.5rem - 2px);
}

#form01 textarea {
	padding: 0.875rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.6125rem;
}

#form01 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%23666666' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.875rem) center;
	padding-right: 2.625rem;
}

#form01 input[type="checkbox"] + label:before {
	border-radius: 0.5rem;
	color: #000000;
	border: solid 1px #666666;
	background-size: 1.0625rem;
	height: 1.875rem;
	width: 1.875rem;
	margin-right: 0.9375rem;
}

#form01 input[type="checkbox"]:checked + label:before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%23000000' /%3E%3C/svg%3E");
}

#form01 input[type="checkbox"]:focus + label:before {
	border-color: #000000;
	box-shadow: 0 0 0 1px #000000;
}

#form01 .number > input[type="number"] {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

#form01 .number > button.decrement {
	bottom: calc(0.25rem - 0px);
	left: calc(0.25rem - 0px);
}

#form01 .number > button.increment {
	bottom: calc(0.25rem - 0px);
	right: calc(0.25rem - 0px);
}

#form01 .file:before {
	width: calc(100% - 3.375rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%23000000' /%3E%3C/svg%3E");
	background-size: 0.75rem;
	background-position: left;
	padding-left: 1.05rem;
}

#form01 .file > button {
	bottom: calc(0.25rem - 1px);
	right: calc(0.25rem - 1px);
}

#form01 .date:before {
	width: calc(100% - 3.375rem);
}

#form01 .date > button {
	bottom: calc(0.25rem - 1px);
	right: calc(0.25rem - 1px);
}

#form01 input[type="checkbox"] + label, #form01 p {
	font-size: 0.75em;
	line-height: 1.5;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	color: #000000;
}

#form01 .actions button {
	display: inline-flex;
	height: 2.25rem;
	line-height: 2.25rem;
	padding: 0 1.125rem;
	text-transform: uppercase;
	font-size: 0.625em;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 0.225rem;
	padding-left: calc(0.225rem + 1.125rem);
	font-weight: 400;
	border-radius: 2.25rem;
	flex-direction: row-reverse;
	justify-content: flex-end;
	background-color: #FF12F6;
	color: #FFFFFF;
	background-image: linear-gradient(45deg, #0069B5 0%, rgba(255,18,246,0.008) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

#form01 .actions button svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 18px;
	width: 1.25em;
	margin-left: 0.5em;
	margin-right: calc(-0.125em + 0.225rem);
	transition: fill 0.25s ease;
}

#form01 .actions button:hover {
	background-color: rgba(0,163,153,0.961);
}

#form01 .actions button .label {
	direction: var(--site-language-direction);
	overflow: hidden;
	flex-grow: 1;
	flex-shrink: 1;
	text-align: left;
	width: 100%;
}

#form01 .inner > :first-child > label:first-child {
	margin-top: 0;
}

#form01 .actions button:before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1.6875rem;
	content: '';
	display: block;
	height: 1.6875rem;
	left: 50%;
	margin: -0.84375rem 0 0 -0.84375rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 1.6875rem;
}

#form01 .actions button.waiting {
	color: transparent;
}

#form01 .actions button.waiting svg {
	fill: transparent;
}

#form01 .actions button.waiting:before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

#form01 ::-webkit-input-placeholder {
	color: #000000;
	opacity: 0.55;
}

#form01 :-moz-placeholder {
	color: #000000;
	opacity: 0.55;
}

#form01 ::-moz-placeholder {
	color: #000000;
	opacity: 0.55;
}

#form01 :-ms-input-placeholder {
	color: #000000;
	opacity: 0.55;
}

#form01 .file[data-filename=""]:before {
	color: #000000;
	opacity: 0.55;
}

#form01 .date[data-value=""]:before {
	color: #000000;
	opacity: 0.55;
}

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

@media (max-width: 1680px) {
	html {
		font-size: 13pt;
	}
}

@media (max-width: 1280px) {
	html {
		font-size: 13pt;
	}
	
	
	
	#container12 {
		background-attachment: scroll;
	}
	
	#container07 {
		background-attachment: scroll;
	}
	
	#container17 > .wrapper {
		background-attachment: scroll;
	}
	
	#container18 > .wrapper > .slideshow-background > .slow {
		animation-duration: 28.125s;
	}
	
	#container18 > .wrapper > .slideshow-background > .normal {
		animation-duration: 21.09375s;
	}
	
	#container18 > .wrapper > .slideshow-background > .fast {
		animation-duration: 14.0625s;
	}
	
	#container41 > .wrapper > .slideshow-background > .slow {
		animation-duration: 20.625s;
	}
	
	#container41 > .wrapper > .slideshow-background > .normal {
		animation-duration: 15.46875s;
	}
	
	#container41 > .wrapper > .slideshow-background > .fast {
		animation-duration: 10.3125s;
	}
	
	#slideshow01 .bg > .slow {
		animation-duration: 22.5s;
	}
	
	#slideshow01 .bg > .normal {
		animation-duration: 16.875s;
	}
	
	#slideshow01 .bg > .fast {
		animation-duration: 11.25s;
	}
}

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

@media (max-width: 980px) {
	html {
		font-size: 11pt;
	}
	
	#container08 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	#container08.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container08.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container08.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container08.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container08.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container08.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container08.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container08.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container08.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container08.columns > .wrapper > .inner > div:last-of-type, #container08.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container08.columns > .wrapper > .inner > div:first-of-type, #container08.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container08.columns > .wrapper > .inner > div:last-of-type, #container08.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > div:first-of-type, #container08.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	#container08 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container08 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container01 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	#container01.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container01.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container01.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container01.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container01.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container01.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container01.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type, #container01.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container01.columns > .wrapper > .inner > div:first-of-type, #container01.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type, #container01.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > div:first-of-type, #container01.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	#container12 {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	#container12.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container12.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container12.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container12.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container12.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container12.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container12.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type, #container12.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container12.columns > .wrapper > .inner > div:first-of-type, #container12.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type, #container12.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > div:first-of-type, #container12.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container12.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container12.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container12.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	#container12 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: left;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container12 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: left;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container09.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container09.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container09.columns > .wrapper > .inner > span:first-child + div:before {
		display: none !important;
	}
	
	#container09.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > *:before {
		border-top: solid 1px #F1F1F1 !important;
		height: 0 !important;
		margin-left: 0 !important;
		top: auto !important;
		margin-top: calc((var(--gutters) * -0.5) - 0.5px) !important;
		left: 0 !important;
		width: 100% !important;
	}
	
	#container09.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > *:first-child:before {
		display: none !important;
	}
	
	#container09.columns > .wrapper > .inner > *:last-child:before {
		display: block !important;
	}
	
	#container09.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container09.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container09.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container09.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc((var(--gutters) * -0.5) + 0.5px) !important;
	}
	
	#container09.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc((var(--gutters) * -0.5) + 0.5px) !important;
	}
	
	#container09.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container09.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container09.columns > .wrapper > .inner > div:first-of-type, #container09.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container09.columns > .wrapper > .inner > div:last-of-type, #container09.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container09.columns > .wrapper > .inner > div:first-of-type, #container09.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > div:last-of-type, #container09.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	#container09 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container09 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container09 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container29.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container29.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container29.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container29.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container29.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container29.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container29.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container29.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container29.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container29.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container29.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container29.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container29.columns > .wrapper > .inner > div:last-of-type, #container29.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container29.columns > .wrapper > .inner > div:first-of-type, #container29.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container29.columns > .wrapper > .inner > div:last-of-type, #container29.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container29.columns > .wrapper > .inner > div:first-of-type, #container29.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container29.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container29.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container29.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container29.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	
	
	#container20.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container20.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container20.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container20.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container20.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container20.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container20.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container20.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container20.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container20.columns > .wrapper > .inner > div:last-of-type, #container20.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container20.columns > .wrapper > .inner > div:first-of-type, #container20.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container20.columns > .wrapper > .inner > div:last-of-type, #container20.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > div:first-of-type, #container20.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container20.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container20.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container20.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	
	
	
	
	
	
	
	
	.container.style2.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style2.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style2.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.container.style2.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style2.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	.container.style2.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style2.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style2.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style2.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style2.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style2.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style2.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style2.columns > .wrapper > .inner > div:last-of-type, .container.style2.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style2.columns > .wrapper > .inner > div:first-of-type, .container.style2.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style2.columns > .wrapper > .inner > div:last-of-type, .container.style2.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	.container.style2.columns > .wrapper > .inner > div:first-of-type, .container.style2.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	.container.style2.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style2.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container.style2.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	.container.style2.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	
	
	
	
	
	
	
	
	
	
	#container28.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container28.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container28.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container28.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container28.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container28.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container28.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container28.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container28.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container28.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container28.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container28.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container28.columns > .wrapper > .inner > div:last-of-type, #container28.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container28.columns > .wrapper > .inner > div:first-of-type, #container28.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container28.columns > .wrapper > .inner > div:last-of-type, #container28.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container28.columns > .wrapper > .inner > div:first-of-type, #container28.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container28.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container28.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container28.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container28.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	
	
	
	
	
	
	#container31.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container31.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container31.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container31.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container31.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container31.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container31.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container31.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container31.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container31.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container31.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container31.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container31.columns > .wrapper > .inner > div:last-of-type, #container31.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container31.columns > .wrapper > .inner > div:first-of-type, #container31.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container31.columns > .wrapper > .inner > div:last-of-type, #container31.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container31.columns > .wrapper > .inner > div:first-of-type, #container31.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container31.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container31.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container31.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container31.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	
	
	#container40.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container40.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container40.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container40.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container40.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container40.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container40.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container40.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container40.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container40.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container40.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container40.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container40.columns > .wrapper > .inner > div:last-of-type, #container40.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container40.columns > .wrapper > .inner > div:first-of-type, #container40.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container40.columns > .wrapper > .inner > div:last-of-type, #container40.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container40.columns > .wrapper > .inner > div:first-of-type, #container40.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container40.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container40.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container40.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container40.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	#container40 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container40 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container14.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container14.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container14.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container14.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container14.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container14.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container14.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type, #container14.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container14.columns > .wrapper > .inner > div:first-of-type, #container14.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type, #container14.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > div:first-of-type, #container14.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container14.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container14.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container14.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	
	
	#container17.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container17.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container17.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container17.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container17.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container17.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container17.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container17.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container17.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container17.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container17.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container17.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container17.columns > .wrapper > .inner > div:last-of-type, #container17.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container17.columns > .wrapper > .inner > div:first-of-type, #container17.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container17.columns > .wrapper > .inner > div:last-of-type, #container17.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container17.columns > .wrapper > .inner > div:first-of-type, #container17.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container17.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container17.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container17.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container17.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	#container17 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container17 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container13.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container13.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container13.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container13.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container13.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container13.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container13.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container13.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container13.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container13.columns > .wrapper > .inner > div:last-of-type, #container13.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container13.columns > .wrapper > .inner > div:first-of-type, #container13.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container13.columns > .wrapper > .inner > div:last-of-type, #container13.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > div:first-of-type, #container13.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container13.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container13.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container13.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	#container13 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container13 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container03.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container03.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container03.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container03.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container03.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container03.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container03.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container03.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container03.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container03.columns > .wrapper > .inner > div:last-of-type, #container03.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container03.columns > .wrapper > .inner > div:first-of-type, #container03.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container03.columns > .wrapper > .inner > div:last-of-type, #container03.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > div:first-of-type, #container03.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container03.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container03.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container03.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	
	
	#container18.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container18.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container18.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container18.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container18.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container18.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container18.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container18.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container18.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container18.columns > .wrapper > .inner > div:last-of-type, #container18.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container18.columns > .wrapper > .inner > div:first-of-type, #container18.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container18.columns > .wrapper > .inner > div:last-of-type, #container18.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > div:first-of-type, #container18.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container18.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container18.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container18.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	#container18 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container18 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container15.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container15.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container15.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container15.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container15.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type, #container15.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type, #container15.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type, #container15.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type, #container15.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	#container15 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container15 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container11.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container11.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container11.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container11.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container11.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container11.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container11.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container11.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container11.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container11.columns > .wrapper > .inner > div:last-of-type, #container11.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container11.columns > .wrapper > .inner > div:first-of-type, #container11.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container11.columns > .wrapper > .inner > div:last-of-type, #container11.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > div:first-of-type, #container11.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container11.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container11.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container11.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	
	
	#container36.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container36.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container36.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container36.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container36.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container36.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container36.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container36.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container36.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container36.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container36.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container36.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container36.columns > .wrapper > .inner > div:last-of-type, #container36.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container36.columns > .wrapper > .inner > div:first-of-type, #container36.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container36.columns > .wrapper > .inner > div:last-of-type, #container36.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container36.columns > .wrapper > .inner > div:first-of-type, #container36.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container36.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container36.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container36.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container36.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	
	
	#container55.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container55.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container55.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container55.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container55.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container55.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container55.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container55.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container55.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container55.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container55.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container55.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container55.columns > .wrapper > .inner > div:last-of-type, #container55.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container55.columns > .wrapper > .inner > div:first-of-type, #container55.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container55.columns > .wrapper > .inner > div:last-of-type, #container55.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container55.columns > .wrapper > .inner > div:first-of-type, #container55.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container55.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container55.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container55.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container55.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	
	
	#container57.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container57.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container57.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container57.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container57.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container57.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container57.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container57.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container57.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container57.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container57.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container57.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container57.columns > .wrapper > .inner > div:last-of-type, #container57.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container57.columns > .wrapper > .inner > div:first-of-type, #container57.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container57.columns > .wrapper > .inner > div:last-of-type, #container57.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container57.columns > .wrapper > .inner > div:first-of-type, #container57.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container57.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container57.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container57.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container57.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	
	
	#container16.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container16.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container16.columns > .wrapper > .inner > span:first-child + div:before {
		display: none !important;
	}
	
	#container16.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > *:before {
		border-top: solid 1px transparent !important;
		height: 0 !important;
		margin-left: 0 !important;
		top: auto !important;
		margin-top: calc((var(--gutters) * -0.5) - 0.5px) !important;
		left: 0 !important;
		width: 100% !important;
	}
	
	#container16.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > *:first-child:before {
		display: none !important;
	}
	
	#container16.columns > .wrapper > .inner > *:last-child:before {
		display: block !important;
	}
	
	#container16.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container16.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container16.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container16.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc((var(--gutters) * -0.5) + 0.5px) !important;
	}
	
	#container16.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc((var(--gutters) * -0.5) + 0.5px) !important;
	}
	
	#container16.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container16.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container16.columns > .wrapper > .inner > div:first-of-type, #container16.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container16.columns > .wrapper > .inner > div:last-of-type, #container16.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container16.columns > .wrapper > .inner > div:first-of-type, #container16.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > div:last-of-type, #container16.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container16.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container16.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container16.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	#container16 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container16 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container56.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container56.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container56.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container56.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container56.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container56.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container56.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container56.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container56.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container56.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container56.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container56.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container56.columns > .wrapper > .inner > div:last-of-type, #container56.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container56.columns > .wrapper > .inner > div:first-of-type, #container56.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container56.columns > .wrapper > .inner > div:last-of-type, #container56.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container56.columns > .wrapper > .inner > div:first-of-type, #container56.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container56.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container56.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container56.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container56.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	
	
	#container41.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container41.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container41.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container41.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container41.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container41.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container41.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container41.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container41.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container41.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container41.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container41.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container41.columns > .wrapper > .inner > div:last-of-type, #container41.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container41.columns > .wrapper > .inner > div:first-of-type, #container41.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container41.columns > .wrapper > .inner > div:last-of-type, #container41.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container41.columns > .wrapper > .inner > div:first-of-type, #container41.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container41.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container41.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container41.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container41.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	
	
	#container58.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container58.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container58.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container58.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container58.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container58.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container58.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container58.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container58.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container58.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container58.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container58.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container58.columns > .wrapper > .inner > div:last-of-type, #container58.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container58.columns > .wrapper > .inner > div:first-of-type, #container58.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container58.columns > .wrapper > .inner > div:last-of-type, #container58.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container58.columns > .wrapper > .inner > div:first-of-type, #container58.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container58.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container58.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container58.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container58.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	
	
	#container04.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container04.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container04.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container04.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container04.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container04.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container04.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container04.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container04.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container04.columns > .wrapper > .inner > div:last-of-type, #container04.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container04.columns > .wrapper > .inner > div:first-of-type, #container04.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container04.columns > .wrapper > .inner > div:last-of-type, #container04.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > div:first-of-type, #container04.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container04.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container04.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	#container04.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
}

@media (max-width: 736px) {
	html {
		font-size: 12pt;
	}
	
	
	
	#main > .inner {
		--padding-horizontal: 1.25rem;
		--padding-vertical: 0rem;
		--spacing: 0rem;
	}
	
	#main > .inner > * > .full {
		margin-left: calc(-1.25rem);
		max-width: calc(100% + 2.5rem + 0.4725px);
		width: calc(100% + 2.5rem + 0.4725px);
	}
	
	#main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	#main > .inner > header > .full:first-child {
		margin-top: 0rem !important;
	}
	
	#main > .inner > footer > .full:last-child {
		margin-bottom: 0rem !important;
	}
	
	#image04 .frame {
		width: 13.5rem;
	}
	
	#image07 .frame {
		width: 13.5rem;
	}
	
	#image05 .frame {
		width: 13.5rem;
	}
	
	#image08 .frame {
		width: 13.5rem;
	}
	
	#image03 .frame {
		width: 100vw;
	}
	
	#image40 .frame {
		width: 100vw;
	}
	
	#image06:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#image06:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#image06 .frame {
		width: 100vw;
	}
	
	#image10:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#image10:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#image10 .frame {
		width: 100vw;
	}
	
	#image22 .frame {
		height: 24.0625rem !important;
	}
	
	#image22 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image25 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image15 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image26 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image32 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image33 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image30 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image35 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image36 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image37 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image38 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image39 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image14 .frame {
		width: 13.5rem;
	}
	
	#image02 .frame {
		width: 13.5rem;
	}
	
	h1.style6, h2.style6, h3.style6, p.style6 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.125;
	}
	
	h1.style1, h2.style1, h3.style1, p.style1 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.875;
	}
	
	#text71 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.5em;
		line-height: 1.625;
	}
	
	#text08 {
		letter-spacing: 0.175rem;
		width: calc(100% + 0.175rem);
		font-size: 0.875em;
		line-height: 1.375;
	}
	
	#text16 {
		letter-spacing: -0.109375rem;
		width: 100%;
		font-size: 3.5em;
		line-height: 1;
	}
	
	#text20:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text20:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text20 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.875;
	}
	
	#text69 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.625;
	}
	
	#text36 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.75;
	}
	
	h1.style2, h2.style2, h3.style2, p.style2 {
		letter-spacing: -0.0875rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.25;
	}
	
	#text42 {
		letter-spacing: 0.175rem;
		width: calc(100% + 0.175rem);
		font-size: 0.875em;
		line-height: 1.75;
	}
	
	#text07 {
		letter-spacing: -0.0875rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.25;
	}
	
	h1.style12, h2.style12, h3.style12, p.style12 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.875;
	}
	
	h1.style8, h2.style8, h3.style8, p.style8 {
		letter-spacing: 0.175rem;
		width: calc(100% + 0.175rem);
		font-size: 0.875em;
		line-height: 1.75;
	}
	
	#text26 {
		letter-spacing: 0.175rem;
		width: calc(100% + 0.175rem);
		font-size: 0.875em;
		line-height: 1.75;
	}
	
	#text09 {
		letter-spacing: -0.0875rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.25;
	}
	
	#text41 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.875;
	}
	
	#text27 {
		letter-spacing: 0.175rem;
		width: calc(100% + 0.175rem);
		font-size: 0.875em;
		line-height: 1.75;
	}
	
	#text60 {
		letter-spacing: -0.0875rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.25;
	}
	
	#text43:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text43:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text43 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.875;
	}
	
	#text57:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text57:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text57 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.875;
	}
	
	#text90 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 0.75;
	}
	
	#text110:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text110:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text110 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	#text132:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text132:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text132 {
		letter-spacing: 0.0875rem;
		width: calc(100% + 0.0875rem);
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text134:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text134:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text134 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.875;
	}
	
	#text112:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text112:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text112 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.875;
	}
	
	#text130:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text130:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text130 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.875;
	}
	
	#text135 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.5;
	}
	
	#text136:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text136:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text136 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text137:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text137:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text137 {
		letter-spacing: 0.0875rem;
		width: calc(100% + 0.0875rem);
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text138:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text138:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text138 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.875;
	}
	
	#text48 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text34 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.125;
	}
	
	#text50 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.75;
	}
	
	#text51 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.125;
	}
	
	#text52 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.125;
	}
	
	#text55 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.75;
	}
	
	#text53 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.125;
	}
	
	#text54 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.125;
	}
	
	#text56 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.75;
	}
	
	#text14 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.125;
	}
	
	#text19 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.125;
	}
	
	#text37 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.75;
	}
	
	#text111 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 0.75;
	}
	
	#text190:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text190:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text190 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	#text24:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text24:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text24 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.875;
	}
	
	#text77 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 1.5;
	}
	
	#text32:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text32:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text32 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text25 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 1.5;
	}
	
	#text44:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text44:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text44 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text30 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 1.5;
	}
	
	h1.style13:not(:first-child), h2.style13:not(:first-child), h3.style13:not(:first-child), p.style13:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	h1.style13:not(:last-child), h2.style13:not(:last-child), h3.style13:not(:last-child), p.style13:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	h1.style13, h2.style13, h3.style13, p.style13 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text80 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.25;
	}
	
	#text81:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text81:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text81 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text83 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.5;
	}
	
	#text67 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 1.375em;
		line-height: 1.5;
	}
	
	#text195 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.25;
	}
	
	#text196:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text196:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text196 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text122 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.25;
	}
	
	#text123:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text123:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text123 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text22 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 1.5;
	}
	
	#text116:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text116:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text116 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text45 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 1.5;
	}
	
	#text193:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text193:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text193 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text117:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text117:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text117 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.875;
	}
	
	#text39 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 1.5;
	}
	
	#text46:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text46:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text46 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text106 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.5;
	}
	
	#text107:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text107:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text107 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text108:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text108:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text108 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text109:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text109:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text109 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text120 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.25;
	}
	
	#text113 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.25;
	}
	
	#text114:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text114:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text114 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text125 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.5;
	}
	
	#text126:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text126:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text126 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text03:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text03:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text03 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.875;
	}
	
	#text74 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 0.75;
	}
	
	#text75:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text75:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text75 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	#text01 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.5;
	}
	
	#text76:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text76:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text76 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text87:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text87:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text87 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text88:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text88:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text88 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text89:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text89:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text89 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text91:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text91:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text91 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text92:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text92:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text92 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text02:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text02:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text02 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text65:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text65:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text65 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text70:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text70:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text70 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text82:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text82:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text82 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text84 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.5;
	}
	
	#text85 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.5em;
		line-height: 1.625;
	}
	
	#text93 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.5;
	}
	
	#text94 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.5em;
		line-height: 1.625;
	}
	
	#text95:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text95:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text95 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text96:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text96:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text96 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text97:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text97:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text97 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text98:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text98:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text98 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text99:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text99:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text99 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text100:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text100:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text100 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text101:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text101:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text101 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text185:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text185:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text185 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.875;
	}
	
	#text188 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 0.75;
	}
	
	#text189:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text189:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text189 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	#text04 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.5;
	}
	
	#text131:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text131:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text131 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text133:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text133:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text133 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.625;
	}
	
	#text143:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text143:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text143 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.625;
	}
	
	#text153 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.625;
	}
	
	#text154 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.5;
	}
	
	#text155 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text156 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.625;
	}
	
	#text157 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.5;
	}
	
	#text158 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text162 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.625;
	}
	
	#text174 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.5;
	}
	
	#text164 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text165 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.625;
	}
	
	#text186 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.5;
	}
	
	#text167 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text146 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.625;
	}
	
	#text147 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.5;
	}
	
	#text148 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text149 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.625;
	}
	
	#text150 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.5;
	}
	
	#text151 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text152 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.625;
	}
	
	#text171 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.5;
	}
	
	#text172 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text173 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.625;
	}
	
	#text182 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.5;
	}
	
	#text175 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text176 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.625;
	}
	
	#text183 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.5;
	}
	
	#text178 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text179 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.625;
	}
	
	#text184 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.5;
	}
	
	#text181 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text187:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text187:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text187 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.875;
	}
	
	#text40 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.625;
	}
	
	#text47 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text68 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text35 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.625;
	}
	
	#text23 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.625;
	}
	
	#text28 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text18 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.5em;
		line-height: 1.625;
	}
	
	#text31 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.5em;
		line-height: 1.625;
	}
	
	#text63 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.5em;
		line-height: 1.625;
	}
	
	#text72 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.5em;
		line-height: 1.625;
	}
	
	hr.style1:before {
		width: 2rem;
	}
	
	#divider11:before {
		width: 9rem;
	}
	
	#divider05:before {
		width: 9rem;
	}
	
	#divider12:before {
		width: 9rem;
	}
	
	#divider17:before {
		width: 5rem;
	}
	
	#divider13:before {
		width: 9rem;
	}
	
	#divider08:before {
		width: 19rem;
	}
	
	#divider06:before {
		width: 19rem;
	}
	
	#divider14:before {
		width: 9rem;
	}
	
	#divider15:before {
		width: 9rem;
	}
	
	#divider16:before {
		width: 9rem;
	}
	
	#divider10:before {
		width: 9rem;
	}
	
	#divider03:before {
		width: 9rem;
	}
	
	#container08 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1.5rem;
		--spacing: 0rem;
	}
	
	#container08.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	#container01 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0.875rem;
		--spacing: 0rem;
	}
	
	#container01.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	#container12 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0rem;
	}
	
	#container12 {
		min-height: 18.75rem;
	}
	
	#container12.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > .full {
		min-height: 18.75rem;
	}
	
	#container12.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container12.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	#container09:not(:first-child) {
		margin-top: 2.25rem !important;
	}
	
	#container09:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#container09 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0.75rem;
	}
	
	#container09.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > *:before {
		margin-top: calc((var(--gutters) * -0.5) - 0.5px) !important;
	}
	
	#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	
	
	#container06:not(:first-child) {
		margin-top: 2.25rem !important;
	}
	
	#container06:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#container06 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container06.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container06.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container06.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container06.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container06.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container06.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container06.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container06.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container06.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container06.columns > .wrapper > .inner > div:last-of-type, #container06.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container06.columns > .wrapper > .inner > div:first-of-type, #container06.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container06.columns > .wrapper > .inner > div:last-of-type, #container06.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > div:first-of-type, #container06.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container06.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container06 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container06 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container32:not(:first-child) {
		margin-top: 2.25rem !important;
	}
	
	#container32:not(:last-child) {
		margin-bottom: 2.25rem !important;
	}
	
	#container32 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container32.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container32.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container32.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container32.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container32.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container32.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container32.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container32.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container32.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container32.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container32.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container32.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container32.columns > .wrapper > .inner > div:first-of-type, #container32.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container32.columns > .wrapper > .inner > div:last-of-type, #container32.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container32.columns > .wrapper > .inner > div:first-of-type, #container32.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container32.columns > .wrapper > .inner > div:last-of-type, #container32.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container32.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container32.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container32 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container32 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container07:not(:first-child) {
		margin-top: 2.25rem !important;
	}
	
	#container07 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
		--spacing: 0.5rem;
	}
	
	#container07.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container07.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container07.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container07.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container07.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container07.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container07.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container07.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container07.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container07.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container07.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container07.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container07.columns > .wrapper > .inner > div:first-of-type, #container07.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container07.columns > .wrapper > .inner > div:last-of-type, #container07.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container07.columns > .wrapper > .inner > div:first-of-type, #container07.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container07.columns > .wrapper > .inner > div:last-of-type, #container07.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container07.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container07.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container07 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container07 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container34:not(:first-child) {
		margin-top: 2.25rem !important;
	}
	
	#container34:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#container34 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container34.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container34.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container34.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container34.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container34.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container34.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container34.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container34.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container34.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container34.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container34.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container34.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container34.columns > .wrapper > .inner > div:last-of-type, #container34.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container34.columns > .wrapper > .inner > div:first-of-type, #container34.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container34.columns > .wrapper > .inner > div:last-of-type, #container34.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container34.columns > .wrapper > .inner > div:first-of-type, #container34.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container34.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container34.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container34 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container34 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container35:not(:first-child) {
		margin-top: 2.25rem !important;
	}
	
	#container35 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container35.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container35.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container35.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container35.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container35.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container35.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container35.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container35.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container35.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container35.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container35.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container35.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container35.columns > .wrapper > .inner > div:last-of-type, #container35.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container35.columns > .wrapper > .inner > div:first-of-type, #container35.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container35.columns > .wrapper > .inner > div:last-of-type, #container35.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container35.columns > .wrapper > .inner > div:first-of-type, #container35.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container35.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container35.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container35 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container35 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container63 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 0.5rem;
	}
	
	#container63.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container63.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container63.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container63.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container63.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container63.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container63.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container63.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container63.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container63.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container63.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container63.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container63.columns > .wrapper > .inner > div:last-of-type, #container63.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container63.columns > .wrapper > .inner > div:first-of-type, #container63.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container63.columns > .wrapper > .inner > div:last-of-type, #container63.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container63.columns > .wrapper > .inner > div:first-of-type, #container63.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container63.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container63.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container29 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	#container29.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container29.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container29.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	#container20 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2.25rem;
	}
	
	#container20.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container20.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	
	
	#container73:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#container73 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 0.5rem;
	}
	
	#container73.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container73.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container73.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container73.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container73.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container73.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container73.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container73.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container73.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container73.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container73.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container73.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container73.columns > .wrapper > .inner > div:last-of-type, #container73.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container73.columns > .wrapper > .inner > div:first-of-type, #container73.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container73.columns > .wrapper > .inner > div:last-of-type, #container73.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container73.columns > .wrapper > .inner > div:first-of-type, #container73.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container73.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container73.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container73 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container73 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container72:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#container72 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--spacing: 0.5rem;
	}
	
	#container72.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container72.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container72.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container72.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container72.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container72.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container72.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container72.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container72.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container72.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container72.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container72.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container72.columns > .wrapper > .inner > div:last-of-type, #container72.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container72.columns > .wrapper > .inner > div:first-of-type, #container72.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container72.columns > .wrapper > .inner > div:last-of-type, #container72.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container72.columns > .wrapper > .inner > div:first-of-type, #container72.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container72.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container72.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container72 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container72 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container39:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#container39 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container39.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container39.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container39.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container39.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container39.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container39.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container39.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container39.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container39.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container39.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container39.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container39.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container39.columns > .wrapper > .inner > div:last-of-type, #container39.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container39.columns > .wrapper > .inner > div:first-of-type, #container39.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container39.columns > .wrapper > .inner > div:last-of-type, #container39.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container39.columns > .wrapper > .inner > div:first-of-type, #container39.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container39.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container39.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container.style1:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.container.style1 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	.container.style1.columns > .wrapper > .inner > .full {
		min-height: 15rem;
	}
	
	.container.style2 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	.container.style2.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style2.columns > .wrapper > .inner > .full {
		min-height: 15rem;
	}
	
	.container.style2.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	.container.style2.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	#container28 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	#container28.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container28.columns > .wrapper > .inner > .full {
		min-height: 15rem;
	}
	
	#container28.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container28.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	#container31 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	#container31.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container31.columns > .wrapper > .inner > .full {
		min-height: 15rem;
	}
	
	#container31.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container31.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	#container40:not(:first-child) {
		margin-top: 1.875rem !important;
	}
	
	#container40 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
	}
	
	#container40.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container40.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container40.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	
	
	#container64 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 0.5rem;
	}
	
	#container64.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container64.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container64.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container64.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container64.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container64.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container64.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container64.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container64.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container64.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container64.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container64.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container64.columns > .wrapper > .inner > div:last-of-type, #container64.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container64.columns > .wrapper > .inner > div:first-of-type, #container64.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container64.columns > .wrapper > .inner > div:last-of-type, #container64.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container64.columns > .wrapper > .inner > div:first-of-type, #container64.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container64.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container64.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container14 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	#container14.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container14.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	#container17 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
	}
	
	#container17.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container17.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container17.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	
	
	#container61:not(:first-child) {
		margin-top: 2.25rem !important;
	}
	
	#container61:not(:last-child) {
		margin-bottom: 2.25rem !important;
	}
	
	#container61 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container61.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container61.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container61.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container61.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container61.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container61.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container61.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container61.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container61.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container61.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container61.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container61.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container61.columns > .wrapper > .inner > div:last-of-type, #container61.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container61.columns > .wrapper > .inner > div:first-of-type, #container61.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container61.columns > .wrapper > .inner > div:last-of-type, #container61.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container61.columns > .wrapper > .inner > div:first-of-type, #container61.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container61.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container61.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container61 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container61 > .wrapper > .inner > :nth-child(2) {
		--alignment: right;
		--flex-alignment: flex-end;
		--indent-left: 0;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: 0;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container45:not(:first-child) {
		margin-top: 2.25rem !important;
	}
	
	#container45:not(:last-child) {
		margin-bottom: 2.25rem !important;
	}
	
	#container45 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container45.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container45.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container45.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container45.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container45.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container45.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container45.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container45.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container45.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container45.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container45.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container45.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container45.columns > .wrapper > .inner > div:last-of-type, #container45.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container45.columns > .wrapper > .inner > div:first-of-type, #container45.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container45.columns > .wrapper > .inner > div:last-of-type, #container45.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container45.columns > .wrapper > .inner > div:first-of-type, #container45.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container45.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container45.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container45 > .wrapper > .inner > :nth-child(1) {
		--alignment: right;
		--flex-alignment: flex-end;
		--indent-left: 0;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: 0;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container45 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container37:not(:first-child) {
		margin-top: 2.25rem !important;
	}
	
	#container37:not(:last-child) {
		margin-bottom: 2.25rem !important;
	}
	
	#container37 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container37.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container37.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container37.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container37.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container37.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container37.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container37.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container37.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container37.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container37.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container37.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container37.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container37.columns > .wrapper > .inner > div:last-of-type, #container37.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container37.columns > .wrapper > .inner > div:first-of-type, #container37.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container37.columns > .wrapper > .inner > div:last-of-type, #container37.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container37.columns > .wrapper > .inner > div:first-of-type, #container37.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container37.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container37.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container37 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container37 > .wrapper > .inner > :nth-child(2) {
		--alignment: right;
		--flex-alignment: flex-end;
		--indent-left: 0;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: 0;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container13 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
	}
	
	#container13.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container13.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	
	
	#container65 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 0.5rem;
	}
	
	#container65.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container65.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container65.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container65.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container65.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container65.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container65.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container65.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container65.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container65.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container65.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container65.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container65.columns > .wrapper > .inner > div:last-of-type, #container65.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container65.columns > .wrapper > .inner > div:first-of-type, #container65.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container65.columns > .wrapper > .inner > div:last-of-type, #container65.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container65.columns > .wrapper > .inner > div:first-of-type, #container65.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container65.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container65.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container03 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	#container03.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container03.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	#container18 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
	}
	
	#container18 > .wrapper > .slideshow-background > .slow {
		animation-duration: 18.75s;
	}
	
	#container18 > .wrapper > .slideshow-background > .normal {
		animation-duration: 14.0625s;
	}
	
	#container18 > .wrapper > .slideshow-background > .fast {
		animation-duration: 9.375s;
	}
	
	#container18.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container18.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	
	
	#container05:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#container05 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container05.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container05.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container05.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container05.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container05.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container05.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container05.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type, #container05.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container05.columns > .wrapper > .inner > div:first-of-type, #container05.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type, #container05.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > div:first-of-type, #container05.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container05.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container22:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#container22 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container22.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container22.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container22.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container22.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container22.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container22.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container22.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container22.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container22.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container22.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container22.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container22.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container22.columns > .wrapper > .inner > div:last-of-type, #container22.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container22.columns > .wrapper > .inner > div:first-of-type, #container22.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container22.columns > .wrapper > .inner > div:last-of-type, #container22.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container22.columns > .wrapper > .inner > div:first-of-type, #container22.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container22.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container22.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container22 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container22 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container60:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#container60:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#container60 > .wrapper > .inner {
		--gutters: 3rem;
		--spacing: 0.5rem;
	}
	
	#container60.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container60.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container60.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container60.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container60.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container60.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container60.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container60.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container60.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container60.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container60.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container60.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container60.columns > .wrapper > .inner > div:last-of-type, #container60.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container60.columns > .wrapper > .inner > div:first-of-type, #container60.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container60.columns > .wrapper > .inner > div:last-of-type, #container60.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container60.columns > .wrapper > .inner > div:first-of-type, #container60.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container60.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container60.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container44 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container44.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container44.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container44.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container44.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container44.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container44.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container44.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container44.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container44.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container44.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container44.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container44.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container44.columns > .wrapper > .inner > div:last-of-type, #container44.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container44.columns > .wrapper > .inner > div:first-of-type, #container44.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container44.columns > .wrapper > .inner > div:last-of-type, #container44.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container44.columns > .wrapper > .inner > div:first-of-type, #container44.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container44.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container44.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container44 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container44 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container43:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#container43:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#container43 > .wrapper > .inner {
		--gutters: 3rem;
		--spacing: 0.5rem;
	}
	
	#container43.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container43.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container43.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container43.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container43.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container43.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container43.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container43.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container43.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container43.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container43.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container43.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container43.columns > .wrapper > .inner > div:last-of-type, #container43.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container43.columns > .wrapper > .inner > div:first-of-type, #container43.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container43.columns > .wrapper > .inner > div:last-of-type, #container43.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container43.columns > .wrapper > .inner > div:first-of-type, #container43.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container43.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container43.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container46:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#container46 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container46.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container46.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container46.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container46.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container46.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container46.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container46.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container46.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container46.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container46.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container46.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container46.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container46.columns > .wrapper > .inner > div:last-of-type, #container46.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container46.columns > .wrapper > .inner > div:first-of-type, #container46.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container46.columns > .wrapper > .inner > div:last-of-type, #container46.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container46.columns > .wrapper > .inner > div:first-of-type, #container46.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container46.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container46.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container46 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container46 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container15 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
	}
	
	#container15.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	
	
	#container66 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 0.5rem;
	}
	
	#container66.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container66.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container66.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container66.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container66.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container66.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container66.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container66.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container66.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container66.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container66.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container66.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container66.columns > .wrapper > .inner > div:last-of-type, #container66.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container66.columns > .wrapper > .inner > div:first-of-type, #container66.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container66.columns > .wrapper > .inner > div:last-of-type, #container66.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container66.columns > .wrapper > .inner > div:first-of-type, #container66.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container66.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container66.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container11 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	#container11.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container11.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	#container36:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#container36 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
	}
	
	#container36.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container36.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container36.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	
	
	#container19:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#container19:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#container19 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container19.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container19.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container19.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container19.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container19.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container19.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container19.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container19.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container19.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container19.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container19.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container19.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container19.columns > .wrapper > .inner > div:last-of-type, #container19.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container19.columns > .wrapper > .inner > div:first-of-type, #container19.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container19.columns > .wrapper > .inner > div:last-of-type, #container19.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container19.columns > .wrapper > .inner > div:first-of-type, #container19.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container19.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container19.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container69:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#container69 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container69.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container69.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container69.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container69.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container69.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container69.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container69.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container69.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container69.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container69.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container69.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container69.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container69.columns > .wrapper > .inner > div:last-of-type, #container69.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container69.columns > .wrapper > .inner > div:first-of-type, #container69.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container69.columns > .wrapper > .inner > div:last-of-type, #container69.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container69.columns > .wrapper > .inner > div:first-of-type, #container69.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container69.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container69.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container70:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#container70 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0.5rem;
	}
	
	#container70.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container70.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container70.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container70.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container70.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container70.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container70.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container70.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container70.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container70.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container70.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container70.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container70.columns > .wrapper > .inner > div:last-of-type, #container70.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container70.columns > .wrapper > .inner > div:first-of-type, #container70.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container70.columns > .wrapper > .inner > div:last-of-type, #container70.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container70.columns > .wrapper > .inner > div:first-of-type, #container70.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container70.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container70.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container71:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#container71 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container71.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container71.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container71.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container71.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container71.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container71.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container71.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container71.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container71.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container71.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container71.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container71.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container71.columns > .wrapper > .inner > div:last-of-type, #container71.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container71.columns > .wrapper > .inner > div:first-of-type, #container71.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container71.columns > .wrapper > .inner > div:last-of-type, #container71.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container71.columns > .wrapper > .inner > div:first-of-type, #container71.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container71.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container71.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container48:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#container48 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0.5rem;
	}
	
	#container48.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container48.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container48.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container48.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container48.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container48.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container48.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container48.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container48.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container48.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container48.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container48.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container48.columns > .wrapper > .inner > div:last-of-type, #container48.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container48.columns > .wrapper > .inner > div:first-of-type, #container48.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container48.columns > .wrapper > .inner > div:last-of-type, #container48.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container48.columns > .wrapper > .inner > div:first-of-type, #container48.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container48.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container48.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container33:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#container33 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container33.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container33.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container33.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container33.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container33.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container33.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container33.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container33.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container33.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container33.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container33.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container33.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container33.columns > .wrapper > .inner > div:last-of-type, #container33.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container33.columns > .wrapper > .inner > div:first-of-type, #container33.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container33.columns > .wrapper > .inner > div:last-of-type, #container33.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container33.columns > .wrapper > .inner > div:first-of-type, #container33.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container33.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container33.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container68 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 0.5rem;
	}
	
	#container68.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container68.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container68.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container68.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container68.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container68.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container68.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container68.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container68.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container68.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container68.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container68.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container68.columns > .wrapper > .inner > div:last-of-type, #container68.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container68.columns > .wrapper > .inner > div:first-of-type, #container68.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container68.columns > .wrapper > .inner > div:last-of-type, #container68.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container68.columns > .wrapper > .inner > div:first-of-type, #container68.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container68.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container68.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container55 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	#container55.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container55.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container55.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	#container57:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#container57 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
	}
	
	#container57.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container57.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container57.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	
	
	#container59:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#container59:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#container59 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container59.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container59.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container59.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container59.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container59.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container59.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container59.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container59.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container59.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container59.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container59.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container59.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container59.columns > .wrapper > .inner > div:last-of-type, #container59.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container59.columns > .wrapper > .inner > div:first-of-type, #container59.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container59.columns > .wrapper > .inner > div:last-of-type, #container59.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container59.columns > .wrapper > .inner > div:first-of-type, #container59.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container59.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container59.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container16:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#container16 > .wrapper > .inner {
		--gutters: calc(var(--padding-vertical) * 2);
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
	}
	
	#container16.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > *:before {
		margin-top: calc((var(--gutters) * -0.5) - 0.5px) !important;
	}
	
	#container16.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container16.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	
	
	#container49:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#container49 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container49.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container49.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container49.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container49.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container49.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container49.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container49.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container49.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container49.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container49.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container49.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container49.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container49.columns > .wrapper > .inner > div:last-of-type, #container49.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container49.columns > .wrapper > .inner > div:first-of-type, #container49.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container49.columns > .wrapper > .inner > div:last-of-type, #container49.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container49.columns > .wrapper > .inner > div:first-of-type, #container49.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container49.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container49.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container52:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#container52 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--spacing: 0.5rem;
	}
	
	#container52.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container52.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container52.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container52.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container52.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container52.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container52.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container52.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container52.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container52.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container52.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container52.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container52.columns > .wrapper > .inner > div:last-of-type, #container52.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container52.columns > .wrapper > .inner > div:first-of-type, #container52.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container52.columns > .wrapper > .inner > div:last-of-type, #container52.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container52.columns > .wrapper > .inner > div:first-of-type, #container52.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container52.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container52.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container53 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0.25rem;
	}
	
	#container53.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container53.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container53.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container53.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container53.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container53.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container53.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container53.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container53.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container53.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container53.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container53.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container53.columns > .wrapper > .inner > div:last-of-type, #container53.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container53.columns > .wrapper > .inner > div:first-of-type, #container53.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container53.columns > .wrapper > .inner > div:last-of-type, #container53.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container53.columns > .wrapper > .inner > div:first-of-type, #container53.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container53.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container53.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container53 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container53 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container53 > .wrapper > .inner > :nth-child(3) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container47 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0.25rem;
	}
	
	#container47.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container47.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container47.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container47.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container47.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container47.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container47.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container47.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container47.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container47.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container47.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container47.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container47.columns > .wrapper > .inner > div:last-of-type, #container47.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container47.columns > .wrapper > .inner > div:first-of-type, #container47.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container47.columns > .wrapper > .inner > div:last-of-type, #container47.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container47.columns > .wrapper > .inner > div:first-of-type, #container47.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container47.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container47.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container47 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container47 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container47 > .wrapper > .inner > :nth-child(3) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container50:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#container50 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--spacing: 0.5rem;
	}
	
	#container50.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container50.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container50.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container50.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container50.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container50.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container50.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container50.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container50.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container50.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container50.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container50.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container50.columns > .wrapper > .inner > div:last-of-type, #container50.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container50.columns > .wrapper > .inner > div:first-of-type, #container50.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container50.columns > .wrapper > .inner > div:last-of-type, #container50.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container50.columns > .wrapper > .inner > div:first-of-type, #container50.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container50.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container50.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container54 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0.25rem;
	}
	
	#container54.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container54.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container54.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container54.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container54.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container54.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container54.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container54.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container54.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container54.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container54.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container54.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container54.columns > .wrapper > .inner > div:last-of-type, #container54.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container54.columns > .wrapper > .inner > div:first-of-type, #container54.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container54.columns > .wrapper > .inner > div:last-of-type, #container54.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container54.columns > .wrapper > .inner > div:first-of-type, #container54.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container54.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container54.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container54 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container54 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container54 > .wrapper > .inner > :nth-child(3) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container51 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0.25rem;
	}
	
	#container51.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container51.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container51.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container51.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container51.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container51.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container51.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container51.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container51.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container51.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container51.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container51.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container51.columns > .wrapper > .inner > div:last-of-type, #container51.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container51.columns > .wrapper > .inner > div:first-of-type, #container51.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container51.columns > .wrapper > .inner > div:last-of-type, #container51.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container51.columns > .wrapper > .inner > div:first-of-type, #container51.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container51.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container51.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container51 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container51 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container51 > .wrapper > .inner > :nth-child(3) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container67 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 0.5rem;
	}
	
	#container67.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container67.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container67.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container67.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container67.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container67.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container67.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container67.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container67.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container67.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container67.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container67.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container67.columns > .wrapper > .inner > div:last-of-type, #container67.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container67.columns > .wrapper > .inner > div:first-of-type, #container67.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container67.columns > .wrapper > .inner > div:last-of-type, #container67.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container67.columns > .wrapper > .inner > div:first-of-type, #container67.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container67.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container67.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container56 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	#container56.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container56.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container56.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	#container41:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#container41 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
	}
	
	#container41 > .wrapper > .slideshow-background > .slow {
		animation-duration: 13.75s;
	}
	
	#container41 > .wrapper > .slideshow-background > .normal {
		animation-duration: 10.3125s;
	}
	
	#container41 > .wrapper > .slideshow-background > .fast {
		animation-duration: 6.875s;
	}
	
	#container41.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container41.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container41.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	
	
	#container38:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#container38:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#container38 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0.5rem;
	}
	
	#container38.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container38.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container38.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container38.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container38.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container38.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container38.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container38.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container38.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container38.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container38.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container38.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container38.columns > .wrapper > .inner > div:last-of-type, #container38.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container38.columns > .wrapper > .inner > div:first-of-type, #container38.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container38.columns > .wrapper > .inner > div:last-of-type, #container38.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container38.columns > .wrapper > .inner > div:first-of-type, #container38.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container38.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container38.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container58:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#container58 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
	}
	
	#container58.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container58.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container58.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	
	
	#container21 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 0.5rem;
	}
	
	#container21.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container21.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container21.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container21.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container21.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container21.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container21.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container21.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container21.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container21.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container21.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container21.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container21.columns > .wrapper > .inner > div:last-of-type, #container21.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container21.columns > .wrapper > .inner > div:first-of-type, #container21.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container21.columns > .wrapper > .inner > div:last-of-type, #container21.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container21.columns > .wrapper > .inner > div:first-of-type, #container21.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container21.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container21.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container04 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	#container04.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	#container04.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	
	
	#container02 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 3.5rem;
		--spacing: 1.625rem;
	}
	
	#container02.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container02.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container02.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container02.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type, #container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type, #container02.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type, #container02.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type, #container02.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container30 > .wrapper > .inner {
		--gutters: calc(var(--padding-vertical) * 2);
		--padding-vertical: 3rem;
		--spacing: 0.25rem;
	}
	
	#container30.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container30.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container30.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container30.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container30.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container30.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container30.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container30.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container30.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container30.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container30.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container30.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container30.columns > .wrapper > .inner > div:last-of-type, #container30.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container30.columns > .wrapper > .inner > div:first-of-type, #container30.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container30.columns > .wrapper > .inner > div:last-of-type, #container30.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container30.columns > .wrapper > .inner > div:first-of-type, #container30.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container30.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container30.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container30 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container30 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container30 > .wrapper > .inner > :nth-child(3) {
		--alignment: right;
		--flex-alignment: flex-end;
		--indent-left: 0;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: 0;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container10 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-vertical: 2rem;
		--spacing: 0.25rem;
	}
	
	#container10.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container10.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container10.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container10.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container10.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container10.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container10.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container10.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container10.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container10.columns > .wrapper > .inner > div:last-of-type, #container10.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container10.columns > .wrapper > .inner > div:first-of-type, #container10.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container10.columns > .wrapper > .inner > div:last-of-type, #container10.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > div:first-of-type, #container10.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container10.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container10 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container10 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#header {
		margin-bottom: 0rem !important;
	}
	
	#links01 {
		gap: 1.75rem;
		font-size: 0.875em;
	}
	
	#links01:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	#links01:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	#buttons01 {
		gap: 1rem;
	}
	
	#buttons01:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#buttons01:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#buttons01 li a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	#buttons01 li a svg {
		width: 1em;
	}
	
	#buttons08 {
		gap: 1rem;
	}
	
	#buttons08:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#buttons08:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#buttons08 li a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	#buttons08 li a svg {
		width: 1em;
	}
	
	.buttons.style1 {
		gap: 1rem;
	}
	
	.buttons.style1 li a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons.style1 li a svg {
		width: 1.25em;
	}
	
	#buttons12 {
		gap: 1rem;
	}
	
	#buttons12:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#buttons12:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#buttons12 li a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	#buttons12 li a svg {
		width: 1em;
	}
	
	#buttons11 {
		gap: 1rem;
	}
	
	#buttons11 li a {
		letter-spacing: 0.15rem;
		padding-left: calc(0.15rem + 1.125rem);
		font-size: 0.625em;
	}
	
	#buttons11 li a svg {
		width: 1.5625em;
	}
	
	#buttons10 {
		gap: 1rem;
	}
	
	#buttons10:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#buttons10:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#buttons10 li a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	#buttons10 li a svg {
		width: 1em;
	}
	
	#buttons07 {
		gap: 1rem;
	}
	
	#buttons07:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#buttons07:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#buttons07 li a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	#buttons07 li a svg {
		width: 1em;
	}
	
	#buttons06 {
		gap: 1rem;
	}
	
	#buttons06 li a {
		letter-spacing: 0.15rem;
		padding-left: calc(0.15rem + 1.125rem);
		font-size: 0.625em;
	}
	
	#buttons06 li a svg {
		width: 1.5625em;
	}
	
	#buttons05 {
		gap: 1rem;
	}
	
	#buttons05 li a {
		letter-spacing: 0.15rem;
		padding-left: calc(0.15rem + 1.125rem);
		font-size: 0.625em;
	}
	
	#buttons05 li a svg {
		width: 1.5625em;
	}
	
	#slideshow01 .bg {
		width: 100vw;
		height: 15.875rem !important;
	}
	
	#slideshow01 .bg > .slow {
		animation-duration: 15s;
	}
	
	#slideshow01 .bg > .normal {
		animation-duration: 11.25s;
	}
	
	#slideshow01 .bg > .fast {
		animation-duration: 7.5s;
	}
	
	#list01 {
		letter-spacing: 0rem;
		font-size: 0.75em;
		line-height: 1.75;
	}
	
	#list01 ul li:after {
		width: 0.5rem;
	}
	
	#list01 ul li:before {
		height: 1.3125rem;
		line-height: 1.3125rem;
		min-width: 0.84375rem;
	}
	
	#icons05 {
		font-size: 0.875em;
		gap: 0.75rem;
	}
	
	#icons06 {
		font-size: 0.875em;
		gap: 0.75rem;
	}
	
	#icons08 {
		font-size: 0.875em;
		gap: 0.75rem;
	}
	
	#icons09 {
		font-size: 0.875em;
		gap: 0.75rem;
	}
	
	#icons02 {
		font-size: 0.875em;
		gap: 0.75rem;
	}
	
	#icons04 {
		font-size: 0.875em;
		gap: 0.75rem;
	}
	
	#icons11 {
		font-size: 0.875em;
		gap: 0.75rem;
	}
	
	#icons12 {
		font-size: 0.875em;
		gap: 0.75rem;
	}
	
	#icons13 {
		font-size: 0.875em;
		gap: 0.75rem;
	}
	
	#icons14 {
		font-size: 0.875em;
		gap: 0.75rem;
	}
	
	#icons03 {
		font-size: 1.875em;
		gap: 1.5rem;
	}
	
	#form01:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#form01:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#form01 label:first-child {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	#form01 input[type="text"], #form01 input[type="email"], #form01 input[type="tel"], #form01 input[type="number"], #form01 textarea, #form01 select, #form01 .file, #form01 .date {
		font-size: 0.75em;
		letter-spacing: 0rem;
	}
	
	#form01 textarea {
		line-height: 1.5;
		padding-top: 0.6125rem;
	}
	
	#form01 input[type="checkbox"] + label, #form01 p {
		font-size: 0.75em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	#form01 .actions button {
		font-size: 0.625em;
		letter-spacing: 0.225rem;
		padding-left: calc(0.225rem + 1.125rem);
	}
	
	#form01 .actions button svg {
		width: 1.25em;
	}
}

@media (max-width: 480px) {
	#main > .inner {
		--spacing: 0rem;
	}
	
	#image22 .frame {
		height: 19.25rem !important;
	}
	
	#container08 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	#container01 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	#container12 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	#container09 > .wrapper > .inner {
		--spacing: 0.65625rem;
	}
	
	#container06 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container32 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container07 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container34 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container35 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container63 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container29 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	
	
	#container73 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container72 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container39 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	.container.style1 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	.container.style2 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	#container28 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	#container31 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	
	
	#container64 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container14 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	
	
	#container61 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container45 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container37 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	
	
	#container65 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container03 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	
	
	#container05 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container22 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container60 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container44 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container43 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container46 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	
	
	#container66 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container11 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	
	
	#container19 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container69 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container70 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container71 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container48 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container33 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container68 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container55 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	
	
	#container59 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	
	
	#container49 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container52 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container53 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	#container47 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	#container50 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container54 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	#container51 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	#container67 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container56 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	
	
	#container38 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	
	
	#container21 > .wrapper > .inner {
		--spacing: 0.4375rem;
	}
	
	#container04 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	#container02 > .wrapper > .inner {
		--spacing: 1.421875rem;
	}
	
	#container30 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	#container10 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.buttons.style1 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons.style1 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons11 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons11 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons06 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons06 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons05 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons05 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#form01 .actions button {
		max-width: 32rem;
		width: 100%;
	}
}

@media (max-width: 360px) {
	#main > .inner {
		--padding-horizontal: 0.9375rem;
		--padding-vertical: 0rem;
		--spacing: 0rem;
	}
	
	#main > .inner > * > .full {
		margin-left: calc(-0.9375rem);
		max-width: calc(100% + 1.875rem + 0.4725px);
		width: calc(100% + 1.875rem + 0.4725px);
	}
	
	#main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	#main > .inner > header > .full:first-child {
		margin-top: -0rem !important;
	}
	
	#main > .inner > footer > .full:last-child {
		margin-bottom: -0rem !important;
	}
	
	#image22 .frame {
		height: 16.84375rem !important;
	}
	
	h1.style6, h2.style6, h3.style6, p.style6 {
		font-size: 1.25em;
	}
	
	h1.style1, h2.style1, h3.style1, p.style1 {
		font-size: 0.875em;
	}
	
	#text71 {
		font-size: 0.5em;
	}
	
	#text08 {
		font-size: 0.875em;
	}
	
	#text16 {
		font-size: 3.5em;
	}
	
	#text20 {
		font-size: 1em;
	}
	
	#text69 {
		font-size: 1.5em;
	}
	
	#text36 {
		font-size: 0.75em;
	}
	
	h1.style2, h2.style2, h3.style2, p.style2 {
		font-size: 2.25em;
	}
	
	#text42 {
		font-size: 0.875em;
	}
	
	#text07 {
		font-size: 2.25em;
	}
	
	h1.style12, h2.style12, h3.style12, p.style12 {
		font-size: 0.875em;
	}
	
	h1.style8, h2.style8, h3.style8, p.style8 {
		font-size: 0.875em;
	}
	
	#text26 {
		font-size: 0.875em;
	}
	
	#text09 {
		font-size: 2.25em;
	}
	
	#text41 {
		font-size: 0.875em;
	}
	
	#text27 {
		font-size: 0.875em;
	}
	
	#text60 {
		font-size: 2.25em;
	}
	
	#text43 {
		font-size: 0.625em;
	}
	
	#text57 {
		font-size: 0.625em;
	}
	
	#text90 {
		font-size: 2.5em;
	}
	
	#text110 {
		font-size: 0.75em;
	}
	
	#text132 {
		font-size: 0.625em;
	}
	
	#text134 {
		font-size: 1em;
	}
	
	#text112 {
		font-size: 0.75em;
	}
	
	#text130 {
		font-size: 0.75em;
	}
	
	#text135 {
		font-size: 1.25em;
	}
	
	#text136 {
		font-size: 0.75em;
	}
	
	#text137 {
		font-size: 0.75em;
	}
	
	#text138 {
		font-size: 0.75em;
	}
	
	#text48 {
		font-size: 0.875em;
	}
	
	#text34 {
		font-size: 1.25em;
	}
	
	#text50 {
		font-size: 0.75em;
	}
	
	#text51 {
		font-size: 0.875em;
	}
	
	#text52 {
		font-size: 1.25em;
	}
	
	#text55 {
		font-size: 0.75em;
	}
	
	#text53 {
		font-size: 0.875em;
	}
	
	#text54 {
		font-size: 1.25em;
	}
	
	#text56 {
		font-size: 0.75em;
	}
	
	#text14 {
		font-size: 0.875em;
	}
	
	#text19 {
		font-size: 1.25em;
	}
	
	#text37 {
		font-size: 0.75em;
	}
	
	#text111 {
		font-size: 2.5em;
	}
	
	#text190 {
		font-size: 0.75em;
	}
	
	#text24 {
		font-size: 0.625em;
	}
	
	#text77 {
		font-size: 2.5em;
	}
	
	#text32 {
		font-size: 0.75em;
	}
	
	#text25 {
		font-size: 2.5em;
	}
	
	#text44 {
		font-size: 0.75em;
	}
	
	#text30 {
		font-size: 2.5em;
	}
	
	h1.style13, h2.style13, h3.style13, p.style13 {
		font-size: 0.75em;
	}
	
	#text80 {
		font-size: 2.25em;
	}
	
	#text81 {
		font-size: 0.75em;
	}
	
	#text83 {
		font-size: 2.25em;
	}
	
	#text67 {
		font-size: 1.375em;
	}
	
	#text195 {
		font-size: 2.25em;
	}
	
	#text196 {
		font-size: 0.75em;
	}
	
	#text122 {
		font-size: 2.25em;
	}
	
	#text123 {
		font-size: 0.75em;
	}
	
	#text22 {
		font-size: 2.5em;
	}
	
	#text116 {
		font-size: 0.75em;
	}
	
	#text45 {
		font-size: 2.5em;
	}
	
	#text193 {
		font-size: 0.75em;
	}
	
	#text117 {
		font-size: 0.625em;
	}
	
	#text39 {
		font-size: 2.5em;
	}
	
	#text46 {
		font-size: 0.75em;
	}
	
	#text106 {
		font-size: 2.25em;
	}
	
	#text107 {
		font-size: 0.75em;
	}
	
	#text108 {
		font-size: 0.75em;
	}
	
	#text109 {
		font-size: 0.75em;
	}
	
	#text120 {
		font-size: 2.25em;
	}
	
	#text113 {
		font-size: 2.25em;
	}
	
	#text114 {
		font-size: 0.75em;
	}
	
	#text125 {
		font-size: 2.25em;
	}
	
	#text126 {
		font-size: 0.75em;
	}
	
	#text03 {
		font-size: 0.625em;
	}
	
	#text74 {
		font-size: 2.5em;
	}
	
	#text75 {
		font-size: 0.75em;
	}
	
	#text01 {
		font-size: 2.25em;
	}
	
	#text76 {
		font-size: 0.75em;
	}
	
	#text87 {
		font-size: 0.75em;
	}
	
	#text88 {
		font-size: 0.75em;
	}
	
	#text89 {
		font-size: 0.75em;
	}
	
	#text91 {
		font-size: 0.75em;
	}
	
	#text92 {
		font-size: 0.75em;
	}
	
	#text02 {
		font-size: 0.75em;
	}
	
	#text65 {
		font-size: 0.75em;
	}
	
	#text70 {
		font-size: 0.75em;
	}
	
	#text82 {
		font-size: 0.75em;
	}
	
	#text84 {
		font-size: 2.25em;
	}
	
	#text85 {
		font-size: 0.5em;
	}
	
	#text93 {
		font-size: 2.25em;
	}
	
	#text94 {
		font-size: 0.5em;
	}
	
	#text95 {
		font-size: 0.75em;
	}
	
	#text96 {
		font-size: 0.75em;
	}
	
	#text97 {
		font-size: 0.75em;
	}
	
	#text98 {
		font-size: 0.75em;
	}
	
	#text99 {
		font-size: 0.75em;
	}
	
	#text100 {
		font-size: 0.75em;
	}
	
	#text101 {
		font-size: 0.75em;
	}
	
	#text185 {
		font-size: 0.625em;
	}
	
	#text188 {
		font-size: 2.5em;
	}
	
	#text189 {
		font-size: 0.75em;
	}
	
	#text04 {
		font-size: 2.25em;
	}
	
	#text131 {
		font-size: 0.75em;
	}
	
	#text133 {
		font-size: 1em;
	}
	
	#text143 {
		font-size: 1em;
	}
	
	#text153 {
		font-size: 0.875em;
	}
	
	#text154 {
		font-size: 0.625em;
	}
	
	#text155 {
		font-size: 0.625em;
	}
	
	#text156 {
		font-size: 0.875em;
	}
	
	#text157 {
		font-size: 0.625em;
	}
	
	#text158 {
		font-size: 0.625em;
	}
	
	#text162 {
		font-size: 0.875em;
	}
	
	#text174 {
		font-size: 0.625em;
	}
	
	#text164 {
		font-size: 0.625em;
	}
	
	#text165 {
		font-size: 0.875em;
	}
	
	#text186 {
		font-size: 0.625em;
	}
	
	#text167 {
		font-size: 0.625em;
	}
	
	#text146 {
		font-size: 0.875em;
	}
	
	#text147 {
		font-size: 0.625em;
	}
	
	#text148 {
		font-size: 0.625em;
	}
	
	#text149 {
		font-size: 0.875em;
	}
	
	#text150 {
		font-size: 0.625em;
	}
	
	#text151 {
		font-size: 0.625em;
	}
	
	#text152 {
		font-size: 0.875em;
	}
	
	#text171 {
		font-size: 0.625em;
	}
	
	#text172 {
		font-size: 0.625em;
	}
	
	#text173 {
		font-size: 0.875em;
	}
	
	#text182 {
		font-size: 0.625em;
	}
	
	#text175 {
		font-size: 0.625em;
	}
	
	#text176 {
		font-size: 0.875em;
	}
	
	#text183 {
		font-size: 0.625em;
	}
	
	#text178 {
		font-size: 0.625em;
	}
	
	#text179 {
		font-size: 0.875em;
	}
	
	#text184 {
		font-size: 0.625em;
	}
	
	#text181 {
		font-size: 0.625em;
	}
	
	#text187 {
		font-size: 0.625em;
	}
	
	#text40 {
		font-size: 0.875em;
	}
	
	#text47 {
		font-size: 0.75em;
	}
	
	#text68 {
		font-size: 0.75em;
	}
	
	#text35 {
		font-size: 0.75em;
	}
	
	#text23 {
		font-size: 0.875em;
	}
	
	#text28 {
		font-size: 0.625em;
	}
	
	#text18 {
		font-size: 0.5em;
	}
	
	#text31 {
		font-size: 0.5em;
	}
	
	#text63 {
		font-size: 0.5em;
	}
	
	#text72 {
		font-size: 0.5em;
	}
	
	#container08 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.125rem;
		--spacing: 0rem;
	}
	
	#container01 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0.65625rem;
		--spacing: 0rem;
	}
	
	#container12 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0rem;
	}
	
	#container12 {
		min-height: 12.5rem;
	}
	
	#container12.columns > .wrapper > .inner > .full {
		min-height: 12.5rem;
	}
	
	#container09 > .wrapper > .inner {
		--gutters: 4.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.5625rem;
	}
	
	#container06 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container32 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container07 > .wrapper > .inner {
		--gutters: 4.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
		--spacing: 0.375rem;
	}
	
	#container34 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container35 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container63 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 0.375rem;
	}
	
	#container29 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	#container20 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.6875rem;
	}
	
	#container73 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 0.375rem;
	}
	
	#container72 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--spacing: 0.375rem;
	}
	
	#container39 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	.container.style1 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	.container.style1.columns > .wrapper > .inner > .full {
		min-height: 10rem;
	}
	
	.container.style2 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-vertical: 0.5625rem;
		--spacing: 0rem;
	}
	
	.container.style2.columns > .wrapper > .inner > .full {
		min-height: 10rem;
	}
	
	#container28 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-vertical: 0.5625rem;
		--spacing: 0rem;
	}
	
	#container28.columns > .wrapper > .inner > .full {
		min-height: 10rem;
	}
	
	#container31 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-vertical: 0.5625rem;
		--spacing: 0rem;
	}
	
	#container31.columns > .wrapper > .inner > .full {
		min-height: 10rem;
	}
	
	#container40 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
	}
	
	#container64 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 0.375rem;
	}
	
	#container14 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	#container17 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
	}
	
	#container61 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container45 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container37 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container13 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
	}
	
	#container65 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 0.375rem;
	}
	
	#container03 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	#container18 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
	}
	
	#container05 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container22 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container60 > .wrapper > .inner {
		--gutters: 3rem;
		--spacing: 0.375rem;
	}
	
	#container44 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.125rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container43 > .wrapper > .inner {
		--gutters: 3rem;
		--spacing: 0.375rem;
	}
	
	#container46 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container15 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
	}
	
	#container66 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 0.375rem;
	}
	
	#container11 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	#container36 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
	}
	
	#container19 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container69 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container70 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.375rem;
	}
	
	#container71 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container48 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.375rem;
	}
	
	#container33 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container68 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 0.375rem;
	}
	
	#container55 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	#container57 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
	}
	
	#container59 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container16 > .wrapper > .inner {
		--gutters: calc(var(--padding-vertical) * 2);
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
	}
	
	#container49 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container52 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--spacing: 0.375rem;
	}
	
	#container53 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.1875rem;
	}
	
	#container47 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.1875rem;
	}
	
	#container50 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--spacing: 0.375rem;
	}
	
	#container54 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.1875rem;
	}
	
	#container51 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.1875rem;
	}
	
	#container67 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 0.375rem;
	}
	
	#container56 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	#container41 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
	}
	
	#container38 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0.375rem;
	}
	
	#container58 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
	}
	
	#container21 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 0.375rem;
	}
	
	#container04 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	#container02 > .wrapper > .inner {
		--gutters: 4.5rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 2.625rem;
		--spacing: 1.21875rem;
	}
	
	#container30 > .wrapper > .inner {
		--gutters: calc(var(--padding-vertical) * 2);
		--padding-vertical: 2.25rem;
		--spacing: 0.1875rem;
	}
	
	#container10 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-vertical: 1.5rem;
		--spacing: 0.1875rem;
	}
	
	#links01 {
		gap: 1.3125rem;
		font-size: 0.875em;
	}
	
	#buttons01 {
		gap: 0.75rem;
	}
	
	#buttons08 {
		gap: 0.75rem;
	}
	
	.buttons.style1 {
		gap: 0.75rem;
	}
	
	#buttons12 {
		gap: 0.75rem;
	}
	
	#buttons11 {
		gap: 0.75rem;
	}
	
	#buttons10 {
		gap: 0.75rem;
	}
	
	#buttons07 {
		gap: 0.75rem;
	}
	
	#buttons06 {
		gap: 0.75rem;
	}
	
	#buttons05 {
		gap: 0.75rem;
	}
	
	#list01 {
		font-size: 0.75em;
	}
	
	#list01 ul li:after {
		width: 0.5rem;
	}
	
	#list01 ul li:before {
		height: 1.3125rem;
		line-height: 1.3125rem;
		min-width: 0.84375rem;
	}
	
	#icons05 {
		gap: 0.5625rem;
	}
	
	#icons06 {
		gap: 0.5625rem;
	}
	
	#icons08 {
		gap: 0.5625rem;
	}
	
	#icons09 {
		gap: 0.5625rem;
	}
	
	#icons02 {
		gap: 0.5625rem;
	}
	
	#icons04 {
		gap: 0.5625rem;
	}
	
	#icons11 {
		gap: 0.5625rem;
	}
	
	#icons12 {
		gap: 0.5625rem;
	}
	
	#icons13 {
		gap: 0.5625rem;
	}
	
	#icons14 {
		gap: 0.5625rem;
	}
	
	#icons03 {
		gap: 1.125rem;
	}
}