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;
	background-color: #F5F5F5;
}

body:after {
	background-color: #EDEDED;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transform: scale(1);
	transition: opacity 1s ease-in-out 0s, visibility 1s 0s;
	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;
	--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);
}

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: color 0.25s ease;
}

#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 {
	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;
	--alignment: center;
	--flex-alignment: center;
	--width: 84rem;
	--padding-horizontal: 3rem;
	--padding-vertical: 2.25rem;
	transition: opacity 1s ease-in-out 0s;
}

#main > .inner {
	border-radius: inherit;
	max-width: 100%;
	position: relative;
	width: var(--width);
	z-index: 1;
	--spacing: 0.75rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

#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(-3rem);
	max-width: calc(100% + 6rem + 0.4725px);
	width: calc(100% + 6rem + 0.4725px);
}

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

#main > .inner > .full:last-child {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	margin-bottom: -2.25rem !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(-3rem);
	max-width: calc(100% + 6rem + 0.4725px);
	width: calc(100% + 6rem + 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 > .active > .full:first-child {
	margin-top: -2.25rem !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#main > .inner > .active {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

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

body.is-loading #main {
	opacity: 0;
}

#main > .inner > section > * {
	transition: opacity 1s ease-in-out 0s;
}

body.is-loading #main > .inner > section > * {
	opacity: 0;
}

#main > .inner > header, #main > .inner > footer {
	transition: opacity 0.25s ease-in-out 0.375s,visibility 0.25s linear 0.375s;
}

#main > .inner > header.hidden, #main > .inner > footer.hidden {
	transition: opacity 0.25s ease-in-out, visibility 0.25s;
	opacity: 0;
	visibility: hidden;
}

#main > .inner > section {
	transition: opacity 0.5s ease-in-out 0.25s,min-height 0.25s ease-in-out, max-height 0.25s ease-in-out;
}

#main > .inner > section.inactive {
	opacity: 0;
	transition: opacity 0.25s ease-in-out;
}

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;
	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);
	}
}

.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;
}

#container01 {
	--padding-horizontal: 4rem;
	--padding-vertical: 0rem;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container01 > .wrapper > .inner {
	--spacing: 0.75rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container01 > .wrapper {
	max-width: 100%;
	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 2.25rem;
}

#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: -2.25rem;
}

#container01.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none;
	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(-1.125rem);
	max-width: none;
	width: calc(100% + 2.25rem + 0.4725px);
}

#container01.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 0.4725px);
}

#container01.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 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%;
}

#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
	border-radius: inherit;
	height: 100%;
}

#container01 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + 1.12rem);
	--alignment: left;
	--flex-alignment: flex-start;
}

#container01 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + 1.12rem);
}

#container08 {
	--padding-horizontal: 4rem;
	--padding-vertical: 0rem;
}

#container08 > .wrapper {
	display: inline-block;
	width: 98rem;
	background-color: transparent;
}

#container08 > .wrapper > .inner {
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#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 2.25rem;
}

#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: -2.25rem;
}

#container08.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none;
	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(-1.125rem);
	max-width: none;
	width: calc(100% + 2.25rem + 0.4725px);
}

#container08.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 0.4725px);
}

#container08.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 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.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
	border-radius: inherit;
	height: 100%;
}

#container06 {
	--padding-horizontal: 4rem;
	--padding-vertical: 0.25rem;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container06 > .wrapper > .inner {
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container06 > .wrapper {
	max-width: 100%;
	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 2.25rem;
}

#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: -2.25rem;
}

#container06.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none;
	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(-1.125rem);
	max-width: none;
	width: calc(100% + 2.25rem + 0.4725px);
}

#container06.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 0.4725px);
}

#container06.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 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.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
	border-radius: inherit;
	height: 100%;
}

#container02 {
	--padding-horizontal: 4rem;
	--padding-vertical: 7rem;
	display: flex;
	width: 100%;
	min-height: 19rem;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container02 > .wrapper > .inner {
	--spacing: 2rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container02 > .wrapper {
	max-width: 64rem;
	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 2.25rem;
}

#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: -2.25rem;
}

#container02.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none;
	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(-1.125rem);
	max-width: none;
	width: calc(100% + 2.25rem + 0.4725px);
}

#container02.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 0.4725px);
}

#container02.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 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;
	min-height: 19rem;
}

#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%;
}

#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
	border-radius: inherit;
	height: 100%;
}

#container07 {
	--padding-horizontal: 4rem;
	--padding-vertical: 7rem;
	display: flex;
	width: 100%;
	min-height: 19rem;
	align-items: center;
	justify-content: center;
	background-color: #EBEBEB;
}

#container07 > .wrapper > .inner {
	--spacing: 1.75rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container07 > .wrapper {
	max-width: 60rem;
	width: 100%;
}

#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: center;
}

#container07.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 2.25rem;
}

#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: -2.25rem;
}

#container07.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none;
	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(-1.125rem);
	max-width: none;
	width: calc(100% + 2.25rem + 0.4725px);
}

#container07.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 0.4725px);
}

#container07.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 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 > .full {
	align-self: stretch;
	min-height: 19rem;
}

#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.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
	border-radius: inherit;
	height: 100%;
}

#container09 {
	--padding-horizontal: 4rem;
	--padding-vertical: 7rem;
	display: flex;
	width: 100%;
	min-height: 19rem;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container09 > .wrapper > .inner {
	--spacing: 2rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container09 > .wrapper {
	max-width: 61rem;
	width: 100%;
}

#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: center;
}

#container09.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 2.25rem;
}

#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: -2.25rem;
}

#container09.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none;
	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(-1.125rem);
	max-width: none;
	width: calc(100% + 2.25rem + 0.4725px);
}

#container09.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 0.4725px);
}

#container09.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 0.4725px);
}

#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 > .full {
	align-self: stretch;
	min-height: 19rem;
}

#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.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
	border-radius: inherit;
	height: 100%;
}

#container04 {
	--padding-horizontal: 4rem;
	--padding-vertical: 7rem;
	display: flex;
	width: 100%;
	min-height: 19rem;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container04 > .wrapper > .inner {
	--spacing: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container04 > .wrapper {
	max-width: 60rem;
	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 2.25rem;
}

#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: -2.25rem;
}

#container04.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none;
	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(-1.125rem);
	max-width: none;
	width: calc(100% + 2.25rem + 0.4725px);
}

#container04.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 0.4725px);
}

#container04.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 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;
	min-height: 19rem;
}

#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%;
}

#container04.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
	border-radius: inherit;
	height: 100%;
}

#container03 {
	--padding-horizontal: 4rem;
	--padding-vertical: 7rem;
	display: flex;
	width: 100%;
	min-height: 19rem;
	align-items: center;
	justify-content: center;
	background-color: #EBEBEB;
}

#container03 > .wrapper > .inner {
	--spacing: 1.875rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container03 > .wrapper {
	max-width: 100%;
	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 2.25rem;
}

#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: -2.25rem;
}

#container03.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none;
	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(-1.125rem);
	max-width: none;
	width: calc(100% + 2.25rem + 0.4725px);
}

#container03.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 0.4725px);
}

#container03.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 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;
	min-height: 19rem;
}

#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%;
}

#container03.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
	border-radius: inherit;
	height: 100%;
}

#container11 {
	--padding-horizontal: 4rem;
	--padding-vertical: 3rem;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container11 > .wrapper > .inner {
	--spacing: 1.875rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container11 > .wrapper {
	max-width: 100%;
	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 2.25rem;
}

#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: -2.25rem;
}

#container11.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none;
	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(-1.125rem);
	max-width: none;
	width: calc(100% + 2.25rem + 0.4725px);
}

#container11.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 0.4725px);
}

#container11.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 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%;
}

#container11.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
	border-radius: inherit;
	height: 100%;
}

#container10 {
	--padding-horizontal: 6rem;
	--padding-vertical: 3.625rem;
	display: flex;
	width: 100%;
	min-height: 19rem;
	align-items: flex-start;
	justify-content: flex-end;
	background-color: transparent;
}

#container10 > .wrapper > .inner {
	--spacing: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container10 > .wrapper {
	max-width: 100%;
	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: flex-start;
}

#container10.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 2.25rem;
}

#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: -2.25rem;
}

#container10.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none;
	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(-1.125rem);
	max-width: none;
	width: calc(100% + 2.25rem + 0.4725px);
}

#container10.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 0.4725px);
}

#container10.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 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 > div:first-child, #container10.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container10.columns > .wrapper > .inner > div:last-child, #container10.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container10.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: 19rem;
}

#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.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
	border-radius: inherit;
	height: 100%;
}

#container10 > .wrapper > .inner > :nth-child(1) {
	width: calc(33.33333% + 0.75rem);
	--alignment: left;
	--flex-alignment: flex-start;
}

#container10 > .wrapper > .inner > :nth-child(2) {
	width: calc(33.33333% + 0.75rem);
	--alignment: left;
	--flex-alignment: flex-start;
}

#container10 > .wrapper > .inner > :nth-child(3) {
	width: calc(33.33333% + 0.75rem);
	--alignment: left;
	--flex-alignment: flex-start;
}

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

#container12 {
	--padding-horizontal: 6rem;
	--padding-vertical: 3.625rem;
	display: flex;
	width: 100%;
	min-height: 19rem;
	align-items: flex-start;
	justify-content: flex-end;
	background-color: transparent;
}

#container12 > .wrapper > .inner {
	--spacing: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container12 > .wrapper {
	max-width: 100%;
	width: 100%;
}

#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: flex-start;
}

#container12.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 2.25rem;
}

#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: -2.25rem;
}

#container12.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none;
	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(-1.125rem);
	max-width: none;
	width: calc(100% + 2.25rem + 0.4725px);
}

#container12.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 0.4725px);
}

#container12.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 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 > div:first-child, #container12.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container12.columns > .wrapper > .inner > div:last-child, #container12.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container12.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: 19rem;
}

#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.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
	border-radius: inherit;
	height: 100%;
}

#container12 > .wrapper > .inner > :nth-child(1) {
	width: calc(33.33333% + 0.75rem);
	--alignment: left;
	--flex-alignment: flex-start;
}

#container12 > .wrapper > .inner > :nth-child(2) {
	width: calc(33.33333% + 0.75rem);
	--alignment: left;
	--flex-alignment: flex-start;
}

#container12 > .wrapper > .inner > :nth-child(3) {
	width: calc(33.33333% + 0.75rem);
	--alignment: left;
	--flex-alignment: flex-start;
}

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

#container13 {
	--padding-horizontal: 4rem;
	--padding-vertical: 8rem;
	display: flex;
	width: 100%;
	min-height: 31rem;
	align-items: center;
	justify-content: center;
	background-attachment: scroll;
	border-radius: 3rem;
	background-image: linear-gradient(to top, rgba(0,0,0,0.122), rgba(0,0,0,0.122)), url('images/container13.jpg');
	background-position: 0% 0%, center;
	background-repeat: repeat, repeat;
	background-size: auto, cover;
}

#container13 > .wrapper > .inner {
	--spacing: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container13 > .wrapper {
	max-width: 100%;
	width: 100%;
}

#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: flex-start;
}

#container13.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 2.25rem;
}

#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: -2.25rem;
}

#container13.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none;
	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(-1.125rem);
	max-width: none;
	width: calc(100% + 2.25rem + 0.4725px);
}

#container13.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 0.4725px);
}

#container13.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 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 > div:first-child, #container13.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container13.columns > .wrapper > .inner > div:last-child, #container13.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container13.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: 31rem;
}

#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.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
	border-radius: inherit;
	height: 100%;
}

#container05 {
	--padding-horizontal: 4rem;
	--padding-vertical: 3.125rem;
}

#container05 > .wrapper {
	display: inline-block;
	width: 97rem;
	background-color: #EBEBEB;
	border-radius: 3rem;
}

#container05 > .wrapper > .inner {
	--spacing: 3rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#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 0.75rem;
}

#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: -0.75rem;
}

#container05.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none;
	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(-0.375rem);
	max-width: none;
	width: calc(100% + 0.75rem + 0.4725px);
}

#container05.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + 0.375rem + 0.4725px);
}

#container05.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + 0.375rem + 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;
	min-height: 15rem;
}

#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%;
}

#container05.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
	border-radius: inherit;
	height: 100%;
}

#container05 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + 0.37rem);
	--alignment: right;
	--flex-alignment: flex-end;
}

#container05 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + 0.37rem);
	--alignment: left;
	--flex-alignment: flex-start;
}

#container14 {
	--padding-horizontal: 4rem;
	--padding-vertical: 8rem;
	display: flex;
	width: 100%;
	min-height: 31rem;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container14 > .wrapper > .inner {
	--spacing: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container14 > .wrapper {
	max-width: 100%;
	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: flex-start;
}

#container14.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 2.25rem;
}

#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: -2.25rem;
}

#container14.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none;
	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(-1.125rem);
	max-width: none;
	width: calc(100% + 2.25rem + 0.4725px);
}

#container14.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 0.4725px);
}

#container14.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + 1.125rem + 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 > div:first-child, #container14.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container14.columns > .wrapper > .inner > div:last-child, #container14.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container14.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: 31rem;
}

#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%;
}

#container14.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
	border-radius: inherit;
	height: 100%;
}

.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: 7.75rem;
	border-radius: 1.25rem;
	transition: none;
}

#image04 .frame img {
	transition: none;
}

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

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

#image08 .frame {
	width: 13.125rem;
	transition: none;
}

#image08 .frame img {
	transition: none;
}

#image01 .frame {
	width: 49.5rem;
	border-radius: 1.25rem;
	transition: none;
}

#image01 .frame img {
	transition: none;
}

#image02 .frame {
	width: 49.5rem;
	border-radius: 1.25rem;
	transition: none;
}

#image02 .frame img {
	transition: none;
}

#image06 .frame {
	width: 49.5rem;
	border-radius: 1.25rem;
	transition: none;
}

#image06 .frame img {
	transition: none;
}

#image07 .frame {
	width: 49.5rem;
	border-radius: 1.25rem;
	transition: none;
}

#image07 .frame img {
	transition: none;
}

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

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

#image05 .frame {
	width: 13.125rem;
	transition: none;
}

#image05 .frame img {
	transition: none;
}

#image03 .frame {
	width: 51.75rem;
	border-radius: 2.25rem;
	transition: none;
}

#image03 .frame img {
	transition: none;
}

#image09 .frame {
	width: 9rem;
	border-radius: 1.25rem;
	transition: none;
}

#image09 .frame img {
	transition: none;
}

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

h1 br + br, h2 br + br, h3 br + br, p br + br {
	display: block;
	content: ' ';
}

h1 .li, h2 .li, h3 .li, p .li {
	display: list-item;
	margin: 0.75em 0 0 1em;
	padding-left: 0.5em;
}

#text15 br + br {
	margin-top: 0.9rem;
}

#text15 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

#text15 a {
	text-decoration: underline;
}

#text15 a:hover {
	text-decoration: none;
}

#text12 br + br {
	margin-top: 0.9rem;
}

#text12 {
	color: #666666;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 400;
}

#text12 a {
	text-decoration: underline;
}

#text12 a:hover {
	text-decoration: none;
}

#text09 br + br {
	margin-top: 0.9rem;
}

#text09 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

#text09 a {
	text-decoration: underline;
}

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

#text17 br + br {
	margin-top: 0.9rem;
}

#text17 {
	color: #262626;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5em;
	line-height: 1.5;
	font-weight: 500;
}

#text17 a {
	text-decoration: underline;
}

#text17 a:hover {
	text-decoration: none;
}

#text03 br + br {
	margin-top: 0.9rem;
}

#text03 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

#text03 a {
	text-decoration: underline;
}

#text03 a:hover {
	text-decoration: none;
}

#text18 br + br {
	margin-top: 0.9rem;
}

#text18 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 500;
}

#text18 a {
	text-decoration: underline;
}

#text18 a:hover {
	text-decoration: none;
}

h1.style1, h2.style1, h3.style1, p.style1 br + br {
	margin-top: 0.9rem;
}

h1.style1, h2.style1, h3.style1, p.style1 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 500;
}

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

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

#text08 br + br {
	margin-top: 0.9rem;
}

#text08 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

#text08 a {
	text-decoration: underline;
}

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

#text01 br + br {
	margin-top: 0.9rem;
}

#text01 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.25em;
	line-height: 1.5;
	font-weight: 400;
}

#text01 a {
	text-decoration: underline;
}

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

#text14 br + br {
	margin-top: 0.9rem;
}

#text14 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 500;
}

#text14 a {
	text-decoration: underline;
}

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

#text05 br + br {
	margin-top: 0.9rem;
}

#text05 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 400;
}

#text05 a {
	text-decoration: underline;
}

#text05 a:hover {
	text-decoration: none;
}

#text06 br + br {
	margin-top: 0.9rem;
}

#text06 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

#text06 a {
	text-decoration: underline;
}

#text06 a:hover {
	text-decoration: none;
}

#text48 br + br {
	margin-top: 0.9rem;
}

#text48 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

#text48 a {
	text-decoration: underline;
}

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

#text49 br + br {
	margin-top: 0.9rem;
}

#text49 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

#text49 a {
	text-decoration: underline;
}

#text49 a:hover {
	text-decoration: none;
}

#text11 br + br {
	margin-top: 0.9rem;
}

#text11 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 500;
}

#text11 a {
	text-decoration: underline;
}

#text11 a:hover {
	text-decoration: none;
}

#text02 br + br {
	margin-top: 0.9rem;
}

#text02 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

#text02 a {
	text-decoration: underline;
}

#text02 a:hover {
	text-decoration: none;
}

#text13 br + br {
	margin-top: 0.9rem;
}

#text13 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

#text13 a {
	text-decoration: underline;
}

#text13 a:hover {
	text-decoration: none;
}

#text30 br + br {
	margin-top: 0.9rem;
}

#text30 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5em;
	line-height: 1.5;
	font-weight: 500;
}

#text30 a {
	text-decoration: underline;
}

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

#text07 br + br {
	margin-top: 0.9rem;
}

#text07 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 500;
}

#text07 a {
	text-decoration: underline;
}

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

#text22 br + br {
	margin-top: 0.9rem;
}

#text22 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 500;
}

#text22 a {
	text-decoration: underline;
}

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

#text23 br + br {
	margin-top: 0.9rem;
}

#text23 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 600;
}

#text23 a {
	text-decoration: underline;
}

#text23 a:hover {
	text-decoration: none;
}

#text24 br + br {
	margin-top: 0.9rem;
}

#text24 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

#text24 a {
	text-decoration: underline;
}

#text24 a:hover {
	text-decoration: none;
}

#text26 br + br {
	margin-top: 0.9rem;
}

#text26 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

#text26 a {
	text-decoration: underline;
}

#text26 a:hover {
	text-decoration: none;
}

#text25 br + br {
	margin-top: 0.9rem;
}

#text25 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

#text25 a {
	text-decoration: underline;
}

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

#text27 br + br {
	margin-top: 0.9rem;
}

#text27 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

#text27 a {
	text-decoration: underline;
}

#text27 a:hover {
	text-decoration: none;
}

#text28 br + br {
	margin-top: 0.9rem;
}

#text28 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

#text28 a {
	text-decoration: underline;
}

#text28 a:hover {
	text-decoration: none;
}

#text29 br + br {
	margin-top: 0.9rem;
}

#text29 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

#text29 a {
	text-decoration: underline;
}

#text29 a:hover {
	text-decoration: none;
}

#text04 br + br {
	margin-top: 0.9rem;
}

#text04 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

#text04 a {
	text-decoration: underline;
}

#text04 a:hover {
	text-decoration: none;
}

#text20 br + br {
	margin-top: 0.9rem;
}

#text20 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

#text20 a {
	text-decoration: underline;
}

#text20 a:hover {
	text-decoration: none;
}

#text19 br + br {
	margin-top: 0.9rem;
}

#text19 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.25em;
	line-height: 1.5;
	font-weight: 500;
}

#text19 a {
	text-decoration: underline;
}

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

#text21 br + br {
	margin-top: 0.9rem;
}

#text21 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

#text21 a {
	text-decoration: underline;
}

#text21 a:hover {
	text-decoration: none;
}

#text31 br + br {
	margin-top: 0.9rem;
}

#text31 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5em;
	line-height: 1.5;
	font-weight: 400;
}

#text31 a {
	text-decoration: underline;
}

#text31 a:hover {
	text-decoration: none;
}

#text40 br + br {
	margin-top: 0.9rem;
}

#text40 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

#text40 a {
	text-decoration: underline;
}

#text40 a:hover {
	text-decoration: none;
}

#text41 br + br {
	margin-top: 0.975rem;
}

#text41 {
	text-transform: lowercase;
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 400;
}

#text41 a {
	text-decoration: underline;
}

#text41 a:hover {
	text-decoration: none;
}

#text42 br + br {
	margin-top: 0.9rem;
}

#text42 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

#text42 a {
	text-decoration: underline;
}

#text42 a:hover {
	text-decoration: none;
}

#text43 br + br {
	margin-top: 0.975rem;
}

#text43 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 400;
}

#text43 a {
	text-decoration: underline;
}

#text43 a:hover {
	text-decoration: none;
}

#text44 br + br {
	margin-top: 0.975rem;
}

#text44 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 400;
}

#text44 a {
	text-decoration: underline;
}

#text44 a:hover {
	text-decoration: none;
}

#text38 br + br {
	margin-top: 0.9rem;
}

#text38 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

#text38 a {
	text-decoration: underline;
}

#text38 a:hover {
	text-decoration: none;
}

#text39 br + br {
	margin-top: 0.9rem;
}

#text39 {
	text-transform: lowercase;
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.625em;
	line-height: 1.5;
	font-weight: 400;
}

#text39 a {
	text-decoration: underline;
}

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

#text32 br + br {
	margin-top: 0.9rem;
}

#text32 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

#text32 a {
	text-decoration: underline;
}

#text32 a:hover {
	text-decoration: none;
}

#text33 br + br {
	margin-top: 0.9rem;
}

#text33 {
	text-transform: lowercase;
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.625em;
	line-height: 1.5;
	font-weight: 400;
}

#text33 a {
	text-decoration: underline;
}

#text33 a:hover {
	text-decoration: none;
}

#text34 br + br {
	margin-top: 0.9rem;
}

#text34 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

#text34 a {
	text-decoration: underline;
}

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

#text35 br + br {
	margin-top: 0.975rem;
}

#text35 {
	text-transform: lowercase;
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 400;
}

#text35 a {
	text-decoration: underline;
}

#text35 a:hover {
	text-decoration: none;
}

#text36 br + br {
	margin-top: 0.9rem;
}

#text36 {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

#text36 a {
	text-decoration: underline;
}

#text36 a:hover {
	text-decoration: none;
}

#text37 br + br {
	margin-top: 0.975rem;
}

#text37 {
	text-transform: lowercase;
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.625em;
	line-height: 1.625;
	font-weight: 400;
}

#text37 a {
	text-decoration: underline;
}

#text37 a:hover {
	text-decoration: none;
}

#text10 br + br {
	margin-top: 0.9rem;
}

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

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

#text10 {
	color: #919191;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 300;
}

#text10 a {
	text-decoration: underline;
}

#text10 a:hover {
	text-decoration: none;
}

#text46 br + br {
	margin-top: 0.9rem;
}

#text46 {
	color: #000000;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5em;
	line-height: 1.5;
	font-weight: 400;
}

#text46 a {
	text-decoration: underline;
}

#text46 a:hover {
	text-decoration: none;
}

#text47 br + br {
	margin-top: 0.9rem;
}

#text47 {
	color: #000000;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 500;
}

#text47 a {
	text-decoration: underline;
}

#text47 a:hover {
	text-decoration: none;
}

#text45 br + br {
	margin-top: 0.9rem;
}

#text45 {
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5em;
	line-height: 1.5;
	font-weight: 400;
}

#text45 a {
	text-decoration: underline;
}

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

.buttons {
	cursor: default;
	display: flex;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	padding: 0;
}

.buttons li {
	max-width: 100%;
}

.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: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons01 li a {
	display: flex;
	width: auto;
	height: 2.625rem;
	line-height: 2.625rem;
	padding: 0 1.3125rem;
	vertical-align: middle;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.625em;
	font-weight: 400;
	border-radius: 2rem;
	direction: var(--site-language-direction);
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons01 .button {
	background-color: #E8E8E8;
	color: #000000;
}

#buttons01 .button:hover {
	background-color: #9E9E9E !important;
}

#buttons01 .n07 {
	background-color: #000000;
	color: #FFFFFF;
}

#buttons01 .n07:hover {
	background-color: #3D3D3D !important;
}

.buttons.style1 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons.style1:not(:first-child) {
	margin-top: rem !important;
}

.buttons.style1:not(:last-child) {
	margin-bottom: rem !important;
}

.buttons.style1 li a {
	display: flex;
	width: auto;
	height: 3.25rem;
	line-height: 3.25rem;
	padding: 0 1.625rem;
	vertical-align: middle;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.625em;
	font-weight: 500;
	border-radius: 1.75rem;
	direction: var(--site-language-direction);
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons.style1 .button {
	background-color: #000000;
	color: #FFFFFF;
}

.buttons.style1 .button:hover {
	background-color: #7A7A7A !important;
}

#buttons05 .n02 {
	background-color: #D4D4D4;
	color: #000000;
}

#buttons06 {
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons06 li a {
	display: flex;
	width: auto;
	height: 3rem;
	line-height: 3rem;
	padding: 0 1.5rem;
	vertical-align: middle;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.625em;
	font-weight: 400;
	border-radius: 2rem;
	direction: var(--site-language-direction);
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons06 .button {
	background-color: #E3E3E3;
	color: #000000;
}

#buttons06 .button:hover {
	background-color: #858585 !important;
}

#buttons02 {
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons02 li a {
	display: flex;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.625em;
	font-weight: 400;
	border-radius: 2rem;
	direction: var(--site-language-direction);
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons02 .button {
	background-color: #000000;
	color: #FFFFFF;
}

#buttons02 .button:hover {
	background-color: #C9C9C9 !important;
}

#buttons04 .n02 {
	background-color: #D4D4D4;
	color: #000000;
}

#buttons07 {
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons07 li a {
	display: flex;
	width: auto;
	height: 3rem;
	line-height: 3rem;
	padding: 0 1.5rem;
	vertical-align: middle;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.625em;
	font-weight: 400;
	border-radius: 2rem;
	direction: var(--site-language-direction);
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons07 .button {
	background-color: #E3E3E3;
	color: #000000;
}

#buttons07 .button:hover {
	background-color: #858585 !important;
}

#buttons03 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons03 li a {
	display: flex;
	width: auto;
	height: 3.25rem;
	line-height: 3.25rem;
	padding: 0 1.625rem;
	vertical-align: middle;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.625em;
	font-weight: 500;
	border-radius: 1.75rem;
	direction: var(--site-language-direction);
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons03 .button {
	background-color: #D9D9D9;
	color: #000000;
}

.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;
}

#icons01 {
	font-size: 1.25em;
	gap: 0.75rem;
}

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

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

#icons01 li a {
	border-radius: 1.75rem;
	height: 1em;
	width: 1em;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons01 li a svg {
	height: 100%;
	width: 100%;
	transition: fill 0.25s ease;
}

#icons01 a svg {
	fill: #666666;
}

#icons01 li a + svg {
	transition: fill 0.25s ease, stroke 0.25s ease;
}

#icons03 {
	font-size: 1.25em;
	gap: 0.75rem;
}

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

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

#icons03 li a {
	border-radius: 1.75rem;
	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: #666666;
}

#icons03 li a + svg {
	transition: fill 0.25s ease, stroke 0.25s ease;
}

#icons04 {
	font-size: 1.25em;
	gap: 0.75rem;
}

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

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

#icons04 li a {
	border-radius: 1.75rem;
	height: 1em;
	width: 1em;
	transition: 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: #666666;
}

#icons04 li a + svg {
	transition: fill 0.25s ease, stroke 0.25s ease;
}

#icons05 {
	font-size: 1.25em;
	gap: 0.75rem;
}

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

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

#icons05 li a {
	border-radius: 1.75rem;
	height: 1em;
	width: 1em;
	transition: 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: #666666;
}

#icons05 li a + svg {
	transition: fill 0.25s ease, stroke 0.25s ease;
}

#icons06 {
	font-size: 1.25em;
	gap: 0.75rem;
}

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

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

#icons06 li a {
	border-radius: 1.75rem;
	height: 1em;
	width: 1em;
	transition: 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: #666666;
}

#icons06 li a + svg {
	transition: fill 0.25s ease, stroke 0.25s ease;
}

#icons02 {
	font-size: 1.25em;
	gap: 0.75rem;
}

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

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

#icons02 li a {
	border-radius: 1.75rem;
	height: 1em;
	width: 1em;
	transition: 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: #666666;
}

#icons02 li a + svg {
	transition: fill 0.25s ease, stroke 0.25s ease;
}

#icons07 {
	font-size: 1.25em;
	gap: 1.25rem;
}

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

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

#icons07 li a {
	border-radius: 1.75rem;
	height: 1em;
	width: 1em;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons07 li a svg {
	height: 100%;
	width: 100%;
	transition: fill 0.25s ease;
}

#icons07 a svg {
	fill: #666666;
}

#icons07 li a + svg {
	transition: fill 0.25s ease, stroke 0.25s ease;
}

.slideshow {
	display: block;
	max-width: 100%;
	position: relative;
}

.slideshow .content {
	display: inline-block;
	max-width: 100%;
	vertical-align: top;
}

.slideshow .bg {
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	vertical-align: top;
	width: 100%;
	z-index: 1;
}

.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 .bg {
	width: 86.375rem;
	height: 33.25rem;
	border-radius: 2rem;
	background-color: #000000;
}

#slideshow01 .bg > .slow {
	animation-duration: 60s;
}

#slideshow01 .bg > .normal {
	animation-duration: 45s;
}

#slideshow01 .bg > .fast {
	animation-duration: 30s;
}

#slideshow01 .bg > div {
	transition-duration: 1s;
}

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

@media (max-width: 1680px) {
	html {
		font-size: 13pt;
	}
}

@media (max-width: 1280px) {
	html {
		font-size: 13pt;
	}
	
	
	
	#slideshow01 .bg > .slow {
		animation-duration: 45s;
	}
	
	#slideshow01 .bg > .normal {
		animation-duration: 33.75s;
	}
	
	#slideshow01 .bg > .fast {
		animation-duration: 22.5s;
	}
}

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

@media (max-width: 980px) {
	html {
		font-size: 11pt;
	}
}

@media (max-width: 736px) {
	html {
		font-size: 11pt;
	}
	
	#main {
		--padding-horizontal: 2rem;
		--padding-vertical: 2.25rem;
	}
	
	#main > .inner {
		--spacing: 0.75rem;
	}
	
	#main > .inner > .full {
		margin-left: calc(-2rem);
		max-width: calc(100% + 4rem + 0.4725px);
		width: calc(100% + 4rem + 0.4725px);
	}
	
	#main > .inner > .full:first-child {
		margin-top: -2.25rem !important;
	}
	
	#main > .inner > .full:last-child {
		margin-bottom: -2.25rem !important;
	}
	
	#main > .inner > .full.screen {
		margin-left: -50vw;
	}
	
	#main > .inner > * > .full {
		margin-left: calc(-2rem);
		max-width: calc(100% + 4rem + 0.4725px);
		width: calc(100% + 4rem + 0.4725px);
	}
	
	#main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	#main > .inner > .active > .full:first-child {
		margin-top: -2.25rem !important;
	}
	
	#main > .inner > .active > .full:last-child {
		margin-bottom: -2.25rem !important;
	}
	
	#container01 {
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
	}
	
	#container01 > .wrapper > .inner {
		--spacing: 0.75rem;
	}
	
	#container01.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container01.columns > .wrapper > .inner > span {
		display: none;
	}
	
	#container01.columns > .wrapper > .inner > * {
		padding: 1.125rem 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > div.after-spacer {
		padding-top: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > div.before-spacer {
		padding-bottom: 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: -1.125rem !important;
	}
	
	#container01.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -1.125rem !important;
	}
	
	#container01.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container01.columns > .wrapper > .inner > div:first-of-type, #container01.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type, #container01.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-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: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type, #container01.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-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: 100%;
	}
	
	#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
		height: auto;
	}
	
	#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > iframe {
		height: 100%;
	}
	
	#container01 > .wrapper > .inner > :nth-child(1) {
		width: 100% !important;
		--alignment: left;
		--flex-alignment: flex-start;
		min-height: 100% !important;
	}
	
	#container01 > .wrapper > .inner > :nth-child(2) {
		width: 100% !important;
		min-height: 100% !important;
	}
	
	#container08 {
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
	}
	
	#container08 > .wrapper > .inner {
		--spacing: 0.25rem;
	}
	
	#container08.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container08.columns > .wrapper > .inner > span {
		display: none;
	}
	
	#container08.columns > .wrapper > .inner > * {
		padding: 1.125rem 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > div.after-spacer {
		padding-top: 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > div.before-spacer {
		padding-bottom: 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: -1.125rem !important;
	}
	
	#container08.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -1.125rem !important;
	}
	
	#container08.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container08.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container08.columns > .wrapper > .inner > div:first-of-type, #container08.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container08.columns > .wrapper > .inner > div:last-of-type, #container08.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-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: 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > div:last-of-type, #container08.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-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: 100%;
	}
	
	#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
		height: auto;
	}
	
	#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > iframe {
		height: 100%;
	}
	
	#container06 {
		--padding-horizontal: 2rem;
		--padding-vertical: 0.25rem;
	}
	
	#container06 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	#container06.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container06.columns > .wrapper > .inner > span {
		display: none;
	}
	
	#container06.columns > .wrapper > .inner > * {
		padding: 1.125rem 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > div.after-spacer {
		padding-top: 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > div.before-spacer {
		padding-bottom: 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: -1.125rem !important;
	}
	
	#container06.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -1.125rem !important;
	}
	
	#container06.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container06.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container06.columns > .wrapper > .inner > div:first-of-type, #container06.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container06.columns > .wrapper > .inner > div:last-of-type, #container06.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-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: 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > div:last-of-type, #container06.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-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: 100%;
	}
	
	#container06.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
		height: auto;
	}
	
	#container06.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > iframe {
		height: 100%;
	}
	
	#container02 {
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
		min-height: 14.25rem;
	}
	
	#container02 > .wrapper > .inner {
		--spacing: 2rem;
	}
	
	#container02.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container02.columns > .wrapper > .inner > span {
		display: none;
	}
	
	#container02.columns > .wrapper > .inner > * {
		padding: 1.125rem 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > div.after-spacer {
		padding-top: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > div.before-spacer {
		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: -1.125rem !important;
	}
	
	#container02.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -1.125rem !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 {
		min-height: 14.25rem;
	}
	
	#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: 100%;
	}
	
	#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
		height: auto;
	}
	
	#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > iframe {
		height: 100%;
	}
	
	#container07 {
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
		min-height: 14.25rem;
	}
	
	#container07 > .wrapper > .inner {
		--spacing: 1.75rem;
	}
	
	#container07.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container07.columns > .wrapper > .inner > span {
		display: none;
	}
	
	#container07.columns > .wrapper > .inner > * {
		padding: 1.125rem 0 !important;
	}
	
	#container07.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container07.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container07.columns > .wrapper > .inner > div.after-spacer {
		padding-top: 0 !important;
	}
	
	#container07.columns > .wrapper > .inner > div.before-spacer {
		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: -1.125rem !important;
	}
	
	#container07.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -1.125rem !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 {
		min-height: 14.25rem;
	}
	
	#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: 100%;
	}
	
	#container07.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
		height: auto;
	}
	
	#container07.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > iframe {
		height: 100%;
	}
	
	#container09 {
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
		min-height: 14.25rem;
	}
	
	#container09 > .wrapper > .inner {
		--spacing: 2rem;
	}
	
	#container09.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container09.columns > .wrapper > .inner > span {
		display: none;
	}
	
	#container09.columns > .wrapper > .inner > * {
		padding: 1.125rem 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > div.after-spacer {
		padding-top: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > div.before-spacer {
		padding-bottom: 0 !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: -1.125rem !important;
	}
	
	#container09.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -1.125rem !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 {
		min-height: 14.25rem;
	}
	
	#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: 100%;
	}
	
	#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
		height: auto;
	}
	
	#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > iframe {
		height: 100%;
	}
	
	#container04 {
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
		min-height: 14.25rem;
	}
	
	#container04 > .wrapper > .inner {
		--spacing: 1rem;
	}
	
	#container04.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container04.columns > .wrapper > .inner > span {
		display: none;
	}
	
	#container04.columns > .wrapper > .inner > * {
		padding: 1.125rem 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > div.after-spacer {
		padding-top: 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > div.before-spacer {
		padding-bottom: 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: -1.125rem !important;
	}
	
	#container04.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -1.125rem !important;
	}
	
	#container04.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container04.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container04.columns > .wrapper > .inner > div:first-of-type, #container04.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container04.columns > .wrapper > .inner > div:last-of-type, #container04.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-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: 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > div:last-of-type, #container04.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > .full {
		min-height: 14.25rem;
	}
	
	#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: 100%;
	}
	
	#container04.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
		height: auto;
	}
	
	#container04.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > iframe {
		height: 100%;
	}
	
	#container03 {
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
		min-height: 14.25rem;
	}
	
	#container03 > .wrapper > .inner {
		--spacing: 1.875rem;
	}
	
	#container03.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container03.columns > .wrapper > .inner > span {
		display: none;
	}
	
	#container03.columns > .wrapper > .inner > * {
		padding: 1.125rem 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > div.after-spacer {
		padding-top: 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > div.before-spacer {
		padding-bottom: 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: -1.125rem !important;
	}
	
	#container03.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -1.125rem !important;
	}
	
	#container03.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container03.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container03.columns > .wrapper > .inner > div:first-of-type, #container03.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container03.columns > .wrapper > .inner > div:last-of-type, #container03.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-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: 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > div:last-of-type, #container03.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > .full {
		min-height: 14.25rem;
	}
	
	#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: 100%;
	}
	
	#container03.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
		height: auto;
	}
	
	#container03.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > iframe {
		height: 100%;
	}
	
	#container11 {
		--padding-horizontal: 2rem;
		--padding-vertical: 3rem;
	}
	
	#container11 > .wrapper > .inner {
		--spacing: 1.875rem;
	}
	
	#container11.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container11.columns > .wrapper > .inner > span {
		display: none;
	}
	
	#container11.columns > .wrapper > .inner > * {
		padding: 1.125rem 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > div.after-spacer {
		padding-top: 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > div.before-spacer {
		padding-bottom: 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: -1.125rem !important;
	}
	
	#container11.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -1.125rem !important;
	}
	
	#container11.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container11.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container11.columns > .wrapper > .inner > div:first-of-type, #container11.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container11.columns > .wrapper > .inner > div:last-of-type, #container11.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-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: 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > div:last-of-type, #container11.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-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: 100%;
	}
	
	#container11.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
		height: auto;
	}
	
	#container11.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > iframe {
		height: 100%;
	}
	
	#container10 {
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
		min-height: 14.25rem;
	}
	
	#container10 > .wrapper > .inner {
		--spacing: 1rem;
	}
	
	#container10.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container10.columns > .wrapper > .inner > span {
		display: none;
	}
	
	#container10.columns > .wrapper > .inner > * {
		padding: 1.125rem 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > div.after-spacer {
		padding-top: 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > div.before-spacer {
		padding-bottom: 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: -1.125rem !important;
	}
	
	#container10.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -1.125rem !important;
	}
	
	#container10.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container10.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container10.columns > .wrapper > .inner > div:first-of-type, #container10.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container10.columns > .wrapper > .inner > div:last-of-type, #container10.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-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: 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > div:last-of-type, #container10.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > .full {
		min-height: 14.25rem;
	}
	
	#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: 100%;
	}
	
	#container10.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
		height: auto;
	}
	
	#container10.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > iframe {
		height: 100%;
	}
	
	#container10 > .wrapper > .inner > :nth-child(1) {
		width: 100% !important;
		--alignment: left;
		--flex-alignment: flex-start;
		min-height: 100% !important;
	}
	
	#container10 > .wrapper > .inner > :nth-child(2) {
		width: 100% !important;
		--alignment: left;
		--flex-alignment: flex-start;
		min-height: 100% !important;
	}
	
	#container10 > .wrapper > .inner > :nth-child(3) {
		width: 100% !important;
		--alignment: left;
		--flex-alignment: flex-start;
		min-height: 100% !important;
	}
	
	#container12:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#container12 {
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
		min-height: 14.25rem;
	}
	
	#container12 > .wrapper > .inner {
		--spacing: 1rem;
	}
	
	#container12.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container12.columns > .wrapper > .inner > span {
		display: none;
	}
	
	#container12.columns > .wrapper > .inner > * {
		padding: 1.125rem 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > div.after-spacer {
		padding-top: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > div.before-spacer {
		padding-bottom: 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: -1.125rem !important;
	}
	
	#container12.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -1.125rem !important;
	}
	
	#container12.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container12.columns > .wrapper > .inner > div:first-of-type, #container12.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type, #container12.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-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: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type, #container12.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > .full {
		min-height: 14.25rem;
	}
	
	#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: 100%;
	}
	
	#container12.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
		height: auto;
	}
	
	#container12.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > iframe {
		height: 100%;
	}
	
	#container12 > .wrapper > .inner > :nth-child(1) {
		width: 100% !important;
		--alignment: left;
		--flex-alignment: flex-start;
		min-height: 100% !important;
	}
	
	#container12 > .wrapper > .inner > :nth-child(2) {
		width: 100% !important;
		--alignment: left;
		--flex-alignment: flex-start;
		min-height: 100% !important;
	}
	
	#container12 > .wrapper > .inner > :nth-child(3) {
		width: 100% !important;
		--alignment: left;
		--flex-alignment: flex-start;
		min-height: 100% !important;
	}
	
	#container13:not(:last-child) {
		margin-bottom: 1.96875rem !important;
	}
	
	#container13 {
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
		min-height: 23.25rem;
	}
	
	#container13 > .wrapper > .inner {
		--spacing: 1rem;
	}
	
	#container13.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container13.columns > .wrapper > .inner > span {
		display: none;
	}
	
	#container13.columns > .wrapper > .inner > * {
		padding: 1.125rem 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > div.after-spacer {
		padding-top: 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > div.before-spacer {
		padding-bottom: 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: -1.125rem !important;
	}
	
	#container13.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -1.125rem !important;
	}
	
	#container13.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container13.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container13.columns > .wrapper > .inner > div:first-of-type, #container13.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container13.columns > .wrapper > .inner > div:last-of-type, #container13.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-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: 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > div:last-of-type, #container13.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > .full {
		min-height: 23.25rem;
	}
	
	#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: 100%;
	}
	
	#container13.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
		height: auto;
	}
	
	#container13.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > iframe {
		height: 100%;
	}
	
	#container05 {
		--padding-horizontal: 2rem;
		--padding-vertical: 3.125rem;
	}
	
	#container05 > .wrapper > .inner {
		--spacing: 3rem;
	}
	
	#container05.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container05.columns > .wrapper > .inner > span {
		display: none;
	}
	
	#container05.columns > .wrapper > .inner > * {
		padding: 0.375rem 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > div.after-spacer {
		padding-top: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > div.before-spacer {
		padding-bottom: 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: -0.375rem !important;
	}
	
	#container05.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -0.375rem !important;
	}
	
	#container05.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container05.columns > .wrapper > .inner > div:first-of-type, #container05.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type, #container05.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-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: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type, #container05.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > .full {
		min-height: 11.25rem;
	}
	
	#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: 100%;
	}
	
	#container05.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
		height: auto;
	}
	
	#container05.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > iframe {
		height: 100%;
	}
	
	#container05 > .wrapper > .inner > :nth-child(1) {
		width: 100% !important;
		--alignment: right;
		--flex-alignment: flex-end;
		min-height: 100% !important;
	}
	
	#container05 > .wrapper > .inner > :nth-child(2) {
		width: 100% !important;
		--alignment: left;
		--flex-alignment: flex-start;
		min-height: 100% !important;
	}
	
	#container14 {
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
		min-height: 23.25rem;
	}
	
	#container14 > .wrapper > .inner {
		--spacing: 1rem;
	}
	
	#container14.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container14.columns > .wrapper > .inner > span {
		display: none;
	}
	
	#container14.columns > .wrapper > .inner > * {
		padding: 1.125rem 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > div.after-spacer {
		padding-top: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > div.before-spacer {
		padding-bottom: 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: -1.125rem !important;
	}
	
	#container14.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -1.125rem !important;
	}
	
	#container14.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container14.columns > .wrapper > .inner > div:first-of-type, #container14.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type, #container14.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-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: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type, #container14.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > .full {
		min-height: 23.25rem;
	}
	
	#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: 100%;
	}
	
	#container14.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
		height: auto;
	}
	
	#container14.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > iframe {
		height: 100%;
	}
	
	#image04 .frame {
		width: 7.75rem;
	}
	
	#image08:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	#image08:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	#image08 .frame {
		width: 13.125rem;
	}
	
	#image01 .frame {
		width: 49.5rem;
	}
	
	#image02 .frame {
		width: 49.5rem;
	}
	
	#image06 .frame {
		width: 49.5rem;
	}
	
	#image07 .frame {
		width: 49.5rem;
	}
	
	#image05:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	#image05:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	#image05 .frame {
		width: 13.125rem;
	}
	
	#image03 .frame {
		width: 51.75rem;
	}
	
	#image09 .frame {
		width: 9rem;
	}
	
	#text15 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text12 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	#text09 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text17 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.5;
	}
	
	#text03 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text18 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	h1.style1, h2.style1, h3.style1, p.style1 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	#text08 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text01 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.5;
	}
	
	#text14 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	#text05 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	#text06 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	#text48 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text49 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text11 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	#text02 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text13 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text30 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.5;
	}
	
	#text07 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	#text22 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	#text23 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	#text24 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	#text26 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	#text25 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	#text27 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	#text28 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	#text29 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	#text04 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	#text20 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	#text19 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.5;
	}
	
	#text21 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text31 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.5;
	}
	
	#text40 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text41 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text42 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text43 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text44 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text38 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text39 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.5;
	}
	
	#text32 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text33 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.5;
	}
	
	#text34 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text35 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text36 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	#text37 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.625;
	}
	
	#text10:not(:first-child) {
		margin-top: 1.03125rem !important;
	}
	
	#text10:not(:last-child) {
		margin-bottom: 1.03125rem !important;
	}
	
	#text10 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	#text46 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.5;
	}
	
	#text47 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	#text45 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.5;
	}
	
	#buttons01:not(:first-child) {
		margin-top: 0.515625rem !important;
	}
	
	#buttons01:not(:last-child) {
		margin-bottom: 0.515625rem !important;
	}
	
	#buttons01 li a {
		letter-spacing: 0rem;
		font-size: 0.625em;
	}
	
	.buttons.style1:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.buttons.style1:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.buttons.style1 li a {
		letter-spacing: 0rem;
		font-size: 0.625em;
	}
	
	#buttons06:not(:first-child) {
		margin-top: 0.890625rem !important;
	}
	
	#buttons06:not(:last-child) {
		margin-bottom: 0.890625rem !important;
	}
	
	#buttons06 li a {
		letter-spacing: 0rem;
		font-size: 0.625em;
	}
	
	#buttons02:not(:first-child) {
		margin-top: 1.828125rem !important;
	}
	
	#buttons02:not(:last-child) {
		margin-bottom: 1.828125rem !important;
	}
	
	#buttons02 li a {
		letter-spacing: 0rem;
		font-size: 0.625em;
	}
	
	#buttons07:not(:first-child) {
		margin-top: 1.734375rem !important;
	}
	
	#buttons07:not(:last-child) {
		margin-bottom: 1.734375rem !important;
	}
	
	#buttons07 li a {
		letter-spacing: 0rem;
		font-size: 0.625em;
	}
	
	#buttons03:not(:first-child) {
		margin-top: 1.03125rem !important;
	}
	
	#buttons03:not(:last-child) {
		margin-bottom: 1.03125rem !important;
	}
	
	#buttons03 li a {
		letter-spacing: 0rem;
		font-size: 0.625em;
	}
	
	#icons01 {
		font-size: 1.25em;
		gap: 0.75rem;
	}
	
	#icons01:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	#icons01:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	#icons03 {
		font-size: 1.25em;
		gap: 0.75rem;
	}
	
	#icons03:not(:first-child) {
		margin-top: 1.03125rem !important;
	}
	
	#icons03:not(:last-child) {
		margin-bottom: 1.03125rem !important;
	}
	
	#icons04 {
		font-size: 1.25em;
		gap: 0.75rem;
	}
	
	#icons04:not(:first-child) {
		margin-top: 1.03125rem !important;
	}
	
	#icons04:not(:last-child) {
		margin-bottom: 1.03125rem !important;
	}
	
	#icons05 {
		font-size: 1.25em;
		gap: 0.75rem;
	}
	
	#icons05:not(:first-child) {
		margin-top: 1.03125rem !important;
	}
	
	#icons05:not(:last-child) {
		margin-bottom: 1.03125rem !important;
	}
	
	#icons06 {
		font-size: 1.25em;
		gap: 0.75rem;
	}
	
	#icons06:not(:first-child) {
		margin-top: 1.03125rem !important;
	}
	
	#icons06:not(:last-child) {
		margin-bottom: 1.03125rem !important;
	}
	
	#icons02 {
		font-size: 1.25em;
		gap: 0.75rem;
	}
	
	#icons02:not(:first-child) {
		margin-top: 1.03125rem !important;
	}
	
	#icons02:not(:last-child) {
		margin-bottom: 1.03125rem !important;
	}
	
	#icons07 {
		font-size: 1.25em;
		gap: 1.25rem;
	}
	
	#icons07:not(:first-child) {
		margin-top: 1.03125rem !important;
	}
	
	#icons07:not(:last-child) {
		margin-bottom: 1.03125rem !important;
	}
	
	#slideshow01 .bg {
		width: 86.375rem;
		height: 33.25rem !important;
	}
	
	#slideshow01 .bg > .slow {
		animation-duration: 30s;
	}
	
	#slideshow01 .bg > .normal {
		animation-duration: 22.5s;
	}
	
	#slideshow01 .bg > .fast {
		animation-duration: 15s;
	}
}

@media (max-width: 480px) {
	#main > .inner {
		--spacing: 0.65625rem;
	}
	
	#container01 > .wrapper > .inner {
		--spacing: 0.65625rem;
	}
	
	#container08 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	#container06 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	#container02 > .wrapper > .inner {
		--spacing: 1.75rem;
	}
	
	#container07 > .wrapper > .inner {
		--spacing: 1.53125rem;
	}
	
	#container09 > .wrapper > .inner {
		--spacing: 1.75rem;
	}
	
	#container04 > .wrapper > .inner {
		--spacing: 0.875rem;
	}
	
	#container03 > .wrapper > .inner {
		--spacing: 1.640625rem;
	}
	
	#container11 > .wrapper > .inner {
		--spacing: 1.640625rem;
	}
	
	#container10 > .wrapper > .inner {
		--spacing: 0.875rem;
	}
	
	#container12 > .wrapper > .inner {
		--spacing: 0.875rem;
	}
	
	#container13 > .wrapper > .inner {
		--spacing: 0.875rem;
	}
	
	#container05 > .wrapper > .inner {
		--spacing: 2.625rem;
	}
	
	#container14 > .wrapper > .inner {
		--spacing: 0.875rem;
	}
	
	#buttons01 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons01 li a {
		display: inline-flex;
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons.style1 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons.style1 li a {
		display: inline-flex;
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons06 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons06 li a {
		display: inline-flex;
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons02 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons02 li a {
		display: inline-flex;
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons07 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons07 li a {
		display: inline-flex;
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons03 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons03 li a {
		display: inline-flex;
		max-width: 32rem;
		width: 100%;
	}
}

@media (max-width: 360px) {
	#main {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.6875rem;
	}
	
	#main > .inner {
		--spacing: 0.5625rem;
	}
	
	#main > .inner > .full {
		margin-left: calc(-1.5rem);
		max-width: calc(100% + 3rem + 0.4725px);
		width: calc(100% + 3rem + 0.4725px);
	}
	
	#main > .inner > .full:first-child {
		margin-top: -1.6875rem !important;
	}
	
	#main > .inner > .full:last-child {
		margin-bottom: -1.6875rem !important;
	}
	
	#main > .inner > .full.screen {
		margin-left: -50vw;
	}
	
	#main > .inner > * > .full {
		margin-left: calc(-1.5rem);
		max-width: calc(100% + 3rem + 0.4725px);
		width: calc(100% + 3rem + 0.4725px);
	}
	
	#main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	#main > .inner > .active > .full:first-child {
		margin-top: -1.6875rem !important;
	}
	
	#main > .inner > .active > .full:last-child {
		margin-bottom: -1.6875rem !important;
	}
	
	#container01 {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
	}
	
	#container01 > .wrapper > .inner {
		--spacing: 0.5625rem;
	}
	
	#container01.columns > .wrapper > .inner > * {
		padding: 0.84375rem 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > *:first-child {
		margin-left: -1.6875rem;
	}
	
	#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: -0.84375rem !important;
	}
	
	#container01.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -0.84375rem !important;
	}
	
	#container01.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container01 > .wrapper > .inner > :nth-child(1) {
		width: calc(50% + 0.84rem);
	}
	
	#container01 > .wrapper > .inner > :nth-child(2) {
		width: calc(50% + 0.84rem);
	}
	
	#container08 {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
	}
	
	#container08 > .wrapper > .inner {
		--spacing: 0.1875rem;
	}
	
	#container08.columns > .wrapper > .inner > * {
		padding: 0.84375rem 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > *:first-child {
		margin-left: -1.6875rem;
	}
	
	#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: -0.84375rem !important;
	}
	
	#container08.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -0.84375rem !important;
	}
	
	#container08.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container08.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container06 {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.1875rem;
	}
	
	#container06 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	#container06.columns > .wrapper > .inner > * {
		padding: 0.84375rem 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > *:first-child {
		margin-left: -1.6875rem;
	}
	
	#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: -0.84375rem !important;
	}
	
	#container06.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -0.84375rem !important;
	}
	
	#container06.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container06.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container02 {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
		min-height: 9.5rem;
	}
	
	#container02 > .wrapper > .inner {
		--spacing: 1.5rem;
	}
	
	#container02.columns > .wrapper > .inner > * {
		padding: 0.84375rem 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > *:first-child {
		margin-left: -1.6875rem;
	}
	
	#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: -0.84375rem !important;
	}
	
	#container02.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -0.84375rem !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 > .full {
		min-height: 9.5rem;
	}
	
	#container07 {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
		min-height: 9.5rem;
	}
	
	#container07 > .wrapper > .inner {
		--spacing: 1.3125rem;
	}
	
	#container07.columns > .wrapper > .inner > * {
		padding: 0.84375rem 0 !important;
	}
	
	#container07.columns > .wrapper > .inner > *:first-child {
		margin-left: -1.6875rem;
	}
	
	#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: -0.84375rem !important;
	}
	
	#container07.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -0.84375rem !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 > .full {
		min-height: 9.5rem;
	}
	
	#container09 {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
		min-height: 9.5rem;
	}
	
	#container09 > .wrapper > .inner {
		--spacing: 1.5rem;
	}
	
	#container09.columns > .wrapper > .inner > * {
		padding: 0.84375rem 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > *:first-child {
		margin-left: -1.6875rem;
	}
	
	#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: -0.84375rem !important;
	}
	
	#container09.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -0.84375rem !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 > .full {
		min-height: 9.5rem;
	}
	
	#container04 {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
		min-height: 9.5rem;
	}
	
	#container04 > .wrapper > .inner {
		--spacing: 0.75rem;
	}
	
	#container04.columns > .wrapper > .inner > * {
		padding: 0.84375rem 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > *:first-child {
		margin-left: -1.6875rem;
	}
	
	#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: -0.84375rem !important;
	}
	
	#container04.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -0.84375rem !important;
	}
	
	#container04.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container04.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container04.columns > .wrapper > .inner > .full {
		min-height: 9.5rem;
	}
	
	#container03 {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
		min-height: 9.5rem;
	}
	
	#container03 > .wrapper > .inner {
		--spacing: 1.40625rem;
	}
	
	#container03.columns > .wrapper > .inner > * {
		padding: 0.84375rem 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > *:first-child {
		margin-left: -1.6875rem;
	}
	
	#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: -0.84375rem !important;
	}
	
	#container03.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -0.84375rem !important;
	}
	
	#container03.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container03.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container03.columns > .wrapper > .inner > .full {
		min-height: 9.5rem;
	}
	
	#container11 {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.25rem;
	}
	
	#container11 > .wrapper > .inner {
		--spacing: 1.40625rem;
	}
	
	#container11.columns > .wrapper > .inner > * {
		padding: 0.84375rem 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > *:first-child {
		margin-left: -1.6875rem;
	}
	
	#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: -0.84375rem !important;
	}
	
	#container11.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -0.84375rem !important;
	}
	
	#container11.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container11.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container10 {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
		min-height: 9.5rem;
	}
	
	#container10 > .wrapper > .inner {
		--spacing: 0.75rem;
	}
	
	#container10.columns > .wrapper > .inner > * {
		padding: 0.84375rem 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > *:first-child {
		margin-left: -1.6875rem;
	}
	
	#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: -0.84375rem !important;
	}
	
	#container10.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -0.84375rem !important;
	}
	
	#container10.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container10.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container10.columns > .wrapper > .inner > .full {
		min-height: 9.5rem;
	}
	
	#container10 > .wrapper > .inner > :nth-child(1) {
		width: calc(33.33333% + 0.56rem);
	}
	
	#container10 > .wrapper > .inner > :nth-child(2) {
		width: calc(33.33333% + 0.56rem);
	}
	
	#container10 > .wrapper > .inner > :nth-child(3) {
		width: calc(33.33333% + 0.56rem);
	}
	
	#container12 {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
		min-height: 9.5rem;
	}
	
	#container12 > .wrapper > .inner {
		--spacing: 0.75rem;
	}
	
	#container12.columns > .wrapper > .inner > * {
		padding: 0.84375rem 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > *:first-child {
		margin-left: -1.6875rem;
	}
	
	#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: -0.84375rem !important;
	}
	
	#container12.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -0.84375rem !important;
	}
	
	#container12.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container12.columns > .wrapper > .inner > .full {
		min-height: 9.5rem;
	}
	
	#container12 > .wrapper > .inner > :nth-child(1) {
		width: calc(33.33333% + 0.56rem);
	}
	
	#container12 > .wrapper > .inner > :nth-child(2) {
		width: calc(33.33333% + 0.56rem);
	}
	
	#container12 > .wrapper > .inner > :nth-child(3) {
		width: calc(33.33333% + 0.56rem);
	}
	
	#container13 {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
		min-height: 15.5rem;
	}
	
	#container13 > .wrapper > .inner {
		--spacing: 0.75rem;
	}
	
	#container13.columns > .wrapper > .inner > * {
		padding: 0.84375rem 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > *:first-child {
		margin-left: -1.6875rem;
	}
	
	#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: -0.84375rem !important;
	}
	
	#container13.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -0.84375rem !important;
	}
	
	#container13.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container13.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container13.columns > .wrapper > .inner > .full {
		min-height: 15.5rem;
	}
	
	#container05 {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.34375rem;
	}
	
	#container05 > .wrapper > .inner {
		--spacing: 2.25rem;
	}
	
	#container05.columns > .wrapper > .inner > * {
		padding: 0.28125rem 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > *:first-child {
		margin-left: -0.5625rem;
	}
	
	#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: -0.28125rem !important;
	}
	
	#container05.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -0.28125rem !important;
	}
	
	#container05.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container05.columns > .wrapper > .inner > .full {
		min-height: 7.5rem;
	}
	
	#container05 > .wrapper > .inner > :nth-child(1) {
		width: calc(50% + 0.28rem);
	}
	
	#container05 > .wrapper > .inner > :nth-child(2) {
		width: calc(50% + 0.28rem);
	}
	
	#container14 {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
		min-height: 15.5rem;
	}
	
	#container14 > .wrapper > .inner {
		--spacing: 0.75rem;
	}
	
	#container14.columns > .wrapper > .inner > * {
		padding: 0.84375rem 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > *:first-child {
		margin-left: -1.6875rem;
	}
	
	#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: -0.84375rem !important;
	}
	
	#container14.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: -0.84375rem !important;
	}
	
	#container14.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container14.columns > .wrapper > .inner > .full {
		min-height: 15.5rem;
	}
	
	#text15 {
		font-size: 0.875em;
	}
	
	#text12 {
		font-size: 0.75em;
	}
	
	#text09 {
		font-size: 0.875em;
	}
	
	#text17 {
		font-size: 1.5em;
	}
	
	#text03 {
		font-size: 0.875em;
	}
	
	#text18 {
		font-size: 1.125em;
	}
	
	h1.style1, h2.style1, h3.style1, p.style1 {
		font-size: 1.125em;
	}
	
	#text08 {
		font-size: 0.875em;
	}
	
	#text01 {
		font-size: 1.25em;
	}
	
	#text14 {
		font-size: 1.125em;
	}
	
	#text05 {
		font-size: 1.125em;
	}
	
	#text06 {
		font-size: 0.75em;
	}
	
	#text48 {
		font-size: 0.875em;
	}
	
	#text49 {
		font-size: 0.875em;
	}
	
	#text11 {
		font-size: 1.125em;
	}
	
	#text02 {
		font-size: 0.875em;
	}
	
	#text13 {
		font-size: 0.875em;
	}
	
	#text30 {
		font-size: 1.5em;
	}
	
	#text07 {
		font-size: 1em;
	}
	
	#text22 {
		font-size: 1em;
	}
	
	#text23 {
		font-size: 0.75em;
	}
	
	#text24 {
		font-size: 1em;
	}
	
	#text26 {
		font-size: 0.75em;
	}
	
	#text25 {
		font-size: 1em;
	}
	
	#text27 {
		font-size: 0.75em;
	}
	
	#text28 {
		font-size: 1em;
	}
	
	#text29 {
		font-size: 0.75em;
	}
	
	#text04 {
		font-size: 1em;
	}
	
	#text20 {
		font-size: 0.75em;
	}
	
	#text19 {
		font-size: 1.25em;
	}
	
	#text21 {
		font-size: 0.875em;
	}
	
	#text31 {
		font-size: 1.5em;
	}
	
	#text40 {
		font-size: 0.875em;
	}
	
	#text41 {
		font-size: 0.625em;
	}
	
	#text42 {
		font-size: 0.875em;
	}
	
	#text43 {
		font-size: 0.625em;
	}
	
	#text44 {
		font-size: 0.625em;
	}
	
	#text38 {
		font-size: 0.875em;
	}
	
	#text39 {
		font-size: 0.625em;
	}
	
	#text32 {
		font-size: 0.875em;
	}
	
	#text33 {
		font-size: 0.625em;
	}
	
	#text34 {
		font-size: 0.875em;
	}
	
	#text35 {
		font-size: 0.625em;
	}
	
	#text36 {
		font-size: 0.875em;
	}
	
	#text37 {
		font-size: 0.625em;
	}
	
	#text10 {
		font-size: 0.75em;
	}
	
	#text46 {
		font-size: 1.5em;
	}
	
	#text47 {
		font-size: 1.125em;
	}
	
	#text45 {
		font-size: 1.5em;
	}
	
	#buttons01 {
		gap: 0.65625rem;
	}
	
	.buttons.style1 {
		gap: 0.5625rem;
	}
	
	#buttons06 {
		gap: 0.65625rem;
	}
	
	#buttons02 {
		gap: 0.65625rem;
	}
	
	#buttons07 {
		gap: 0.65625rem;
	}
	
	#buttons03 {
		gap: 0.5625rem;
	}
	
	#icons01 {
		gap: 0.5625rem;
	}
	
	#icons03 {
		gap: 0.5625rem;
	}
	
	#icons04 {
		gap: 0.5625rem;
	}
	
	#icons05 {
		gap: 0.5625rem;
	}
	
	#icons06 {
		gap: 0.5625rem;
	}
	
	#icons02 {
		gap: 0.5625rem;
	}
	
	#icons07 {
		gap: 0.9375rem;
	}
}