/***
    Template-CSS for "fhs-sections"
    version 1.0 - 2021/6
    © 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;

/*  A second alternative background color. */
	--secondBackgroundColor: 228,210,192;
}

/* 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);
	font-weight: 600;
}
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;
}
a.linkButton {
	font-size: 1.1em;
	border: 0;
	padding: .25em 1.5em;
	background: rgba(var(--secondBackgroundColor), 1);
	margin: 1em 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 3px;
}
a.linkButton:hover,
a.linkButton:focus {
	color: rgba(var(--textColor), 1);
	background: rgba(var(--mainColor), .1);
	box-shadow: none;
	border: 0 !important;
}
p.subheading {
	font-size: 1.25em;
	margin: 0;
	font-weight: 500;
}
body {
	width:100%;          
	min-height: 100vh;
	background-image: url(https://boule-alpirsbach.de/userfiles/images/nurKugeln_1.webp), linear-gradient(110deg, transparent, white 35%), url(https://boule-alpirsbach.de/userfiles/images/nurSchotter_1.webp);
        background-position-x: 0px, 0px, 0px;
        background-position-y: 100px, 0px, 100px;
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-size: 10%, auto, 100%;
	background-color: white;
	-webkit-hyphens: auto;
	hyphens: auto;
	-webkit-font-smoothing: antialiased;
	font: 400 18px/1.5em system-ui, sans-serif;
	overflow-Y: scroll;
	max-width: 2340px;
	margin: 0 auto;
}
#header {
	background: rgba(var(--mainBackgroundColor), 1);
	position: fixed;
	height: 100px;
	z-index: 1;
	top: 0;
	border-bottom: 1px solid rgba(var(--textColor), .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-size: 2em;
	font-weight: 500;
	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 {
}
.mainContent {
	margin: 100px 0 0 0;
}
.mainContent article {
	overflow: visible;
	min-height: 100vh;
}
section.normalSection, div.submenDiv {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2em 0;
}
section {
	padding: 5em;
}
section:after {
	clear: both;
}
section p:last-child {
	margin-bottom: 0;
}

section.normalSection div.boxDiv {
	align-self: auto;	
	display: inline-flex;
	flex-direction: row;
	padding: .25em;

}
section.normalSection div.content {
	display: flex;
	flex-flow: row;
	align-items: center;

}
section div.snippetContent {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
}
p.imgNormal {
	width: 100% !important;
	margin: 2em 0 !important;
}
p.imgNormal + p.imgCaption {
	margin: -2em 0 2em 0 !important;
}
p.imgCaption {
	color: rgba(var(--textColor), .75);
	font-size: .75em;
	line-height: 1.25;
	margin: .5em auto !important;
	padding: .25em;
	text-align: center;
}
p.imgCaption a {
	color: rgba(var(--textColor), .75);
}
p.imgCaption a:hover,
p.imgCaption a:focus {
	color: rgba(var(--textColor), 1) !important;
}
p.footNote {
	color: rgba(var(--textColor), .75);
	font-size: .75em;
	display: inline-block;
	border-top: 1px dotted rgba(var(--textColor), .5);
	line-height: 1.25;
	padding-top: .25em;
}
/* ************************* Head-Navigation ************************* */
.nb_headnav {
	background: rgba(var(--secondBackgroundColor), .5);
	font-size: 1rem;
	color: black;
	text-align: center;
        text-shadow: 0.1em 0.2em  0.5em lightgrey;
	width: 100%;
}
.nb_headnav ul {
	list-style: none inside none;
	margin: 0;
	padding: 0.3em;
}
.nb_headnav li {
	display: inline-block;
	height: 2em;
	line-height: 2em;
	margin-left: 0 !important;
	padding-right: 1em !important;
	vertical-align: middle;
}
.nb_headnav li:last-child {
	padding-right: 0 !important;
}
.nb_headnav li:before,
.nb_headnav a:after {
	content: none !important;
}
.nb_headnav a {
	color: black;
}

/*** SNIPPETS ***/
/*01*/
section.snippet01 {
	background: transparent;
	/*background: #e4d2c0;
	background: linear-gradient(90deg, rgba(var(--secondBackgroundColor), 1) 33%, rgba(var(--mainBackgroundColor), 1) 33%);
        */
}
section.snippet01 .snippetImgLeft {
	width: 38.2%;
}
section.snippet01 .snippetImg img {
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	width: 100%;
	border-radius: 3px;
}
section.snippet01 .snippetText {
	width: 61.8%;
	padding: 0 0 0 2em;
	display: flex;
	flex-flow: column;
	justify-content: center;
}
/*02*/
section.snippet02 {
}
section.snippet02 .snippetTextLeft {
	width: 61.8%;
	padding: 0 5em 0 0;
}
section.snippet02 .snippetTextRight {
	width: 38.2%;
	padding: 2em;
	background: rgba(var(--secondBackgroundColor), .5);
	border-radius: 3px;
	display: flex;
	flex-flow: column;
	justify-content: center;
}
/*03*/
section.snippet03 {
	background: #e4d2c0;
	background: linear-gradient(-90deg, rgba(var(--secondBackgroundColor), 1) 33%, rgba(var(--mainBackgroundColor), 1) 33%);
}
section.snippet03 .snippetImg {
	width: 61.8%;
}
section.snippet03 .snippetImg img {
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	width: 100%;
	border-radius: 3px;
}
section.snippet03 .snippetText {
	width: 38.2%;
	padding: 0 2em 0 0;
	display: flex;
	flex-flow: column;
	justify-content: center;
	text-align: right;
}
/*04*/
section.snippet04 {
	background: rgba(var(--secondBackgroundColor), .25);
}
div.text3cols {
	clear: both;
	column-count: 3;
	column-width: 300px;
	column-gap: 2em;
	column-rule: 0;
	column-fill: balance;
	orphans: 2;
	widows: 2;
	margin: 0 0 1.5em 0;
}
section.snippet04 .snippetText {
	width: 100%;
}
p.leadText {
	font-weight: 500;
	color: rgba(var(--textColor), .75);
	max-width: calc(50% - 1em);
}
/*05*/
section.snippet05 {
	background: #e4d2c0;
	background: linear-gradient(90deg, rgba(var(--secondBackgroundColor), 1) 67%, rgba(var(--mainBackgroundColor), 1) 67%);
}
section.snippet05 div.snippetContent {</div>

	position: relative;
	flex-flow: column;
	justify-content: center;
}
section.snippet05 .snippetImg {
	width: 61.8%;
}
section.snippet05 .snippetImg img {
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	width: 100%;
	border-radius: 3px;
}
section.snippet05 .snippetText {
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	width: 50%;
	padding: 2em;
	background: rgba(var(--mainBackgroundColor), 1);
	margin: 0 0 0 -4em;
	border-radius: 3px;
	position: absolute;
	right: 0;
}
			/* section 2,3 5boxes */
			section.sectionBoxes {
			    	background: #ffff00;
			    	background: linear-gradient(to right, rgba(var(--secondbackgroundcolor), 1), rgba(var(--mainbackgroundcolor), 1));
				/* max-width: 1200px; */
				margin: 0 auto;
				padding: 5em 3em;
			}
			section.sectionBoxes div.boxDiv {
			}
			section.sectionBoxes div.boxDiv .box2cols {
				display: flex;
				flex-wrap: nowrap;
				justify-content: space-around;
				flex-direction: row;
				align-items: center;
				/*background: rgba(var(--secondbackgroundcolor), .25);*/
				border: 1px solid rgba(var(--secondbackgroundcolor), .5);
				border-radius: 7px;
				margin: 0 15px 15px 0;
				text-align: center;
			}
			section.sectionBoxes div.boxDiv .box2cols .boxContent {
				width: calc(50% - 15px);
				display: inline-flex;
				flex-direction: column;

			}
			section.sectionBoxes div.boxDiv .box3cols {
				width: calc(33.333% - 15px);
				padding: 30px;
				/*background: rgba(var(--secondbackgroundcolor), .25);*/
				border: 1px solid rgba(var(--secondbackgroundcolor), .5);
				border-radius: 7px;
				margin: 0 15px 15px 0;
				text-align: center;
			}
			section.sectionBoxes div.boxDiv .box5cols {
				width: calc(20% - 15px);
				padding: 30px;
				background: rgba(var(--secondbackgroundcolor), .25);
				border: 1px solid rgba(var(--secondbackgroundcolor), .5);
				border-radius: 7px;
				margin: 0 15px 15px 0;
				text-align: center;
			}
			section.sectionBoxes div.boxDiv .boxContent {
			display: inline-flex;
			flex-direction: column;

}
/**			div.boxDiv .box2cols p, div.boxDiv .box3cols p, div.boxDiv .box5cols p {
				margin: 0 0 .5em 0;
				text-align: center;
			}
			div.boxDiv .box2cols p:last-of-type {
				margin: 0;
			}
			div.boxDiv .box3cols p:last-of-type {
				margin: 0;
			}
			div.boxDiv .box5cols p:last-of-type {
				margin: 0;
			}
**/
/** selber gemacht**/
/*07*/
section.snippet07 {
	/**background: #e4d2c0;
	background: linear-gradient(90deg, rgba(var(--secondBackgroundColor), 1) 67%, rgba(var(--mainBackgroundColor), 1) 67%); **/
}
section.snippet07 div.snippetContent {
	position: relative;
	flex-flow: column;
	justify-content: center;
}
section.snippet07 .snippetImg {
	width: 61.8%;
}
section.snippet07 .snippetImg img {
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	width: 100%;
	border-radius: 3px;
}
section.snippet07 .snippetText {
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	width: 50%;
	padding: 2em;
	background: rgba(var(--mainBackgroundColor), 1);
	margin: 0 0 0 -4em;
	border-radius: 3px;
	position: absolute;
	right: 0;
}
section.snippet07 .spruch-box {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  list-style: none;
}

section.snippet07 .spruch-text {
  background: #c78532;
  padding: 5px;
  width: 200px;
  /* height: 150px; */
  margin-top: 10px;
  line-height: 1.3em;
  color: white;
  font-size: 1.1em;
  text-align: center;
  border: 1em solid #c78532;
  border-radius: 15px;
  padding: 5px;
  background-color: #c78532;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*08*/
section.snippet08 {
}

section.snippet08 div.snippetContent {
	display: flex;
	position: relative;
	flex-flow: row wrap;
	justify-content: space-evenly;
	align-items: stretch;;
}
section.snippet08 .snippetText {
	padding: 2em;
}
section.snippet08 div.snippetblock {
	align-self: flex-start;
	max-width: 50%;
	display: flex;
	flex-flow: column;
	/* justify-content: space-around; */
	justify-content: center;
	align-items: stretch;
	padding:1em;
	border:1px;
}

/** ========= **/
.imgRechts {
float: right;
margin-left: 10px;
}
.imgLinks {
float: left;
margin-right: 10px;
}

p {
	margin: 0 0 1.5em 0;
	text-align: justify;
}
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);
}
#footer span.loginlink a  {
	color: transparent;
}
#footer span.loginlink a:hover  {
	color: rgba(var(--accentColor), 1);
}
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: 3px;
}
a#topLink {
	background: rgba(var(--mainBackgroundColor), .5);
	transition: all .5s ease;
	display: inline-block;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	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);
}

/** eigene Zusatzzeilen **/
/* prev - top - next */
#prevtopnext {
	width: 100%;
	display:flex;
	flex-direction: row;
        justify-content: space-between;
	margin: 0 1em;
	background: lightgrey;
}
#prevtopnext div {
	flex: 1 1 30%;
	padding: 0 1em;
	text-align: right;
	/** background: #fdfcf3; **/
	}
#prevtopnext div:first-of-type {
	text-align: left;
}

#zitatAutor {
	font-size: .5em;
}

/** **/





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;
}
hr.hrBold {
	border: 0;
	border-bottom: 6px solid rgba(var(--accentColor), .5);
	height: 0;
	clear: both;
	margin: .5em 0;
	border-radius: 3px;
}
img {
	border: 0 none;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}
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: 3px;
	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;
}
#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: 3px;
	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: 3px;
	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: 3px;
	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: 3px;
}
.nextP {
	float: right;
	border-radius: 3px;
}
.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);
}
/* ************************* Newsboxes (Newsbox-Slider) ************************* */

/*
Source - https://stackoverflow.com/q/56480818
Posted by DrS, modified by community. See post 'Timeline' for change history
Retrieved 2026-08-11, License - CC BY-SA 4.0
*/

#Wrapper {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-rows: 2em calc(100% - 2em);
  height: 100%;
  width: 100%;
}

#Wrapper section,
input[name=buttons] {
  display: none
}

/*This doesn't work*/
#Wrapper section {
  grid-column-start: 1;
  grid-column-end: -1;
}

#Wrapper input[name=buttons]+label {
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  grid-row-start: 1;
  grid-row-end: 2;
}

#Wrapper>input[name=buttons]:checked+label {
  background-color: red;
}

#Wrapper>input[name=buttons]:checked+label+section {
  display: block;
  width: 100%;
}

/* ************************* Newsboxes (Newsbox-Slider) ************************* */
.lck_news {
	background-color: lightgrey;
	margin: 0;
	padding: 5% 1%;
}
.lck_news h3 {
	text-align:center;
}
.lck_news a {
	color: #FAFAFA;
	font-size: 0.8rem;
}
.lck_news input[type="radio"] {
	display: none;
}
.lck_news #button1:checked ~ .slides .slides-wrap {
	margin-left: 0;
}
.lck_news #button1:checked ~ .dots label:nth-child(1) {
	opacity: 0.5;
	border: 4px solid red;
}
.lck_news #button2:checked ~ .slides .slides-wrap {
	-webkit-transform: translateX(-33%);
	transform: translateX(-25%);
}
.lck_news #button2:checked ~ .dots label:nth-child(2) {
	opacity: 0.5;
	border: 4px solid red;
}
.lck_news #button3:checked ~ .slides .slides-wrap {
	-webkit-transform: translateX(-66%);
	transform: translateX(-50%);
}
.lck_news #button3:checked ~ .dots label:nth-child(3) {
	opacity: 0.5;
	border: 4px solid red;
}

.lck_news #button4:checked ~ .slides .slides-wrap {
	-webkit-transform: translateX(-99%);
	transform: translateX(-75%);
}
.lck_news #button4:checked ~ .dots label:nth-child(4) {
	opacity: 0.5;
	border: 4px solid red;
}
.lck_news .slides {
	background-color: lightgrey;
	color: #FAFAFA;
	font-size: .9em;
	margin: 0 auto;
	max-width: 600px;
	overflow: hidden;
	text-align: center;
}
.lck_news .slides .fa {
	font-size: 3rem;
}
.lck_news .slides-wrap {
	/* -webkit-animation: slideshow 25s infinite; */
	/* animation: slideshow 25s infinite; */ /* Optional - see hint @keyframes slideshow */
	list-style: none;
	margin: 0;
	overflow: hidden;
	padding: 0;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
	width: 300%;
}
.lck_news .slide {
	float: left;
	margin: 0;
	padding: 0;
	position: relative;
	width: calc(100% / 3);
}
.lck_news .slide img {
	vertical-align: bottom;
	width: 100%;
}
.lck_news h1, .lck_news h2, .lck_news, .lck_news h4, .lck_news h5, .lck_news h6 {
	color: #FAFAFA;
	margin: 0;
}
.lck_news .dots {
	margin: 0;
	padding: 0.8em 0 0;
	text-align: center;
}
.lck_news .dots label {
	background-color: #fafafa;
	border-radius: 10px;
	color: #757575;
	cursor: pointer;
	display: inline-block;
	font-weight: normal;
	height: 50px;
	line-height: 50px;
	margin: 1% 1% 0;
	position: relative;
	transition: all .1s ease-out;
	width: 50px;
	border: 2px solid darkgrey;
}
.lck_news .slide strong {
color: black;
font-weight: bolder;
}
.lck_news hr {
	background-color: transparent;
	border: 0;
	border-top: 2px solid #fff;
	margin: 1em auto;
	padding: 0;
	text-align: center;
	width: 90%;
}
/* Auto Play (*Newsbox-Buttons don't work when this is on though....) */
@keyframes slideshow {
0% {
	transform: translateX(0);
}
20% {
	transform: translateX(0);
}
25% {
	transform: translateX(-25%);
}
45% {
	transform: translateX(-25%);
}
50% {
	transform: translateX(-50%);
}
70% {
	transform: translateX(-50%);
}
75% {
	transform: translateX(-75%);
}
95% {
	transform: translateX(-75%);
}
100% {
	transform: translateX(0%);
}
}
.lck_news:after {
	clear: both;
	content: "";
	display: table;
}



#newsboxes2 {
	clear: both;
	display: flex;
	justify-content: left; */
	max-width: 1200px;
	margin: 2em auto;
	padding: 1em;
}
.news {
	margin: 1em 0;
	background: rgba(var(--mainBackgroundColor), .95);
	overflow: hidden;
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	border-radius: 3px;
}
.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: 3px;
	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 {
	color: rgba(var(--textColor), .75);
	font-weight: 400;
	line-height: 1.25em;
	margin: 0 0 .25em 0;
}
h1 {
	color: rgba(var(--accentColor), 1);
	font-size: 4.0em;
	font-weight: 300;
	line-height: 1;
	margin: 0 0 .25em 0;
}
h2 {
	font-size: 2.0em;
}
h3 {
	font-size: 1.7em
}
h4 {
	font-size: 1.4em;
}
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:last-of-type {
	/* [disabled]margin: 1em 0 0 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: 1240px) {
#newsboxes2 {
	padding: 0 2em;
}
section.normalSection, div.submenDiv {
	padding: 2em;
}
}
@media only screen and (max-width: 980px) {
body {
	font-size: 17px;
}
section {
	padding: 4em 2em;
}
}
@media only screen and (max-width: 768px) {
body {
	font-size: 16px;
}
/*01*/
section.snippet01 {
	padding: 2em;
	background: #e4d2c0;
	background: linear-gradient(180deg, rgba(var(--secondBackgroundColor), 1) 33%, rgba(var(--mainBackgroundColor), 1) 33%);
}
section.snippet01 .snippetContent {
	display: block;
}
section.snippet01 .snippetImg {
	width: 100%;
}
section.snippet01 .snippetText {
	width: 100%;
	padding: 0;
}
/*02*/
section.snippet02 {
	padding: 2em;
}
section.snippet02 .snippetContent {
	display: block;
}
section.snippet02 .snippetTextLeft {
	width: 100%;
	padding: 0;
}
section.snippet02 .snippetTextRight {
	width: 100%;
	padding: 2em;
	margin: 1em 0;
}
/*03*/
section.snippet03 {
	padding: 2em;
	background: #e4d2c0;
	background: linear-gradient(180deg, rgba(var(--secondBackgroundColor), 1) 67%, rgba(var(--mainBackgroundColor), 1) 67%);
}
section.snippet03 .snippetContent {
	display: block;
}
section.snippet03 .snippetImg {
	width: 100%;
}
section.snippet03 .snippetText {
	width: 100%;
	padding: 2em 0;
	text-align: left;
}
/*04*/
section.snippet04 {
	padding: 2em;
}
p.leadText {
	max-width: 100%;
}
/*05*/
section.snippet05 {
	padding: 2em;
	background: #e4d2c0;
	background: rgba(var(--secondBackgroundColor), 1);
}
section.snippet05 .snippetImg {
	width: 100%;
}
section.snippet05 .snippetText {
	box-shadow: 0;
	width: 100%;
	padding: 2em;
	margin: 0;
	position: relative;
	border-radius: 3px;
}
#newsboxes2 {
	display: block;
}
#newsboxes2 .news {
	width: 100%;
	margin: 1em 0 0;
}
}
@media only screen and (max-width : 640px) {
body {
	font-size: 15px;
}
.slogan {
	display: none !important;
}
}
@media only screen and (max-width : 480px) {
body {
	font-size: 14px;
}
p {
	text-align: left;
}
.headerTxt {
	display: none;
}
blockquote {
	padding: 1em;
}
}
#tinymce {
	background-color: rgba(var(--mainBackgroundColor), 1);
	background-image: none;
	-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: 3px;
	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: 3px;
}
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);
}
a.noArrow::after {
	content: '';
}
/***/
