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

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

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

body:before {
	content: '';
	display: block;
	background-attachment: scroll;
	height: var(--background-height);
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scale(1);
	width: 100vw;
	z-index: 0;
	background-image: linear-gradient(to top, #0E1426, #0E1426), url('images/bg.jpg');
	background-position: 0% 0%, center;
	background-repeat: repeat, repeat;
	background-size: auto, cover;
	background-color: #FFFFFF;
}

body:after {
	background-color: #0E1426;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scale(1);
	transition: opacity 1s ease-in-out 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;
	--site-language-indent-left: 1;
	--site-language-indent-right: 0;
	--site-language-margin-left: 0;
	--site-language-margin-right: auto;
	--viewport-height: 100vh;
}

html {
	font-size: 14pt;
}

u {
	text-decoration: underline;
}

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

em {
	font-style: italic;
}

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

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

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

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

s {
	text-decoration: line-through;
}

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

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

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

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

deferred-script {
	display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.is-loading #main {
	opacity: 0;
	transform: scale(0.9875);
}

body #wrapper:after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	display: block;
	height: 10rem;
	left: calc(50% - 5rem);
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: calc(50% - 5rem);
	transition: opacity 1s ease, visibility 1s;
	visibility: hidden;
	width: 10rem;
	z-index: 100000;
}

body.is-loading {
	pointer-events: none;
}

body.is-loading.with-loader #wrapper:after {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6ICNGRkZGRkY7fTwvc3R5bGU+PGNpcmNsZSBjeD0iMjQiIGN5PSI0OCIgcj0iMyI+PGFuaW1hdGVUcmFuc2Zvcm0gYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIiBhdHRyaWJ1dGVUeXBlPSJYTUwiIHR5cGU9InRyYW5zbGF0ZSIgdmFsdWVzPSIwLDA7MCwtNjswLDA7MCwwOzAsMDswLDA7MCwwOzAsMCIgYmVnaW49IjBzIiBkdXI9IjEuOHMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjM2IiBjeT0iNDgiIHI9IjMiPjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgYXR0cmlidXRlVHlwZT0iWE1MIiB0eXBlPSJ0cmFuc2xhdGUiIHZhbHVlcz0iMCwwOzAsLTY7MCwwOzAsMDswLDA7MCwwOzAsMDswLDAiIGJlZ2luPSIwLjJzIiBkdXI9IjEuOHMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMiPjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgYXR0cmlidXRlVHlwZT0iWE1MIiB0eXBlPSJ0cmFuc2xhdGUiIHZhbHVlcz0iMCwwOzAsLTY7MCwwOzAsMDswLDA7MCwwOzAsMDswLDAiIGJlZ2luPSIwLjRzIiBkdXI9IjEuOHMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjYwIiBjeT0iNDgiIHI9IjMiPjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgYXR0cmlidXRlVHlwZT0iWE1MIiB0eXBlPSJ0cmFuc2xhdGUiIHZhbHVlcz0iMCwwOzAsLTY7MCwwOzAsMDswLDA7MCwwOzAsMDswLDAiIGJlZ2luPSIwLjZzIiBkdXI9IjEuOHMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjcyIiBjeT0iNDgiIHI9IjMiPjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgYXR0cmlidXRlVHlwZT0iWE1MIiB0eXBlPSJ0cmFuc2xhdGUiIHZhbHVlcz0iMCwwOzAsLTY7MCwwOzAsMDswLDA7MCwwOzAsMDswLDAiIGJlZ2luPSIwLjhzIiBkdXI9IjEuOHMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPjwvY2lyY2xlPjwvc3ZnPg==');
	opacity: 1;
	transform: scale(1.0);
	visibility: visible;
}

body.is-playing.with-loader #wrapper:after {
	opacity: 0;
	transform: scale(0.5);
	transition: opacity 0.25s ease, transform 0.75s ease, visibility 0.25s;
	visibility: hidden;
}

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

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

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

#main > .inner > section.inactive {
	opacity: 0;
	transition: opacity 0.1875s ease-in-out,transform 0.1875s ease-in-out;
	transform: scale(0.9875);
}

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

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

hr:before {
	content: '';
}

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

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

#divider42:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider50:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider45:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider43:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider97:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider98:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider99:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider89:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider04:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider90:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider91:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider09:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider22:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider59:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider61:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider49:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider51:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider63:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider65:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider102:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider32:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider15:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider10:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider13:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider11:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider64:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider20:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider16:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider17:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider19:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider03:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider60:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider07:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider25:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider29:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider153:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider154:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider155:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider156:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider157:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider158:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider159:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider160:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider161:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider162:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider163:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider164:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider165:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider133:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider149:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider135:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider150:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider168:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider151:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider152:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider166:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider167:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider173:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider169:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider170:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider171:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider172:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider174:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider175:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider176:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider14:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider33:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider52:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider53:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider54:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider55:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider56:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider57:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider58:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider71:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider72:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider73:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider74:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider75:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider129:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider130:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider131:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider28:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider177:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider178:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider179:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider180:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider128:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider142:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider100:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider132:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider148:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider113:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider02:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider143:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider191:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider192:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider193:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider194:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider103:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider47:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider37:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider46:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider62:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider66:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider48:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider01:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider05:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider44:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider18:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider06:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider30:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider23:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider24:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider21:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider68:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider81:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider69:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider39:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider40:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider38:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider34:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider36:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider114:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider67:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider41:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider70:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider76:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider77:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider78:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider79:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider101:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider80:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider35:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

#divider26:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

#image06 {
	text-align: center;
}

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

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

#image06 .frame {
	width: 12rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image06 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image01 {
	text-align: center;
}

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

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

#image01 .frame {
	width: 12rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image01 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image22 {
	text-align: center;
}

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

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

#image22 .frame {
	width: 16rem;
	border-radius: 0.375rem;
	border-color: #FF0000;
	border-style: solid;
	border-width: 3px;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

#image22 .frame img:first-child {
	border-radius: calc(0.375rem - 3px) !important;
}

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

#image22 .frame:hover {
	transform: scale(0.975);
	z-index: 1;
}

#image23 {
	text-align: center;
}

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

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

#image23 .frame {
	width: 16rem;
	border-radius: 0.375rem;
	border-color: #FF0000;
	border-style: solid;
	border-width: 3px;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

#image23 .frame img:first-child {
	border-radius: calc(0.375rem - 3px) !important;
}

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

#image23 .frame:hover {
	transform: scale(0.975);
	z-index: 1;
}

#image24 {
	text-align: center;
}

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

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

#image24 .frame {
	width: 16rem;
	border-radius: 0.375rem;
	border-color: #FF0000;
	border-style: solid;
	border-width: 3px;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

#image24 .frame img:first-child {
	border-radius: calc(0.375rem - 3px) !important;
}

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

#image24 .frame:hover {
	transform: scale(0.975);
	z-index: 1;
}

#image25 {
	text-align: center;
}

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

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

#image25 .frame {
	width: 16rem;
	border-radius: 0.375rem;
	border-color: #FF0000;
	border-style: solid;
	border-width: 3px;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

#image25 .frame img:first-child {
	border-radius: calc(0.375rem - 3px) !important;
}

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

#image25 .frame:hover {
	transform: scale(0.975);
	z-index: 1;
}

#image26 {
	text-align: center;
}

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

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

#image26 .frame {
	width: 16rem;
	border-radius: 0.375rem;
	border-color: #FF0000;
	border-style: solid;
	border-width: 3px;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

#image26 .frame img:first-child {
	border-radius: calc(0.375rem - 3px) !important;
}

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

#image26 .frame:hover {
	transform: scale(0.975);
	z-index: 1;
}

#image20 {
	text-align: center;
}

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

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

#image20 .frame {
	width: 10rem;
	height: 10rem;
	border-radius: 0.375rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image20 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image21 {
	text-align: center;
}

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

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

#image21 .frame {
	width: 10rem;
	height: 10rem;
	border-radius: 0.375rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image21 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image16 {
	text-align: center;
}

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

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

#image16 .frame {
	width: 10rem;
	height: 10rem;
	border-radius: 0.375rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image16 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image19 {
	text-align: center;
}

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

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

#image19 .frame {
	width: 16rem;
	height: 10rem;
	border-radius: 0.375rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image19 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image18 {
	text-align: center;
}

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

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

#image18 .frame {
	width: 10rem;
	height: 10rem;
	border-radius: 0.375rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image18 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image02 .frame {
	width: 100vw;
	border-color: #0E1426;
	border-style: solid;
	border-width: 5px;
	box-shadow: 0rem 0rem 10rem 1.25rem rgba(0,87,255,0.251);
	transition: none;
}

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

#image02 .frame img {
	transition: none;
}

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

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

#image04 .frame {
	width: 100vw;
	transition: none;
}

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

#image04 .frame img {
	transition: none;
}

#image38 {
	text-align: center;
}

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

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

#image38 .frame {
	width: 26.75rem;
	border-radius: 0.75rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image38 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image39 {
	text-align: center;
}

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

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

#image39 .frame {
	width: 26.75rem;
	border-radius: 0.75rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image39 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image40 {
	text-align: center;
}

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

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

#image40 .frame {
	width: 26.75rem;
	border-radius: 0.75rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image40 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image35 {
	text-align: center;
}

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

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

#image35 .frame {
	width: 26.75rem;
	border-radius: 0.75rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image35 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image41 {
	text-align: center;
}

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

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

#image41 .frame {
	width: 26.75rem;
	border-radius: 0.75rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image41 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image42 {
	text-align: center;
}

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

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

#image42 .frame {
	width: 26.75rem;
	border-radius: 0.75rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image42 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image43 {
	text-align: center;
}

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

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

#image43 .frame {
	width: 26.75rem;
	border-radius: 0.75rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image43 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image03 {
	text-align: center;
}

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

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

#image03 .frame {
	width: 26.75rem;
	border-radius: 0.75rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image03 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image08 {
	text-align: center;
}

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

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

#image08 .frame {
	width: 26.75rem;
	border-radius: 0.75rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image08 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image14 {
	text-align: center;
}

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

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

#image14 .frame {
	width: 26.75rem;
	border-radius: 0.75rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image14 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image44 {
	text-align: center;
}

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

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

#image44 .frame {
	width: 26.75rem;
	border-radius: 0.75rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image44 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

#image47 {
	text-align: center;
}

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

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

#image47 .frame {
	width: 26.75rem;
	border-radius: 0.75rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

#image47 .frame:hover {
	transform: scale(1.025);
	z-index: 1;
}

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

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

#image07 .frame {
	width: 100vw;
	border-color: #0E1426;
	border-style: solid;
	border-width: 5px;
	box-shadow: 0rem 0rem 10rem 1.25rem rgba(0,87,255,0.251);
	transition: none;
}

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

#image07 .frame img {
	transition: none;
}

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

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

#image10 .frame {
	width: 100vw;
	border-color: #0E1426;
	border-style: solid;
	border-width: 5px;
	box-shadow: 0rem 0rem 10rem 1.25rem rgba(0,87,255,0.251);
	transition: none;
}

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

#image10 .frame img {
	transition: none;
}

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

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

#image12 .frame {
	width: 100vw;
	border-color: #0E1426;
	border-style: solid;
	border-width: 5px;
	box-shadow: 0rem 0rem 10rem 1.25rem rgba(0,87,255,0.251);
	transition: none;
}

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

#image12 .frame img {
	transition: none;
}

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

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

#image09 .frame {
	width: 100vw;
	border-color: #0E1426;
	border-style: solid;
	border-width: 5px;
	box-shadow: 0rem 0rem 10rem 1.25rem rgba(0,87,255,0.251);
	transition: none;
}

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

#image09 .frame img {
	transition: none;
}

#image11 {
	text-align: center;
}

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

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

#image11 .frame {
	width: 12rem;
	transition: none;
}

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

#image11 .frame img {
	transition: none;
}

#image13 {
	text-align: center;
}

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

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

#image13 .frame {
	width: 27rem;
	border-radius: 0.75rem;
	transition: none;
}

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

#image13 .frame img {
	transition: none;
}

.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: 3.625em;
	gap: 0.75rem;
}

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

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

#icons01 a svg {
	fill: #FFFFFF;
}

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

#icons01 li a:hover {
	transform: scale(1.0425);
}

#icons01 li a:hover + svg {
	transform: scale(1.0425);
}

#icons01 .n01 {
	cursor: pointer;
}

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

#icons04 li a {
	border-radius: 1.5rem;
	height: 1em;
	width: 1em;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

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

#icons04 a svg {
	fill: #00E0FF;
}

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

#icons04 li a:hover {
	transform: scale(1.0425);
}

#icons04 li a:hover + svg {
	transform: scale(1.0425);
}

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

#icons05 li a {
	border-radius: 1.5rem;
	height: 1em;
	width: 1em;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

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

#icons05 a svg {
	fill: #00E0FF;
}

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

#icons05 li a:hover {
	transform: scale(1.0425);
}

#icons05 li a:hover + svg {
	transform: scale(1.0425);
}

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

#icons06 li a {
	border-radius: 1.5rem;
	height: 1em;
	width: 1em;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

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

#icons06 a svg {
	fill: #00E0FF;
}

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

#icons06 li a:hover {
	transform: scale(1.0425);
}

#icons06 li a:hover + svg {
	transform: scale(1.0425);
}

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

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

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

#icons07 a svg {
	fill: #00E0FF;
}

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

#icons07 li a:hover {
	transform: scale(1.0425);
}

#icons07 li a:hover + svg {
	transform: scale(1.0425);
}

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

#icons03 li a {
	border-radius: 1.5rem;
	height: 1em;
	width: 1em;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

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

#icons03 a svg {
	fill: #00E0FF;
}

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

#icons03 li a:hover {
	transform: scale(1.0425);
}

#icons03 li a:hover + svg {
	transform: scale(1.0425);
}

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

#icons02 li a {
	border-radius: 1.5rem;
	height: 1em;
	width: 1em;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

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

#icons02 a svg {
	fill: #00E0FF;
}

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

#icons02 li a:hover {
	transform: scale(1.0425);
}

#icons02 li a:hover + svg {
	transform: scale(1.0425);
}

#icons02 .n01 svg {
	fill: #1DA0F1;
}

#icons02 .n02 svg {
	fill: #5165F6;
}

#icons02 .n03 svg {
	fill: #FF0000;
}

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

#icons14 li a {
	border-radius: 1.5rem;
	height: 1em;
	width: 1em;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

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

#icons14 a svg {
	fill: #00E0FF;
}

#icons14 li a + svg {
	transition: transform 0.375s ease, fill 0.375s ease, stroke 0.375s ease;
}

#icons14 li a:hover {
	transform: scale(1.0425);
}

#icons14 li a:hover + svg {
	transform: scale(1.0425);
}

#icons14 .n01 svg {
	fill: #1DA0F1;
}

#icons14 .n02 svg {
	fill: #5165F6;
}

#icons14 .n03 svg {
	fill: #FF0000;
}

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

#container03 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

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

#container03 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

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

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

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

#container03.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container03.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container03.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container03.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container03.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container03.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container03.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container03.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container03.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container03.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container03 > .wrapper > .inner > :nth-child(1) {
	width: 20%;
}

#container03 > .wrapper > .inner > :nth-child(2) {
	width: 80%;
}

#mobiletabmenu {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

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

#mobiletabmenu > .wrapper {
	max-width: var(--width);
	width: 100%;
}

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

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

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

#mobiletabmenu.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#mobiletabmenu.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#mobiletabmenu.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#mobiletabmenu.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#mobiletabmenu.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#mobiletabmenu.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#mobiletabmenu.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#mobiletabmenu.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#mobiletabmenu.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#mobiletabmenu.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#deskmainheader {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

#deskmainheader > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 2rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#deskmainheader > .wrapper {
	max-width: var(--width);
	width: 100%;
}

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

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

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

#deskmainheader.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

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

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

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

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

#deskmainheader.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#deskmainheader.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#deskmainheader.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#deskmainheader.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#deskmainheader.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#deskmainheader.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#deskmainheader.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#deskmainheader.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#deskmainheader.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#deskmainheader > .wrapper > .inner > :nth-child(1) {
	width: 20%;
}

#deskmainheader > .wrapper > .inner > :nth-child(2) {
	width: 60%;
}

#deskmainheader > .wrapper > .inner > :nth-child(3) {
	width: 20%;
	--alignment: right;
	--flex-alignment: flex-end;
	--indent-left: 0;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: 0;
}

#deskgametab {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

#deskgametab > .wrapper > .inner {
	--gutters: 1.375rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 12rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#deskgametab > .wrapper {
	max-width: 80rem;
	width: 100%;
}

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

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

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

#deskgametab.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#deskgametab.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#deskgametab.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#deskgametab.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#deskgametab.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#deskgametab.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#deskgametab.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#deskgametab.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#deskgametab.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#deskgametab.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#deskgametab > .wrapper > .inner > :nth-child(1) {
	width: calc(20% + (var(--gutters) / 5));
}

#deskgametab > .wrapper > .inner > :nth-child(2) {
	width: calc(20% + (var(--gutters) / 5));
}

#deskgametab > .wrapper > .inner > :nth-child(3) {
	width: calc(20% + (var(--gutters) / 5));
}

#deskgametab > .wrapper > .inner > :nth-child(4) {
	width: calc(20% + (var(--gutters) / 5));
}

#deskgametab > .wrapper > .inner > :nth-child(5) {
	width: calc(20% + (var(--gutters) / 5));
}

#desknewstab {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

#desknewstab > .wrapper > .inner {
	--gutters: 3rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 10rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#desknewstab > .wrapper {
	max-width: 65rem;
	width: 100%;
}

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

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

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

#desknewstab.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#desknewstab.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#desknewstab.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#desknewstab.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#desknewstab.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#desknewstab.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#desknewstab.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#desknewstab.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#desknewstab.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#desknewstab.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#desknewstab > .wrapper > .inner > :nth-child(1) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#desknewstab > .wrapper > .inner > :nth-child(2) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#desknewstab > .wrapper > .inner > :nth-child(3) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#deskcommunitytab {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

#deskcommunitytab > .wrapper > .inner {
	--gutters: 3rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 10rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#deskcommunitytab > .wrapper {
	max-width: 50rem;
	width: 100%;
}

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

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

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

#deskcommunitytab.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#deskcommunitytab.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#deskcommunitytab.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#deskcommunitytab.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#deskcommunitytab.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#deskcommunitytab.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#deskcommunitytab.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#deskcommunitytab.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#deskcommunitytab.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#deskcommunitytab.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#deskcommunitytab > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + (var(--gutters) / 2));
}

#deskcommunitytab > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 2));
}

#container35 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

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

#container35 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

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

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

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

#container35.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container35.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container35.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container35.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container35.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container35.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container35.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container35.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container35.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container35.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container35 > .wrapper > .inner > :nth-child(1) {
	width: 20%;
}

#container35 > .wrapper > .inner > :nth-child(2) {
	width: 20%;
}

#container35 > .wrapper > .inner > :nth-child(3) {
	width: 20%;
}

#container35 > .wrapper > .inner > :nth-child(4) {
	width: 20%;
}

#container35 > .wrapper > .inner > :nth-child(5) {
	width: 20%;
}

#container12 {
	display: flex;
	width: 100%;
	min-height: 27rem;
	align-items: flex-end;
	justify-content: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

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

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

#container12 video {
	border-radius: inherit;
	height: 100%;
	left: 0;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -2;
}

#container12:before {
	border-radius: inherit;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

#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 var(--gutters);
}

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

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

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

#container12.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container12.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container12.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container12.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container12.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container12.columns > .wrapper > .inner > 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: 27rem;
}

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

#container01 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

#container01 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container01 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

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

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

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

#container01.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

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

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

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

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

#container01.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container01.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container01.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container01.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container01.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container01.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container01.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container01.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container01 > .wrapper > .inner > :nth-child(1) {
	width: calc(60% + (var(--gutters) / 2));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container01 > .wrapper > .inner > :nth-child(2) {
	width: calc(40% + (var(--gutters) / 2));
}

#container46 > .wrapper {
	display: block;
	margin: 0 auto 0 0;
	width: 99rem;
	background-color: #000000;
	border-color: #0E1426;
	border-style: solid;
	border-bottom-width: 30px;
	border-left-width: 30px;
	border-right-width: 30px;
}

#container46 > .wrapper > .inner {
	--gutters: 7.125rem;
	--padding-horizontal: 2.75rem;
	--padding-vertical: 1.5rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

#container46.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container46.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container46.columns > .wrapper > .inner > *:before {
	border-left: solid 30px #0E1426;
	content: '';
	display: block;
	margin-left: calc((var(--gutters) * -0.5) - 15px);
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
}

#container46.columns > .wrapper > .inner > *:first-child:before {
	display: none;
}

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

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

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

#container46.columns > .wrapper > .inner > div > .full {
	margin-left: calc((var(--gutters) * -0.5) + 15px);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px - 30px);
}

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

#container46.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px - 15px);
}

#container46.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container46.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container46.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container46.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container46.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container46.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container46 > .wrapper > .inner > :nth-child(1) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#container46 > .wrapper > .inner > :nth-child(2) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#container46 > .wrapper > .inner > :nth-child(3) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#container02 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

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

#container02 > .wrapper {
	max-width: var(--width);
	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: flex-start;
}

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

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

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

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

#container02.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container02.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container02.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container02.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container02.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container02.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container02.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container02.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container04 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

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

#container04 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

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

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

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

#container04.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container04.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container04.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container04.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container04.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container04.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container04.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container04.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container04.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container04.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container04 > .wrapper > .inner > :nth-child(1) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container04 > .wrapper > .inner > :nth-child(2) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container04 > .wrapper > .inner > :nth-child(3) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container44 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

#container44 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container44 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

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

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

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

#container44.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container44.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container44.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container44.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container44.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container44.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container44.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container44.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container44.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container44.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container44 > .wrapper > .inner > :nth-child(1) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container44 > .wrapper > .inner > :nth-child(2) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container44 > .wrapper > .inner > :nth-child(3) {
	width: calc(33.33333% + (var(--gutters) / 3));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container38 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #0E1426;
}

#container38 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 1rem;
	--padding-vertical: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container38 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

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

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

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

#container38.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

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

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

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

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

#container38.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container38.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container38.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container38.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container38.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container38.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container38.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container38.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container38.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container38 > .wrapper > .inner > :nth-child(1) {
	width: 40%;
}

#container38 > .wrapper > .inner > :nth-child(2) {
	width: 60%;
}

#container40 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

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

#container40 > .wrapper {
	max-width: 48rem;
	width: 100%;
}

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

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

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

#container40.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

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

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

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

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

#container40.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container40.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container40.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container40.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container40.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container40.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container40.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container40.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container40.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container40 > .wrapper > .inner > :nth-child(1) {
	width: 20%;
}

#container40 > .wrapper > .inner > :nth-child(2) {
	width: 20%;
}

#container40 > .wrapper > .inner > :nth-child(3) {
	width: 20%;
}

#container40 > .wrapper > .inner > :nth-child(4) {
	width: 20%;
}

#container40 > .wrapper > .inner > :nth-child(5) {
	width: 20%;
}

#container48 > .wrapper {
	display: block;
	margin: 0 auto 0 0;
	width: 91rem;
	background-color: transparent;
	border-color: transparent;
	border-style: solid;
	border-left-width: 2px;
	border-right-width: 2px;
}

#container48 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 1.5rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

#container48.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container48.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container48.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container48.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container48.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container48.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container48.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container48.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container48.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container48.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container06 > .wrapper {
	display: block;
	margin: 0 auto 0 0;
	width: 91rem;
	background-color: transparent;
	border-color: transparent;
	border-style: solid;
	border-left-width: 2px;
	border-right-width: 2px;
}

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

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

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

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

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

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

#container06.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container06.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container06.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container06.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container06.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

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

#container26 > .wrapper {
	display: block;
	margin: 0 auto 0 0;
	width: 99rem;
	background-color: #000000;
	border-color: #0E1426;
	border-style: solid;
	border-bottom-width: 30px;
	border-left-width: 30px;
	border-right-width: 30px;
}

#container26 > .wrapper > .inner {
	--gutters: 7.125rem;
	--padding-horizontal: 2.75rem;
	--padding-vertical: 1.5rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

#container26.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container26.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container26.columns > .wrapper > .inner > *:before {
	border-left: solid 30px #0E1426;
	content: '';
	display: block;
	margin-left: calc((var(--gutters) * -0.5) - 15px);
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
}

#container26.columns > .wrapper > .inner > *:first-child:before {
	display: none;
}

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

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

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

#container26.columns > .wrapper > .inner > div > .full {
	margin-left: calc((var(--gutters) * -0.5) + 15px);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px - 30px);
}

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

#container26.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px - 15px);
}

#container26.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container26.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container26.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container26.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container26.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container26.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container26 > .wrapper > .inner > :nth-child(1) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#container26 > .wrapper > .inner > :nth-child(2) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#container26 > .wrapper > .inner > :nth-child(3) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#container43 > .wrapper {
	display: block;
	margin: 0 auto 0 0;
	width: 33rem;
	background-color: #000000;
	border-color: #0E1426;
	border-style: solid;
	border-bottom-width: 30px;
	border-left-width: 30px;
	border-right-width: 30px;
}

#container43 > .wrapper > .inner {
	--gutters: 7.125rem;
	--padding-horizontal: 2.75rem;
	--padding-vertical: 1.5rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

#container43.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container43.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container43.columns > .wrapper > .inner > *:before {
	border-left: solid 30px #0E1426;
	content: '';
	display: block;
	margin-left: calc((var(--gutters) * -0.5) - 15px);
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
}

#container43.columns > .wrapper > .inner > *:first-child:before {
	display: none;
}

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

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

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

#container43.columns > .wrapper > .inner > div > .full {
	margin-left: calc((var(--gutters) * -0.5) + 15px);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px - 30px);
}

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

#container43.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px - 15px);
}

#container43.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container43.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container43.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container43.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container43.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container43.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container49 > .wrapper {
	display: block;
	margin: 0 auto 0 0;
	width: 91rem;
	background-color: transparent;
	border-color: transparent;
	border-style: solid;
	border-left-width: 2px;
	border-right-width: 2px;
}

#container49 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 1.5rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

#container49.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container49.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container49.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container49.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container49.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container49.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container49.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container49.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container49.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container49.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container39 > .wrapper {
	display: block;
	margin: 0 auto 0 0;
	width: 91rem;
	background-color: transparent;
	border-color: transparent;
	border-style: solid;
	border-left-width: 2px;
	border-right-width: 2px;
}

#container39 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 1.5rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

#container39.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container39.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container39.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container39.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container39.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container39.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container39.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container39.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container39.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container39.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container16 > .wrapper {
	display: block;
	margin: 0 auto 0 0;
	width: 33rem;
	background-color: #000000;
	border-color: #0E1426;
	border-style: solid;
	border-bottom-width: 30px;
	border-left-width: 30px;
	border-right-width: 30px;
}

#container16 > .wrapper > .inner {
	--gutters: 7.125rem;
	--padding-horizontal: 2.75rem;
	--padding-vertical: 1.5rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

#container16.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container16.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container16.columns > .wrapper > .inner > *:before {
	border-left: solid 30px #0E1426;
	content: '';
	display: block;
	margin-left: calc((var(--gutters) * -0.5) - 15px);
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
}

#container16.columns > .wrapper > .inner > *:first-child:before {
	display: none;
}

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

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

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

#container16.columns > .wrapper > .inner > div > .full {
	margin-left: calc((var(--gutters) * -0.5) + 15px);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px - 30px);
}

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

#container16.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px - 15px);
}

#container16.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container16.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container16.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container16.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container16.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container16.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container50 > .wrapper {
	display: block;
	margin: 0 auto 0 0;
	width: 91rem;
	background-color: transparent;
	border-color: transparent;
	border-style: solid;
	border-left-width: 2px;
	border-right-width: 2px;
}

#container50 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 1.5rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

#container50.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container50.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container50.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container50.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container50.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container50.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container50.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container50.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container50.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container50.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container45 > .wrapper {
	display: block;
	margin: 0 auto 0 0;
	width: 91rem;
	background-color: transparent;
	border-color: transparent;
	border-style: solid;
	border-left-width: 2px;
	border-right-width: 2px;
}

#container45 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 1.5rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

#container45.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container45.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container45.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container45.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container45.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container45.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container45.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container45.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container45.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container45.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container19 > .wrapper {
	display: block;
	margin: 0 auto 0 0;
	width: 99rem;
	background-color: #000000;
	border-color: #0E1426;
	border-style: solid;
	border-bottom-width: 30px;
	border-left-width: 30px;
	border-right-width: 30px;
}

#container19 > .wrapper > .inner {
	--gutters: 7.125rem;
	--padding-horizontal: 2.75rem;
	--padding-vertical: 1.5rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

#container19.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container19.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container19.columns > .wrapper > .inner > *:before {
	border-left: solid 30px #0E1426;
	content: '';
	display: block;
	margin-left: calc((var(--gutters) * -0.5) - 15px);
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
}

#container19.columns > .wrapper > .inner > *:first-child:before {
	display: none;
}

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

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

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

#container19.columns > .wrapper > .inner > div > .full {
	margin-left: calc((var(--gutters) * -0.5) + 15px);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px - 30px);
}

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

#container19.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px - 15px);
}

#container19.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container19.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container19.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container19.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container19.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container19.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container19 > .wrapper > .inner > :nth-child(1) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#container19 > .wrapper > .inner > :nth-child(2) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#container19 > .wrapper > .inner > :nth-child(3) {
	width: calc(33.33333% + (var(--gutters) / 3));
}

#container51 > .wrapper {
	display: block;
	margin: 0 auto 0 0;
	width: 91rem;
	background-color: transparent;
	border-color: transparent;
	border-style: solid;
	border-left-width: 2px;
	border-right-width: 2px;
}

#container51 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 1.5rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

#container51.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container51.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container51.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container51.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container51.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container51.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container51.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container51.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container51.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container51.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container34 > .wrapper {
	display: block;
	margin: 0 auto 0 0;
	width: 91rem;
	background-color: transparent;
	border-color: transparent;
	border-style: solid;
	border-left-width: 2px;
	border-right-width: 2px;
}

#container34 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 1.5rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

#container34.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container34.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

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

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

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

#container34.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

#container34.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container34.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container34.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

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

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

#container34.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container34.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container34.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container34.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

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

#container47 > .wrapper {
	display: block;
	margin: 0 auto 0 0;
	width: 33rem;
	background-color: #000000;
	border-color: #0E1426;
	border-style: solid;
	border-bottom-width: 30px;
	border-left-width: 30px;
	border-right-width: 30px;
}

#container47 > .wrapper > .inner {
	--gutters: 7.125rem;
	--padding-horizontal: 2.75rem;
	--padding-vertical: 1.5rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

#container47.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

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

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

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

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

#container47.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container47.columns > .wrapper > .inner > *:before {
	border-left: solid 30px #0E1426;
	content: '';
	display: block;
	margin-left: calc((var(--gutters) * -0.5) - 15px);
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
}

#container47.columns > .wrapper > .inner > *:first-child:before {
	display: none;
}

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

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

#container47.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container47.columns > .wrapper > .inner > div > .full {
	margin-left: calc((var(--gutters) * -0.5) + 15px);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px - 30px);
}

#container47.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px - 15px);
}

#container47.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px - 15px);
}

#container47.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container47.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container47.columns > .wrapper > .inner > div:first-child, #container47.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container47.columns > .wrapper > .inner > div:last-child, #container47.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container47.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container47.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container47.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container47.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container47.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container08 {
	display: flex;
	width: 100%;
	min-height: 30rem;
	align-items: center;
	justify-content: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#container08 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 2rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container08 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container08 video {
	border-radius: inherit;
	height: 100%;
	left: 0;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -2;
}

#container08:before {
	border-radius: inherit;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

#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: flex-start;
}

#container08.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container08.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container08.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container08.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container08.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container08.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container08.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container08.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container08.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container08.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container08.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container08.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container08.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container08.columns > .wrapper > .inner > div:first-child, #container08.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container08.columns > .wrapper > .inner > div:last-child, #container08.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container08.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: 30rem;
}

#container08.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container08.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container08 > .wrapper > .inner > :nth-child(1) {
	width: 25%;
}

#container08 > .wrapper > .inner > :nth-child(2) {
	width: 50%;
}

#container08 > .wrapper > .inner > :nth-child(3) {
	width: 25%;
}

#container42 {
	display: flex;
	width: 100%;
	min-height: 26rem;
	align-items: center;
	justify-content: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#container42 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container42 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container42 video {
	border-radius: inherit;
	height: 100%;
	left: 0;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -2;
}

#container42:before {
	border-radius: inherit;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

#container42.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container42.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container42.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container42.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container42.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container42.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container42.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container42.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container42.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container42.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container42.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container42.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container42.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container42.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container42.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container42.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container42.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container42.columns > .wrapper > .inner > div:first-child, #container42.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container42.columns > .wrapper > .inner > div:last-child, #container42.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container42.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: 26rem;
}

#container42.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container42.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container42.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container42.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container20 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

#container20 > .wrapper > .inner {
	--gutters: 9rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container20 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container20.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container20.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container20.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container20.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container20.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container20.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container20.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container20.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container20.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container20.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container20.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container20.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container20.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container20.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container20.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container20.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container20.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container20.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container20.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container20.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container20.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container20.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container20 > .wrapper > .inner > :nth-child(1) {
	width: calc(60% + (var(--gutters) / 2));
}

#container20 > .wrapper > .inner > :nth-child(2) {
	width: calc(40% + (var(--gutters) / 2));
}

#container15 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

#container15 > .wrapper > .inner {
	--gutters: 9rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container15 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container15.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container15.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container15.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container15.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container15.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container15.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container15.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container15.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container15.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container15.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container15.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container15.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container15.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container15.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container15.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container15.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container15.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container15.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container15.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container15.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container15 > .wrapper > .inner > :nth-child(1) {
	width: calc(40% + (var(--gutters) / 2));
}

#container15 > .wrapper > .inner > :nth-child(2) {
	width: calc(60% + (var(--gutters) / 2));
}

#container21 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

#container21 > .wrapper > .inner {
	--gutters: 9rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container21 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container21.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container21.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container21.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container21.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container21.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container21.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container21.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container21.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container21.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container21.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container21.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container21.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container21.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container21.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container21.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container21.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container21.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container21.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container21.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container21.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container21.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container21.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container21 > .wrapper > .inner > :nth-child(1) {
	width: calc(60% + (var(--gutters) / 2));
}

#container21 > .wrapper > .inner > :nth-child(2) {
	width: calc(40% + (var(--gutters) / 2));
}

#container18 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

#container18 > .wrapper > .inner {
	--gutters: 9rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container18 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container18.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container18.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container18.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container18.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container18.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container18.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container18.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container18.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container18.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container18.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container18.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container18.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container18.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container18.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container18.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container18.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container18.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container18.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container18.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container18.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container18.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container18.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container18 > .wrapper > .inner > :nth-child(1) {
	width: calc(40% + (var(--gutters) / 2));
}

#container18 > .wrapper > .inner > :nth-child(2) {
	width: calc(60% + (var(--gutters) / 2));
}

#container41 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-image: linear-gradient(45deg, #000000 0%, #002691 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

#container41 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container41 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container41.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container41.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container41.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container41.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container41.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container41.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container41.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container41.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container41.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container41.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container41.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container41.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container41.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container41.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container41.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container41.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container41.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container41.columns > .wrapper > .inner > div:first-child, #container41.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container41.columns > .wrapper > .inner > div:last-child, #container41.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container41.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container41.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container41.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container41.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container41.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container10 {
	display: flex;
	width: 100%;
	min-height: 30rem;
	align-items: center;
	justify-content: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#container10 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 2rem;
	--padding-vertical: 2rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container10 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container10 video {
	border-radius: inherit;
	height: 100%;
	left: 0;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -2;
}

#container10:before {
	border-radius: inherit;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

#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 var(--gutters);
}

#container10.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container10.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container10.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container10.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container10.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container10.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container10.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container10.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container10.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container10.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container10.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container10.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container10.columns > .wrapper > .inner > 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: 30rem;
}

#container10.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container10.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container10.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container10.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container10 > .wrapper > .inner > :nth-child(1) {
	width: 20%;
}

#container10 > .wrapper > .inner > :nth-child(2) {
	width: 60%;
}

#container10 > .wrapper > .inner > :nth-child(3) {
	width: 20%;
}

#container05 {
	display: flex;
	width: 100%;
	min-height: 30rem;
	align-items: center;
	justify-content: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#container05 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 2rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container05 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container05 video {
	border-radius: inherit;
	height: 100%;
	left: 0;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -2;
}

#container05:before {
	border-radius: inherit;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

#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: flex-start;
}

#container05.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container05.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container05.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container05.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container05.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container05.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container05.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container05.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container05.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container05.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container05.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container05.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container05.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container05.columns > .wrapper > .inner > div:first-child, #container05.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container05.columns > .wrapper > .inner > div:last-child, #container05.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container05.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: 30rem;
}

#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 > .wrapper > .inner > :nth-child(1) {
	width: 20%;
}

#container05 > .wrapper > .inner > :nth-child(2) {
	width: 60%;
}

#container05 > .wrapper > .inner > :nth-child(3) {
	width: 20%;
}

#container22 {
	display: flex;
	width: 100%;
	min-height: 18rem;
	align-items: center;
	justify-content: center;
	background-attachment: scroll;
	background-image: url('images/container22.png');
	background-position: 50% 50%;
	background-repeat: repeat;
	background-size: cover;
}

#container22 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container22 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container22.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container22.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container22.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container22.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container22.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container22.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container22.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container22.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container22.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container22.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container22.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container22.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container22.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container22.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container22.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container22.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container22.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container22.columns > .wrapper > .inner > div:first-child, #container22.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container22.columns > .wrapper > .inner > div:last-child, #container22.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container22.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: 18rem;
}

#container22.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container22.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container22.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container22.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container24 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container24 > .wrapper > .inner {
	--gutters: 4rem;
	--padding-horizontal: 3rem;
	--padding-vertical: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container24 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container24.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container24.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container24.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container24.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container24.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container24.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container24.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container24.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container24.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container24.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container24.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container24.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container24.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container24.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container24.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container24.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container24.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container24.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container24.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container24.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container24.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container24.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container27 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container27 > .wrapper > .inner {
	--gutters: 4rem;
	--padding-horizontal: 3rem;
	--padding-vertical: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container27 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container27.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container27.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container27.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container27.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container27.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container27.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container27.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container27.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container27.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container27.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container27.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container27.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container27.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container27.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container27.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container27.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container27.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container27.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container27.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container27.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container27.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container27.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container27 > .wrapper > .inner > :nth-child(1) {
	width: calc(20% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container27 > .wrapper > .inner > :nth-child(2) {
	width: calc(55% + (var(--gutters) / 3));
}

#container27 > .wrapper > .inner > :nth-child(3) {
	width: calc(25% + (var(--gutters) / 3));
}

#container23 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container23 > .wrapper > .inner {
	--gutters: 4rem;
	--padding-horizontal: 3rem;
	--padding-vertical: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container23 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container23.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container23.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container23.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container23.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container23.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container23.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container23.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container23.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container23.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container23.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container23.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container23.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container23.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container23.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container23.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container23.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container23.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container23.columns > .wrapper > .inner > div:first-child, #container23.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container23.columns > .wrapper > .inner > div:last-child, #container23.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container23.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container23.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container23.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container23.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container23.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container23 > .wrapper > .inner > :nth-child(1) {
	width: calc(27% + (var(--gutters) / 2));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container23 > .wrapper > .inner > :nth-child(2) {
	width: calc(73% + (var(--gutters) / 2));
}

#container25 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container25 > .wrapper > .inner {
	--gutters: 4rem;
	--padding-horizontal: 3rem;
	--padding-vertical: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container25 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container25.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container25.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container25.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container25.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#container25.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container25.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container25.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container25.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container25.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container25.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container25.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container25.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container25.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container25.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container25.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container25.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container25.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container25.columns > .wrapper > .inner > div:first-child, #container25.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container25.columns > .wrapper > .inner > div:last-child, #container25.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container25.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container25.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container25.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container25.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container25.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#maintextbox {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#maintextbox > .wrapper > .inner {
	--gutters: 4rem;
	--padding-horizontal: 3rem;
	--padding-vertical: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#maintextbox > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#maintextbox.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#maintextbox.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#maintextbox.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#maintextbox.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

#maintextbox.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#maintextbox.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#maintextbox.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#maintextbox.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#maintextbox.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#maintextbox.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#maintextbox.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#maintextbox.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#maintextbox.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#maintextbox.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#maintextbox.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#maintextbox.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#maintextbox.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#maintextbox.columns > .wrapper > .inner > div:first-child, #maintextbox.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#maintextbox.columns > .wrapper > .inner > div:last-child, #maintextbox.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#maintextbox.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#maintextbox.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#maintextbox.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#maintextbox.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#maintextbox.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#maintextbox > .wrapper > .inner > :nth-child(1) {
	width: calc(20% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#maintextbox > .wrapper > .inner > :nth-child(2) {
	width: calc(55% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#maintextbox > .wrapper > .inner > :nth-child(3) {
	width: calc(25% + (var(--gutters) / 3));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container09 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
}

#container09 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container09 > .wrapper {
	max-width: var(--width);
	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: flex-start;
}

#container09.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container09.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container09.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container09.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container09.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container09.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container09.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container09.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container09.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container09.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container09.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 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 > div:first-child, #container09.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

#container09.columns > .wrapper > .inner > div:last-child, #container09.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

#container09.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container09.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container09.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container09 > .wrapper > .inner > :nth-child(1) {
	width: 25%;
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container09 > .wrapper > .inner > :nth-child(2) {
	width: 25%;
}

#container09 > .wrapper > .inner > :nth-child(3) {
	width: 25%;
}

#container09 > .wrapper > .inner > :nth-child(4) {
	width: 25%;
	--alignment: right;
	--flex-alignment: flex-end;
	--indent-left: 0;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: 0;
}

.buttons {
	cursor: default;
	display: flex;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	padding: 0;
}

.buttons li {
	max-width: 100%;
	text-align: var(--alignment);
}

.buttons li a {
	align-items: center;
	justify-content: center;
	max-width: 100%;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	white-space: nowrap;
}

#buttons07 {
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons07:not(:first-child) {
	margin-top: 0rem !important;
}

#buttons07:not(:last-child) {
	margin-bottom: 0rem !important;
}

#buttons07 li a {
	display: inline-flex;
	width: auto;
	height: 1.75rem;
	line-height: 1.75rem;
	padding: 0 0.875rem;
	vertical-align: middle;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.875rem);
	font-size: 1.375em;
	font-weight: 400;
	border-radius: 0.375rem;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons07 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	width: 0.875em;
	margin-left: -0.125em;
	margin-right: calc(0.5em + 0.05rem);
	transition: fill 0.375s ease;
}

#buttons07 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

#buttons07 .button {
	background-color: transparent;
	color: #FFFFFF;
}

#buttons07 .button:hover {
	background-color: #030E2E !important;
}

#buttons07 li a:hover {
	transform: scale(1.025);
}

#buttons07 .n01 svg {
	fill: #000000;
}

#buttons07 .n01 {
	cursor: pointer;
}

#buttons07 .n02 {
	cursor: pointer;
}

#buttons07 .n03 {
	cursor: pointer;
}

#buttons07 .n04 {
	cursor: pointer;
}

#buttons07 .n05 {
	cursor: pointer;
}

#buttons01 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons01:not(:first-child) {
	margin-top: 1.125rem !important;
}

#buttons01:not(:last-child) {
	margin-bottom: 1.125rem !important;
}

#buttons01 li a {
	display: inline-block;
	width: 10rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.625rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons01 .button {
	background-color: #004A19;
	color: #FFFFFF;
}

#buttons01 li a:hover {
	transform: scale(1.06);
}

#buttons01 .n01 {
	cursor: pointer;
}

#buttons33 {
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons33:not(:first-child) {
	margin-top: 0rem !important;
}

#buttons33:not(:last-child) {
	margin-bottom: 0rem !important;
}

#buttons33 li a {
	display: inline-flex;
	width: auto;
	height: 3.5rem;
	line-height: 3.5rem;
	padding: 0 1.75rem;
	vertical-align: middle;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 1.75rem);
	font-size: 1.375em;
	font-weight: 400;
	border-radius: 0.375rem;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons33 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	width: 0.875em;
	margin-left: -0.125em;
	margin-right: calc(0.5em + 0.05rem);
	transition: fill 0.375s ease;
}

#buttons33 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

#buttons33 .button {
	background-color: transparent;
	color: #FFFFFF;
}

#buttons33 .button:hover {
	background-color: #030E2E !important;
}

#buttons33 li a:hover {
	transform: scale(1.025);
}

#buttons33 .n01 {
	cursor: pointer;
}

#buttons33 .n02 {
	cursor: pointer;
}

#buttons33 .n03 {
	cursor: pointer;
}

#buttons33 .n04 {
	cursor: pointer;
}

#buttons33 .n05 {
	cursor: pointer;
}

#buttons11 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons11:not(:first-child) {
	margin-top: 1.125rem !important;
}

#buttons11:not(:last-child) {
	margin-bottom: 1.125rem !important;
}

#buttons11 li a {
	display: inline-flex;
	width: 12.875rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.625rem;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons11 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	width: 0.875em;
	margin-left: -0.125em;
	margin-right: calc(0.5em + 0.05rem);
	transition: fill 0.375s ease;
}

#buttons11 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

#buttons11 .button {
	background-color: #004A19;
	color: #FFFFFF;
}

#buttons11 li a:hover {
	transform: scale(1.06);
}

#buttons11 .n01 {
	cursor: pointer;
}

#buttons04 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons04 li a {
	display: inline-flex;
	width: auto;
	height: 1.875rem;
	line-height: 1.875rem;
	padding: 0 0.9375rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.9375rem);
	font-size: 1em;
	font-weight: 400;
	border-radius: 0.375rem;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons04 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	width: 0.875em;
	margin-left: -0.125em;
	margin-right: calc(0.5em + 0.05rem);
	transition: fill 0.25s ease;
}

#buttons04 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

#buttons04 .button {
	background-color: #000000;
	color: #FFFFFF;
}

#buttons04 li a:hover {
	transform: scale(1.0425);
}

#buttons48 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons48 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.5em;
	font-weight: 400;
	border-radius: 0rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons48 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons48 li a:hover {
	transform: scale(1.0425);
}

#buttons48 .n04 {
	background-color: #1400FF;
}

#buttons25 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons25 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.5em;
	font-weight: 400;
	border-radius: 0rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons25 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons25 li a:hover {
	transform: scale(1.0425);
}

#buttons25 .n01 {
	background-color: #1400FF;
}

#buttons66 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons66 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.5em;
	font-weight: 400;
	border-radius: 0rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons66 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons66 li a:hover {
	transform: scale(1.0425);
}

#buttons66 .n01 {
	background-color: #1400FF;
}

#buttons54 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons54 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons54 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons55 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons55 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons55 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons56 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons56 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons56 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons50 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons50 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons50 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons57 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons57 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons57 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons58 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons58 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons58 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons59 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons59 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons59 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons17 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons17 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons17 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons20 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons20 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons20 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons38 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons38 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons38 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons61 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons61 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.5em;
	font-weight: 400;
	border-radius: 0rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons61 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons61 li a:hover {
	transform: scale(1.0425);
}

#buttons61 .n02 {
	background-color: #1400FF;
}

#buttons67 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons67 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.5em;
	font-weight: 400;
	border-radius: 0rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons67 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons67 li a:hover {
	transform: scale(1.0425);
}

#buttons67 .n02 {
	background-color: #1400FF;
}

#buttons60 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons60 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons60 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons62 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons62 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.5em;
	font-weight: 400;
	border-radius: 0rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons62 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons62 li a:hover {
	transform: scale(1.0425);
}

#buttons62 .n03 {
	background-color: #1400FF;
}

#buttons68 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons68 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.5em;
	font-weight: 400;
	border-radius: 0rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons68 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons68 li a:hover {
	transform: scale(1.0425);
}

#buttons68 .n03 {
	background-color: #1400FF;
}

#buttons69 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons69 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.5em;
	font-weight: 400;
	border-radius: 0rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons69 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons69 li a:hover {
	transform: scale(1.0425);
}

#buttons69 .n04 {
	background-color: #1400FF;
}

#buttons65 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons65 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons65 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons09 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.25rem;
	flex-direction: column;
	flex-wrap: nowrap;
}

#buttons09 li a {
	display: inline-flex;
	width: 20.625rem;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.40625rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.40625rem);
	font-size: 1.375em;
	font-weight: 400;
	border-radius: 0.5rem;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons09 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	width: 0.875em;
	margin-left: -0.125em;
	margin-right: calc(0.5rem + 0.05rem);
	transition: fill 0.375s ease;
}

#buttons09 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

#buttons09 .button {
	background-color: transparent;
	color: #FFFFFF;
}

#buttons09 li a:hover {
	transform: scale(1.0425);
}

#buttons08 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.25rem;
	flex-direction: column;
	flex-wrap: nowrap;
}

#buttons08:not(:first-child) {
	margin-top: 0rem !important;
}

#buttons08:not(:last-child) {
	margin-bottom: 0rem !important;
}

#buttons08 li a {
	display: inline-flex;
	width: 13.625rem;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.40625rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.40625rem);
	font-size: 1.375em;
	font-weight: 400;
	border-radius: 0rem;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons08 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	width: 0.875em;
	margin-left: -0.125em;
	margin-right: calc(0.5rem + 0.05rem);
	transition: fill 0.375s ease;
}

#buttons08 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

#buttons08 .button {
	background-color: transparent;
	color: #FFFFFF;
}

#buttons08 li a:hover {
	transform: scale(1.0425);
}

#buttons10 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.25rem;
	flex-direction: column;
	flex-wrap: nowrap;
}

#buttons10 li a {
	display: inline-flex;
	width: 7.625rem;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.40625rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.40625rem);
	font-size: 1.375em;
	font-weight: 400;
	border-radius: 0.5rem;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons10 li a svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	width: 0.875em;
	margin-left: -0.125em;
	margin-right: calc(0.5rem + 0.05rem);
	transition: fill 0.375s ease;
}

#buttons10 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

#buttons10 .button {
	background-color: transparent;
	color: #FFFFFF;
}

#buttons10 li a:hover {
	transform: scale(1.0425);
}

#bt000a {
	gap: 2rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt000a li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#bt000a .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt000a li a:hover {
	transform: scale(1.0425);
}

#bt000a .n01 {
	cursor: pointer;
}

#bt000b {
	gap: 2rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt000b li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#bt000b .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt000b .n01 {
	background-color: #1400FF;
}

#bt001a {
	gap: 2rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt001a li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#bt001a .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt001a li a:hover {
	transform: scale(1.0425);
}

#bt001a .n01 {
	cursor: pointer;
}

#bt001b {
	gap: 2rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt001b li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#bt001b .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt001b .n01 {
	background-color: #1400FF;
}

#bt002a {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt002a li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#bt002a .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt002a li a:hover {
	transform: scale(1.0425);
}

#bt002a .n01 {
	cursor: pointer;
}

#bt002b {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt002b li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#bt002b .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt002b .n01 {
	background-color: #1400FF;
}

#bt003a {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt003a li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#bt003a .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt003a li a:hover {
	transform: scale(1.0425);
}

#bt003a .n01 {
	cursor: pointer;
}

#bt003b {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt003b li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#bt003b .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt003b .n01 {
	background-color: #1400FF;
}

#bt004a {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt004a li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#bt004a .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt004a li a:hover {
	transform: scale(1.0425);
}

#bt004a .n01 {
	cursor: pointer;
}

#bt004b {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt004b li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#bt004b .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt004b .n01 {
	background-color: #1400FF;
}

#buttons27 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons27:not(:first-child) {
	margin-top: 0.375rem !important;
}

#buttons27:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

#buttons27 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons27 .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#buttons27 .n01 {
	background-color: #091D57;
}

#buttons27 .n02 {
	background-color: #091D57;
}

#buttons15 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons15:not(:first-child) {
	margin-top: 0.375rem !important;
}

#buttons15:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

#buttons15 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons15 .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#buttons15 .n01 {
	background-color: #091D57;
}

#buttons12 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons12:not(:first-child) {
	margin-top: 0.375rem !important;
}

#buttons12:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

#buttons12 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons12 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons12 .n01 {
	background-color: #091D57;
}

#bt000am {
	gap: 2rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt000am li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#bt000am .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt000am li a:hover {
	transform: scale(1.0425);
}

#bt000am .n01 {
	background-color: #030E2E;
	cursor: pointer;
}

#bt000bm {
	gap: 2rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt000bm li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#bt000bm .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt000bm .n01 {
	background-color: #1400FF;
}

#bt001am {
	gap: 2rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt001am li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#bt001am .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt001am li a:hover {
	transform: scale(1.0425);
}

#bt001am .n01 {
	cursor: pointer;
}

#bt001bm {
	gap: 2rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt001bm li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#bt001bm .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt001bm .n01 {
	background-color: #1400FF;
}

#bt002am {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt002am li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#bt002am .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt002am li a:hover {
	transform: scale(1.0425);
}

#bt002am .n01 {
	cursor: pointer;
}

#bt002bm {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt002bm li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#bt002bm .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt002bm .n01 {
	background-color: #1400FF;
}

#bt003am {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt003am li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#bt003am .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt003am li a:hover {
	transform: scale(1.0425);
}

#bt003am .n01 {
	cursor: pointer;
}

#bt003bm {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt003bm li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#bt003bm .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt003bm .n01 {
	background-color: #1400FF;
}

#bt004am {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt004am li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#bt004am .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt004am li a:hover {
	transform: scale(1.0425);
}

#bt004am .n01 {
	cursor: pointer;
}

#bt004bm {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#bt004bm li a {
	display: inline-block;
	width: 9.5rem;
	height: 2rem;
	line-height: 2rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.5rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#bt004bm .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#bt004bm .n01 {
	background-color: #1400FF;
}

#buttons36 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons36:not(:first-child) {
	margin-top: 0.375rem !important;
}

#buttons36:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

#buttons36 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons36 .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#buttons36 .n01 {
	background-color: #091D57;
}

#buttons36 .n02 {
	background-color: #091D57;
}

#buttons42 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons42:not(:first-child) {
	margin-top: 0.375rem !important;
}

#buttons42:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

#buttons42 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons42 .button {
	background-color: #030E2E;
	color: #FFFFFF;
}

#buttons42 .n01 {
	background-color: #091D57;
}

#buttons43 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons43:not(:first-child) {
	margin-top: 0.375rem !important;
}

#buttons43:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

#buttons43 li a {
	display: inline-block;
	width: auto;
	height: 1.625rem;
	line-height: 1.625rem;
	padding: 0 0.8125rem;
	vertical-align: middle;
	font-family: 'Averia Sans Libre', sans-serif;
	letter-spacing: 0.05rem;
	padding-left: calc(0.05rem + 0.8125rem);
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: none;
}

#buttons43 .button {
	background-color: #091D57;
	color: #FFFFFF;
}

#buttons43 .n01 {
	background-color: #091D57;
}

h1, h2, h3, p {
	direction: var(--site-language-direction);
	position: relative;
}

h1 span.p, h2 span.p, h3 span.p, p span.p {
	display: block;
	position: relative;
}

h1 span[style], h2 span[style], h3 span[style], p span[style], h1 strong, h2 strong, h3 strong, p strong, h1 a, h2 a, h3 a, p a, h1 code, h2 code, h3 code, p code, h1 mark, h2 mark, h3 mark, p mark, h1 spoiler-text, h2 spoiler-text, h3 spoiler-text, p spoiler-text {
	-webkit-text-fill-color: currentcolor;
}

#text77:not(:first-child) {
	margin-top: 0.375rem !important;
}

#text77:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

#text77 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.875em;
	line-height: 1.25;
	font-weight: 400;
}

#text77 a {
	text-decoration: none;
}

#text77 a:hover {
	text-decoration: underline;
}

#text77 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text78:not(:first-child) {
	margin-top: 0.375rem !important;
}

#text78:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

#text78 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.875em;
	line-height: 1.25;
	font-weight: 400;
}

#text78 a {
	text-decoration: none;
}

#text78 a:hover {
	text-decoration: underline;
}

#text78 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text79:not(:first-child) {
	margin-top: 0.375rem !important;
}

#text79:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

#text79 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.875em;
	line-height: 1.25;
	font-weight: 400;
}

#text79 a {
	text-decoration: none;
}

#text79 a:hover {
	text-decoration: underline;
}

#text79 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text80:not(:first-child) {
	margin-top: 0.375rem !important;
}

#text80:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

#text80 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.875em;
	line-height: 1.25;
	font-weight: 400;
}

#text80 a {
	text-decoration: none;
}

#text80 a:hover {
	text-decoration: underline;
}

#text80 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text68:not(:first-child) {
	margin-top: 0.375rem !important;
}

#text68:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

#text68 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.875em;
	line-height: 1.25;
	font-weight: 400;
}

#text68 a {
	text-decoration: none;
}

#text68 a:hover {
	text-decoration: underline;
}

#text68 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text76:not(:first-child) {
	margin-top: 0rem !important;
}

#text76:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text76 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.875em;
	line-height: 1.25;
	font-weight: 400;
}

#text76 a {
	text-decoration: none;
}

#text76 a:hover {
	text-decoration: underline;
}

#text76 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text69:not(:first-child) {
	margin-top: 0rem !important;
}

#text69:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text69 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.875em;
	line-height: 1.25;
	font-weight: 400;
}

#text69 a {
	text-decoration: none;
}

#text69 a:hover {
	text-decoration: underline;
}

#text69 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text66:not(:first-child) {
	margin-top: 0rem !important;
}

#text66:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text66 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.875em;
	line-height: 1.25;
	font-weight: 400;
}

#text66 a {
	text-decoration: none;
}

#text66 a:hover {
	text-decoration: underline;
}

#text66 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text67:not(:first-child) {
	margin-top: 0rem !important;
}

#text67:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text67 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.875em;
	line-height: 1.25;
	font-weight: 400;
}

#text67 a {
	text-decoration: none;
}

#text67 a:hover {
	text-decoration: underline;
}

#text67 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text65:not(:first-child) {
	margin-top: 0rem !important;
}

#text65:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text65 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.875em;
	line-height: 1.25;
	font-weight: 400;
}

#text65 a {
	text-decoration: none;
}

#text65 a:hover {
	text-decoration: underline;
}

#text65 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text02 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	padding-left: 1.75rem;
	padding-right: 1.75rem;
	font-size: 2.5em;
	line-height: 1.25;
	font-weight: 400;
}

#text02 a {
	text-decoration: underline;
}

#text02 a:hover {
	text-decoration: none;
}

#text02 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text54 {
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 3em;
	line-height: 1.25;
	font-weight: 400;
}

#text54 a {
	text-decoration: underline;
}

#text54 a:hover {
	text-decoration: none;
}

#text54 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text04:not(:first-child) {
	margin-top: 0rem !important;
}

#text04:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text04 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2.5em;
	line-height: 1.25;
	font-weight: 400;
}

#text04 a {
	text-decoration: underline;
}

#text04 a:hover {
	text-decoration: none;
}

#text04 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text08:not(:first-child) {
	margin-top: 0rem !important;
}

#text08:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text08 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text08 a {
	text-decoration: underline;
}

#text08 a:hover {
	text-decoration: none;
}

#text08 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text81 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 3.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text81 a {
	text-decoration: underline;
}

#text81 a:hover {
	text-decoration: none;
}

#text81 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text23 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.75em;
	line-height: 1.25;
	font-weight: 400;
}

#text23 a {
	text-decoration: underline;
}

#text23 a:hover {
	text-decoration: none;
}

#text23 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text24:not(:first-child) {
	margin-top: 0rem !important;
}

#text24:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text24 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text24 a {
	text-decoration: underline;
}

#text24 a:hover {
	text-decoration: none;
}

#text24 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text12 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.75em;
	line-height: 1.25;
	font-weight: 400;
}

#text12 a {
	text-decoration: underline;
}

#text12 a:hover {
	text-decoration: none;
}

#text12 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text25:not(:first-child) {
	margin-top: 0rem !important;
}

#text25:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text25 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text25 a {
	text-decoration: underline;
}

#text25 a:hover {
	text-decoration: none;
}

#text25 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text21 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.75em;
	line-height: 1.25;
	font-weight: 400;
}

#text21 a {
	text-decoration: underline;
}

#text21 a:hover {
	text-decoration: none;
}

#text21 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text22:not(:first-child) {
	margin-top: 0rem !important;
}

#text22:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text22 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text22 a {
	text-decoration: underline;
}

#text22 a:hover {
	text-decoration: none;
}

#text22 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text11:not(:first-child) {
	margin-top: 0rem !important;
}

#text11:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text11 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 3em;
	line-height: 1.25;
	font-weight: 400;
}

#text11 a {
	text-decoration: underline;
}

#text11 a:hover {
	text-decoration: none;
}

#text11 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text19 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.75em;
	line-height: 1.25;
	font-weight: 400;
}

#text19 a {
	text-decoration: underline;
}

#text19 a:hover {
	text-decoration: none;
}

#text19 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text20:not(:first-child) {
	margin-top: 0rem !important;
}

#text20:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text20 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text20 a {
	text-decoration: underline;
}

#text20 a:hover {
	text-decoration: none;
}

#text20 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text15 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.75em;
	line-height: 1.25;
	font-weight: 400;
}

#text15 a {
	text-decoration: underline;
}

#text15 a:hover {
	text-decoration: none;
}

#text15 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text17:not(:first-child) {
	margin-top: 0rem !important;
}

#text17:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text17 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text17 a {
	text-decoration: underline;
}

#text17 a:hover {
	text-decoration: none;
}

#text17 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text16 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.75em;
	line-height: 1.25;
	font-weight: 400;
}

#text16 a {
	text-decoration: underline;
}

#text16 a:hover {
	text-decoration: none;
}

#text16 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text18:not(:first-child) {
	margin-top: 0rem !important;
}

#text18:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text18 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text18 a {
	color: #1E90FF;
	text-decoration: none;
}

#text18 a:hover {
	text-decoration: underline;
}

#text18 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text28 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 3em;
	line-height: 1.25;
	font-weight: 400;
}

#text28 a {
	text-decoration: underline;
}

#text28 a:hover {
	text-decoration: none;
}

#text28 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text05 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	padding-left: 6rem;
	padding-right: 6rem;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.625em;
	line-height: 1.125;
	font-weight: 400;
}

#text05 a {
	text-decoration: underline;
}

#text05 a:hover {
	text-decoration: none;
}

#text05 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text01 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 3.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text01 a {
	text-decoration: underline;
}

#text01 a:hover {
	text-decoration: none;
}

#text01 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text107 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text107 a {
	text-decoration: none;
}

#text107 a:hover {
	text-decoration: underline;
}

#text107 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text108 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.25;
	font-weight: 500;
}

#text108 a {
	text-decoration: none;
}

#text108 a:hover {
	text-decoration: underline;
}

#text108 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text109 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text109 a {
	text-decoration: none;
}

#text109 a:hover {
	text-decoration: underline;
}

#text109 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text110 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.25;
	font-weight: 500;
}

#text110 a {
	text-decoration: none;
}

#text110 a:hover {
	text-decoration: underline;
}

#text110 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text111 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text111 a {
	text-decoration: none;
}

#text111 a:hover {
	text-decoration: underline;
}

#text111 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text112 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.25;
	font-weight: 500;
}

#text112 a {
	text-decoration: none;
}

#text112 a:hover {
	text-decoration: underline;
}

#text112 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text97 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text97 a {
	text-decoration: none;
}

#text97 a:hover {
	text-decoration: underline;
}

#text97 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text98 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.25;
	font-weight: 500;
}

#text98 a {
	text-decoration: none;
}

#text98 a:hover {
	text-decoration: underline;
}

#text98 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text113 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text113 a {
	text-decoration: none;
}

#text113 a:hover {
	text-decoration: underline;
}

#text113 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text114 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.25;
	font-weight: 500;
}

#text114 a {
	text-decoration: none;
}

#text114 a:hover {
	text-decoration: underline;
}

#text114 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text115 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text115 a {
	text-decoration: none;
}

#text115 a:hover {
	text-decoration: underline;
}

#text115 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text116 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.25;
	font-weight: 500;
}

#text116 a {
	text-decoration: none;
}

#text116 a:hover {
	text-decoration: underline;
}

#text116 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text117 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text117 a {
	text-decoration: none;
}

#text117 a:hover {
	text-decoration: underline;
}

#text117 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text118 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.25;
	font-weight: 500;
}

#text118 a {
	text-decoration: none;
}

#text118 a:hover {
	text-decoration: underline;
}

#text118 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text30 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text30 a {
	text-decoration: none;
}

#text30 a:hover {
	text-decoration: underline;
}

#text30 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text48 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.25;
	font-weight: 500;
}

#text48 a {
	text-decoration: none;
}

#text48 a:hover {
	text-decoration: underline;
}

#text48 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text49 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text49 a {
	text-decoration: none;
}

#text49 a:hover {
	text-decoration: underline;
}

#text49 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text50 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.25;
	font-weight: 500;
}

#text50 a {
	text-decoration: none;
}

#text50 a:hover {
	text-decoration: underline;
}

#text50 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text57 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text57 a {
	text-decoration: none;
}

#text57 a:hover {
	text-decoration: underline;
}

#text57 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text58 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.25;
	font-weight: 500;
}

#text58 a {
	text-decoration: none;
}

#text58 a:hover {
	text-decoration: underline;
}

#text58 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text07 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 3.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text07 a {
	text-decoration: underline;
}

#text07 a:hover {
	text-decoration: none;
}

#text07 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text119 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text119 a {
	text-decoration: none;
}

#text119 a:hover {
	text-decoration: underline;
}

#text119 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text120 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.25;
	font-weight: 500;
}

#text120 a {
	text-decoration: none;
}

#text120 a:hover {
	text-decoration: underline;
}

#text120 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text60 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 3.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text60 a {
	text-decoration: underline;
}

#text60 a:hover {
	text-decoration: none;
}

#text60 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text86 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 3.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text86 a {
	text-decoration: underline;
}

#text86 a:hover {
	text-decoration: none;
}

#text86 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text125 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text125 a {
	text-decoration: none;
}

#text125 a:hover {
	text-decoration: underline;
}

#text125 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text126 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.25;
	font-weight: 500;
}

#text126 a {
	text-decoration: none;
}

#text126 a:hover {
	text-decoration: underline;
}

#text126 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text31:not(:first-child) {
	margin-top: 0rem !important;
}

#text31:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text31 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2.5em;
	line-height: 1.25;
	font-weight: 400;
}

#text31 a {
	text-decoration: underline;
}

#text31 a:hover {
	text-decoration: none;
}

#text31 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text32:not(:first-child) {
	margin-top: 0rem !important;
}

#text32:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text32 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text32 a {
	text-decoration: underline;
}

#text32 a:hover {
	text-decoration: none;
}

#text32 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text33:not(:first-child) {
	margin-top: 0rem !important;
}

#text33:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text33 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2.5em;
	line-height: 1.25;
	font-weight: 400;
}

#text33 a {
	text-decoration: underline;
}

#text33 a:hover {
	text-decoration: none;
}

#text33 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text34:not(:first-child) {
	margin-top: 0rem !important;
}

#text34:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text34 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text34 a {
	text-decoration: underline;
}

#text34 a:hover {
	text-decoration: none;
}

#text34 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text35:not(:first-child) {
	margin-top: 0rem !important;
}

#text35:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text35 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2.5em;
	line-height: 1.25;
	font-weight: 400;
}

#text35 a {
	text-decoration: underline;
}

#text35 a:hover {
	text-decoration: none;
}

#text35 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text36:not(:first-child) {
	margin-top: 0rem !important;
}

#text36:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text36 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text36 a {
	text-decoration: underline;
}

#text36 a:hover {
	text-decoration: none;
}

#text36 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text37:not(:first-child) {
	margin-top: 0rem !important;
}

#text37:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text37 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2.5em;
	line-height: 1.25;
	font-weight: 400;
}

#text37 a {
	text-decoration: underline;
}

#text37 a:hover {
	text-decoration: none;
}

#text37 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text38:not(:first-child) {
	margin-top: 0rem !important;
}

#text38:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text38 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text38 a {
	text-decoration: underline;
}

#text38 a:hover {
	text-decoration: none;
}

#text38 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text09:not(:first-child) {
	margin-top: 0rem !important;
}

#text09:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text09 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Abel', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 400;
}

#text09 a {
	text-decoration: underline;
}

#text09 a:hover {
	text-decoration: none;
}

#text09 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text61:not(:first-child) {
	margin-top: 0rem !important;
}

#text61:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text61 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text61 a {
	text-decoration: underline;
}

#text61 a:hover {
	text-decoration: none;
}

#text61 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text10:not(:first-child) {
	margin-top: 0rem !important;
}

#text10:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text10 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text10 a {
	text-decoration: underline;
}

#text10 a:hover {
	text-decoration: none;
}

#text10 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text06 {
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 3em;
	line-height: 1.25;
	font-weight: 400;
}

#text06 a {
	text-decoration: underline;
}

#text06 a:hover {
	text-decoration: none;
}

#text06 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text14:not(:first-child) {
	margin-top: 0.75rem !important;
}

#text14:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

#text14 {
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 1.875em;
	line-height: 1.25;
	font-weight: 400;
}

#text14 a {
	color: #0099FF;
	text-decoration: none;
}

#text14 a:hover {
	text-decoration: underline;
}

#text14 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text13:not(:first-child) {
	margin-top: 0rem !important;
}

#text13:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text13 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 2em;
	line-height: 1.25;
	font-weight: 400;
}

#text13 a {
	color: #0099FF;
	text-decoration: none;
}

#text13 a:hover {
	text-decoration: underline;
}

#text13 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text53:not(:first-child) {
	margin-top: 0rem !important;
}

#text53:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text53 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Bakbak One', sans-serif;
	font-size: 2em;
	line-height: 1.25;
	font-weight: 400;
}

#text53 a {
	color: #0099FF;
	text-decoration: none;
}

#text53 a:hover {
	text-decoration: underline;
}

#text53 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#shtcc-s0:not(:first-child) {
	margin-top: 0rem !important;
}

#shtcc-s0:not(:last-child) {
	margin-bottom: 0rem !important;
}

#shtcc-s0 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 400;
}

#shtcc-s0 a {
	color: #0099FF;
	text-decoration: none;
}

#shtcc-s0 a:hover {
	text-decoration: underline;
}

#shtcc-s0 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#shtcc-s1:not(:first-child) {
	margin-top: 0rem !important;
}

#shtcc-s1:not(:last-child) {
	margin-bottom: 0rem !important;
}

#shtcc-s1 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 400;
}

#shtcc-s1 a {
	color: #0099FF;
	text-decoration: none;
}

#shtcc-s1 a:hover {
	text-decoration: underline;
}

#shtcc-s1 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#shtcc-s2:not(:first-child) {
	margin-top: 0rem !important;
}

#shtcc-s2:not(:last-child) {
	margin-bottom: 0rem !important;
}

#shtcc-s2 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 400;
}

#shtcc-s2 a {
	color: #0099FF;
	text-decoration: none;
}

#shtcc-s2 a:hover {
	text-decoration: underline;
}

#shtcc-s2 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#shtcc-s3:not(:first-child) {
	margin-top: 0rem !important;
}

#shtcc-s3:not(:last-child) {
	margin-bottom: 0rem !important;
}

#shtcc-s3 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 400;
}

#shtcc-s3 a {
	color: #0099FF;
	text-decoration: none;
}

#shtcc-s3 a:hover {
	text-decoration: underline;
}

#shtcc-s3 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#shtcc-s4:not(:first-child) {
	margin-top: 0rem !important;
}

#shtcc-s4:not(:last-child) {
	margin-bottom: 0rem !important;
}

#shtcc-s4 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 400;
}

#shtcc-s4 a {
	color: #0099FF;
	text-decoration: none;
}

#shtcc-s4 a:hover {
	text-decoration: underline;
}

#shtcc-s4 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text75:not(:first-child) {
	margin-top: 0rem !important;
}

#text75:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text75 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.375em;
	line-height: 1.25;
	font-weight: 400;
}

#text75 a {
	color: #0099FF;
	text-decoration: none;
}

#text75 a:hover {
	text-decoration: underline;
}

#text75 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text41:not(:first-child) {
	margin-top: 0rem !important;
}

#text41:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text41 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.375em;
	line-height: 1.25;
	font-weight: 400;
}

#text41 a {
	color: #0099FF;
	text-decoration: none;
}

#text41 a:hover {
	text-decoration: underline;
}

#text41 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text40:not(:first-child) {
	margin-top: 0rem !important;
}

#text40:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text40 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.375em;
	line-height: 1.25;
	font-weight: 400;
}

#text40 a {
	color: #0099FF;
	text-decoration: none;
}

#text40 a:hover {
	text-decoration: underline;
}

#text40 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#shtcc-s0m:not(:first-child) {
	margin-top: 0rem !important;
}

#shtcc-s0m:not(:last-child) {
	margin-bottom: 0rem !important;
}

#shtcc-s0m {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 400;
}

#shtcc-s0m a {
	color: #0099FF;
	text-decoration: none;
}

#shtcc-s0m a:hover {
	text-decoration: underline;
}

#shtcc-s0m span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#shtcc-s1m:not(:first-child) {
	margin-top: 0rem !important;
}

#shtcc-s1m:not(:last-child) {
	margin-bottom: 0rem !important;
}

#shtcc-s1m {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 400;
}

#shtcc-s1m a {
	color: #0099FF;
	text-decoration: none;
}

#shtcc-s1m a:hover {
	text-decoration: underline;
}

#shtcc-s1m span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#shtcc-s2m:not(:first-child) {
	margin-top: 0rem !important;
}

#shtcc-s2m:not(:last-child) {
	margin-bottom: 0rem !important;
}

#shtcc-s2m {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 400;
}

#shtcc-s2m a {
	color: #0099FF;
	text-decoration: none;
}

#shtcc-s2m a:hover {
	text-decoration: underline;
}

#shtcc-s2m span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#shtcc-s3m:not(:first-child) {
	margin-top: 0rem !important;
}

#shtcc-s3m:not(:last-child) {
	margin-bottom: 0rem !important;
}

#shtcc-s3m {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 400;
}

#shtcc-s3m a {
	color: #0099FF;
	text-decoration: none;
}

#shtcc-s3m a:hover {
	text-decoration: underline;
}

#shtcc-s3m span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#shtcc-s4m:not(:first-child) {
	margin-top: 0rem !important;
}

#shtcc-s4m:not(:last-child) {
	margin-bottom: 0rem !important;
}

#shtcc-s4m {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 400;
}

#shtcc-s4m a {
	color: #0099FF;
	text-decoration: none;
}

#shtcc-s4m a:hover {
	text-decoration: underline;
}

#shtcc-s4m span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text88:not(:first-child) {
	margin-top: 0rem !important;
}

#text88:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text88 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.375em;
	line-height: 1.25;
	font-weight: 400;
}

#text88 a {
	color: #0099FF;
	text-decoration: none;
}

#text88 a:hover {
	text-decoration: underline;
}

#text88 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text47:not(:first-child) {
	margin-top: 0rem !important;
}

#text47:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text47 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.375em;
	line-height: 1.25;
	font-weight: 400;
}

#text47 a {
	color: #0099FF;
	text-decoration: none;
}

#text47 a:hover {
	text-decoration: underline;
}

#text47 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text51:not(:first-child) {
	margin-top: 0rem !important;
}

#text51:not(:last-child) {
	margin-bottom: 0rem !important;
}

#text51 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Averia Sans Libre', sans-serif;
	font-size: 1.375em;
	line-height: 1.25;
	font-weight: 400;
}

#text51 a {
	color: #0099FF;
	text-decoration: none;
}

#text51 a:hover {
	text-decoration: underline;
}

#text51 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#header {
	margin-bottom: 0rem !important;
}

#footer {
	margin-top: 0rem !important;
}

@media (max-width: 1920px) {
	
}

@media (max-width: 1680px) {
	html {
		font-size: 10pt;
	}
}

@media (max-width: 1280px) {
	html {
		font-size: 10pt;
	}
}

@media (max-width: 1024px) {
	
}

@media (max-width: 980px) {
	html {
		font-size: 9pt;
	}
}

@media (max-width: 736px) {
	html {
		font-size: 8pt;
	}
	
	
	
	#main > .inner {
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 0rem;
	}
	
	#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 > header > .full:first-child {
		margin-top: -2rem !important;
	}
	
	#main > .inner > footer > .full:last-child {
		margin-bottom: -2rem !important;
	}
	
	#divider42:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider42:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider42:before {
		width: 1rem;
	}
	
	#divider50:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider50:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider50:before {
		width: 1rem;
	}
	
	#divider45:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	#divider45:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	#divider45:before {
		width: 1rem;
	}
	
	#divider43:not(:first-child) {
		margin-top: 2rem !important;
	}
	
	#divider43:not(:last-child) {
		margin-bottom: 2rem !important;
	}
	
	#divider43:before {
		width: 1rem;
	}
	
	#divider97:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider97:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider97:before {
		width: 1rem;
	}
	
	#divider98:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider98:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider98:before {
		width: 1rem;
	}
	
	#divider99:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider99:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider99:before {
		width: 1rem;
	}
	
	#divider89:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider89:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider89:before {
		width: 1rem;
	}
	
	#divider04:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider04:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider04:before {
		width: 1rem;
	}
	
	#divider90:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider90:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider90:before {
		width: 1rem;
	}
	
	#divider91:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider91:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider91:before {
		width: 1rem;
	}
	
	#divider09:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider09:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider09:before {
		width: 1rem;
	}
	
	#divider22:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider22:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider22:before {
		width: 1rem;
	}
	
	#divider59:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider59:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider59:before {
		width: 1rem;
	}
	
	#divider61:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider61:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider61:before {
		width: 1rem;
	}
	
	#divider49:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider49:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider49:before {
		width: 1rem;
	}
	
	#divider51:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider51:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider51:before {
		width: 1rem;
	}
	
	#divider63:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider63:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider63:before {
		width: 1rem;
	}
	
	#divider65:not(:first-child) {
		margin-top: 8rem !important;
	}
	
	#divider65:not(:last-child) {
		margin-bottom: 8rem !important;
	}
	
	#divider65:before {
		width: 1rem;
	}
	
	#divider102:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	#divider102:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	#divider102:before {
		width: 1rem;
	}
	
	#divider32:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider32:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider32:before {
		width: 1rem;
	}
	
	#divider15:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider15:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider15:before {
		width: 1rem;
	}
	
	#divider10:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider10:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider10:before {
		width: 1rem;
	}
	
	#divider13:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	#divider13:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	#divider13:before {
		width: 1rem;
	}
	
	#divider11:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider11:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider11:before {
		width: 1rem;
	}
	
	#divider64:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider64:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider64:before {
		width: 1rem;
	}
	
	#divider20:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider20:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider20:before {
		width: 1rem;
	}
	
	#divider16:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider16:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider16:before {
		width: 1rem;
	}
	
	#divider17:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider17:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider17:before {
		width: 1rem;
	}
	
	#divider19:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider19:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider19:before {
		width: 1rem;
	}
	
	#divider03:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider03:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider03:before {
		width: 1rem;
	}
	
	#divider60:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider60:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider60:before {
		width: 1rem;
	}
	
	#divider07:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#divider07:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#divider07:before {
		width: 1rem;
	}
	
	#divider25:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider25:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider25:before {
		width: 1rem;
	}
	
	#divider29:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider29:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider29:before {
		width: 1rem;
	}
	
	#divider153:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider153:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider153:before {
		width: 1rem;
	}
	
	#divider154:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider154:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider154:before {
		width: 1rem;
	}
	
	#divider155:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider155:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider155:before {
		width: 1rem;
	}
	
	#divider156:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider156:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider156:before {
		width: 1rem;
	}
	
	#divider157:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider157:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider157:before {
		width: 1rem;
	}
	
	#divider158:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider158:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider158:before {
		width: 1rem;
	}
	
	#divider159:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider159:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider159:before {
		width: 1rem;
	}
	
	#divider160:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider160:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider160:before {
		width: 1rem;
	}
	
	#divider161:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider161:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider161:before {
		width: 1rem;
	}
	
	#divider162:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider162:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider162:before {
		width: 1rem;
	}
	
	#divider163:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider163:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider163:before {
		width: 1rem;
	}
	
	#divider164:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider164:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider164:before {
		width: 1rem;
	}
	
	#divider165:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider165:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider165:before {
		width: 1rem;
	}
	
	#divider133:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider133:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider133:before {
		width: 1rem;
	}
	
	#divider149:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider149:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider149:before {
		width: 1rem;
	}
	
	#divider135:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider135:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider135:before {
		width: 1rem;
	}
	
	#divider150:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider150:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider150:before {
		width: 1rem;
	}
	
	#divider168:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider168:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider168:before {
		width: 1rem;
	}
	
	#divider151:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider151:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider151:before {
		width: 1rem;
	}
	
	#divider152:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider152:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider152:before {
		width: 1rem;
	}
	
	#divider166:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider166:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider166:before {
		width: 1rem;
	}
	
	#divider167:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider167:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider167:before {
		width: 1rem;
	}
	
	#divider173:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider173:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider173:before {
		width: 1rem;
	}
	
	#divider169:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider169:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider169:before {
		width: 1rem;
	}
	
	#divider170:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider170:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider170:before {
		width: 1rem;
	}
	
	#divider171:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider171:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider171:before {
		width: 1rem;
	}
	
	#divider172:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider172:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider172:before {
		width: 1rem;
	}
	
	#divider174:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider174:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider174:before {
		width: 1rem;
	}
	
	#divider175:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider175:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider175:before {
		width: 1rem;
	}
	
	#divider176:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider176:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider176:before {
		width: 1rem;
	}
	
	#divider14:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider14:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider14:before {
		width: 1rem;
	}
	
	#divider33:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider33:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider33:before {
		width: 1rem;
	}
	
	#divider52:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider52:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider52:before {
		width: 1rem;
	}
	
	#divider53:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider53:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider53:before {
		width: 1rem;
	}
	
	#divider54:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider54:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider54:before {
		width: 1rem;
	}
	
	#divider55:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider55:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider55:before {
		width: 1rem;
	}
	
	#divider56:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider56:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider56:before {
		width: 1rem;
	}
	
	#divider57:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider57:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider57:before {
		width: 1rem;
	}
	
	#divider58:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider58:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider58:before {
		width: 1rem;
	}
	
	#divider71:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider71:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider71:before {
		width: 1rem;
	}
	
	#divider72:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider72:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider72:before {
		width: 1rem;
	}
	
	#divider73:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider73:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider73:before {
		width: 1rem;
	}
	
	#divider74:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider74:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider74:before {
		width: 1rem;
	}
	
	#divider75:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider75:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider75:before {
		width: 1rem;
	}
	
	#divider129:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	#divider129:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	#divider129:before {
		width: 1rem;
	}
	
	#divider130:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#divider130:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#divider130:before {
		width: 1rem;
	}
	
	#divider131:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider131:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider131:before {
		width: 1rem;
	}
	
	#divider28:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider28:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider28:before {
		width: 1rem;
	}
	
	#divider177:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider177:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider177:before {
		width: 1rem;
	}
	
	#divider178:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider178:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider178:before {
		width: 1rem;
	}
	
	#divider179:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider179:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider179:before {
		width: 1rem;
	}
	
	#divider180:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider180:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider180:before {
		width: 1rem;
	}
	
	#divider128:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	#divider128:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	#divider128:before {
		width: 1rem;
	}
	
	#divider142:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#divider142:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#divider142:before {
		width: 1rem;
	}
	
	#divider100:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider100:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider100:before {
		width: 1rem;
	}
	
	#divider132:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider132:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider132:before {
		width: 1rem;
	}
	
	#divider148:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	#divider148:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	#divider148:before {
		width: 1rem;
	}
	
	#divider113:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#divider113:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#divider113:before {
		width: 1rem;
	}
	
	#divider02:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider02:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider02:before {
		width: 1rem;
	}
	
	#divider143:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider143:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider143:before {
		width: 1rem;
	}
	
	#divider191:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider191:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider191:before {
		width: 1rem;
	}
	
	#divider192:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider192:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider192:before {
		width: 1rem;
	}
	
	#divider193:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider193:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider193:before {
		width: 1rem;
	}
	
	#divider194:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	#divider194:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	#divider194:before {
		width: 1rem;
	}
	
	#divider103:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	#divider103:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	#divider103:before {
		width: 1rem;
	}
	
	#divider47:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider47:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider47:before {
		width: 1rem;
	}
	
	#divider37:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider37:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider37:before {
		width: 1rem;
	}
	
	#divider46:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider46:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider46:before {
		width: 1rem;
	}
	
	#divider62:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider62:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider62:before {
		width: 1rem;
	}
	
	#divider66:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider66:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider66:before {
		width: 1rem;
	}
	
	#divider48:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider48:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider48:before {
		width: 1rem;
	}
	
	#divider01:not(:first-child) {
		margin-top: 1.75rem !important;
	}
	
	#divider01:not(:last-child) {
		margin-bottom: 1.75rem !important;
	}
	
	#divider01:before {
		width: 1rem;
	}
	
	#divider05:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider05:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider05:before {
		width: 1rem;
	}
	
	#divider44:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider44:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider44:before {
		width: 1rem;
	}
	
	#divider18:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider18:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider18:before {
		width: 1rem;
	}
	
	#divider06:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider06:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider06:before {
		width: 1rem;
	}
	
	#divider30:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider30:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider30:before {
		width: 1rem;
	}
	
	#divider23:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider23:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider23:before {
		width: 1rem;
	}
	
	#divider24:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#divider24:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#divider24:before {
		width: 1rem;
	}
	
	#divider21:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider21:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider21:before {
		width: 1rem;
	}
	
	#divider68:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider68:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider68:before {
		width: 1rem;
	}
	
	#divider81:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider81:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider81:before {
		width: 1rem;
	}
	
	#divider69:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider69:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider69:before {
		width: 1rem;
	}
	
	#divider39:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider39:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider39:before {
		width: 1rem;
	}
	
	#divider40:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider40:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider40:before {
		width: 1rem;
	}
	
	#divider38:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider38:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider38:before {
		width: 1rem;
	}
	
	#divider34:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider34:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider34:before {
		width: 1rem;
	}
	
	#divider36:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider36:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider36:before {
		width: 1rem;
	}
	
	#divider114:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider114:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider114:before {
		width: 1rem;
	}
	
	#divider67:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider67:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider67:before {
		width: 1rem;
	}
	
	#divider41:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider41:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider41:before {
		width: 1rem;
	}
	
	#divider70:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider70:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider70:before {
		width: 1rem;
	}
	
	#divider76:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider76:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider76:before {
		width: 1rem;
	}
	
	#divider77:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider77:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider77:before {
		width: 1rem;
	}
	
	#divider78:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider78:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider78:before {
		width: 1rem;
	}
	
	#divider79:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider79:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider79:before {
		width: 1rem;
	}
	
	#divider101:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider101:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider101:before {
		width: 1rem;
	}
	
	#divider80:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider80:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider80:before {
		width: 1rem;
	}
	
	#divider35:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	#divider35:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	#divider35:before {
		width: 1rem;
	}
	
	#divider26:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider26:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider26:before {
		width: 1rem;
	}
	
	#image06:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image06:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image06 .frame {
		width: 22.5rem;
	}
	
	#image01:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image01:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image01 .frame {
		width: 22.5rem;
	}
	
	#image22:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image22:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image22 .frame {
		width: 4rem;
		height: 5rem !important;
	}
	
	#image22 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image23:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image23:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image23 .frame {
		width: 6.375rem;
		height: 5rem !important;
	}
	
	#image23 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image24:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image24:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image24 .frame {
		width: 6.375rem;
		height: 5rem !important;
	}
	
	#image24 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image25:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image25:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image25 .frame {
		width: 4rem;
		height: 5rem !important;
	}
	
	#image25 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image26:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image26:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image26 .frame {
		width: 4rem;
		height: 5rem !important;
	}
	
	#image26 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image20:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image20:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image20 .frame {
		width: 4rem;
		height: 5rem !important;
	}
	
	#image20 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image21:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image21:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image21 .frame {
		width: 4rem;
		height: 5rem !important;
	}
	
	#image21 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image16:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image16:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image16 .frame {
		width: 4rem;
		height: 5rem !important;
	}
	
	#image16 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image19:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image19:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image19 .frame {
		width: 6.375rem;
		height: 5rem !important;
	}
	
	#image19 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image18:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image18:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image18 .frame {
		width: 4rem;
		height: 5rem !important;
	}
	
	#image18 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image04:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image04:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image38:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image38:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image38 .frame {
		width: 27.75rem;
	}
	
	#image39:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image39:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image39 .frame {
		width: 27.75rem;
	}
	
	#image40:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image40:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image40 .frame {
		width: 27.75rem;
	}
	
	#image35:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image35:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image35 .frame {
		width: 27.75rem;
	}
	
	#image41:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image41:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image41 .frame {
		width: 27.75rem;
	}
	
	#image42:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image42:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image42 .frame {
		width: 27.75rem;
	}
	
	#image43:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image43:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image43 .frame {
		width: 27.75rem;
	}
	
	#image03:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image03:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image03 .frame {
		width: 27.75rem;
	}
	
	#image08:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image08:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image08 .frame {
		width: 27.75rem;
	}
	
	#image14:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image14:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image14 .frame {
		width: 27.75rem;
	}
	
	#image44:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image44:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image44 .frame {
		width: 27.75rem;
	}
	
	#image47:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image47:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image47 .frame {
		width: 27.75rem;
	}
	
	#image07:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image07:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image10:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image10:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image12:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image12:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image09:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image09:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image11:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image11:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image11 .frame {
		width: 18rem;
	}
	
	#image13:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#image13:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#image13 .frame {
		width: 18rem;
	}
	
	#icons01 {
		font-size: 3.625em;
		gap: 0.75rem;
	}
	
	#icons04 {
		font-size: 4em;
		gap: 1.25rem;
	}
	
	#icons05 {
		font-size: 4em;
		gap: 1.25rem;
	}
	
	#icons06 {
		font-size: 4em;
		gap: 1.25rem;
	}
	
	#icons07 {
		font-size: 4em;
		gap: 1.25rem;
	}
	
	#icons03 {
		font-size: 4em;
		gap: 1.25rem;
	}
	
	#icons02 {
		font-size: 3.25em;
		gap: 1.25rem;
	}
	
	#icons14 {
		font-size: 3.25em;
		gap: 1.25rem;
	}
	
	
	
	#container03 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 1rem;
	}
	
	
	
	
	
	
	
	#mobiletabmenu > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 7rem;
	}
	
	#mobiletabmenu.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > div:first-of-type, #mobiletabmenu.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > div:last-of-type, #mobiletabmenu.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > div:first-of-type, #mobiletabmenu.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > div:last-of-type, #mobiletabmenu.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#mobiletabmenu.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#deskmainheader > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#deskmainheader.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#deskmainheader.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#deskmainheader.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#deskmainheader.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#deskmainheader.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#deskmainheader.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#deskmainheader.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#deskmainheader.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#deskmainheader.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#deskmainheader.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#deskmainheader.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#deskmainheader.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#deskmainheader.columns > .wrapper > .inner > div:first-of-type, #deskmainheader.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#deskmainheader.columns > .wrapper > .inner > div:last-of-type, #deskmainheader.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#deskmainheader.columns > .wrapper > .inner > div:first-of-type, #deskmainheader.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#deskmainheader.columns > .wrapper > .inner > div:last-of-type, #deskmainheader.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#deskmainheader.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#deskmainheader.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#deskmainheader > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#deskmainheader > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#deskmainheader > .wrapper > .inner > :nth-child(3) {
		--alignment: right;
		--flex-alignment: flex-end;
		--indent-left: 0;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: 0;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#deskgametab > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0.25rem;
		--padding-vertical: 5rem;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	#desknewstab > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0.25rem;
		--padding-vertical: 5rem;
	}
	
	
	
	
	
	
	
	
	
	#deskcommunitytab > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0.25rem;
		--padding-vertical: 5rem;
	}
	
	
	
	
	
	
	
	#container35 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container35.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container35.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container35.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container35.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container35.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container35.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container35.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container35.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container35.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container35.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container35.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container35.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container35.columns > .wrapper > .inner > div:first-of-type, #container35.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container35.columns > .wrapper > .inner > div:last-of-type, #container35.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container35.columns > .wrapper > .inner > div:first-of-type, #container35.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container35.columns > .wrapper > .inner > div:last-of-type, #container35.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container35.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container35.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container35 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container35 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container35 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container35 > .wrapper > .inner > :nth-child(4) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container35 > .wrapper > .inner > :nth-child(5) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container12 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 20.25rem;
	}
	
	#container12 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 1rem;
	}
	
	#container12.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container12.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container12.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > *:last-child {
		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: calc(var(--gutters) * -0.5) !important;
	}
	
	#container12.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container12.columns > .wrapper > .inner > div: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: 20.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: auto;
	}
	
	
	
	#container01 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3rem;
	}
	
	#container01.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container01.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container01.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > *:last-child {
		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: calc(var(--gutters) * -0.5) !important;
	}
	
	#container01.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container01.columns > .wrapper > .inner > div: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: auto;
	}
	
	#container01 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container01 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container46 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 1.75rem;
		--padding-vertical: 1.5rem;
		--spacing: 0rem;
	}
	
	#container46.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container46.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container46.columns > .wrapper > .inner > span:first-child + div:before {
		display: none !important;
	}
	
	#container46.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container46.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container46.columns > .wrapper > .inner > *:before {
		border-top: solid 30px #0E1426 !important;
		height: 0 !important;
		margin-left: 0 !important;
		top: auto !important;
		margin-top: calc((var(--gutters) * -0.5) - 15px) !important;
		left: 0 !important;
		width: 100% !important;
	}
	
	#container46.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container46.columns > .wrapper > .inner > *:first-child:before {
		display: none !important;
	}
	
	#container46.columns > .wrapper > .inner > *:last-child:before {
		display: block !important;
	}
	
	#container46.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container46.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container46.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container46.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc((var(--gutters) * -0.5) + 15px) !important;
	}
	
	#container46.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc((var(--gutters) * -0.5) + 15px) !important;
	}
	
	#container46.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container46.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container46.columns > .wrapper > .inner > div:first-of-type, #container46.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container46.columns > .wrapper > .inner > div:last-of-type, #container46.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container46.columns > .wrapper > .inner > div:first-of-type, #container46.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container46.columns > .wrapper > .inner > div:last-of-type, #container46.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container46.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container46.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container46 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container46 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container46 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container02 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 4rem;
	}
	
	#container02.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container02.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container02.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container02.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type, #container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type, #container02.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type, #container02.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type, #container02.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container04 > .wrapper > .inner {
		--gutters: 2.25rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
	}
	
	#container04.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container04.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container04.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > *:last-child {
		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: calc(var(--gutters) * -0.5) !important;
	}
	
	#container04.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container04.columns > .wrapper > .inner > div: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 > .full:first-child:last-child {
		height: auto;
	}
	
	#container04.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container04 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container04 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container04 > .wrapper > .inner > :nth-child(3) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container44 > .wrapper > .inner {
		--gutters: 2.25rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
	}
	
	#container44.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container44.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container44.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container44.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container44.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container44.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container44.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container44.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container44.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container44.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container44.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container44.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container44.columns > .wrapper > .inner > div:first-of-type, #container44.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container44.columns > .wrapper > .inner > div:last-of-type, #container44.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container44.columns > .wrapper > .inner > div:first-of-type, #container44.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container44.columns > .wrapper > .inner > div:last-of-type, #container44.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container44.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container44.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container44 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container44 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container44 > .wrapper > .inner > :nth-child(3) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container38 > .wrapper > .inner {
		--gutters: 3.375rem;
		--padding-horizontal: 1rem;
		--padding-vertical: 1rem;
	}
	
	#container38.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container38.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container38.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container38.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container38.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container38.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container38.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container38.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container38.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container38.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container38.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container38.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container38.columns > .wrapper > .inner > div:first-of-type, #container38.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container38.columns > .wrapper > .inner > div:last-of-type, #container38.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container38.columns > .wrapper > .inner > div:first-of-type, #container38.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container38.columns > .wrapper > .inner > div:last-of-type, #container38.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container38.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container38.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container38 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container38 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container40 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0.625rem;
		--padding-vertical: 2rem;
		--spacing: 0rem;
	}
	
	
	
	
	
	
	
	
	
	
	
	#container48 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	#container48 > .wrapper {
		display: block;
		margin: 0 auto 0 auto;
	}
	
	#container48 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container48.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container48.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container48.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container48.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container48.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container48.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container48.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container48.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container48.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container48.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container48.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container48.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container48.columns > .wrapper > .inner > div:first-of-type, #container48.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container48.columns > .wrapper > .inner > div:last-of-type, #container48.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container48.columns > .wrapper > .inner > div:first-of-type, #container48.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container48.columns > .wrapper > .inner > div:last-of-type, #container48.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container48.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container48.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container06 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	#container06 > .wrapper {
		display: block;
		margin: 0 auto 0 auto;
	}
	
	#container06 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container06.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container06.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container06.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > *:last-child {
		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: calc(var(--gutters) * -0.5) !important;
	}
	
	#container06.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container06.columns > .wrapper > .inner > div: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: auto;
	}
	
	
	
	#container26 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 1.75rem;
		--padding-vertical: 1.5rem;
		--spacing: 0rem;
	}
	
	#container26.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container26.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container26.columns > .wrapper > .inner > span:first-child + div:before {
		display: none !important;
	}
	
	#container26.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container26.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container26.columns > .wrapper > .inner > *:before {
		border-top: solid 30px #0E1426 !important;
		height: 0 !important;
		margin-left: 0 !important;
		top: auto !important;
		margin-top: calc((var(--gutters) * -0.5) - 15px) !important;
		left: 0 !important;
		width: 100% !important;
	}
	
	#container26.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container26.columns > .wrapper > .inner > *:first-child:before {
		display: none !important;
	}
	
	#container26.columns > .wrapper > .inner > *:last-child:before {
		display: block !important;
	}
	
	#container26.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container26.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container26.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container26.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc((var(--gutters) * -0.5) + 15px) !important;
	}
	
	#container26.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc((var(--gutters) * -0.5) + 15px) !important;
	}
	
	#container26.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container26.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container26.columns > .wrapper > .inner > div:first-of-type, #container26.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container26.columns > .wrapper > .inner > div:last-of-type, #container26.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container26.columns > .wrapper > .inner > div:first-of-type, #container26.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container26.columns > .wrapper > .inner > div:last-of-type, #container26.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container26.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container26.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container26 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container26 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container26 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container43 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 1.75rem;
		--padding-vertical: 1.5rem;
		--spacing: 0rem;
	}
	
	#container43.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container43.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container43.columns > .wrapper > .inner > span:first-child + div:before {
		display: none !important;
	}
	
	#container43.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container43.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container43.columns > .wrapper > .inner > *:before {
		border-top: solid 30px #0E1426 !important;
		height: 0 !important;
		margin-left: 0 !important;
		top: auto !important;
		margin-top: calc((var(--gutters) * -0.5) - 15px) !important;
		left: 0 !important;
		width: 100% !important;
	}
	
	#container43.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container43.columns > .wrapper > .inner > *:first-child:before {
		display: none !important;
	}
	
	#container43.columns > .wrapper > .inner > *:last-child:before {
		display: block !important;
	}
	
	#container43.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container43.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container43.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container43.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc((var(--gutters) * -0.5) + 15px) !important;
	}
	
	#container43.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc((var(--gutters) * -0.5) + 15px) !important;
	}
	
	#container43.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container43.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container43.columns > .wrapper > .inner > div:first-of-type, #container43.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container43.columns > .wrapper > .inner > div:last-of-type, #container43.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container43.columns > .wrapper > .inner > div:first-of-type, #container43.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container43.columns > .wrapper > .inner > div:last-of-type, #container43.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container43.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container43.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container49 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	#container49 > .wrapper {
		display: block;
		margin: 0 auto 0 auto;
	}
	
	#container49 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container49.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container49.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container49.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container49.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container49.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container49.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container49.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container49.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container49.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container49.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container49.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container49.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container49.columns > .wrapper > .inner > div:first-of-type, #container49.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container49.columns > .wrapper > .inner > div:last-of-type, #container49.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container49.columns > .wrapper > .inner > div:first-of-type, #container49.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container49.columns > .wrapper > .inner > div:last-of-type, #container49.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container49.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container49.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container39 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	#container39 > .wrapper {
		display: block;
		margin: 0 auto 0 auto;
	}
	
	#container39 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container39.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container39.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container39.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container39.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container39.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container39.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container39.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container39.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container39.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container39.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container39.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container39.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container39.columns > .wrapper > .inner > div:first-of-type, #container39.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container39.columns > .wrapper > .inner > div:last-of-type, #container39.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container39.columns > .wrapper > .inner > div:first-of-type, #container39.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container39.columns > .wrapper > .inner > div:last-of-type, #container39.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container39.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container39.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container16 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 1.75rem;
		--padding-vertical: 1.5rem;
		--spacing: 0rem;
	}
	
	#container16.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container16.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container16.columns > .wrapper > .inner > span:first-child + div:before {
		display: none !important;
	}
	
	#container16.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > *:before {
		border-top: solid 30px #0E1426 !important;
		height: 0 !important;
		margin-left: 0 !important;
		top: auto !important;
		margin-top: calc((var(--gutters) * -0.5) - 15px) !important;
		left: 0 !important;
		width: 100% !important;
	}
	
	#container16.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > *:first-child:before {
		display: none !important;
	}
	
	#container16.columns > .wrapper > .inner > *:last-child:before {
		display: block !important;
	}
	
	#container16.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container16.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container16.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container16.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc((var(--gutters) * -0.5) + 15px) !important;
	}
	
	#container16.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc((var(--gutters) * -0.5) + 15px) !important;
	}
	
	#container16.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container16.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container16.columns > .wrapper > .inner > div:first-of-type, #container16.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container16.columns > .wrapper > .inner > div:last-of-type, #container16.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container16.columns > .wrapper > .inner > div:first-of-type, #container16.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > div:last-of-type, #container16.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container16.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container50 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	#container50 > .wrapper {
		display: block;
		margin: 0 auto 0 auto;
	}
	
	#container50 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container50.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container50.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container50.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container50.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container50.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container50.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container50.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container50.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container50.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container50.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container50.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container50.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container50.columns > .wrapper > .inner > div:first-of-type, #container50.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container50.columns > .wrapper > .inner > div:last-of-type, #container50.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container50.columns > .wrapper > .inner > div:first-of-type, #container50.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container50.columns > .wrapper > .inner > div:last-of-type, #container50.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container50.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container50.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container45 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	#container45 > .wrapper {
		display: block;
		margin: 0 auto 0 auto;
	}
	
	#container45 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container45.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container45.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container45.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container45.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container45.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container45.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container45.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container45.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container45.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container45.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container45.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container45.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container45.columns > .wrapper > .inner > div:first-of-type, #container45.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container45.columns > .wrapper > .inner > div:last-of-type, #container45.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container45.columns > .wrapper > .inner > div:first-of-type, #container45.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container45.columns > .wrapper > .inner > div:last-of-type, #container45.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container45.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container45.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container19 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 1.75rem;
		--padding-vertical: 1.5rem;
		--spacing: 0rem;
	}
	
	#container19.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container19.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container19.columns > .wrapper > .inner > span:first-child + div:before {
		display: none !important;
	}
	
	#container19.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container19.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container19.columns > .wrapper > .inner > *:before {
		border-top: solid 30px #0E1426 !important;
		height: 0 !important;
		margin-left: 0 !important;
		top: auto !important;
		margin-top: calc((var(--gutters) * -0.5) - 15px) !important;
		left: 0 !important;
		width: 100% !important;
	}
	
	#container19.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container19.columns > .wrapper > .inner > *:first-child:before {
		display: none !important;
	}
	
	#container19.columns > .wrapper > .inner > *:last-child:before {
		display: block !important;
	}
	
	#container19.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container19.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container19.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container19.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc((var(--gutters) * -0.5) + 15px) !important;
	}
	
	#container19.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc((var(--gutters) * -0.5) + 15px) !important;
	}
	
	#container19.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container19.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container19.columns > .wrapper > .inner > div:first-of-type, #container19.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container19.columns > .wrapper > .inner > div:last-of-type, #container19.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container19.columns > .wrapper > .inner > div:first-of-type, #container19.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container19.columns > .wrapper > .inner > div:last-of-type, #container19.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container19.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container19.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container19 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container19 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container19 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container51 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	#container51 > .wrapper {
		display: block;
		margin: 0 auto 0 auto;
	}
	
	#container51 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container51.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container51.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container51.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container51.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container51.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container51.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container51.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container51.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container51.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container51.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container51.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container51.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container51.columns > .wrapper > .inner > div:first-of-type, #container51.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container51.columns > .wrapper > .inner > div:last-of-type, #container51.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container51.columns > .wrapper > .inner > div:first-of-type, #container51.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container51.columns > .wrapper > .inner > div:last-of-type, #container51.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container51.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container51.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container34 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	#container34 > .wrapper {
		display: block;
		margin: 0 auto 0 auto;
	}
	
	#container34 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container34.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container34.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container34.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container34.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container34.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container34.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container34.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container34.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container34.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container34.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container34.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container34.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container34.columns > .wrapper > .inner > div:first-of-type, #container34.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container34.columns > .wrapper > .inner > div:last-of-type, #container34.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container34.columns > .wrapper > .inner > div:first-of-type, #container34.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container34.columns > .wrapper > .inner > div:last-of-type, #container34.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container34.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container34.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container47 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 1.75rem;
		--padding-vertical: 1.5rem;
		--spacing: 0rem;
	}
	
	#container47.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container47.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container47.columns > .wrapper > .inner > span:first-child + div:before {
		display: none !important;
	}
	
	#container47.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container47.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container47.columns > .wrapper > .inner > *:before {
		border-top: solid 30px #0E1426 !important;
		height: 0 !important;
		margin-left: 0 !important;
		top: auto !important;
		margin-top: calc((var(--gutters) * -0.5) - 15px) !important;
		left: 0 !important;
		width: 100% !important;
	}
	
	#container47.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container47.columns > .wrapper > .inner > *:first-child:before {
		display: none !important;
	}
	
	#container47.columns > .wrapper > .inner > *:last-child:before {
		display: block !important;
	}
	
	#container47.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container47.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container47.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container47.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc((var(--gutters) * -0.5) + 15px) !important;
	}
	
	#container47.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc((var(--gutters) * -0.5) + 15px) !important;
	}
	
	#container47.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container47.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container47.columns > .wrapper > .inner > div:first-of-type, #container47.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container47.columns > .wrapper > .inner > div:last-of-type, #container47.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container47.columns > .wrapper > .inner > div:first-of-type, #container47.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container47.columns > .wrapper > .inner > div:last-of-type, #container47.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container47.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container47.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container08 {
		min-height: 22.5rem;
	}
	
	#container08 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 2rem;
	}
	
	#container08.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container08.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container08.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > *:last-child {
		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: calc(var(--gutters) * -0.5) !important;
	}
	
	#container08.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container08.columns > .wrapper > .inner > div: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 {
		min-height: 22.5rem;
	}
	
	#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container08 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container08 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container08 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container42 {
		min-height: 19.5rem;
	}
	
	#container42 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 1rem;
	}
	
	#container42.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container42.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container42.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container42.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container42.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container42.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container42.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container42.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container42.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container42.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container42.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container42.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container42.columns > .wrapper > .inner > div:first-of-type, #container42.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container42.columns > .wrapper > .inner > div:last-of-type, #container42.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container42.columns > .wrapper > .inner > div:first-of-type, #container42.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container42.columns > .wrapper > .inner > div:last-of-type, #container42.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container42.columns > .wrapper > .inner > .full {
		min-height: 19.5rem;
	}
	
	#container42.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container42.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container20 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3rem;
	}
	
	#container20.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container20.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container20.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container20.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container20.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container20.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container20.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container20.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container20.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container20.columns > .wrapper > .inner > div:first-of-type, #container20.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container20.columns > .wrapper > .inner > div:last-of-type, #container20.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container20.columns > .wrapper > .inner > div:first-of-type, #container20.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > div:last-of-type, #container20.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container20.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container20 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container20 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container15 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3rem;
	}
	
	#container15.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container15.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container15.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container15.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container15.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type, #container15.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type, #container15.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type, #container15.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type, #container15.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container15 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container15 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container21 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3rem;
	}
	
	#container21.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container21.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container21.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container21.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container21.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container21.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container21.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container21.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container21.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container21.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container21.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container21.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container21.columns > .wrapper > .inner > div:first-of-type, #container21.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container21.columns > .wrapper > .inner > div:last-of-type, #container21.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container21.columns > .wrapper > .inner > div:first-of-type, #container21.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container21.columns > .wrapper > .inner > div:last-of-type, #container21.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container21.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container21.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container21 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container21 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container18 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3rem;
	}
	
	#container18.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	#container18.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container18.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container18.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container18.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container18.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container18.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container18.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container18.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container18.columns > .wrapper > .inner > div:last-of-type, #container18.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container18.columns > .wrapper > .inner > div:first-of-type, #container18.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container18.columns > .wrapper > .inner > div:last-of-type, #container18.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > div:first-of-type, #container18.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container18.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container18 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container18 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container41 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 5rem;
	}
	
	#container41.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container41.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container41.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container41.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container41.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container41.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container41.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container41.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container41.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container41.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container41.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container41.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container41.columns > .wrapper > .inner > div:first-of-type, #container41.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container41.columns > .wrapper > .inner > div:last-of-type, #container41.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container41.columns > .wrapper > .inner > div:first-of-type, #container41.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container41.columns > .wrapper > .inner > div:last-of-type, #container41.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container41.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container41.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container10 {
		min-height: 22.5rem;
	}
	
	#container10 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
	}
	
	#container10.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container10.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container10.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > *:last-child {
		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: calc(var(--gutters) * -0.5) !important;
	}
	
	#container10.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container10.columns > .wrapper > .inner > div: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: 22.5rem;
	}
	
	#container10.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container10.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container10 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container10 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container10 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container05 {
		min-height: 22.5rem;
	}
	
	#container05 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 2rem;
	}
	
	#container05.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container05.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container05.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > *:last-child {
		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: calc(var(--gutters) * -0.5) !important;
	}
	
	#container05.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container05.columns > .wrapper > .inner > div: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: 22.5rem;
	}
	
	#container05.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container05.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container05 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container05 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container05 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container22 {
		min-height: 13.5rem;
	}
	
	#container22 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container22.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container22.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container22.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container22.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container22.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container22.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container22.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container22.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container22.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container22.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container22.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container22.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container22.columns > .wrapper > .inner > div:first-of-type, #container22.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container22.columns > .wrapper > .inner > div:last-of-type, #container22.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container22.columns > .wrapper > .inner > div:first-of-type, #container22.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container22.columns > .wrapper > .inner > div:last-of-type, #container22.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container22.columns > .wrapper > .inner > .full {
		min-height: 13.5rem;
	}
	
	#container22.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container22.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container24 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 1rem;
	}
	
	
	
	#container27 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
	}
	
	#container27 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	
	
	
	
	
	
	#container23 > .wrapper > .inner {
		--gutters: 1rem;
		--padding-horizontal: 1rem;
		--padding-vertical: 1rem;
	}
	
	#container23 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	
	
	
	
	#container25 > .wrapper > .inner {
		--gutters: 1rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 1rem;
	}
	
	
	
	#maintextbox > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
	}
	
	#maintextbox > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	#maintextbox > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	#maintextbox > .wrapper > .inner > :nth-child(3) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	
	
	#container09 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container09.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container09.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container09.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > *:last-child {
		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: calc(var(--gutters) * -0.5) !important;
	}
	
	#container09.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container09.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container09.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container09.columns > .wrapper > .inner > div:first-of-type, #container09.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container09.columns > .wrapper > .inner > div:last-of-type, #container09.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container09.columns > .wrapper > .inner > div:first-of-type, #container09.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > div:last-of-type, #container09.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container09 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container09 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container09 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container09 > .wrapper > .inner > :nth-child(4) {
		--alignment: right;
		--flex-alignment: flex-end;
		--indent-left: 0;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: 0;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#buttons07 {
		gap: 1.25rem;
	}
	
	#buttons07:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#buttons07:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#buttons07 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.875rem);
		font-size: 2em;
	}
	
	#buttons07 li a svg {
		width: 0.875em;
	}
	
	#buttons01 {
		gap: 0.75rem;
	}
	
	#buttons01:not(:first-child) {
		margin-top: 1.25rem !important;
	}
	
	#buttons01:not(:last-child) {
		margin-bottom: 1.25rem !important;
	}
	
	#buttons01 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.25em;
	}
	
	#buttons33 {
		gap: 1rem;
	}
	
	#buttons33:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#buttons33:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#buttons33 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 1.75rem);
		font-size: 2em;
	}
	
	#buttons33 li a svg {
		width: 1em;
	}
	
	#buttons11 {
		gap: 0.75rem;
	}
	
	#buttons11:not(:first-child) {
		margin-top: 1.25rem !important;
	}
	
	#buttons11:not(:last-child) {
		margin-bottom: 1.25rem !important;
	}
	
	#buttons11 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.25em;
	}
	
	#buttons11 li a svg {
		width: 0.875em;
	}
	
	#buttons04 {
		gap: 0.75rem;
	}
	
	#buttons04 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.9375rem);
		font-size: 1em;
	}
	
	#buttons04 li a svg {
		width: 0.875em;
	}
	
	#buttons48 {
		gap: 0.625rem;
	}
	
	#buttons48 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.25em;
	}
	
	#buttons25 {
		gap: 0.625rem;
	}
	
	#buttons25 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.25em;
	}
	
	#buttons66 {
		gap: 0.625rem;
	}
	
	#buttons66 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.375em;
	}
	
	#buttons54 {
		gap: 1rem;
	}
	
	#buttons54 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons55 {
		gap: 1rem;
	}
	
	#buttons55 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons56 {
		gap: 1rem;
	}
	
	#buttons56 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons50 {
		gap: 1rem;
	}
	
	#buttons50 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons57 {
		gap: 1rem;
	}
	
	#buttons57 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons58 {
		gap: 1rem;
	}
	
	#buttons58 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons59 {
		gap: 1rem;
	}
	
	#buttons59 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons17 {
		gap: 1rem;
	}
	
	#buttons17 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons20 {
		gap: 1rem;
	}
	
	#buttons20 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons38 {
		gap: 1rem;
	}
	
	#buttons38 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons61 {
		gap: 0.625rem;
	}
	
	#buttons61 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.25em;
	}
	
	#buttons67 {
		gap: 0.625rem;
	}
	
	#buttons67 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.375em;
	}
	
	#buttons60 {
		gap: 1rem;
	}
	
	#buttons60 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons62 {
		gap: 0.625rem;
	}
	
	#buttons62 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.25em;
	}
	
	#buttons68 {
		gap: 0.625rem;
	}
	
	#buttons68 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.375em;
	}
	
	#buttons69 {
		gap: 0.625rem;
	}
	
	#buttons69 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.375em;
	}
	
	#buttons65 {
		gap: 1rem;
	}
	
	#buttons65 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons09 {
		gap: 0.25rem;
	}
	
	#buttons09 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.40625rem);
		font-size: 1.375em;
	}
	
	#buttons09 li a svg {
		width: 0.875em;
	}
	
	#buttons08 {
		gap: 0.25rem;
	}
	
	#buttons08:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#buttons08:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#buttons08 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.40625rem);
		font-size: 1.375em;
	}
	
	#buttons08 li a svg {
		width: 0.875em;
	}
	
	#buttons10 {
		gap: 0.25rem;
	}
	
	#buttons10 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.40625rem);
		font-size: 1.375em;
	}
	
	#buttons10 li a svg {
		width: 0.875em;
	}
	
	#bt000a {
		gap: 2rem;
	}
	
	#bt000a li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.25em;
	}
	
	#bt000b {
		gap: 2rem;
	}
	
	#bt000b li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.25em;
	}
	
	#bt001a {
		gap: 2rem;
	}
	
	#bt001a li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.25em;
	}
	
	#bt001b {
		gap: 2rem;
	}
	
	#bt001b li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.25em;
	}
	
	#bt002a {
		gap: 0.75rem;
	}
	
	#bt002a li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.25em;
	}
	
	#bt002b {
		gap: 0.75rem;
	}
	
	#bt002b li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.25em;
	}
	
	#bt003a {
		gap: 0.75rem;
	}
	
	#bt003a li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.25em;
	}
	
	#bt003b {
		gap: 0.75rem;
	}
	
	#bt003b li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.25em;
	}
	
	#bt004a {
		gap: 0.75rem;
	}
	
	#bt004a li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.25em;
	}
	
	#bt004b {
		gap: 0.75rem;
	}
	
	#bt004b li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.25em;
	}
	
	#buttons27 {
		gap: 0.75rem;
	}
	
	#buttons27:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	#buttons27:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	#buttons27 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons15 {
		gap: 0.75rem;
	}
	
	#buttons15:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	#buttons15:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	#buttons15 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons12 {
		gap: 0.75rem;
	}
	
	#buttons12:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	#buttons12:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	#buttons12 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#bt000am {
		gap: 2rem;
	}
	
	#bt000am li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.125em;
	}
	
	#bt000bm {
		gap: 2rem;
	}
	
	#bt000bm li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.125em;
	}
	
	#bt001am {
		gap: 2rem;
	}
	
	#bt001am li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.125em;
	}
	
	#bt001bm {
		gap: 2rem;
	}
	
	#bt001bm li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.125em;
	}
	
	#bt002am {
		gap: 0.75rem;
	}
	
	#bt002am li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.125em;
	}
	
	#bt002bm {
		gap: 0.75rem;
	}
	
	#bt002bm li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.125em;
	}
	
	#bt003am {
		gap: 0.75rem;
	}
	
	#bt003am li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.125em;
	}
	
	#bt003bm {
		gap: 0.75rem;
	}
	
	#bt003bm li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.125em;
	}
	
	#bt004am {
		gap: 0.75rem;
	}
	
	#bt004am li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.125em;
	}
	
	#bt004bm {
		gap: 0.75rem;
	}
	
	#bt004bm li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.5rem);
		font-size: 1.125em;
	}
	
	#buttons36 {
		gap: 0.75rem;
	}
	
	#buttons36:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	#buttons36:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	#buttons36 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons42 {
		gap: 0.75rem;
	}
	
	#buttons42:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	#buttons42:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	#buttons42 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#buttons43 {
		gap: 0.75rem;
	}
	
	#buttons43:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	#buttons43:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	#buttons43 li a {
		letter-spacing: 0.05rem;
		padding-left: calc(0.05rem + 0.8125rem);
		font-size: 1.125em;
	}
	
	#text77:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	#text77:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	#text77 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.375em;
		line-height: 1.25;
	}
	
	#text78:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	#text78:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	#text78 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.375em;
		line-height: 1.25;
	}
	
	#text79:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	#text79:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	#text79 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.375em;
		line-height: 1.25;
	}
	
	#text80:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	#text80:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	#text80 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.375em;
		line-height: 1.25;
	}
	
	#text68:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	#text68:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	#text68 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.375em;
		line-height: 1.25;
	}
	
	#text76:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text76:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text76 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	#text69:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text69:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text69 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	#text66:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text66:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text66 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	#text67:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text67:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text67 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	#text65:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text65:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text65 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	#text02 {
		padding-left: 1.3125rem;
		padding-right: 1.3125rem;
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2em;
		line-height: 1.25;
	}
	
	#text54 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 3em;
		line-height: 1.25;
	}
	
	#text04:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text04:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text04 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2.5em;
		line-height: 1;
	}
	
	#text08:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text08:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text08 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.375em;
		line-height: 1.25;
	}
	
	#text81 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 3.25em;
		line-height: 1.25;
	}
	
	#text23 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2em;
		line-height: 1.25;
	}
	
	#text24:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text24:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text24 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	#text12 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2em;
		line-height: 1.25;
	}
	
	#text25:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text25:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text25 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	#text21 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2em;
		line-height: 1.25;
	}
	
	#text22:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text22:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text22 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	#text11:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text11:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text11 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 3.25em;
		line-height: 1;
	}
	
	#text19 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2em;
		line-height: 1.25;
	}
	
	#text20:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text20:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text20 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	#text15 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2em;
		line-height: 1.25;
	}
	
	#text17:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text17:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text17 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	#text16 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2em;
		line-height: 1.25;
	}
	
	#text18:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text18:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text18 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	#text28 {
		letter-spacing: -0.05rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.25;
	}
	
	#text05 {
		padding-left: 0rem;
		padding-right: 0rem;
		letter-spacing: -0.05rem;
		width: 100%;
		font-size: 1.625em;
		line-height: 1.125;
	}
	
	#text01 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 3.25em;
		line-height: 1.25;
	}
	
	#text107 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#text108 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#text109 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#text110 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#text111 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#text112 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#text97 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#text98 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#text113 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#text114 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#text115 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#text116 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#text117 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#text118 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#text30 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#text48 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#text49 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#text50 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#text57 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#text58 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#text07 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 3.25em;
		line-height: 1.25;
	}
	
	#text119 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#text120 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#text60 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 3.25em;
		line-height: 1.25;
	}
	
	#text86 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 3.25em;
		line-height: 1.25;
	}
	
	#text125 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#text126 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#text31:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text31:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text31 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2.5em;
		line-height: 1;
	}
	
	#text32:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text32:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text32 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.375em;
		line-height: 1.25;
	}
	
	#text33:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text33:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text33 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2.5em;
		line-height: 1;
	}
	
	#text34:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text34:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text34 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.375em;
		line-height: 1.25;
	}
	
	#text35:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text35:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text35 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2.5em;
		line-height: 1;
	}
	
	#text36:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text36:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text36 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.375em;
		line-height: 1.25;
	}
	
	#text37:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text37:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text37 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2.5em;
		line-height: 1;
	}
	
	#text38:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text38:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text38 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.375em;
		line-height: 1.25;
	}
	
	#text09:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text09:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text09 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	#text61:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text61:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text61 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.625em;
		line-height: 1.25;
	}
	
	#text10:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text10:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text10 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.625em;
		line-height: 1.25;
	}
	
	#text06 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 3em;
		line-height: 1.25;
	}
	
	#text14:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	#text14:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	#text14 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.875em;
		line-height: 1.25;
	}
	
	#text13:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text13:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text13 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2em;
		line-height: 1.25;
	}
	
	#text53:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text53:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text53 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.375em;
		line-height: 1.25;
	}
	
	#shtcc-s0:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#shtcc-s0:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#shtcc-s0 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.25;
	}
	
	#shtcc-s1:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#shtcc-s1:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#shtcc-s1 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.25;
	}
	
	#shtcc-s2:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#shtcc-s2:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#shtcc-s2 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.25;
	}
	
	#shtcc-s3:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#shtcc-s3:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#shtcc-s3 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.25;
	}
	
	#shtcc-s4:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#shtcc-s4:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#shtcc-s4 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.25;
	}
	
	#text75:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text75:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text75 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.375em;
		line-height: 1.25;
	}
	
	#text41:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text41:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text41 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.375em;
		line-height: 1.25;
	}
	
	#text40:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text40:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text40 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.375em;
		line-height: 1.25;
	}
	
	#shtcc-s0m:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#shtcc-s0m:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#shtcc-s0m {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#shtcc-s1m:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#shtcc-s1m:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#shtcc-s1m {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#shtcc-s2m:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#shtcc-s2m:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#shtcc-s2m {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#shtcc-s3m:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#shtcc-s3m:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#shtcc-s3m {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#shtcc-s4m:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#shtcc-s4m:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#shtcc-s4m {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#text88:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text88:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text88 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	#text47:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text47:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text47 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	#text51:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text51:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text51 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	#header {
		margin-bottom: 0rem !important;
	}
	
	#footer {
		margin-top: 0rem !important;
	}
}

@media (max-width: 480px) {
	#main > .inner {
		--spacing: 0rem;
	}
	
	#image22 .frame {
		height: 4rem !important;
	}
	
	#image23 .frame {
		height: 4rem !important;
	}
	
	#image24 .frame {
		height: 4rem !important;
	}
	
	#image25 .frame {
		height: 4rem !important;
	}
	
	#image26 .frame {
		height: 4rem !important;
	}
	
	#image20 .frame {
		height: 4rem !important;
	}
	
	#image21 .frame {
		height: 4rem !important;
	}
	
	#image16 .frame {
		height: 4rem !important;
	}
	
	#image19 .frame {
		height: 4rem !important;
	}
	
	#image18 .frame {
		height: 4rem !important;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	#container46 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	
	
	
	
	
	
	
	
	#container40 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	
	
	
	
	#container26 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	#container43 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	
	
	
	
	#container16 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	
	
	
	
	#container19 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	
	
	
	
	#container47 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	#buttons01 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons01 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons11 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons11 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons04 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons04 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons09 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons08 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons10 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt000a {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt000a li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt000b {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt000b li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt001a {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt001a li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt001b {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt001b li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt002a {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt002a li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt002b {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt002b li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt003a {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt003a li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt003b {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt003b li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt004a {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt004a li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt004b {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt004b li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons27 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons27 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons15 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons15 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons12 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons12 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt000am {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt000am li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt000bm {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt000bm li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt001am {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt001am li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt001bm {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt001bm li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt002am {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt002am li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt002bm {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt002bm li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt003am {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt003am li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt003bm {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt003bm li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt004am {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt004am li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#bt004bm {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#bt004bm li a {
		max-width: 32rem;
		width: 100%;
	}
}

@media (max-width: 360px) {
	#main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 0rem;
	}
	
	#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 > header > .full:first-child {
		margin-top: -1.5rem !important;
	}
	
	#main > .inner > footer > .full:last-child {
		margin-bottom: -1.5rem !important;
	}
	
	#image22 .frame {
		height: 3.5rem !important;
	}
	
	#image23 .frame {
		height: 3.5rem !important;
	}
	
	#image24 .frame {
		height: 3.5rem !important;
	}
	
	#image25 .frame {
		height: 3.5rem !important;
	}
	
	#image26 .frame {
		height: 3.5rem !important;
	}
	
	#image20 .frame {
		height: 3.5rem !important;
	}
	
	#image21 .frame {
		height: 3.5rem !important;
	}
	
	#image16 .frame {
		height: 3.5rem !important;
	}
	
	#image19 .frame {
		height: 3.5rem !important;
	}
	
	#image18 .frame {
		height: 3.5rem !important;
	}
	
	#icons01 {
		gap: 0.5625rem;
	}
	
	#icons04 {
		gap: 0.9375rem;
	}
	
	#icons05 {
		gap: 0.9375rem;
	}
	
	#icons06 {
		gap: 0.9375rem;
	}
	
	#icons07 {
		gap: 0.9375rem;
	}
	
	#icons03 {
		gap: 0.9375rem;
	}
	
	#icons02 {
		gap: 0.9375rem;
	}
	
	#icons14 {
		gap: 0.9375rem;
	}
	
	#container03 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0.75rem;
	}
	
	#mobiletabmenu > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 5.25rem;
	}
	
	#deskmainheader > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#deskgametab > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0.1875rem;
		--padding-vertical: 3.75rem;
	}
	
	#desknewstab > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0.1875rem;
		--padding-vertical: 3.75rem;
	}
	
	#deskcommunitytab > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0.1875rem;
		--padding-vertical: 3.75rem;
	}
	
	#container35 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container12 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0.75rem;
	}
	
	#container12 {
		min-height: 13.5rem;
	}
	
	#container12.columns > .wrapper > .inner > .full {
		min-height: 13.5rem;
	}
	
	#container01 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.25rem;
	}
	
	#container46 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 1.3125rem;
		--padding-vertical: 1.125rem;
		--spacing: 0rem;
	}
	
	#container02 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 3rem;
	}
	
	#container04 > .wrapper > .inner {
		--gutters: 2.25rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
	}
	
	#container44 > .wrapper > .inner {
		--gutters: 2.25rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
	}
	
	#container38 > .wrapper > .inner {
		--gutters: 3.375rem;
		--padding-horizontal: 0.75rem;
		--padding-vertical: 0.75rem;
	}
	
	#container40 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0.46875rem;
		--padding-vertical: 1.5rem;
		--spacing: 0rem;
	}
	
	#container48 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container06 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container26 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 1.3125rem;
		--padding-vertical: 1.125rem;
		--spacing: 0rem;
	}
	
	#container43 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 1.3125rem;
		--padding-vertical: 1.125rem;
		--spacing: 0rem;
	}
	
	#container49 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container39 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container16 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 1.3125rem;
		--padding-vertical: 1.125rem;
		--spacing: 0rem;
	}
	
	#container50 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container45 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container19 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 1.3125rem;
		--padding-vertical: 1.125rem;
		--spacing: 0rem;
	}
	
	#container51 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container34 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container47 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 1.3125rem;
		--padding-vertical: 1.125rem;
		--spacing: 0rem;
	}
	
	#container08 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 1.5rem;
	}
	
	#container08 {
		min-height: 15rem;
	}
	
	#container08.columns > .wrapper > .inner > .full {
		min-height: 15rem;
	}
	
	#container42 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0.75rem;
	}
	
	#container42 {
		min-height: 13rem;
	}
	
	#container42.columns > .wrapper > .inner > .full {
		min-height: 13rem;
	}
	
	#container20 > .wrapper > .inner {
		--gutters: 4.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.25rem;
	}
	
	#container15 > .wrapper > .inner {
		--gutters: 4.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.25rem;
	}
	
	#container21 > .wrapper > .inner {
		--gutters: 4.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.25rem;
	}
	
	#container18 > .wrapper > .inner {
		--gutters: 4.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.25rem;
	}
	
	#container41 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 3.75rem;
	}
	
	#container10 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
	}
	
	#container10 {
		min-height: 15rem;
	}
	
	#container10.columns > .wrapper > .inner > .full {
		min-height: 15rem;
	}
	
	#container05 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 1.5rem;
	}
	
	#container05 {
		min-height: 15rem;
	}
	
	#container05.columns > .wrapper > .inner > .full {
		min-height: 15rem;
	}
	
	#container22 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container22 {
		min-height: 9rem;
	}
	
	#container22.columns > .wrapper > .inner > .full {
		min-height: 9rem;
	}
	
	#container24 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0.75rem;
	}
	
	#container27 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
	}
	
	#container23 > .wrapper > .inner {
		--gutters: 1rem;
		--padding-horizontal: 0.75rem;
		--padding-vertical: 0.75rem;
	}
	
	#container25 > .wrapper > .inner {
		--gutters: 1rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0.75rem;
	}
	
	#maintextbox > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
	}
	
	#container09 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#buttons07 {
		gap: 0.9375rem;
	}
	
	#buttons01 {
		gap: 0.5625rem;
	}
	
	#buttons33 {
		gap: 0.75rem;
	}
	
	#buttons11 {
		gap: 0.5625rem;
	}
	
	#buttons04 {
		gap: 0.5625rem;
	}
	
	#buttons48 {
		gap: 0.46875rem;
	}
	
	#buttons25 {
		gap: 0.46875rem;
	}
	
	#buttons66 {
		gap: 0.46875rem;
	}
	
	#buttons54 {
		gap: 0.75rem;
	}
	
	#buttons55 {
		gap: 0.75rem;
	}
	
	#buttons56 {
		gap: 0.75rem;
	}
	
	#buttons50 {
		gap: 0.75rem;
	}
	
	#buttons57 {
		gap: 0.75rem;
	}
	
	#buttons58 {
		gap: 0.75rem;
	}
	
	#buttons59 {
		gap: 0.75rem;
	}
	
	#buttons17 {
		gap: 0.75rem;
	}
	
	#buttons20 {
		gap: 0.75rem;
	}
	
	#buttons38 {
		gap: 0.75rem;
	}
	
	#buttons61 {
		gap: 0.46875rem;
	}
	
	#buttons67 {
		gap: 0.46875rem;
	}
	
	#buttons60 {
		gap: 0.75rem;
	}
	
	#buttons62 {
		gap: 0.46875rem;
	}
	
	#buttons68 {
		gap: 0.46875rem;
	}
	
	#buttons69 {
		gap: 0.46875rem;
	}
	
	#buttons65 {
		gap: 0.75rem;
	}
	
	#buttons09 {
		gap: 0.1875rem;
	}
	
	#buttons08 {
		gap: 0.1875rem;
	}
	
	#buttons10 {
		gap: 0.1875rem;
	}
	
	#bt000a {
		gap: 1.5rem;
	}
	
	#bt000b {
		gap: 1.5rem;
	}
	
	#bt001a {
		gap: 1.5rem;
	}
	
	#bt001b {
		gap: 1.5rem;
	}
	
	#bt002a {
		gap: 0.5625rem;
	}
	
	#bt002b {
		gap: 0.5625rem;
	}
	
	#bt003a {
		gap: 0.5625rem;
	}
	
	#bt003b {
		gap: 0.5625rem;
	}
	
	#bt004a {
		gap: 0.5625rem;
	}
	
	#bt004b {
		gap: 0.5625rem;
	}
	
	#buttons27 {
		gap: 0.5625rem;
	}
	
	#buttons15 {
		gap: 0.5625rem;
	}
	
	#buttons12 {
		gap: 0.5625rem;
	}
	
	#bt000am {
		gap: 1.5rem;
	}
	
	#bt000bm {
		gap: 1.5rem;
	}
	
	#bt001am {
		gap: 1.5rem;
	}
	
	#bt001bm {
		gap: 1.5rem;
	}
	
	#bt002am {
		gap: 0.5625rem;
	}
	
	#bt002bm {
		gap: 0.5625rem;
	}
	
	#bt003am {
		gap: 0.5625rem;
	}
	
	#bt003bm {
		gap: 0.5625rem;
	}
	
	#bt004am {
		gap: 0.5625rem;
	}
	
	#bt004bm {
		gap: 0.5625rem;
	}
	
	#buttons36 {
		gap: 0.5625rem;
	}
	
	#buttons42 {
		gap: 0.5625rem;
	}
	
	#buttons43 {
		gap: 0.5625rem;
	}
	
	#text77 {
		font-size: 1.375em;
	}
	
	#text78 {
		font-size: 1.375em;
	}
	
	#text79 {
		font-size: 1.375em;
	}
	
	#text80 {
		font-size: 1.375em;
	}
	
	#text68 {
		font-size: 1.375em;
	}
	
	#text76 {
		font-size: 1.25em;
	}
	
	#text69 {
		font-size: 1.25em;
	}
	
	#text66 {
		font-size: 1.25em;
	}
	
	#text67 {
		font-size: 1.25em;
	}
	
	#text65 {
		font-size: 1.25em;
	}
	
	#text02 {
		font-size: 2em;
	}
	
	#text54 {
		font-size: 2em;
	}
	
	#text04 {
		font-size: 2.5em;
	}
	
	#text08 {
		font-size: 1.375em;
	}
	
	#text81 {
		font-size: 3.25em;
	}
	
	#text23 {
		font-size: 2em;
	}
	
	#text24 {
		font-size: 1.5em;
	}
	
	#text12 {
		font-size: 2em;
	}
	
	#text25 {
		font-size: 1.5em;
	}
	
	#text21 {
		font-size: 2em;
	}
	
	#text22 {
		font-size: 1.5em;
	}
	
	#text11 {
		font-size: 3.25em;
	}
	
	#text19 {
		font-size: 2em;
	}
	
	#text20 {
		font-size: 1.5em;
	}
	
	#text15 {
		font-size: 2em;
	}
	
	#text17 {
		font-size: 1.5em;
	}
	
	#text16 {
		font-size: 2em;
	}
	
	#text18 {
		font-size: 1.5em;
	}
	
	#text28 {
		font-size: 2.25em;
	}
	
	#text05 {
		font-size: 1.625em;
	}
	
	#text01 {
		font-size: 3.25em;
	}
	
	#text107 {
		font-size: 1.75em;
	}
	
	#text108 {
		font-size: 1.125em;
	}
	
	#text109 {
		font-size: 1.75em;
	}
	
	#text110 {
		font-size: 1.125em;
	}
	
	#text111 {
		font-size: 1.75em;
	}
	
	#text112 {
		font-size: 1.125em;
	}
	
	#text97 {
		font-size: 1.75em;
	}
	
	#text98 {
		font-size: 1.125em;
	}
	
	#text113 {
		font-size: 1.75em;
	}
	
	#text114 {
		font-size: 1.125em;
	}
	
	#text115 {
		font-size: 1.75em;
	}
	
	#text116 {
		font-size: 1.125em;
	}
	
	#text117 {
		font-size: 1.75em;
	}
	
	#text118 {
		font-size: 1.125em;
	}
	
	#text30 {
		font-size: 1.75em;
	}
	
	#text48 {
		font-size: 1.125em;
	}
	
	#text49 {
		font-size: 1.75em;
	}
	
	#text50 {
		font-size: 1.125em;
	}
	
	#text57 {
		font-size: 1.75em;
	}
	
	#text58 {
		font-size: 1.125em;
	}
	
	#text07 {
		font-size: 3.25em;
	}
	
	#text119 {
		font-size: 1.75em;
	}
	
	#text120 {
		font-size: 1.125em;
	}
	
	#text60 {
		font-size: 3.25em;
	}
	
	#text86 {
		font-size: 3.25em;
	}
	
	#text125 {
		font-size: 1.75em;
	}
	
	#text126 {
		font-size: 1.125em;
	}
	
	#text31 {
		font-size: 2.5em;
	}
	
	#text32 {
		font-size: 1.375em;
	}
	
	#text33 {
		font-size: 2.5em;
	}
	
	#text34 {
		font-size: 1.375em;
	}
	
	#text35 {
		font-size: 2.5em;
	}
	
	#text36 {
		font-size: 1.375em;
	}
	
	#text37 {
		font-size: 2em;
	}
	
	#text38 {
		font-size: 1.375em;
	}
	
	#text09 {
		font-size: 1.25em;
	}
	
	#text61 {
		font-size: 1.625em;
	}
	
	#text10 {
		font-size: 1.625em;
	}
	
	#text06 {
		font-size: 2em;
	}
	
	#text14 {
		font-size: 1.5em;
	}
	
	#text13 {
		font-size: 1.5em;
	}
	
	#text53 {
		font-size: 2.375em;
	}
	
	#shtcc-s0 {
		font-size: 1em;
	}
	
	#shtcc-s1 {
		font-size: 1em;
	}
	
	#shtcc-s2 {
		font-size: 1em;
	}
	
	#shtcc-s3 {
		font-size: 1em;
	}
	
	#shtcc-s4 {
		font-size: 1em;
	}
	
	#text75 {
		font-size: 1.375em;
	}
	
	#text41 {
		font-size: 1.375em;
	}
	
	#text40 {
		font-size: 1.375em;
	}
	
	#shtcc-s0m {
		font-size: 1.125em;
	}
	
	#shtcc-s1m {
		font-size: 1.125em;
	}
	
	#shtcc-s2m {
		font-size: 1.125em;
	}
	
	#shtcc-s3m {
		font-size: 1.125em;
	}
	
	#shtcc-s4m {
		font-size: 1.125em;
	}
	
	#text88 {
		font-size: 1.5em;
	}
	
	#text47 {
		font-size: 1.5em;
	}
	
	#text51 {
		font-size: 1.5em;
	}
}