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

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

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

: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: 16pt;
}

u {
	text-decoration: underline;
}

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

em {
	font-style: italic;
}

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

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

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

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

s {
	text-decoration: line-through;
}

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

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

a {
	color: inherit;
	text-decoration: underline;
	transition: color 0.25s ease;
}

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

unloaded-script {
	display: none;
}

.site-wrapper {
	-webkit-overflow-scrolling: touch;
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: var(--viewport-height);
	overflow: hidden;
	position: relative;
	z-index: 2;
	padding: 0 1rem 1rem 1rem;
}

.site-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;
	background-color: #000000;
	border-right: solid 4px #FF0000;
	border-bottom: solid 4px #FF0000;
	border-left: solid 4px #FF0000;
}

.site-main > .inner {
	--padding-horizontal: 0.75rem;
	--padding-vertical: 0.75rem;
	--spacing: 1.75rem;
	--width: 28rem;
	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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-component > .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-component > .frame > img {
	border-radius: 0 !important;
	max-width: 100%;
	vertical-align: top;
	width: inherit;
}

.image-component.full > .frame {
	display: block;
}

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

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

.image-component.instance-2 > .frame {
	max-width: 100%;
	width: auto;
	transition: none;
}

.image-component.instance-2 > .frame > img {
	transition: none;
}

.image-component.instance-1 > .frame {
	width: 100vw;
	transition: none;
}

.image-component.instance-1 > .frame > img {
	transition: none;
}

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

.buttons-component > li {
	max-width: 100%;
	text-align: var(--alignment);
}

.buttons-component > li > a {
	align-items: center;
	justify-content: center;
	max-width: 100%;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	white-space: nowrap;
}

.buttons-component.instance-1 {
	gap: 0rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-1:not(:first-child) {
	margin-top: 1.75rem !important;
}

.buttons-component.instance-1:not(:last-child) {
	margin-bottom: 1.75rem !important;
}

.buttons-component.instance-1 > li > a {
	display: inline-block;
	width: auto;
	height: 1.5rem;
	line-height: calc(1.5rem - 2px);
	padding: 0 0.75rem;
	vertical-align: middle;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
	font-weight: 700;
	border-radius: 0rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
	border: solid 1px #000000;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-1 > li > a:hover {
	border-color: #FF9385 !important;
	color: #FF9385 !important;
}

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

.divider-component::before {
	content: '';
}

.divider-component.instance-2 {
	justify-content: center;
}

.divider-component.instance-2::before {
	width: 100%;
	background-color: #000000;
	height: 1px;
}

.divider-component.instance-1 {
	justify-content: center;
}

.divider-component.instance-1::before {
	width: 100%;
	background-color: #000000;
	height: 1px;
}

#header {
	margin-bottom: 0rem !important;
}

#footer {
	margin-top: 0rem !important;
}

.text-component {
	direction: var(--site-language-direction);
	position: relative;
}

.text-component span.p {
	display: block;
	position: relative;
}

.text-component span[style], .text-component strong, .text-component a, .text-component code, .text-component mark, .text-component spoiler-text {
	-webkit-text-fill-color: currentcolor;
}

.text-component.instance-1 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Lato', sans-serif;
	font-size: 1.25em;
	line-height: 1.375;
	font-weight: 300;
}

.text-component.instance-1 a {
	text-decoration: underline;
}

.text-component.instance-1 a:hover {
	text-decoration: none;
}

.text-component.instance-1 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-6 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Lato', sans-serif;
	font-size: 0.75em;
	line-height: 1.75;
	font-weight: 300;
}

.text-component.instance-6 a {
	text-decoration: underline;
}

.text-component.instance-6 a:hover {
	text-decoration: none;
}

.text-component.instance-6 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-4 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Lato', sans-serif;
	font-size: 1.25em;
	line-height: 1.375;
	font-weight: 300;
}

.text-component.instance-4 a {
	text-decoration: underline;
}

.text-component.instance-4 a:hover {
	text-decoration: none;
}

.text-component.instance-4 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-3 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Lato', sans-serif;
	font-size: 1.25em;
	line-height: 1.375;
	font-weight: 300;
}

.text-component.instance-3 a {
	text-decoration: underline;
}

.text-component.instance-3 a:hover {
	text-decoration: none;
}

.text-component.instance-3 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-5 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Lato', sans-serif;
	font-size: 1.25em;
	line-height: 1.375;
	font-weight: 300;
}

.text-component.instance-5 a {
	text-decoration: underline;
}

.text-component.instance-5 a:hover {
	text-decoration: none;
}

.text-component.instance-5 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-7 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Lato', sans-serif;
	font-size: 0.75em;
	line-height: 1.75;
	font-weight: 300;
}

.text-component.instance-7 a {
	text-decoration: underline;
}

.text-component.instance-7 a:hover {
	text-decoration: none;
}

.text-component.instance-7 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-2 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Lato', sans-serif;
	font-size: 0.625em;
	line-height: 1.75;
	font-weight: 300;
}

.text-component.instance-2 a {
	text-decoration: underline;
}

.text-component.instance-2 a:hover {
	text-decoration: none;
}

.text-component.instance-2 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.gallery-component > .inner {
	display: inline-block;
	max-width: 100%;
	vertical-align: middle;
}

.gallery-component ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: var(--flex-alignment);
}

.gallery-component ul > li {
	position: relative;
}

.gallery-component ul > li > .thumbnail {
	border-radius: inherit;
	position: relative;
}

.gallery-component ul > li > .thumbnail > .frame {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
}

.gallery-component ul > li > .thumbnail > .frame > img {
	margin: 0;
	max-width: 100%;
	vertical-align: top;
	width: auto;
}

.gallery-component ul > li > .caption {
	width: 100%;
}

.gallery-component ul > li > .caption > p {
	width: 100%;
}

.gallery-component ul > li > .caption > p > a, .gallery-component ul > li > .caption > p > spoiler-text {
	pointer-events: auto;
}

@keyframes gallery-component-modal-spinner {
	0% {
		transform: rotate(0deg);
	}

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

.gallery-component-modal {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	align-content: center;
	align-items: center;
	background-color: var(--color-background);
	display: grid;
	grid-template-areas: "previous image next" "caption caption caption";
	grid-template-columns: min-content auto min-content;
	height: 100%;
	justify-content: space-between;
	left: 0;
	opacity: 0;
	outline: 0;
	padding: 2rem 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	touch-action: pan-x pinch-zoom;
	transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s, background-color 0.5s ease;
	user-select: none;
	visibility: hidden;
	width: 100%;
	z-index: 0;
}

.gallery-component-modal::before {
	animation: gallery-component-modal-spinner 1s infinite linear;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 4rem;
	content: '';
	display: block;
	height: 4rem;
	left: 50%;
	margin: -2rem 0 0 -2rem;
	opacity: 0;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0.5s;
	width: 4rem;
}

.gallery-component-modal > .inner {
	box-shadow: 0 1em 3em 0 rgba(0,0,0,0.35);
	grid-area: image;
	height: 100%;
	opacity: 0;
	overflow: hidden;
	transform: translateY(0.75em);
	transition: all 0.5s ease;
	width: 100%;
}

.gallery-component-modal > .inner img {
	display: block;
	height: 100%;
	object-fit: contain;
	width: 100%;
	max-width: var(--natural-width, none);
	max-height: var(--natural-height, none);
	margin: 0 auto;
}

.gallery-component-modal > .caption {
	color: var(--color-caption-text);
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 1rem;
	grid-area: caption;
	line-height: 1.6;
	opacity: 0;
	padding: 2rem 2rem 0 2rem;
	pointer-events: none;
	text-align: center;
	transform: translateY(0.25em);
	transition: all 0.5s ease;
}

.gallery-component-modal > .caption::-webkit-scrollbar {
	display: none;
}

.gallery-component-modal > .caption a, .gallery-component-modal > .caption spoiler-text {
	pointer-events: auto;
}

.gallery-component-modal .nav {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 3rem;
	cursor: pointer;
	height: 6rem;
	transition: opacity 0.25s ease, transform 0.5s ease;
	width: 8rem;
}

.gallery-component-modal .nav:hover {
	opacity: 1 !important;
}

.gallery-component-modal .nav.next {
	grid-area: next;
}

.gallery-component-modal .nav.previous {
	grid-area: previous;
	transform: scaleX(-1);
}

.gallery-component-modal .close {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background-position: top 1rem right 1rem;
	background-repeat: no-repeat;
	background-size: 3rem;
	cursor: pointer;
	display: block;
	height: 6rem;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity 0.25s ease, transform 0.5s ease;
	width: 6rem;
}

.gallery-component-modal .close:hover {
	opacity: 1 !important;
}

.gallery-component-modal.visible {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	z-index: 10000;
}

.gallery-component-modal.visible::before {
	opacity: 1;
}

.gallery-component-modal.loaded::before {
	opacity: 0 !important;
	transition-delay: 0s !important;
}

.gallery-component-modal.loaded > .inner {
	opacity: 1;
	transform: translateY(0);
}

.gallery-component-modal.loaded .caption {
	opacity: 1;
	transform: translateY(0);
}

.gallery-component-modal.switching > .inner {
	transition: opacity 0.375s ease, transform 0.5s ease;
}

.gallery-component-modal.switching.from-left > .inner {
	transform: translateY(0) translateX(-1.5em);
}

.gallery-component-modal.switching.from-right > .inner {
	transform: translateY(0) translateX(1.5em);
}

.gallery-component-modal.switching.done > .inner {
	transition: opacity 0.375s ease;
	transform: translateY(0) translateX(0);
}

.gallery-component-modal.zooming {
	background-color: var(--color-background-zooming);
}

.gallery-component-modal.zooming .caption {
	opacity: 0;
}

.gallery-component-modal.zooming .nav.next {
	opacity: 0;
	pointer-events: none;
	transform: translateX(50%);
}

.gallery-component-modal.zooming .nav.previous {
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) scaleX(-1);
}

.gallery-component-modal.zooming .close {
	opacity: 0;
	pointer-events: none;
	transform: translateX(50%) translateY(-50%);
}

.gallery-component-modal.dark {
	--color-background: rgba(10,10,10,0.85);
	--color-background-zooming: rgba(0,0,0,1);
	--color-caption-text: #FFFFFF;
}

.gallery-component-modal.dark::before {
	animation: gallery-component-modal-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMS41cHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
}

.gallery-component-modal.dark .close {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICNGRkZGRkY7c3Ryb2tlLXdpZHRoOiAxLjVweDt9PC9zdHlsZT48bGluZSB4MT0iMjAiIHkxPSIyMCIgeDI9IjQ0IiB5Mj0iNDQiIC8+PGxpbmUgeDE9IjIwIiB5MT0iNDQiIHgyPSI0NCIgeTI9IjIwIiAvPjwvc3ZnPg==');
	opacity: 0.25;
}

.gallery-component-modal.dark .nav {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICNGRkZGRkY7c3Ryb2tlLXdpZHRoOiAxLjVweDt9PC9zdHlsZT48bGluZSB4MT0iMjQiIHkxPSI4IiB4Mj0iNDgiIHkyPSIzMiIgLz48bGluZSB4MT0iMjQiIHkxPSI1NiIgeDI9IjQ4IiB5Mj0iMzIiIC8+PC9zdmc+');
	opacity: 0.25;
}

.gallery-component-modal.light {
	--color-background: rgba(255,255,255,0.9);
	--color-background-zooming: rgba(255,255,255,1);
	--color-caption-text: #000000;
}

.gallery-component-modal.light::before {
	animation: gallery-component-modal-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICMwMDAwMDA7IHN0cm9rZS13aWR0aDogMS41cHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
}

.gallery-component-modal.light .close {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICMwMDAwMDA7c3Ryb2tlLXdpZHRoOiAxLjVweDt9PC9zdHlsZT48bGluZSB4MT0iMjAiIHkxPSIyMCIgeDI9IjQ0IiB5Mj0iNDQiIC8+PGxpbmUgeDE9IjIwIiB5MT0iNDQiIHgyPSI0NCIgeTI9IjIwIiAvPjwvc3ZnPg==');
	opacity: 0.375;
}

.gallery-component-modal.light .nav {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICMwMDAwMDA7c3Ryb2tlLXdpZHRoOiAxLjVweDt9PC9zdHlsZT48bGluZSB4MT0iMjQiIHkxPSI4IiB4Mj0iNDgiIHkyPSIzMiIgLz48bGluZSB4MT0iMjQiIHkxPSI1NiIgeDI9IjQ4IiB5Mj0iMzIiIC8+PC9zdmc+');
	opacity: 0.375;
}

.gallery-component.instance-2 > .inner {
	max-width: 100%;
}

.gallery-component.instance-2 ul > li {
	border-radius: 0rem;
	display: inline-block;
}

.gallery-component.instance-2 ul > li > .thumbnail > .frame {
	border-radius: 0rem;
}

.gallery-component.instance-2 ul {
	gap: 0.5rem;
}

.gallery-component.instance-2 ul > li > .thumbnail {
	display: block;
	transition: none;
}

.gallery-component.instance-2 ul > li > .thumbnail > .frame > img {
	height: 8.5rem;
	object-fit: cover;
	object-position: center;
	width: 8.5rem;
	transition: none;
}

.gallery-component.instance-2 ul > li > .thumbnail.n01 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n02 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n03 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n04 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n05 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n06 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n07 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n08 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n09 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n10 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n11 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n12 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n13 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n14 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n15 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n16 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n17 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n18 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n19 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n20 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n21 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n22 > .frame > img {
	object-position: center;
}

.gallery-component.instance-2 ul > li > .thumbnail.n23 > .frame > img {
	object-position: center;
}

.gallery-component.instance-1 > .inner {
	max-width: 100%;
}

.gallery-component.instance-1 ul > li {
	border-radius: 0rem;
	display: inline-block;
}

.gallery-component.instance-1 ul > li > .thumbnail > .frame {
	border-radius: 0rem;
}

.gallery-component.instance-1 ul {
	gap: 0.5rem;
}

.gallery-component.instance-1 ul > li > .thumbnail {
	display: block;
	transition: none;
}

.gallery-component.instance-1 ul > li > .thumbnail > .frame > img {
	height: 8.5rem;
	object-fit: cover;
	object-position: center;
	width: 8.5rem;
	transition: none;
}

.gallery-component.instance-1 ul > li > .thumbnail.n01 > .frame > img {
	object-position: center;
}

.gallery-component.instance-1 ul > li > .thumbnail.n02 > .frame > img {
	object-position: center;
}

.gallery-component.instance-1 ul > li > .thumbnail.n03 > .frame > img {
	object-position: center;
}

.gallery-component.instance-1 ul > li > .thumbnail.n04 > .frame > img {
	object-position: center;
}

.gallery-component.instance-1 ul > li > .thumbnail.n05 > .frame > img {
	object-position: center;
}

.gallery-component.instance-1 ul > li > .thumbnail.n06 > .frame > img {
	object-position: center;
}

@media (orientation: portrait) {
	.gallery-component-modal {
		grid-template-areas: "image" "caption";
		grid-template-columns: auto;
		justify-content: center;
	}
	
	.gallery-component-modal .nav {
		background-image: none !important;
		mix-blend-mode: difference;
		opacity: 1 !important;
		position: absolute;
	}
	
	.gallery-component-modal .nav.next {
		right: 0;
	}
	
	.gallery-component-modal .nav.previous {
		left: 0;
	}
	
	.gallery-component-modal .nav::before {
		background-color: rgba(144,144,144,0.5);
		background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICNGRkZGRkY7c3Ryb2tlLXdpZHRoOiAzcHg7fTwvc3R5bGU+PGxpbmUgeDE9IjI0IiB5MT0iOCIgeDI9IjQ4IiB5Mj0iMzIiIC8+PGxpbmUgeDE9IjI0IiB5MT0iNTYiIHgyPSI0OCIgeTI9IjMyIiAvPjwvc3ZnPg==');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 1.5rem;
		border-radius: 3rem;
		content: '';
		display: block;
		height: 3rem;
		position: absolute;
		right: 1rem;
		top: calc(50% - 1.5rem);
		width: 3rem;
	}
}

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

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

@media (max-width: 1280px) {
	html {
		font-size: 12pt;
	}
	
	
	
	.gallery-component-modal .nav {
		opacity: 1 !important;
	}
	
	.gallery-component-modal .close {
		opacity: 1 !important;
	}
}

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

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

@media (max-width: 736px) {
	html {
		font-size: 10pt;
	}
	
	
	
	.site-main > .inner {
		--padding-horizontal: 0.75rem;
		--padding-vertical: 0.75rem;
		--spacing: 1.75rem;
	}
	
	.site-main > .inner > * > .full {
		margin-left: calc(-0.75rem);
		max-width: calc(100% + 1.5rem + 0.4725px);
		width: calc(100% + 1.5rem + 0.4725px);
	}
	
	.site-main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	.site-main > .inner > header > .full:first-child {
		margin-top: -0.75rem !important;
	}
	
	.site-main > .inner > footer > .full:last-child {
		margin-bottom: -0.75rem !important;
	}
	
	.image-component.instance-1 > .frame {
		width: 100vw;
	}
	
	.buttons-component.instance-1 {
		gap: 0rem;
	}
	
	.buttons-component.instance-1:not(:first-child) {
		margin-top: 1.3125rem !important;
	}
	
	.buttons-component.instance-1:not(:last-child) {
		margin-bottom: 1.3125rem !important;
	}
	
	.buttons-component.instance-1 > li > a {
		letter-spacing: 0rem;
		font-size: 0.75em;
	}
	
	#header {
		margin-bottom: 0rem !important;
	}
	
	#footer {
		margin-top: 0rem !important;
	}
	
	.text-component.instance-1 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.375;
	}
	
	.text-component.instance-6 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.75;
	}
	
	.text-component.instance-4 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.375;
	}
	
	.text-component.instance-3 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.375;
	}
	
	.text-component.instance-5 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.375;
	}
	
	.text-component.instance-7 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.75;
	}
	
	.text-component.instance-2 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.75;
	}
	
	.gallery-component-modal .close {
		background-position: top 0.5rem right 0.5rem;
	}
	
	.gallery-component.instance-2 ul > li > .thumbnail > .frame > img {
		height: 6.375rem;
		width: 6.375rem;
	}
	
	.gallery-component.instance-1 ul > li > .thumbnail > .frame > img {
		height: 6.375rem;
		width: 6.375rem;
	}
}

@media (max-width: 480px) {
	.site-main > .inner {
		--spacing: 1.53125rem;
	}
}

@media (max-width: 360px) {
	.site-main > .inner {
		--padding-horizontal: 0.5625rem;
		--padding-vertical: 0.5625rem;
		--spacing: 1.3125rem;
	}
	
	.site-main > .inner > * > .full {
		margin-left: calc(-0.5625rem);
		max-width: calc(100% + 1.125rem + 0.4725px);
		width: calc(100% + 1.125rem + 0.4725px);
	}
	
	.site-main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	.site-main > .inner > header > .full:first-child {
		margin-top: -0.5625rem !important;
	}
	
	.site-main > .inner > footer > .full:last-child {
		margin-bottom: -0.5625rem !important;
	}
	
	.buttons-component.instance-1 {
		gap: 0rem;
	}
	
	.text-component.instance-1 {
		font-size: 1.25em;
	}
	
	.text-component.instance-6 {
		font-size: 0.75em;
	}
	
	.text-component.instance-4 {
		font-size: 1.25em;
	}
	
	.text-component.instance-3 {
		font-size: 1.25em;
	}
	
	.text-component.instance-5 {
		font-size: 1.25em;
	}
	
	.text-component.instance-7 {
		font-size: 0.75em;
	}
	
	.text-component.instance-2 {
		font-size: 0.625em;
	}
	
	.gallery-component.instance-2 ul {
		gap: 0.375rem;
	}
	
	.gallery-component.instance-1 ul {
		gap: 0.375rem;
	}
}