/***
    Template-CSS for "fhs-whitespace"
    version 1.0 - 2021/5
    © 2021 fhs - www.fhseidel.de
***/

/***
    THE TEMPLATE-COLORS ***
    The color specifications determine the appearance of the entire website.
    The specifications must be given as RGB values
    separated by commas with a semicolon at the end.
    So for example for black: "0,0,0;" or for white: "255,255,255;".
***/

:root {
/*  The main color of the template.
    This is used to color most of the graphic elements. */
	--mainColor: 25,8,0;

/*  Deviating from the main color of the template,
    a color for the normal text can be specified here. */
	--textColor: 25,8,0;

/*  The color for highlighted elements (e.g. active page in the menu) is set here. */
	--accentColor: 221,34,0;
 
/*  The default background color (usually white: 255, 255, 255) is determined here. */
	--mainBackgroundColor: 255,255,255;
}

/* system-font.css v2.0.2 | CC0-1.0 License | github.com/jonathantneal/system-font-css */
@font-face{font-family:system-ui;font-style:normal;font-weight:300;src:local(".SFNSText-Light"),local(".HelveticaNeueDeskInterface-Light"),local(".LucidaGrandeUI"),local("Segoe UI Light"),local("Ubuntu Light"),local("Roboto-Light"),local("DroidSans"),local("Tahoma")}@font-face{font-family:system-ui;font-style:italic;font-weight:300;src:local(".SFNSText-LightItalic"),local(".HelveticaNeueDeskInterface-Italic"),local(".LucidaGrandeUI"),local("Segoe UI Light Italic"),local("Ubuntu Light Italic"),local("Roboto-LightItalic"),local("DroidSans"),local("Tahoma")}@font-face{font-family:system-ui;font-style:normal;font-weight:400;src:local(".SFNSText-Regular"),local(".HelveticaNeueDeskInterface-Regular"),local(".LucidaGrandeUI"),local("Segoe UI"),local("Ubuntu"),local("Roboto-Regular"),local("DroidSans"),local("Tahoma")}@font-face{font-family:system-ui;font-style:italic;font-weight:400;src:local(".SFNSText-Italic"),local(".HelveticaNeueDeskInterface-Italic"),local(".LucidaGrandeUI"),local("Segoe UI Italic"),local("Ubuntu Italic"),local("Roboto-Italic"),local("DroidSans"),local("Tahoma")}@font-face{font-family:system-ui;font-style:normal;font-weight:500;src:local(".SFNSText-Medium"),local(".HelveticaNeueDeskInterface-MediumP4"),local(".LucidaGrandeUI"),local("Segoe UI Semibold"),local("Ubuntu Medium"),local("Roboto-Medium"),local("DroidSans-Bold"),local("Tahoma Bold")}@font-face{font-family:system-ui;font-style:italic;font-weight:500;src:local(".SFNSText-MediumItalic"),local(".HelveticaNeueDeskInterface-MediumItalicP4"),local(".LucidaGrandeUI"),local("Segoe UI Semibold Italic"),local("Ubuntu Medium Italic"),local("Roboto-MediumItalic"),local("DroidSans-Bold"),local("Tahoma Bold")}@font-face{font-family:system-ui;font-style:normal;font-weight:700;src:local(".SFNSText-Bold"),local(".HelveticaNeueDeskInterface-Bold"),local(".LucidaGrandeUI"),local("Segoe UI Bold"),local("Ubuntu Bold"),local("Roboto-Bold"),local("DroidSans-Bold"),local("Tahoma Bold")}@font-face{font-family:system-ui;font-style:italic;font-weight:700;src:local(".SFNSText-BoldItalic"),local(".HelveticaNeueDeskInterface-BoldItalic"),local(".LucidaGrandeUI"),local("Segoe UI Bold Italic"),local("Ubuntu Bold Italic"),local("Roboto-BoldItalic"),local("DroidSans-Bold"),local("Tahoma Bold")}

:root {
	scroll-behavior: smooth;
}
* {
	margin:0;
	padding:0;
	box-sizing: border-box;
}
strong,
b {
	color: rgba(var(--textColor), .75);
}
span.highlightedText,
p.highlightedText,
div.highlightedText {
	color: rgba(var(--accentColor), .9);
	font-weight: 500;
}
span.sticker {
	font-size: .8em;
	background: rgba(var(--accentColor), 1);
	padding: .1em .5em;
	color: rgba(var(--mainBackgroundColor), 1);
	border-radius: 3px;
}
body {
	background: rgba(var(--mainBackgroundColor), 1);
	color: rgba(var(--textColor), 1);
	-webkit-hyphens:auto;
	hyphens:auto;
	-webkit-font-smoothing: antialiased;
	font: 400 18px/1.5em system-ui, sans-serif;
	overflow-Y: scroll;
}
#header {
	background: rgba(var(--mainBackgroundColor), 1);
	position: fixed;
	height: 100px;
	z-index: 1;
	top: 0;
	border-bottom: 1px solid rgba(var(--textColor), .1);
	box-shadow: 0 0 30px 30px rgba(var(--mainBackgroundColor), 1);
	left: 0;
	right: 0;
}
#header .headerInner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 0 1em;
}
#header a {
	text-decoration: none;
	margin: 0 15px 0 0;
	border: 0;
}
#header h1 {
	display: inline-block;
	margin: 0;
	font-family: system-ui, sans-serif;
	font-size: 2em;
	color: rgba(var(--textColor), .75);
	padding: 0;
	border: 0;
	text-align: left;
}
#header img {
	width: auto;
	height: 70px;
	max-height: 70px;
}
#header .slogan {
	margin: 0;
	font-family: system-ui, sans-serif;
	font-weight: 400;
}
.langMenu {
	text-align: right;
	margin: .5em 0;
}
.langMenu img {
	padding: 0;
}
.langMenu a {
	display: inline-block;
	padding: 0 0 .1em .1em;
	border: 0;
}
.wrapper {
}
.maincont {
	margin: 160px auto 3em auto;
	width: 900px;
	max-width: calc(100vw - 100px);
	min-height: 100vh;
}
.maincont article {
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	overflow: auto;
	margin: 0 0 2em 0;
}
.maincontInner {
	background-color: rgba(var(--mainBackgroundColor), .95);
	margin: 60px;
}
p {
	margin: 0 0 1.5em auto !important;
	text-align: justify;
	width: 75%;
}
a,
ul a,
#tinymce a,
#newsboxes a,
div.xh_login a,
#footer a {
	text-decoration: none;
	color: rgba(var(--textColor), .75);
	border-bottom: 1px dotted rgba(var(--mainColor), .5);
}
a:hover,
ul a:hover,
#tinymce a:hover,
#newsboxes a:hover,
#footer a:hover {
	border-color: rgba(var(--accentColor), 1);
	color: rgba(var(--accentColor), 1);
}
a[target="_blank"]::after {
	content: "↑";
	padding: 0 0 0 .25em;
	transform: rotate(45deg);
	display: inline-block;
	font-size: .75em;
	font-weight: bold;
	vertical-align: text-bottom;
}
#topLinkDiv {
	display: flex;
	justify-content: flex-end;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	z-index: 100;
	border-radius: 5px;
}
a#topLink {
	background: rgba(var(--mainBackgroundColor), .5);
	transition: all .5s ease;
	display: inline-block;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	border: 0;
}
#topLink .line {
	position: absolute;
	left: 10px;
	height: 4px;
	width: 20px;
	border-radius: 2px;
	display: block;
	transition: 0.5s;
	transform-origin: center;
	background: rgba(var(--mainColor), .75);
}
#topLink .line:nth-child(1) {
	transform: translateY(8px) rotate(-45deg);
}
#topLink .line:nth-child(2) {
	transform: translateY(0px) translateX(12px) rotate(45deg);
}
p.clear,
div.clear {
	clear: both;
}
hr {
	border: 0;
	border-bottom: 1px solid rgba(var(--accentColor), 1);
	height: 0;
	clear: both;
	margin: 2em 0;
}
hr.hrdot {
	border: 0;
	border-bottom: 1px dotted rgba(var(--accentColor), 1);
	height: 0px;
	clear: both;
	margin: 1em 0;
}
img {
	border: 0 none;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}
p.imgNormal {
	width: 100% !important;
	margin: 2em 0 !important;
}
p.imgCaption {
	color: rgba(var(--textColor), .75);
	margin: 0 0 2em 0;
	font-style: italic;
	font-size: .9em;
	width: 100% !important;
}
p.imgNormal + p.imgCaption {
	margin: -2em 0 2em 0 !important;
}
p.imgLeft {
	width: calc(25% - 2em);
	margin: .25em 1em 0 0 !important;
	float: left;
}
p.noBr,
span.noBr,
td.noBr {
	white-space: nowrap;
}
p.subHeading {
	font-size: 1.25em;
	margin: .5em 0 .25em 0;
}
.mainMenu {
	position: fixed;
	top: 100px;
	bottom: 0px;
	right: -300px;
	width: 300px;
	max-width: 100vw;
	overflow-y: scroll;
	overflow-x: hidden;
	padding: 0 1em;
    --scrollbarBG: rgba(var(--mainBackgroundColor), .5);
    --thumbBG: rgba(var(--mainColor), .5);
	scrollbar-width: thin;
	/*scrollbar-color: var(--scrollbarBG) var(--thumbBG);*/
	transition: all .5s ease;
	background: rgba(var(--mainBackgroundColor), .9);
	z-index: 101;
}
.mainMenu::-webkit-scrollbar {
 width: 10px;
}
.mainMenu::-webkit-scrollbar-track {
 background: var(--scrollbarBG);
}
.mainMenu::-webkit-scrollbar-thumb {
 background-color: var(--thumbBG);
 border-radius: 5px;
 border: 1px solid var(--scrollbarBG);
}
#menuButton {
	display: none;
}
label.menuButton {
	background-color: rgba(var(--mainBackgroundColor), .9);
	background-size: cover;
	position: fixed;
	right: 25px;
	top: 25px;
	cursor: pointer;
	width: 50px;
	height: 50px;
	border-radius: 5px;
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	z-index: 1;
}
.line {
	position: absolute;
	left: 10px;
	height: 4px;
	width: 30px;
	background: rgba(var(--mainBackgroundColor), 1);
	border-radius: 2px;
	display: block;
	transition: 0.5s;
	transform-origin: center;
	background: rgba(var(--mainColor), .75);
}
.line:nth-child(1) {
	top: 17px;
}
.line:nth-child(2) {
	top: 25px;
}
.line:nth-child(3) {
	top: 33px;
}
#menuButton:checked + label .line:nth-child(1) {
	transform: translateY(8px) rotate(-45deg);
}
#menuButton:checked + label .line:nth-child(2) {
	opacity: 0;
}
#menuButton:checked + label .line:nth-child(3) {
	transform: translateY(-8px) rotate(45deg);
}
 #menuButton:checked ~ .mainMenu {
 right: 0px;
}
#menuButton:checked ~ .maincont {
/* margin-right: 300px;*/
}
#menuButton:checked ~ #topLink {
/* margin-right: 300px;*/
}
#mainNav {
	clear: both;
	font-family: system-ui, sans-serif;
	font-weight: 400;
}
#mainNav ul {
}
#mainNav ul li {
	font-size: 16px;
	line-height: 20px;
	list-style: none;
	position: relative;
	padding: 0;
	margin: 0 0 .5em 0;
	border: 1px solid rgba(var(--mainColor), .1);
	background: rgba(var(--mainBackgroundColor), .95);
	border-radius: 5px;
	box-shadow: 0 0 5px 1px rgba(0,0,0,.05);
}
#mainNav ul ul li {
	background: rgba(var(--mainBackgroundColor), 1);
	margin: 0;
	border: 0;
	border-top: 1px solid rgba(var(--mainColor), .1);
	border-radius: 0;
	box-shadow: none;
}
#mainNav ul ul li:last-child {
	border-radius: 0 0 5px 5px;
}
#mainNav ul span {
	padding: 10px;
	display: block;
	color: rgba(var(--accentColor), 1);
}
#mainNav ul li a {
	text-decoration: none;
	padding: 10px;
	display: block;
	color: rgba(var(--mainColor), 1);
	border: none;
}
#mainNav li a:hover {
	background: rgba(var(--mainColor), .05);
}
#mainNav ul span,
#mainNav ul li a {
	/* [disabled]text-transform: uppercase; */
}
#mainNav ul ul span,
#mainNav ul ul li a {
	/* [disabled]text-transform: none; */
}
#mainNav ul ul li a,
#mainNav ul ul li span {
	padding-left: 1em;
}
#mainNav ul ul ul li a,
#mainNav ul ul ul li span {
	padding-left: 1.5em
}
#mainNav ul ul ul ul li a,
#mainNav ul ul ul ul li span {
	padding-left: 2em
}
#mainNav ul ul ul ul ul li a,
#mainNav ul ul ul ul ul li span {
	padding-left: 2.5em
}
#mainNav ul ul ul ul ul ul li a,
#mainNav ul ul ul ul ul ul li span {
	padding-left: 3em
}
#mainNav ul ul ul ul ul ul ul li a,
#mainNav ul ul ul ul ul ul ul li span {
	padding-left: 3.5em
}
#mainNav ul ul ul ul ul ul ul ul li a,
#mainNav ul ul ul ul ul ul ul ul li span {
	padding-left: 4em
}
#mainNav ul ul ul ul ul ul ul ul ul li a,
#mainNav ul ul ul ul ul ul ul ul ul li span {
	padding-left: 4.5em
}
#searchForm {
	padding: 1em 0;
	overflow: auto;
}
#searchbox {
}
#searchbox input {
	color: rgba(var(--mainColor), 1);
	font: 400 15px system-ui, sans-serif;
	line-height: normal;
	padding: .25em .5em !important;
	margin: 0;
}
#searchbox input[name="search"] {
	float: left;
	color: rgba(var(--mainColor), 1);
	border: 1px solid rgba(var(--mainColor), .1);
	border-radius: 3px 0 0 3px;
	background: rgba(var(--mainColor), .05);
}
#searchbox input[name="search"]:focus {
	background: rgba(var(--mainBackgroundColor), 1);
	border: 1px solid rgba(var(--mainColor), .1);
	border-radius: 3px 0 0 3px;
}
#searchbox input[type="hidden"] {
	display: none;
}
#searchbox input[type="submit"] {
	background: rgba(var(--mainColor), .5);
	float: left;
	color: rgba(var(--mainBackgroundColor), 1);
	border: 1px solid rgba(var(--mainColor), .1);
	border-radius: 0 3px 3px 0;
}
#searchbox input[type="submit"]:hover,
#searchbox input[type="submit"]:focus {
	background: rgba(var(--mainColor), .1);
	color: rgba(var(--mainColor), 1);
	text-shadow: none;
	cursor: pointer;
}
ul.sitemaplevel1 {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.sitemaplevel1 li {
	list-style: none;
}
ul.sitemaplevel1 li a {
	text-transform: uppercase;
	color: rgba(var(--mainColor), 1);
	display: block;
	padding: .25em;
	font-weight: 400;
}
ul.sitemaplevel1 li a:hover {
	background: rgba(var(--mainColor), .05);
	border-color: transparent;
}
ul.sitemaplevel2 li a {
	font-weight: 400;
	text-transform: none;
	padding-left: 1.75em;
	color: rgba(var(--mainColor), 1);
}
ul.sitemaplevel3 li a {
	padding-left: 3.25em;
}
ul.sitemaplevel4 li a {
	padding-left: 4.5em;
}
ul.sitemaplevel5 li a {
	padding-left: 5.75em;
}
ul.sitemaplevel6 li a {
	padding-left: 7em;
}
ul.sitemaplevel7 li a {
	padding-left: 8.25em;
}
ul.sitemaplevel8 li a {
	padding-left: 9.75em;
}
ul.sitemaplevel9 li a {
	padding-left: 11em;
}
code,
span.code {
	background-color: rgba(var(--mainColor), .05);
	padding: .1em .25em;
	border-radius: 3px;
	font: 500 .9em/1.25 monospace;
	color: rgba(var(--textColor), .8);
}
p.code,
div.code {
	background-color: rgba(var(--mainColor), .05);
	border: 1px solid rgba(var(--mainColor), .1);
	border-radius: 5px;
	padding: 1em 2em;
	clear: both;
	word-wrap: break-word;
	margin: 1em 0 !important;
	display: inline-block;
	text-align: left;
	width: 100% !important;
	font: 500 .9em/1.25 monospace;
	color: rgba(var(--textColor), .8);
}
p.code + p.imgCaption,
div.code + p.imgCaption {
	margin-top: -.5em !important;
}
blockquote {
	margin: 2em 0;
	background: rgba(var(--mainColor), .05);
	border-left: 15px solid rgba(var(--accentColor), .5);
	border-right: 15px solid rgba(var(--accentColor), .5);
	border-radius: 5px;
	padding: 1em 2em 1em calc(25% - 1em);
	position: relative;
	-webkit-hyphens: none;
	hyphens: none;
}
blockquote p {
	width: 100%;
	margin: 0 !important;
}
p.source {
	color: rgba(var(--accentColor), .9);
	font-style: italic;
	margin-bottom: 0 !important;
	text-align: right;
}
p.source:before {
	content: "— ";
	vertical-align: -20%;
}
blockquote a:link,
blockquote a:visited {
}
.submenDiv {
	clear: both;
	font-size: .9em;
	color: rgba(var(--mainColor), .75);
	margin: 3em 0 0 0;
	padding: .5em 0;
	border-top: 1px dotted rgba(var(--mainColor), 5);
}
.submenDiv:empty {
	display: none !important;
}
.submenDiv span {
	float: left;
	font-weight: 700;
}
.submenDiv ul {
	list-style: none;
	margin: 0;
	padding: 0;
	float: left;
}
.submenDiv ul li {
	margin-left: 1em;
	padding: 0 0 .25em 0;
}
.submenDiv ul li a {
	border: 0;
}
.prevNextP {
	clear: both;
	overflow: auto;
	margin: .5em 0;
}
.prevP {
	float: left;
	border-radius: 5px;
}
.nextP {
	float: right;
	border-radius: 5px;
}
.prevP a,
.nextP a {
	border: 0 !important;
	font-size: .75em;
	text-decoration: none;
	padding: .5em;
	color: rgba(var(--mainColor), 1);
	display: inline-block;
	line-height: 1;
}
.prevNextP a:hover,
.prevNextP a:focus {
	color: rgba(var(--accentColor), 1);
}
#newsboxes2 {
	clear: both;
	display: flex;
	justify-content: space-between;
}
.news {
	margin: 1em 0;
	background: rgba(var(--mainBackgroundColor), .95);
	overflow: hidden;
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	border-radius: 5px;
}
.news p {
	margin: 1em 0 0 0 !important;
    width: 100% !important;
    text-align: left;
}
.news p:first-of-type {
	margin: 1em 0 0 0;
}
#newsboxes2 .news {
	width: 48%;
	font-size: 0.9em;
	padding: 1em 2em;
	line-height: 1.5;
}
.newsin {
	background: rgba(var(--mainBackgroundColor), .95);
	border: 1px solid rgba(var(--mainColor), .1);
	border-radius: 5px;
	font-size: 0.9em;
	margin: 1em 0;
	padding: 1em;
}
.newsin:empty {
	display: none !important;
}
.news h1,
.news h2,
.news h3,
.news h4,
.news h5,
.news h6 {
	margin: .5em 0 0 0;
	font-weight: 500;
}
.news > h2:first-of-type {
	font-size: 1.25em;
	font-weight: 400;
	color: rgba(var(--mainBackgroundColor), 1);
	background: rgba(var(--mainColor), .75);
	margin: -1em -2em 5px -2em;
	padding: 1em 2em;
	text-shadow: 1px 1px 1px rgba(var(--mainColor), 1);
	border-radius: 5px 5px 0 0;
	line-height: 1;
}
.news h2 {
	font-size: 1.4em;
	color: rgba(var(--mainColor), 1);
}
.news h3 {
	font-size: 1.3em;
}
.news h4 {
	font-size: 1.2em;
}
.news h5 {
	font-size: 1.1em;
}
.news h6 {
	font-size: 1.0em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: system-ui, sans-serif;
	color: rgba(var(--textColor), .75);
	font-weight: 500;
	line-height: 1.25em;
	margin: 2em 0 .25em 0;
	text-align: left;
}
 h1 {
	color: rgba(var(--accentColor), 1);
	font-size: 2.5em;
	line-height: normal;
	margin: 0 0 1em 0;
}
h2 {
	font-size: 1.4em;
}
h3 {
	font-size: 1.3em
}
h4 {
	font-size: 1.2em;
}
h5 {
	font-size: 1.1em;
}
h6 {
	font-size: 1.0em;
}
ol {
	text-align: left;
	padding: 0 0 0 2em;
	list-style: decimal;
	margin-bottom: 1em;
	orphans: 2;
	widows: 2;
}
ol ol {
	margin: 0;
	padding: 0 0 0 1em;
	list-style: upper-alpha;
}
ol ol ol {
	margin: 0;
	padding: 0 0 0 1em;
	list-style: lower-alpha;
}
ol li {
	margin: 0;
	padding: 0;
	orphans: 2;
	widows: 2;
}
ul.listUnordered,
ul.xh_search_results {
	text-align: left;
	list-style: none;
	margin: 1em 0;
}
ul.listUnordered ul,
ul.xh_search_results ul {
	margin: 0;
	list-style: none;
	orphans: 2;
	widows: 2;
}
ul.listUnordered li,
ul.xh_search_results li {
	margin-left: 1em;
	orphans: 2;
	widows: 2;
}
ul.listUnordered li::before,
ul.xh_search_results li::before {
	content: '»';
	margin-left: -1em;
	width: 1em;
	display: inline-block;
}
ul.listUnordered ul li:before {
	content: '›';
	margin-left: -1em;
	width: 1em;
	display: inline-block;
}
ul.listUnordered ul ul li:before {
	content: '·';
	margin-left: -1em;
	width: 1em;
	display: inline-block;
}
#footer {
	background: rgba(var(--mainBackgroundColor), .9);
	padding: 1em;
	color: rgba(var(--textColor), 1);
	text-align: center;
	border-top: 1px solid rgba(var(--mainColor), .1);
	hyphens: none;
}
#footer p {
	margin: 0 auto !important;
	width: 100% !important;
	text-align: center;
}
#footer .moreLinks {
	text-transform: uppercase;
	font-size: 0.9em;
}
#footer .copyright {
	font-size: 0.8em;
}
#footer a {
	border: 0;
}
#footer a:hover,
#footer a:focus {
	background: rgba(var(--textColor), .05);
}
table.respTable {
	font-family: inherit !important;
	line-height: 1em;
	display: inline-block;
	vertical-align: top;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	white-space: nowrap;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 1em 0;
	-webkit-overflow-scrolling: touch;
	padding: 0 0 .5em 0;
	line-height: 1.25;
}
table.respTable caption {
	text-align: left;
	padding: 0 0 1em 0;
	font-family: system-ui, sans-serif;
	font-size: .9em;
	font-weight: 500;
}
.respTable thead th {
	font-family: system-ui, sans-serif;
	font-weight: 500;
	font-size: .9em;
	padding: .5em;
	text-align: left;
	background: rgba(var(--mainColor), .75);
	color: rgba(var(--mainBackgroundColor), 1);
	vertical-align: bottom;
	border: 1px solid rgba(var(--mainBackgroundColor), .75);
	border-top: 0;
	border-bottom: 0;
}
.respTable tbody th {
	padding: .5em;
	text-align: left;
	background: rgba(var(--mainColor), .5);
	color: rgba(var(--mainBackgroundColor), 1);
	font-weight: 500;
	font-size: 1em;
	vertical-align: bottom;
	border: 1px solid rgba(var(--mainBackgroundColor), .75);
	border-top: 0;
	border-bottom: 0;
}
.respTable td {
	padding: .5em;
	border: 1px solid rgba(var(--mainColor), .1);
	vertical-align: top;
}
.respTable td p {
	margin: 0;
}
.respTable tr:nth-child(even) {
	background: rgba(var(--mainColor), .1);
}
.respTable td:last-child {
	text-align: center;
}
@media only screen and (max-width: 980px) {
body {
	font-size: 17px;
}
.news.marqueeDiv {
	max-width: 100%;
	margin: 1em auto;
}
.maincont {
	max-width: calc(100vw - 50px);
}
.maincontInner {
	margin: 30px;
}
}
@media only screen and (max-width : 640px) {
body {
	font-size: 16px;
}
.maincont {
	max-width: calc(100vw - 25px);
}
.maincontInner {
	margin: 15px;
}
.slogan {
	display: none !important;
}
#newsboxes2 {
	display: block;
}
#newsboxes2 .news {
	width: 100%;
	margin: 1em 0 0;
}
p {
	width: 100%;
}
}
@media only screen and (max-width : 480px) {
body {
	font-size: 15px;
}
p {
	text-align: left;
}
.headerTxt {
	display: none;
}
p.imgLeft img {
	margin: 0 1em 1em 0;
	max-width: calc(25% - 1em);
}
blockquote {
	padding: 1em;
}
}
#tinymce {
	background-color: rgba(var(--mainBackgroundColor), 1);
	background-image: none;
	padding: .5em;
	-webkit-hyphens:auto;
	hyphens:auto;
	-webkit-font-smoothing: antialiased;
}
#xh_mailform div {
	width: 100%;
	margin: 0 0 .75em 0;
}
form.xh_mailform {
	padding: 1em 2em;
	background: rgba(var(--mainColor), .05);
	border-radius: 5px;
	border: 1px solid rgba(var(--mainColor), .1);
}
form.xh_mailform input,
form.xh_mailform textarea {
	font: 1em/1em system-ui, sans-serif;
	padding: .25em .5em;
	border: 1px solid rgba(var(--mainColor), .1);
	border-radius: 5px;
}
form.xh_mailform input:focus,
form.xh_mailform textarea:focus {
	box-shadow: 0 0 0 2px rgba(var(--accentColor), 1);
	outline: none;
}
form.xh_mailform .xh_captcha_input {
	border: 1px solid rgba(var(--mainColor), .1);
	border-radius: 0 5px 5px 0;
	padding: .25em .5em !important;
	line-height: normal !important;
	text-align: center;
	width: 5em;
	margin: 1em 0 0 0;
}
form.xh_mailform .xh_captcha_code {
	background-color: rgba(var(--mainColor), .5);
	border: 1px solid rgba(var(--mainColor), .1);
	border-right: 0;
	border-radius: 5px 0 0 5px;
	color: rgba(var(--mainBackgroundColor), 1);
	float: left;
	padding: .25em .5em;
	line-height: normal !important;
	width: 5em;
	text-align: center;
	margin: 1em 0 0 0;
}
form.xh_mailform p {
	margin: 0 1em 0 0 !important;
	padding: 1em 0 0 0;
}
form.xh_mailform input[type="submit"] {
	font-family: system-ui, sans-serif;
	background-color: rgba(var(--mainColor), .75);
	padding: .25em .5em;
	border: 1px solid rgba(var(--mainColor), .25);
	margin: 1em 0 0 0;
	color: rgba(var(--mainBackgroundColor), 1);
	cursor: pointer;
	font-size: 1.1em;
	line-height: 1;
}
form.xh_mailform input[type=submit]:hover,
form.xh_mailform input[type=submit]:focus {
	background-color: rgba(var(--accentColor), 1);
	border: 1px solid rgba(var(--mainColor), .25);
}
body.xh_login {
	background: rgba(var(--mainColor), .1) url(images/XH-Logo_bg.png) no-repeat fixed center center;
	background-size: contain;
	margin: 0 !important;
	padding: 0 !important;
}
body.xh_login div.xh_login {
	border: 1px solid rgba(var(--mainColor), .1);
	box-shadow: inset 2px 2px 1px rgba(var(--mainBackgroundColor), .75), inset -2px -2px 1px rgba(var(--mainColor), .1);
	background: rgba(var(--mainBackgroundColor), .25);
	border-radius: 0;
	margin: 0;
	padding: 1em;
	position: absolute;
	left: 50%;
	top: 50%;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: auto;
}
body.xh_login h1 {
	margin: 0 0 .25em 0 !important;
	text-align: center !important;
	text-transform: none;
	color: rgba(var(--mainColor), 1);
	font-size: 2em;
	font-style: normal;
	line-height: 1.25;
	font-weight: normal;
	font-variant: normal;
}
div.xh_login p {
	text-align: center !important;
	margin: 1em 0 !important;
	color: rgba(var(--textColor), 1);
}
