:root {
	--link-color: #0044aa;
	--link-visitedColor: #00255c;
	--link-hoverColor: #d22;
}
:root {
	--typographyGap: 1rem;
	--typographyExtraGap: 2rem;
	--typographyHeadingStartGap: 3rem;
	--typographyHeadingEndGap: 1rem;
}

:root {
	--unith-page-margin: 1rem;
	--unith-lineHeight: 1.625;
	--unith-content-space-1: calc(1rem * var(--unith-lineHeight));
	--unith-content-space-2: calc(2rem * var(--unith-lineHeight));
	--unith-content-space-3: calc(3rem * var(--unith-lineHeight));
	--link-color: var(--unith-link-color, #0044aa);
	--link-visitedColor: var(--unith-link-visitedColor, #00255c);
	--link-hoverColor: var(--unith-link-hoverColor, #d22);

/*	--theme-pageWidth: 60em;*/
/*	--page-width: 60rem;

	--color-burgundy: #800020;
	--color-burgundyLight: #fdecf0;

	--size-text: clamp(1rem, 0.9545rem + 0.2273vw, 1.125rem);

	--link-color: var(--color-burgundy);
	--link-visitedColor: var(--link-color);

	--font-georgia: Georgia, 'Times New CE', 'Times CE', 'Times New Roman', Times, serif;

	--background-size: clamp(8rem, 2.0455rem + 29.7727vw, 24.375rem);*/
}
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;
}

/* HTML5 display-role reset for older browsers */
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;
}
@-ms-viewport {
	width: device-width;
}

body {
	line-height: 1.625;
	font-family: 'Arial CE', 'Helvetica CE', Arial, Verdana, Helvetica, sans-serif;
	text-align: left;
}

/* margin bottom */
ul, ol, dd {
	margin-left: 2em;
}

ul {
	list-style-type: disc;
}

ol {
	list-style-type: decimal;
}

/* overflow */
pre {
	overflow: auto;
}

/* font size */
sub, sup, small {
	font-size: smaller;
}

big {
	font-size: larger;
}

/* vertical align */
sub {
	vertical-align: sub;
}

sup {
	vertical-align: super;
}

/* monospace font */
code, kbd, pre, samp, tt, var, listing {
	font-family: monospace;
	text-indent: 0; /* <code> inline-block fix */
}

/* code output */
pre {
	-o-tab-size: 4;
	-moz-tab-size: 4;
	tab-size: 4;
}

pre code {
	display: inline; /* <code> inline-block fix */
}

/* italic */
address, blockquote, cite, dfn, em, i, ins, q, var {
	font-style: italic;
}

/* bold */
b, kbd, strong, th {
	font-weight: bold;
}

/* underline */
a, u {
	text-decoration: underline;
}

/* line through */
del, s, strike {
	text-decoration: line-through;
}

/* text decoration */
ins {
	text-decoration: none;
}

/* heading */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: bold;
}

/* tables */
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	vertical-align: inherit;
}

td, th, caption {
	padding: 0.2em 0.6em;
	text-align: left;
}

th {
	text-align: center;
}

/*fix for IE6, IE7*/
th p {
	text-align: left;
}
/*\fix for IE7*/

caption {
	text-align: center;
}

form td, form tr {
	border: none;
}

/* forms */
fieldset {
	border: 1px solid #bbb;
	padding: 0.6em 1em 1em;
}

legend {
	padding: 0 0.4em;
}

/* HTML5 */
mark {
	color: #000;
	background-color: #ff0;
	padding: 1px 3px;
}

/* other */
hr {
	background: transparent;
	height: 1px;
	border-width: 0;
	border-top: 0.25em solid #e8e8e8;
}

/* other - deprecated */
center {
	text-align: center;
}
a {
	color: var(--link-color);
}

a:visited {
	color: var(--link-visitedColor);
}

a:hover,
a:focus,
a:active {
	color: var(--link-hoverColor);
}
@media print {
	body {
		font-family: Georgia, 'Times New CE', 'Times CE', 'Times New Roman', Times, serif;
		padding: 1cm;
	}

	a {
		text-decoration: underline;
	}
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: var(--typographyHeadingStartGap);
	margin-bottom: var(--typographyHeadingEndGap);
}


h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	margin-top: 0;
}


hr,
address,
p,
pre,
ul,
ol,
dl,
table {
	margin-bottom: var(--typographyGap);
}


ul ul,
ol ol,
ul ol,
ol ul {
	margin-bottom: 0;
}


blockquote {
	margin-bottom: var(--typographyExtraGap);
	margin-top: var(--typographyExtraGap);
}


h1 + h1,
h1 + h2,
h1 + h3,
h1 + h4,
h1 + h5,
h1 + h6,
h1 + blockquote,
h2 + h2,
h2 + h3,
h2 + h4,
h2 + h5,
h2 + h6,
h2 + blockquote,
h3 + h3,
h3 + h4,
h3 + h5,
h3 + h6,
h3 + blockquote,
h4 + h4,
h4 + h5,
h4 + h6,
h4 + blockquote,
h5 + h5,
h5 + h6,
h5 + blockquote,
h6 + h6,
h6 + blockquote {
	margin-top: 0;
}


body {
	color: #000;
	background: #fff;
	background-color: var(--unith-page-backgroundColor, #fff);
	background-image: var(--unith-page-backgroundImage, none);
	background-position: var(--unith-page-backgroundPosition, top left);
	background-repeat: var(--unith-page-backgroundRepeat, no-repeat);
	font-family: var(--unith-text-fontFamily, Arial, Verdana, Helvetica, sans-serif);
	color: var(--unith-text-color, #000);
}


h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--unith-heading-fontFamily);
	line-height: 1.25;
}


h1 {
	font-size: var(--unith-heading-size1);
	color: var(--unith-heading-color1);
}


h2 {
	font-size: var(--unith-heading-size2);
	color: var(--unith-heading-color2);
}


h3 {
	font-size: var(--unith-heading-size3);
	color: var(--unith-heading-color3);
}


h4 {
	font-size: var(--unith-heading-size4);
	color: var(--unith-heading-color4);
}


h5 {
	font-size: var(--unith-heading-size5);
	color: var(--unith-heading-color5);
}


h6 {
	font-size: var(--unith-heading-size6);
	color: var(--unith-heading-color6);
}


.page--mobileMenu-active {
	overflow: hidden;
}
.image {
	display: block;
	max-width: 100%;
	height: auto;
}
.embededIframe {
    display: block;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}
.button {
	--button-color: gray;
	--button-textColor: #fff;
	--button-borderColor: var(--button-color);

	--button-hoverColor: silver;
	--button-hoverTextColor: var(--button-textColor);
	--button-hoverBorderColor: var(--button-hoverColor);

	--button-borderWidth: 0;
	--button-borderRadius: 0.1875em;

	display: inline-block;
	padding: 0.5em 1.25em;
	box-sizing: border-box;
	margin-bottom: 1px;
	font: inherit;
	font-weight: normal;
	border-radius: var(--button-borderRadius);
	border: none;
	border-style: solid;
	border-width: var(--button-borderWidth);
	cursor: pointer;
	text-decoration: none;
/*	box-shadow: 0 -2px 0 rgba(0,0,0,0.2) inset;*/
}


.button,
.button:hover,
.button:focus,
.button:active,
.button:visited {
	background-color: var(--button-color);
	color: var(--button-textColor);
	border-color: var(--button-borderColor);
}


.button:hover,
.button:focus,
.button:active {
	background-color: var(--button-hoverColor);
	color: var(--button-hoverTextColor);
	border-color: var(--button-hoverBorderColor);
	text-decoration: underline;
}

.button:active {
	box-shadow: none;
}
.reducedContent {
    display: block;
    display: flow-root;
    margin-left: auto;
    margin-right: auto;
    max-width: 80ch;
}


.button {
	--button-borderRadius: 0.375em;
	--button-color: var(--unith-button-primaryColor, transparent);
	--button-textColor: var(--unith-button-primaryTextColor, inherit);
	--button-hoverColor: var(--unith-button-primaryHoverColor, transparent);
	--button-hoverTextColor: var(--unith-button-primaryHoverTextColor, inherit);
	/*font-size: var(--unith-button-fontSize, inherit);
	font-family: var(--unith-button-fontFamily, inherit);*/
}


.button--secondary {
	--button-color: var(--unith-button-secondaryColor, var(--unith-button-primaryColor, transparent));
	--button-textColor: var(--unith-button-secondaryTextColor, var(--unith-button-primaryTextColor, inherit));
	--button-hoverColor: var(--unith-button-secondaryHoverColor, var(--unith-button-primaryHoverColor, transparent));
	--button-hoverTextColor: var(--unith-button-secondaryHoverTextColor, var(--unith-button-primaryHoverTextColor, inherit));
}


.webilionExampleBar {
	background: #fbe88d;
	background: linear-gradient(#2b5a9c88, #2b5a9c88), var(--unith-page-backgroundColor, #fff);
	border-bottom: 1px solid #ead984;
	border-bottom: none;
	text-align: center;
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	color: #333;
	color: #fff;
	position: sticky;
	top: 0;

	--link-color: #fff;
	--link-visitedColor: #fff;
	--link-hoverColor: #fff8;
}
/*.header {
	display: block;
}


.header__inner {
	display: block;
	margin: 0 auto;
	padding: 0 1rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}


.header__content {
	text-align: center;
	flex: 1;
	padding-top: 1rem;
	padding-bottom: 1rem;
}


.header__navigation {
	width: 100%;
}*/
.logo {
	--logo-size: 1rem;
	--logo-color: inherit;
	--logo-fontFamily: inherit;
	--logo-mottoSize: 0.875rem;
	--logo-mottoColor: inherit;
	--logo-mottoFontFamily: inherit;

	display: inline-flex;
	align-items: center;
	gap: 1rem 2rem;
	text-decoration: none;
}


.logo,
.logo:hover,
.logo:focus,
.logo:active,
.logo:visited {
	color: var(--logo-color);
}


.logo__image {
	display: block;
}


.logo__img {
	display: block;
	max-width: 16rem;
	max-height: 6rem;
	object-fit: contain;
	width: auto;
	height: auto;
}


.logo__text,
.logo__name,
.logo__motto {
	display: block;
}


.logo__name {
	font-weight: bold;
	font-size: var(--logo-size);
	font-family: var(--logo-fontFamily);
}


.logo__motto {
	color: var(--logo-mottoColor);
	font-size: var(--logo-mottoSize);
	font-family: var(--logo-mottoFontFamily);
}


.logo:hover .logo__name,
.logo:focus .logo__name,
.logo:active .logo__name {
	text-decoration: underline;
	color: inherit;
}
/*.body {
	display: block;
}


.body__inner {
	display: block;
	margin: 0 auto;
	padding: 0 1rem;
}*/
.contentColumns {
	gap: 2rem clamp(1rem, 0.6364rem + 1.8182vw, 2rem);
	display: grid;
}

.contentColumn {
	grid-column: span 1;
	min-width: 0;
}

@media only screen and (min-width: 45em) {
	.contentColumns--2cols,
	.contentColumns--3cols,
	.contentColumns--4cols,
	.contentColumns--5cols,
	.contentColumns--6cols,
	.contentColumns--7cols,
	.contentColumns--8cols,
	.contentColumns--9cols,
	.contentColumns--10cols,
	.contentColumns--11cols,
	.contentColumns--12cols {
	grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (min-width: 53em) {
	.contentColumns--3cols,
	.contentColumns--4cols,
	.contentColumns--5cols {
		grid-template-columns: repeat(3, 1fr);
	}

	.contentColumn--2cols {
		grid-column: span 2;
	}
}

@media only screen and (min-width: 61em) {
	.contentColumns--4cols,
	.contentColumns--5cols {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media only screen and (min-width: 70em) {
	.contentColumns--5cols {
		grid-template-columns: repeat(5, 1fr);
	}
}
.detailsBox {
	background: #fff;
	border-radius: 0.25rem;
	border: 1px solid #ddd;
}


.detailsBox__summary {
	display: block;
	position: relative;
	cursor: pointer;
	list-style: none;
	padding: 0;
	margin: 0;
	background: #fafafa;
	padding: 1.25rem;
	border-radius: 0.25rem;
	border-bottom: 1px solid transparent;
}


.detailsBox__summary::-webkit-details-marker {
	display: none;
}


.detailsBox__summary:after {
	content: "";
	display: block;
	width: 1.25rem;
	background-size: contain;
	background: transparent no-repeat center center;
	position: absolute;
	right: 1rem;
	top: 0;
	bottom: 0;
	pointer-events: none;
}


.detailsBox__content {
	overflow-x: auto;
	padding: 1.5rem 1.25rem;
}


.detailsBox[open] > .detailsBox__summary {
	border-bottom-color: #ddd;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}


.detailsBox[open] > .detailsBox__summary:after {
/*	transform: scaleY(-1);*/
	transform: rotate(90deg);
}
.heroImage,
.heroImage__image,
.heroImage__content {
	display: block;
}


.heroImage {
	display: flex;
	min-height: 26rem;
	align-items: center;
	background: #ddd;
	position: relative;
}


.heroImage__image {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
	pointer-events: none;
}


.heroImage__content {
	padding: 4rem 2rem;
	flex: 1;
	position: relative;
	z-index: 1;
	text-align: center;
	color: #fff;
}
/*.webauthor {
	display: block;
}


.webauthor__inner {
	display: block;
	margin: 0 auto;
	padding: 0 1rem;
}*/
.columns {
	display: grid;
	gap: 0;
}


@media only screen and (min-width: 60em) {
	.columns--c2 {
		grid-template-columns: repeat(2, 1fr);
	}


	.columns--c3 {
		grid-template-columns: repeat(3, 1fr);
	}


	.columns--c4 {
		grid-template-columns: repeat(4, 1fr);
	}
}
.group {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	justify-content: start;
	align-items: center;
}


.group--ha-left {
	justify-content: start;
}


.group--ha-center {
	justify-content: center;
}


.group--ha-right {
	justify-content: end;
}


.group--ha-space-between {
	justify-content: space-between;
}


.group--va-top {
	align-items: start;
}


.group--va-middle {
	align-items: center;
}


.group--va-bottom {
	align-items: end;
}


/*** LOGO ***/
.logo {
	--logo-color: var(--unith-logo-color, inherit);
	--logo-size: var(--unith-logo-size, inherit);
	--logo-fontFamily: var(--unith-logo-fontFamily, inherit);
	--logo-mottoColor: var(--unith-logo-mottoColor, inherit);
	--logo-mottoSize: var(--unith-logo-mottoSize, inherit);
	--logo-mottoFontFamily: var(--unith-logo-mottoFontFamily, inherit);
}


/*** MAIN MENU ***/
.mainMenu {
	display: flex;
	flex-direction: column;
	list-style: none;
	flex-wrap: wrap;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
	border-radius: 0.25rem;
	background-color: var(--unith-mainMenu-backgroundColor, transparent);
	font-family: var(--unith-mainMenu-fontFamily, inherit);
}


@media only screen and (min-width: 60em) {
	.mainMenu {
		flex-direction: row;
	}
}


.mainMenuLink {
	background-color: var(--unith-mainMenuLink-backgroundColor, transparent);
	padding: 0.625rem 1.25rem;
	display: block;
	border-radius: 0.25rem;
	text-decoration: none;
}


.mainMenuLink__label {
	font-size: var(--unith-mainMenu-textSize);
}


.mainMenuLink,
.mainMenuLink:visited,
.mainMenuLink:hover,
.mainMenuLink:focus,
.mainMenuLink:active {
	color: var(--unith-mainMenuLink-textColor, inherit);
}


.mainMenuLink__label {
	display: block;
}


.mainMenuLink:hover,
.mainMenuLink:focus,
.mainMenuLink:active {
	text-decoration: underline;
}


.mainMenuLink--active,
.mainMenuLink--active:visited,
.mainMenuLink--active:hover,
.mainMenuLink--active:focus,
.mainMenuLink--active:active,
.mainMenuLink:hover,
.mainMenuLink:focus,
.mainMenuLink:active {
	background-color: var(--unith-mainMenuLink-activeBackgroundColor, var(--unith-mainMenuLink-backgroundColor, transparent));
	color: var(--unith-mainMenuLink-activeTextColor, var(--unith-mainMenuLink-textColor, inherit));
}


/*** DETAILS BOX ***/
.detailsBox,
.detailsBox[open] > .detailsBox__summary {
	border-color: var(--unith-detailsBox-borderColor, #ddd);
}


.detailsBox__summary {
	background-color: var(--unith-detailsBox-summaryBackgroundColor, #fafafa);
	color: var(--unith-detailsBox-summaryTextColor, inherit);
}


.detailsBox__summary:after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M14.56051,10.35355,8.56058,16.35348a.5.5,0,0,1-.7071,0l-.707-.707a.5.5,0,0,1,0-.7071L12.08594,10,7.14652,5.06058a.5.5,0,0,1,0-.7071l.707-.707a.5.5,0,0,1,.7071,0l5.99993,5.99993A.5.5,0,0,1,14.56051,10.35355Z'/%3E%3C/svg%3E");
}


.detailsBox__content {
	background-color: var(--unith-detailsBox-contentBackgroundColor, #fff);
	color: var(--unith-detailsBox-contentTextColor, inherit);
}


/*** BREADCRUMBS ***/
.breadcrumbs {
	color: var(--unith-breadcrumbs-color, inherit);
	font-size: var(--unith-breadcrumbs-size, inherit);
	font-family: var(--unith-breadcrumbs-font, inherit);
	margin-bottom: 0.5lh;
	margin-bottom: var(--unith-content-space-1);
	overflow-x: overlay;
	white-space: nowrap;
}


.breadcrumbs__item {
	--link-color: var(--unith-breadcrumbs-color, inherit);
	--link-visitedColor: var(--unith-breadcrumbs-color, inherit);
	--link-hoverColor: var(--unith-breadcrumbs-color, inherit);

	text-decoration: none;
}


.breadcrumbs__item:any-link:hover,
.breadcrumbs__item:any-link:focus,
.breadcrumbs__item:any-link:active {
	text-decoration: underline;
}


/*** CONTENT ***/
.contentTitle,
.contentImage,
.contentDate,
.contentPerex {
	margin-bottom: var(--unith-content-space-1);
}


.contentText {
	--typographyGap: var(--unith-contentText-textSize, 1rem);
	--typographyExtraGap: calc(2 * var(--typographyGap));
	--typographyHeadingStartGap: calc(3 * var(--typographyGap));
	--typographyHeadingEndGap: var(--typographyGap);

	color: var(--unith-contentText-textColor);
	font-size: var(--unith-contentText-textSize);
	font-family: var(--unith-contentText-textFont);
	display: block;
	display: flow-root;
}


.contentTitle {
	font-family: var(--unith-heading-fontFamily);
	font-size: var(--unith-heading-size1);
	color: var(--unith-heading-color1);
	margin-top: 0;
}


.contentText,
.contentAttachments {
	margin-bottom: var(--unith-content-space-3);
}


.contentText iframe {
	display: block;
	margin-inline: auto;
	margin-bottom: var(--typographyGap);
}


.contentArticles {
	margin-bottom: var(--unith-content-space-2);
}


.contentDate {
	color: var(--unith-contentDate-color, inherit);
	font-size: var(--unith-contentDate-size, inherit);
	font-family: var(--unith-contentDate-font, inherit);
}


.contentPerex {
	color: var(--unith-contentPerex-color, inherit);
	font-size: var(--unith-contentPerex-size, inherit);
	font-family: var(--unith-contentPerex-font, inherit);
}


/*** CONTENT ARTICLE ***/
.contentArticles {
	display: flex;
	flex-direction: column;
	row-gap: 2rem;
}


.contentArticle {
	display: flex;
	gap: 2rem;
}


.contentArticle__content {
	flex: 1;
}


.contentArticle__title,
.contentArticle__perex {
	margin-bottom: 1rem;
}


.contentArticle__titleLink {
	--link-color: var(--unith-contentArticle-titleColor, inherit);
	--link-visitedColor: var(--unith-contentArticle-titleColor, inherit);
	--link-hoverColor: var(--unith-contentArticle-titleColor, inherit);

	text-decoration: none;
}


.contentArticle__titleLink:hover,
.contentArticle__titleLink:focus,
.contentArticle__titleLink:active {
	text-decoration: underline;
}


.contentArticle__title {
	color: var(--unith-contentArticle-titleColor, inherit);
	font-size: var(--unith-contentArticle-titleSize, inherit);
	font-family: var(--unith-contentArticle-titleFont, inherit);
}


.contentArticle__perex {
	color: var(--unith-contentArticle-perexColor, inherit);
	font-size: var(--unith-contentArticle-perexSize, inherit);
	font-family: var(--unith-contentArticle-perexFont, inherit);
}


.contentArticle__date {
	color: var(--unith-contentArticle-dateColor, inherit);
	font-size: var(--unith-contentArticle-dateSize, inherit);
	font-family: var(--unith-contentArticle-dateFont, inherit);
}


/*** FIGURE ***/
.figure {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}


.figure .image {
	margin-left: auto;
	margin-right: auto;
}


.figure__caption {
	margin-top: 0.75rem;
	text-align: center;
}


.figure--alignLeft,
.figure--alignLeft .image {
	margin-left: 0;
}


.figure--alignRight,
.figure--alignRight .image {
	margin-right: 0;
}


.figure--floatLeft {
	float: left;
	margin-right: var(--typographyExtraGap);
}


.figure--floatRight {
	float: right;
	margin-left: var(--typographyExtraGap);
}


/*** GALLERY CHILDREN ***/
.galleryChildren {
	display: grid;
	gap: 1rem;
	margin-bottom: 3rem;
}


.galleryChild {
	--link-color: var(--unith-galleryChild-color, inherit);
	--link-visitedColor: var(--unith-galleryChild-color, inherit);
	--link-hoverColor: var(--unith-galleryChild-hoverColor, inherit);

	display: block;
	text-decoration: none;
	color: var(--unith-galleryChild-color, inherit);
	font-size: var(--unith-galleryChild-size, inherit);
	font-family: var(--unith-galleryChild-font, inherit);
}


.galleryChild__image {
	display: block;
	border-radius: 0.5rem;
	max-width: 100%;
	height: auto;
}


.galleryChild__preview {
	aspect-ratio: 200 / 150;
	border-radius: 0.5rem;
	width: 100%;
	max-width: 12.5rem;
	margin-bottom: 0.5rem;
}


.galleryChild__preview--empty {
	background: silver linear-gradient(190deg, #ccc, #333);
}


.galleryChild__name {
	text-align: left;
}


.galleryChild:hover .galleryChild__name,
.galleryChild:focus .galleryChild__name,
.galleryChild:active .galleryChild__name {
	text-decoration: underline;
}


@media only screen and (min-width: 20em) {
	.galleryChildren {
		grid-template-columns: repeat(auto-fill, minmax(9.375rem, 1fr));
	}
}


@media only screen and (min-width: 60em) {
	.galleryChildren {
		grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
	}
}


/*** GALLERY PHOTOS ***/
.galleryPhotos {
	display: grid;
	gap: 1rem;
}


.galleryPhoto {
	display: block;
}


.galleryPhoto__image {
	display: block;
	border-radius: 0.5rem;
	max-width: 100%;
	height: auto;
}


@media only screen and (min-width: 20em) {
	.galleryPhotos {
		grid-template-columns: repeat(auto-fit, minmax(9.375rem, 1fr));
	}
}


@media only screen and (min-width: 60em) {
	.galleryPhotos {
		grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
	}
}


/*** PAGINATOR ***/
.paginator {
	display: flex;
	align-content: flex-end;
	flex-wrap: wrap;
	gap: 0.25rem;
}


.paginator__button,
.paginator__button:any-link {
	display: inline-block;
	padding: 0.25em 1em;
	box-sizing: border-box;
	margin-bottom: 1px;
	font: inherit;
	font-weight: normal;
	border-radius: 0.1875em;
	border: none;
	border-style: solid;
	border-width: 0;
	cursor: pointer;
	text-decoration: none;
	color: var(--unith-paginator-buttonColor, inherit);
	background-color: var(--unith-paginator-buttonBackgroundColor, transparent);
	font-size: var(--unith-paginator-buttonSize, inherit);
	font-family: var(--unith-paginator-buttonFont, inherit);
}


.paginator__button--active {
	font-weight: bold;
}


.paginator__button:hover,
.paginator__button:focus,
.paginator__button:active,
.paginator__button--active {
	color: var(--unith-paginator-buttonActiveColor, var(--unith-paginator-buttonColor, inherit));
	background-color: var(--unith-paginator-buttonActiveBackgroundColor, var(--unith-paginator-buttonBackgroundColor, transparent));
}


/*** MOBILE MENU SWITCH ***/
.mobileMenuButton {
	display: inline-block;
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	box-sizing: border-box;
	font: inherit;
	font-weight: normal;
	font-size: 1rem;
	border-radius: 0.25rem;
	border: none;
	cursor: pointer;
	text-decoration: none;
	gap: 0.25rem;

	background-color: var(--unith-mobileMenuButton-backgroundColor, transparent);
	color: var(--unith-mobileMenuButton-textColor);
	font-family: var(--unith-mobileMenuButton-textFont);
}


.mobileMenuButton:hover .mobileMenuButton__label,
.mobileMenuButton:focus .mobileMenuButton__label,
.mobileMenuButton:active .mobileMenuButton__label {
	text-decoration: underline;
}


.mobileMenuButton__icon,
.mobileMenuButton__closeIcon,
.mobileMenuButton__label {
	display: block;
}


.mobileMenuButton__label {
	font-size: var(--unith-mobileMenuButton-textSize);
}


.mobileMenuButton__closeIcon {
	display: none;
}


.page--mobileMenu-active .mobileMenuButton__closeIcon {
	display: block;
}


.page--mobileMenu-active .mobileMenuButton__icon {
	display: none;
}
/*** HEADER ***/
.header {
	display: block;
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-top: var(--unith-header-paddingVertical, 1rem);
	padding-bottom: var(--unith-header-paddingVertical, 1rem);
	background-color: var(--unith-header-backgroundColor, transparent);
	color: var(--unith-header-textColor, inherit);
}


.header__block {
	display: block;
	margin: 0 auto;
	padding: 0 var(--unith-page-margin);
	max-width: var(--unith-page-width, none);

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}


.header__block--centered {
	display: flex;
	justify-content: center;
	align-items: center;
}


.header__logo {
	display: block;
}


.header__navigation {
/*	flex: 1;*/
}


.header__block--centered .logo {
	text-align: center;
}


.header--mobile .header__block {
	row-gap: 0;
	flex-wrap: wrap;
}


.header--mobile .header__logo {
	order: 0;
	flex: 1;
}


.header--mobile .header__mobileMenu {
	order: 1;
}


.header--mobile .header__navigation {
	order: 2;
	overflow: hidden;
	padding: 0;
	margin: 0;
	border: none;
	height: 0;
	flex-basis: 100%;
}


.page--mobileMenu-active .header--mobile {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	overflow-y: auto;
	background-color: var(--unith-header-backgroundColor, var(--unith-page-backgroundColor, #fff));
}


.page--mobileMenu-active .header--mobile .header__block {
	gap: 2rem;
}


.page--mobileMenu-active .header--mobile .header__navigation {
	overflow: visible;
	height: auto;
}


@media only screen and (min-width: 60rem) {
	.header__block {
		flex-wrap: wrap;
	}


	.header__mobileMenu {
		display: none;
	}


	.header--mobile .header__block {
		gap: 2rem;
		flex-wrap: no-wrap;
	}


	.header--mobile .header__navigation {
		overflow: visible;
		height: auto;
	}


	.header--mobile .header__logo {
		order: 0;
		flex: auto;
	}


	.header--mobile .header__mobileMenu {
		order: 0;
	}


	.header--mobile .header__navigation {
		order: 0;
		flex-basis: auto;
	}


	.page--mobileMenu-active .header--mobile {
		position: static;
		background-color: var(--unith-header-backgroundColor, transparent);
	}
}


/*** BODY ***/
.body {
	display: block;
	padding-top: 2rem;
	margin-bottom: 6rem;
}


.body__block {
	display: block;
	margin: 0 auto;
	padding: 0 var(--unith-page-margin);
	max-width: var(--unith-page-width, none);
}


/*** FOOTER ***/
.footer {
	--typographyGap: var(--unith-footer-textSize, 1rem);
	--typographyExtraGap: calc(2 * var(--typographyGap));
	--typographyHeadingStartGap: calc(3 * var(--typographyGap));
	--typographyHeadingEndGap: var(--typographyGap);

	display: block;
	background-color: var(--unith-footer-backgroundColor, transparent);
	color: var(--unith-footer-textColor, inherit);
	font-size: var(--unith-footer-textSize, inherit);
	padding-top: 1rem;
	padding-bottom: 1rem;
}


.footer__block {
	display: block;
	margin: 0 auto;
	padding: 1rem var(--unith-page-margin);
	max-width: var(--unith-page-width, none);
}


/*** WEBAUTHOR ***/
.webauthor {
	display: block;
	background-color: var(--unith-footer-backgroundColor, transparent);
	color: var(--unith-footer-textColor, inherit);
}

.webauthor a {
	--link-color: var(--unith-footer-textColor, inherit);
	--link-hoverColor: var(--unith-footer-textColor, inherit);
	--link-visitedColor: var(--unith-footer-textColor, inherit);
	text-decoration: none;
	font-weight: bold;
}

.webauthor a:hover {
	text-decoration: underline;
}


.webauthor__block {
	display: block;
	margin: 0 auto;
	padding: 1rem var(--unith-page-margin);
	max-width: var(--unith-page-width, none);
	text-align: right;
	font-size: 0.875rem;
}
.u-text-left {
	text-align: left;
}


.u-text-center {
	text-align: center;
}


.u-text-right {
	text-align: right;
}


.u-text-justify {
	text-align: justify;
}
.u-text-muted {
	color: gray;
}


.u-text-size--2 {
	font-size: var(--unith-text-size-0);
}


.u-text-size--1 {
	font-size: var(--unith-text-size-1);
}


.u-text-size-0 {
	font-size: var(--unith-text-size-2);
}


.u-text-size-1 {
	font-size: var(--unith-text-size-3);
}


.u-text-size-2 {
	font-size: var(--unith-text-size-4);
}


.u-text-size-3 {
	font-size: var(--unith-text-size-5);
}


.u-text-size-4 {
	font-size: var(--unith-text-size-6);
}


.u-text-size-5 {
	font-size: var(--unith-text-size-7);
}


.u-text-size-6 {
	font-size: var(--unith-text-size-8);
}


.u-text-size-7 {
	font-size: var(--unith-text-size-9);
}


.u-space-text {
	margin-bottom: var(--typographyGap);
}


.u-wide {
	max-width: none;
	clear: both;
}
