/* --------------------------------------------------------
# Primary Theme Color: #006080 <--- SEARCH & REPLACE! -----
# Secondary Theme Color: #eaeaea <--- SEARCH & REPLACE! ---
-------------------------------------------------------- */

/* Reset CSS */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, .frontend button, 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	font-size: 100%;
	font-weight: 400;
	/*font: inherit;*/
	border: 0;
	padding: 0;
	margin: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
	display: block;
}
/* Main HTML Elements */
:root {
	--padding: 15px;
	--padding-lg: calc(var(--padding) * 2);
	--padding-sm: calc(var(--padding) / 2);
	--margin: 15px;
	--margin-lg: calc(var(--margin) * 2);
	--margin-sm: calc(var(--margin) / 2);
	--flex-gap-row: 30px;
	--flex-gap-column: calc(var(--flex-gap-row) / 2);
	--darkgray: #383838;
	--gray: #585858;
	--silver: #c8c8c8;
	--gainsboro: #e8e8e8;
	--whitesmoke: #f0f0f0;
	--white: #fff;
	--input-border-color: #949494;
}
html {
	font-size: 16px; /* IE 11 */
	font-size: max(16px, 1em);
	background-color: #fff;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}
body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	color: #383838;
	color: var(--darkgray, #383838);
}
abbr[title] {
	text-decoration: none;
	border-bottom: 1px dashed;
	cursor: pointer;
}
abbr[title]:hover::after, abbr[title]:focus::after, abbr[title]:active::after {
	content: ' (' attr(title) ')';
}
@media screen and (min-width: 1024px){
	abbr[title]:hover::after, abbr[title]:focus::after, abbr[title]:active::after {
		content: '';
	}
	abbr[title] {
		cursor: help;
	}
}
blockquote {
	border-left: 3px solid #e8e8e8;
	border-left: 3px solid var(--gainsboro, #e8e8e8);
	padding: 5px 15px;
	padding: calc(var(--padding, 15px) / 3) var(--padding, 15px);
	margin: 10px 0;
}
blockquote p:last-child {
	margin-bottom: 0;
}
blockquote, q {
	quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
	content: '';
	content: none;
}
span > i[class*="fa-"] {
	margin-right: 5px;
	margin-right: calc(var(--margin, 15px) / 3);
}
small {
	font-size: 0.75em;
}
small > i[class*="fa-"] {
	font-size: 1rem;
	line-height: 1;
	margin-right: 0.25rem;
	-webkit-opacity: 0.7;
	opacity: 0.7;
	vertical-align: unset;
}
a > i[class*="fa-"], button > i[class*="fa-"] {
	line-height: 1.33;
	vertical-align: baseline;
	margin-right: 5px;
	margin-right: calc(var(--margin, 15px) / 3);
}
table {
	background-color: #f0f0f0;
	background-color: var(--whitesmoke, #f0f0f0);
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 1em;
}
table td, table th {
	padding: 10px;
}
table th {
	background-color: #e8e8e8;
	background-color: var(--gainsboro, #e8e8e8);
	background-color: rgba(0, 0, 0, 0.05);
	border-bottom: 2px solid #e8e8e8;
	border-bottom: 2px solid var(--gainsboro, #e8e8e8);
	border-bottom: 2px solid rgba(0, 0, 0, 0.075);
}
table tr {
	border-bottom: 1px solid #e8e8e8;
	border-bottom: 1px solid var(--gainsboro, #e8e8e8);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
*, *::after, *::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
code {
	font-family: monospace;
}
audio, video {
	display: block;
	width: 100%;
}
pre {
	font-family: Consolas, monospace;
	font-size: 1rem;
	font-weight: normal;
	font-style: normal;
	text-align: left;
	color: #000;
	background-color: #f0f0f0;
	background-color: var(--whitesmoke, #f0f0f0);
	border: 1px solid #e8e8e8;
	border: 1px solid var(--gainsboro, #e8e8e8);
	padding: 15px;
	padding: var(--padding, 15px);
	-webkit-hyphens: none;
	hyphens: none;
	white-space: break-spaces;
}
p {
	margin: 0 0 0.75em 0;
}
ul, ol {
	padding-left: 30px;
	padding-left: var(--padding-lg, 30px);
	margin-bottom: 0.75em;
}
ul ul, ol ol {
	margin-bottom: 0;
}
ul {
	list-style: square;
}
ol {
	list-style: decimal;
}
ul.ikiss-unordered-list, ol.ikiss-ordered-list {
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	ul.ikiss-unordered-list, ol.ikiss-ordered-list {
		width: 100%;
	}
}
strong, b {
	font-weight: 700;
}
em {
	font-style: italic;
}
sup {
	font-size: 0.625em;
	vertical-align: super;
}
sub {
	font-size: 0.625em;
	vertical-align: bottom;
	margin-top: 3px;
}
input, textarea, select {
	font: inherit;
	color: inherit;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}
input[type="reset"] {
	color: #585858 !important;
	color: var(--gray, #585858) !important;
	background-color: #e8e8e8 !important;
	background-color: var(--gainsboro, #e8e8e8) !important;
}
input[readonly] {
	color: #777;
	background-color: #f0f0f0;
	background-color: var(--whitesmoke, #f0f0f0);
}
hr {
	display: block;
	clear: both;
	height: 1px;
	background-color: #f0f0f0;
	background-color: var(--whitesmoke, #f0f0f0);
	border: none;
	margin-bottom: 15px;
	margin-bottom: var(--margin, 15px);
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.333em;
	color: #383838;
	color: var(--darkgray, #383838);
	margin: 1em 0 0.75em;
}
h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.6em;
}
h3 {
	font-size: 1.4em;
}
h4 {
	font-size: 1.2em;
}
h5 {
	font-size: 1.1em;
}
h6 {
	font-size: 1em;
}
img, svg, video {
	max-width: 100%;
	height: auto;
}
table caption {
    caption-side: bottom;
    text-align: left;
    font-style: italic;
    margin-top: 0.5em;
}
@supports (-webkit-overflow-scrolling: touch) {
	body * {
		background-attachment: scroll !important;
	}
}
/* Colors */
.primary-bg-color,
button.primary-bg-color {
	color: #fff;
	color: var(--primarytextcolor, #fff);
	background-color: #006080;
	background-color: var(--primarycolor, #006080);
}
.primary-bg-color a, .primary-bg-color a:active, .primary-bg-color * {
	color: #fff;
	color: var(--primarytextcolor, #fff);
	opacity: 1;
}
.primary-text-color {
	color: #006080;
	color: var(--primarytextcolor, #006080);
}
.secondary-bg-color {
	color: #383838;
	color: var(--secondarytextcolor, #383838);
	background-color: #e8e8e8;
	background-color: var(--secondarycolor, #e8e8e8);
}
.secondary-bg-color a, .secondary-bg-color * {
	color: #383838;
	color: var(--secondarytextcolor, #383838);
	opacity: 1;
}
.secondary-bg-color input,
.secondary-bg-color textarea,
.secondary-bg-color select {
	background-color: #e8e8e8;
	background-color: var(--secondarycolor, #e8e8e8);
}
.secondary-text-color {
	color: #383838;
	color: var(--secondarytextcolor, #383838);
}
a,
.linkcolor,
.linkcolor a {
	color: #006080;
	color: var(--linkcolor, #006080);
	text-decoration: none;
}
:focus,
:focus-visible,
:-moz-focusring {
	outline: 3px solid #006080;
	outline: 3px solid var(--linkcolor, #006080);
}
:target::before {
	content: '';
	display: block;
}
a[class*="csslink_"],
.mceContentBody a:not([class]),
.directedit-editnode a:not([class]),
.more {
    text-decoration: underline;
}
.btn a[class*="csslink_"],
a[class*="csslink_"].btn {
    text-decoration: inherit;
}
a.btn, button.btn, input.btn, .btn a, span.ikiss-field-button input {
	display: inline-block;
	position: relative;
	color: #fff;
	color: var(--primarytextcolor, #fff);
	background-color: #006080;
	background-color: var(--primarycolor, #006080);
	-webkit-box-shadow: 2px 3px 2px rgb(0, 0, 0, 0.15);
	box-shadow: 2px 3px 2px rgb(0, 0, 0, 0.15);
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: none !important;
	font-weight: normal;
	font-size: 1em;
	text-decoration: none;
	vertical-align: middle;
	overflow: hidden;
	z-index: 1;
	padding: 10px 15px;
	margin: 10px 10px 0 0;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	-webkit-transition: all 0.1s ease;
	transition: all 0.1s ease;
}
.btn a[class*="csslink_"] {
    margin: 0;
}
a.btn::after, button.btn::after, input.btn::after, .btn a::after, span.ikiss-field-button input::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.15);
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
	z-index: -1;
	opacity: 0;
}
a.btn:hover, button.btn:hover, input.btn:hover, .btn a:hover, span.ikiss-field-button input:hover,
a.btn:focus, button.btn:focus, input.btn:focus, .btn a:focus, span.ikiss-field-button input:focus,
a.btn.tab-focus, button.btn.tab-focus, input.btn.tab-focus, .btn a.tab-focus, span.ikiss-field-button input.tab-focus {
	color: #fff;
	-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	-webkit-transform: translateY(2px);
	-ms-transform: translateY(2px);
	transform: translateY(2px);
}
a.btn:hover::after, button.btn:hover::after, input.btn:hover::after, .btn a:hover::after, span.ikiss-field-button input:hover::after,
a.btn:focus::after, button.btn:focus::after, input.btn:focus::after, .btn a:focus::after, span.ikiss-field-button input:focus::after,
a.btn.tab-focus::after, button.btn.tab-focus::after, input.btn.tab-focus::after, .btn a.tab-focus::after, span.ikiss-field-button input.tab-focus::after {
	opacity: 1;
}
a.btn:active, button.btn:active, input.btn:active, .btn a:active, span.ikiss-field-button input:active {
	-webkit-transform: scale(0.95);
	transform: scale(0.95);
}

/* Buttons neben dem Suchergebnis-Titel (SOLR/Veranstaltungen) */
a.h2-btn {
	margin: 1.6em 0 0 10px;
}
.btn-row {
    margin: -0.375em;
}
.btn-row .btn {
    margin: 0.375em;
}

/* Layout Helpers & Gridsystem */
nav ul {
	padding: 0;
	margin: 0;
}
nav li {
	list-style: none;
}
.nav-h li {
	display: inline-block;
}
.shadow {
	-webkit-box-shadow: 0 5px 10px #000;
	box-shadow: 0 5px 10px #000;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}
.transition {
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
.circle,
.img-circle {
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.rounded,
.img-rounded {
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
.bgimg-top {
	background-position: center top !important;
}
.bgimg-center {
	background-position: center center !important;
}
.bgimg-bottom {
	background-position: center bottom !important;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.fullwidth {
	width: 100%;
}
.sm-only {
	display: none;
}
.spacer {
	display: block;
	width: 100%;
	margin: 15px 0;
	margin: var(--margin, 15px) 0;
}
.nomargin {
	margin: 0 !important;
}
.absolute {
	position: absolute;
}
.relative {
	position: relative;
}
.static {
	position: static;
}
.clear, .cb {
	clear: both;
	overflow: hidden;
	height: 0px;
	line-height: 1px;
	padding: 0;
	margin: 0;
}
.clearfix::after {
	content: '';
	display: block;
	clear: both;
	height: 0px;
	visibility: hidden;
}
.hide {
	display: none !important;
}
.block, .show {
	display: block !important;
}
.inline-block {
	display: inline-block !important;
}
.inline {
	display: inline !important;
}
.flex {
	display: -webkit-box !important;
	display: -webkit-flex !important;
	display: flex !important;
}
@media screen and (max-width: 767px) {
	.flex-sm {
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
	}
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
	.flex-md {
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
	}
}
@media screen and (min-width: 1024px) {
	.flex-lg {
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
	}
}
.order-0 {
    order: 0;
}
.order-1 {
    order: 1;
}
.order-2 {
    order: 2;
}

.autoscroll {
	overflow-x: auto;
}
.noscroll {
	overflow: hidden;
}
.grayscale {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}
.unstyled-list, .result-list, .abc-list, .com-list, .doc-list, .link-list, .inline-list, .volltextsuche ul {
	list-style: none;
	padding-left: 0;
}
.unstyled-list .unstyled-list {
	margin-top: 0.75em;
	margin-bottom: 0.75em;
	margin-left: 30px;
	margin-left: var(--margin-lg, 30px);
}
.unstyled-list li:not(:last-child),
.doc-list li:not(:last-child),
.link-list li:not(:last-child),
.volltextsuche li:not(:last-child) {
	margin-bottom: 0.5em;
}
.abc-list {
	margin: 1.5em -1px;
}
.abc-list li {
	display: inline-block;
	width: 2.95em;
	height: 2.95em;
	line-height: 2.95em;
	text-align: center;
	vertical-align: middle;
	color: #585858;
	color: var(--gray, #585858);
	background-color: #f0f0f0;
	background-color: var(--whitesmoke, #f0f0f0);
	margin: 1px;
}
.abc-list li a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	font-weight: bold;
	text-decoration: none;
	color: #383838;
	color: var(--darkgray, #383838);
}
.abc-list li a:hover,
.abc-list li a:focus,
.abc-list li a.tab-focus,
.abc-list li a.active {
	color: #fff;
	color: var(--primarytextcolor, #fff);
	background-color: #006080;
	background-color: var(--primarycolor, #006080);
}
.com-list li:not(:last-child) {
	margin-bottom: 0.25em;
}
.com-list i[class*="fa-"] {
	margin-right: 0.25em;
}
.doc-list li,
.link-list li.doc-list {
    margin-left: 1.5em;
}
.doc-list a.doc-link {
    display: inline-block;
    text-decoration: none;
}
.doc-link > i[class*="fa-"] {
    display: inline-block;
	width: 1.25em;
	text-align: center;
    margin-left: -1.5em;
    margin-right: 0.25em;
}
.doc-link > i[class*="fa-file-"] {
    color: #585858;
	color: var(--gray, #585858);
}
.doc-link > i.fa-file-pdf {
    color: #e90707;
}
.doc-link > i.fa-file-word {
    color: #2b579a;
}
.doc-link > i.fa-file-excel {
    color: #217346;
}
.doc-link > i.fa-file-powerpoint {
    color: #d24726;
}
.doc-link > i.fa-file-pdf {
    color: #e90707;
}
.doc-link .doc-title,
.link-list a.link-title {
    text-decoration: underline;
}
.doc-link .doc-infos {
    display: inline-block;
	font-size: 0.8125rem;
    color: #585858;
	color: var(--gray, #585858);
}
.doc-infos > span {
    display: inline-block;
}
.doc-infos > span:not(:last-child) {
    margin-right: 0.5em;
}
.docreader-link {
    text-decoration: underline;
}
.doc-list .docreader-link {
    display: inline-block;
}
.doc-link:not(:last-child) { /* für darauffolgenden docReader-Link */
    margin-right: 0.333em;
}
.inline-list li {
	display: inline-block;
}
.wrapper {
	max-width: 100%;
	width: 1270px;
	padding: 0 15px;
	padding: 0 var(--padding, 15px);
	margin: auto;
	-webkit-transition: width 0.4s;
	transition: width 0.4s;
}
.row {
	margin: 0 -15px;
	margin: 0 calc(-1 * var(--margin, 15px));
}
.row::after {
	display: table;
	content: '';
	clear: both;
}
#tinymce .row {
	margin: 0 !important;
}
.column-1, .column-2, .column-3, .column-2x3, .column-4, .column-2x4, .column-3x4, .column-5, .column-2x5, .column-3x5, .column-4x5, .column-6, .column-2x6, .column-3x6, .column-4x6, .column-5x6 {
	position: relative;
	float: left;
	min-height: 1px;
	padding-right: 15px;
	padding-right: var(--padding, 15px);
	padding-left: 15px;
	padding-left: var(--padding, 15px);
	-webkit-transition: width 0.2s ease-in;
	transition: width 0.2s ease-in;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/* Columns => Number = Horizontal column count */
.column-1 {
	width: 100%;
}
.column-2, .column-2x4, .column-3x6 {
	width: 50%;
}
.column-3, .column-2x6 {
	width: 33.333%;
}
.column-2x3, .column-4x6 {
	width: 66.666%;
}
.column-4 {
	width: 25%;
}
.column-3x4 {
	width: 75%;
}
.column-5 {
	width: 20%;
}
.column-2x5 {
	width: 40%;
}
.column-3x5 {
	width: 60%;
}
.column-4x5 {
	width: 80%;
}
.column-6 {
	width: 16.666%;
}
.column-5x6 {
	width: 83.333%;
}
.collapse [class*="column-"] {
	padding: 0;
}
.collapse [class*="flex-col-"] {
	margin: 0;
}
.pull-left {
	float: left;
}
.pull-right {
	float: right;
}

/* Layout Helper Media Queries */
@media screen and (min-width: 1024px) {
	.hide-lg {
		display: none;
	}
}
@media screen and (max-width: 1023px) {
	.column-md-1 {
		width: 100%;
	}
	.column-md-2, .column-md-2x4, .column-md-3x6 {
		width: 50%;
	}
	.column-md-3, .column-md-2x6 {
		width: 33.333%;
	}
	.column-md-2x3, .column-md-4x6 {
		width: 66.666%;
	}
	.column-md-4 {
		width: 25%;
	}
	.column-md-3x4 {
		width: 75%;
	}
	.column-md-5 {
		width: 20%;
	}
	.column-md-2x5 {
		width: 40%;
	}
	.column-md-3x5 {
		width: 60%;
	}
	.column-md-4x5 {
		width: 80%;
	}
	.column-md-6 {
		width: 16.666%;
	}
	.column-md-5x6 {
		width: 83.333%;
	}
	.md-only {
		display: block;
	}
	.hide-md {
		display: none !important;
	}
}
@media screen and (max-width: 767px) {
	.column-1, .column-2, .column-3, .column-4, .column-5, .column-6, .column-2x3, .column-2x4, .column-3x4, .column-2x5, .column-3x5, .column-4x5, .column-2x6, .column-3x6, .column-4x6, .column-5x6 {
		width: 100%;
	}
	.column-sm-1 {
		width: 100%;
	}
	.column-sm-2, .column-sm-2x4, .column-sm-3x6 {
		width: 50%;
	}
	.column-sm-3, .column-sm-2x6 {
		width: 33.333%;
	}
	.column-sm-2x3, .column-sm-4x6 {
		width: 66.666%;
	}
	.column-sm-4 {
		width: 25%;
	}
	.column-sm-3x4 {
		width: 75%;
	}
	.column-sm-5 {
		width: 20%;
	}
	.column-sm-2x5 {
		width: 40%;
	}
	.column-sm-3x5 {
		width: 60%;
	}
	.column-sm-4x5 {
		width: 80%;
	}
	.column-sm-6 {
		width: 16.666%;
	}
	.column-sm-5x6 {
		width: 83.333%;
	}
	.sm-only {
		display: block !important;
	}
	.hide-sm {
		display: none !important;
	}
}

/* Flex-Grid */
.flex-row {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	flex-direction:row;
	flex-wrap: wrap;
    -webkit-box-pack: start;
	-webkit-box-align: stretch;
	align-items: stretch;
	list-style: none;
	padding: 0;
	margin: 0 -15px calc(30px + 0.75em);
	margin: 0 calc(-1 * var(--flex-gap-column, 15px)) calc(-1 * calc(var(--flex-gap-row, 30px)) + 0.75em);
}
.flex-row.collapse {
	margin: 0;
}
[class*="flex-col-"] {
	-webkit-box-flex: 0;
	flex-grow: 0;
	flex-shrink: 1;
	min-width: 0;
	padding: 0;
	margin: 0 15px 30px;
	margin: 0 var(--flex-gap-column, 15px) var(--flex-gap-row, 30px);
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
.flex-col-1 {
	flex-basis: 100%;
	width: 100%;
}
.flex-col-2, .flex-col-2x4, .flex-col-3x6 {
	flex-basis: calc(50% - 30px);
	flex-basis: calc(50% - calc(2 * var(--flex-gap-column, 15px)));
	width: calc(50% - 30px);
	width: calc(50% - calc(2 * var(--flex-gap-column, 15px)));
}
@supports (-ms-ime-align:auto) {
	.flex-col-2, .flex-col-2x4, .flex-col-3x6 { /* Edge */
		flex-basis: calc(49.999% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(49.999% - calc(2 * var(--flex-gap-column, 15px)));
	}
}
.collapse .flex-col-2, .collapse .flex-col-2x4, .collapse .flex-col-3x6 {
	flex-basis: 50%;
	width: 50%;
}
.flex-col-3, .flex-col-2x6 {
	flex-basis: calc(33.333% - 30px);
	flex-basis: calc(33.333% - calc(2 * var(--flex-gap-column, 15px)));
	width: calc(33.333% - 30px);
	width: calc(33.333% - calc(2 * var(--flex-gap-column, 15px)));
}
.collapse .flex-col-3, .collapse .flex-col-2x6 {
	flex-basis: 33.333%;
	width: 33.333%;
}
.flex-col-2x3, .flex-col-4x6 {
	flex-basis: calc(66.666% - 30px);
	flex-basis: calc(66.666% - calc(2 * var(--flex-gap-column, 15px)));
	width: calc(66.666% - 30px);
	width: calc(66.666% - calc(2 * var(--flex-gap-column, 15px)));
}
.collapse .flex-col-2x3, .collapse .flex-col-4x6 {
	flex-basis: 66.666%;
	width: 66.666%;
}
.flex-col-4 {
	flex-basis: calc(25% - 30px);
	flex-basis: calc(25% - calc(2 * var(--flex-gap-column, 15px)));
	width: calc(25% - 30px);
	width: calc(25% - calc(2 * var(--flex-gap-column, 15px)));
}
@supports (-ms-ime-align:auto) {
	.flex-col-4 { /* Edge */
		flex-basis: calc(24.999% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(24.999% - calc(2 * var(--flex-gap-column, 15px)));
	}
}
.collapse .flex-col-4 {
	flex-basis: 25%;
	width: 25%;
}
.flex-col-3x4 {
	flex-basis: calc(75% - 30px);
	flex-basis: calc(75% - calc(2 * var(--flex-gap-column, 15px)));
	width: calc(75% - 30px);
	width: calc(75% - calc(2 * var(--flex-gap-column, 15px)));
}
@supports (-ms-ime-align:auto) {
	.flex-col-3x4 { /* Edge */
		flex-basis: calc(74.999% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(74.999% - calc(2 * var(--flex-gap-column, 15px)));
	}
}
.collapse .flex-col-3x4 {
	flex-basis: 75%;
	width: 75%;
}
.flex-col-5 {
	flex-basis: calc(20% - 30px);
	flex-basis: calc(20% - calc(2 * var(--flex-gap-column, 15px)));
	width: calc(20% - 30px);
	width: calc(20% - calc(2 * var(--flex-gap-column, 15px)));
}
@supports (-ms-ime-align:auto) {
	.flex-col-5 { /* Edge */
		flex-basis: calc(19.999% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(19.999% - calc(2 * var(--flex-gap-column, 15px)));
	}
}
.collapse .flex-col-5 {
	flex-basis: 20%;
	width: 20%;
}
.flex-col-2x5 {
	flex-basis: calc(40% - 30px);
	flex-basis: calc(40% - calc(2 * var(--flex-gap-column, 15px)));
	width: calc(40% - 30px);
	width: calc(40% - calc(2 * var(--flex-gap-column, 15px)));
}
@supports (-ms-ime-align:auto) {
	.flex-col-2x5 { /* Edge */
		flex-basis: calc(39.999% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(39.999% - calc(2 * var(--flex-gap-column, 15px)));
	}
}
.collapse .flex-col-2x5 {
	flex-basis: 40%;
	width: 40%;
}
.flex-col-3x5 {
	flex-basis: calc(60% - 30px);
	flex-basis: calc(60% - calc(2 * var(--flex-gap-column, 15px)));
	width: calc(60% - 30px);
	width: calc(60% - calc(2 * var(--flex-gap-column, 15px)));
}
@supports (-ms-ime-align:auto) {
	.flex-col-3x5 { /* Edge */
		flex-basis: calc(59.999% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(59.999% - calc(2 * var(--flex-gap-column, 15px)));
	}
}
.collapse .flex-col-3x5 {
	flex-basis: 60%;
	width: 60%;
}
.flex-col-4x5 {
	flex-basis: calc(80% - 30px);
	flex-basis: calc(80% - calc(2 * var(--flex-gap-column, 15px)));
	width: calc(80% - 30px);
	width: calc(80% - calc(2 * var(--flex-gap-column, 15px)));
}
@supports (-ms-ime-align:auto) {
	.flex-col-4x5 { /* Edge */
		flex-basis: calc(79.999% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(79.999% - calc(2 * var(--flex-gap-column, 15px)));
	}
}
.collapse .flex-col-4x5 {
	flex-basis: 80%;
	width: 80%;
}
.flex-col-6 {
	flex-basis: calc(16.666% - 30px);
	flex-basis: calc(16.666% - calc(2 * var(--flex-gap-column, 15px)));
	width: calc(16.666% - 30px);
	width: calc(16.666% - calc(2 * var(--flex-gap-column, 15px)));
}
.collapse .flex-col-6 {
	flex-basis: 16.666%;
	width: 16.666%;
}
.flex-col-5x6 {
	flex-basis: calc(83.333% - 30px);
	flex-basis: calc(83.333% - calc(2 * var(--flex-gap-column, 15px)));
	width: calc(83.333% - 30px);
	width: calc(83.333% - calc(2 * var(--flex-gap-column, 15px)));
}
.collapse .flex-col-5x6 {
	flex-basis: 83.333%;
	width: 83.333%;
}
@media only screen and (max-width: 1023px) {
	.flex-col-md-1 {
		flex-basis: 100%;
		width: 100%;
	}
    .flex-col-md-2, .flex-col-md-2x4, .flex-col-md-3x6 {
		flex-basis: calc(50% - 30px);
        flex-basis: calc(50% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(50% - 30px);
        width: calc(50% - calc(2 * var(--flex-gap-column, 15px)));
	}
	@supports (-ms-ime-align:auto) { /* Edge */
		.flex-col-md-2, .flex-col-md-2x4, .flex-col-md-3x6 {
			flex-basis: calc(49.999% - 30px);
            flex-basis: calc(49.999% - calc(2 * var(--flex-gap-column, 15px)));
			width: calc(49.999% - 30px);
            width: calc(49.999% - calc(2 * var(--flex-gap-column, 15px)));
		}
	}
	.collapse .flex-col-md-2, .collapse .flex-col-md-2x4, .collapse .flex-col-md-3x6 {
		flex-basis: 50%;
		width: 50%;
	}
	.flex-col-md-3, .flex-col-md-2x6 {
		flex-basis: calc(33.333% - 30px);
        flex-basis: calc(33.333% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(33.333% - 30px);
        width: calc(33.333% - calc(2 * var(--flex-gap-column, 15px)));
	}
	.collapse .flex-col-md-3, .collapse .flex-col-md-2x6 {
		flex-basis: 33.333%;
		width: 33.333%;
	}
	.flex-col-md-2x3, .flex-col-md-4x6 {
		flex-basis: calc(66.666% - 30px);
        flex-basis: calc(66.666% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(66.666% - 30px);
        width: calc(66.666% - calc(2 * var(--flex-gap-column, 15px)));
	}
	.collapse .flex-col-md-2x3, .collapse .flex-col-md-4x6 {
		flex-basis: 66.666%;
		width: 66.666%;
	}
	.flex-col-md-4 {
		flex-basis: calc(25% - 30px);
        flex-basis: calc(25% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(25% - 30px);
        width: calc(25% - calc(2 * var(--flex-gap-column, 15px)));
	}
	@supports (-ms-ime-align:auto) { /* Edge */
		.flex-col-md-4 {
			flex-basis: calc(24.999% - 30px);
            flex-basis: calc(24.999% - calc(2 * var(--flex-gap-column, 15px)));
			width: calc(24.999% - 30px);
            width: calc(24.999% - calc(2 * var(--flex-gap-column, 15px)));
		}
	}
	.collapse .flex-col-md-4 {
		flex-basis: 25%;
		width: 25%;
	}
	.flex-col-md-3x4 {
		flex-basis: calc(75% - 30px);
        flex-basis: calc(75% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(75% - 30px);
        width: calc(75% - calc(2 * var(--flex-gap-column, 15px)));
	}
	@supports (-ms-ime-align:auto) { /* Edge */
		.flex-col-md-3x4 {
			flex-basis: calc(74.999% - 30px);
            flex-basis: calc(74.999% - calc(2 * var(--flex-gap-column, 15px)));
			width: calc(74.999% - 30px);
            width: calc(74.999% - calc(2 * var(--flex-gap-column, 15px)));
		}
	}
	.collapse .flex-col-md-3x4 {
		flex-basis: 75%;
		width: 75%;
	}
	.flex-col-md-5 {
		flex-basis: calc(20% - 30px);
        flex-basis: calc(20% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(20% - 30px);
        width: calc(20% - calc(2 * var(--flex-gap-column, 15px)));
	}
	@supports (-ms-ime-align:auto) { /* Edge */
		.flex-col-md-5 {
			flex-basis: calc(19.999% - 30px);
            flex-basis: calc(19.999% - calc(2 * var(--flex-gap-column, 15px)));
			width: calc(19.999% - 30px);
            width: calc(19.999% - calc(2 * var(--flex-gap-column, 15px)));
		}
	}
	.collapse .flex-col-md-5 {
		flex-basis: 20%;
		width: 20%;
	}
	.flex-col-md-2x5 {
		flex-basis: calc(40% - 30px);
        flex-basis: calc(40% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(40% - 30px);
        width: calc(40% - calc(2 * var(--flex-gap-column, 15px)));
	}
	@supports (-ms-ime-align:auto) { /* Edge */
		.flex-col-md-2x5 {
			flex-basis: calc(39.999% - 30px);
            flex-basis: calc(39.999% - calc(2 * var(--flex-gap-column, 15px)));
			width: calc(39.999% - 30px);
            width: calc(39.999% - calc(2 * var(--flex-gap-column, 15px)));
		}
	}
	.collapse .flex-col-md-2x5 {
		flex-basis: 40%;
		width: 40%;
	}
	.flex-col-md-3x5 {
		flex-basis: calc(60% - 30px);
        flex-basis: calc(60% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(60% - 30px);
        width: calc(60% - calc(2 * var(--flex-gap-column, 15px)));
	}
	@supports (-ms-ime-align:auto) { /* Edge */
		.flex-col-md-3x5 {
			flex-basis: calc(59.999% - 30px);
            flex-basis: calc(59.999% - calc(2 * var(--flex-gap-column, 15px)));
			width: calc(59.999% - 30px);
            width: calc(59.999% - calc(2 * var(--flex-gap-column, 15px)));
		}
	}
	.collapse .flex-col-md-3x5 {
		flex-basis: 60%;
		width: 60%;
	}
	.flex-col-md-4x5 {
		flex-basis: calc(80% - 30px);
        flex-basis: calc(80% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(80% - 30px);
        width: calc(80% - calc(2 * var(--flex-gap-column, 15px)));
	}
	@supports (-ms-ime-align:auto) { /* Edge */
		.flex-col-md-4x5 {
			flex-basis: calc(79.999% - 30px);
            flex-basis: calc(79.999% - calc(2 * var(--flex-gap-column, 15px)));
			width: calc(79.999% - 30px);
            width: calc(79.999% - calc(2 * var(--flex-gap-column, 15px)));
		}
	}
	.collapse .flex-col-md-4x5 {
		flex-basis: 80%;
		width: 80%;
	}
	.flex-col-md-6 {
    	flex-basis: calc(16.666% - 30px);
        flex-basis: calc(16.666% - calc(2 * var(--flex-gap-column, 15px)));
    	width: calc(16.666% - 30px);
        width: calc(16.666% - calc(2 * var(--flex-gap-column, 15px)));
	}
	.collapse .flex-col-md-6 {
		flex-basis: 16.666%;
		width: 16.666%;
	}
	.flex-col-md-5x6 {
    	flex-basis: calc(83.333% - 30px);
        flex-basis: calc(83.333% - calc(2 * var(--flex-gap-column, 15px)));
    	width: calc(83.333% - 30px);
        width: calc(83.333% - calc(2 * var(--flex-gap-column, 15px)));
	}
	.collapse .flex-col-md-5x6 {
		flex-basis: 83.333%;
		width: 83.333%;
	}
}
@media only screen and (max-width: 767px) {
	.flex-col-sm-1, [class*="flex-col-"], .collapse [class*="flex-col-"] {
		flex-basis: 100%;
		width: 100%;
        margin-bottom: 15px;
		margin-bottom: var(--flex-gap-column, 15px);
	}
    .flex-col-sm-2 {
		flex-basis: calc(50% - 30px);
        flex-basis: calc(50% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(50% - 30px);
        width: calc(50% - calc(2 * var(--flex-gap-column, 15px)));
	}
	@supports (-ms-ime-align:auto) { /* Edge */
		.flex-col-sm-2 {
			flex-basis: calc(49.999% - 30px);
            flex-basis: calc(49.999% - calc(2 * var(--flex-gap-column, 15px)));
			width: calc(49.999% - 30px);
            width: calc(49.999% - calc(2 * var(--flex-gap-column, 15px)));
		}
	}
	.collapse .flex-col-sm-2 {
		flex-basis: 50%;
		width: 50%;
	}
	.flex-col-sm-3 {
		flex-basis: calc(33.333% - 30px);
        flex-basis: calc(33.333% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(33.333% - 30px);
        width: calc(33.333% - calc(2 * var(--flex-gap-column, 15px)));
	}
	.collapse .flex-col-sm-3 {
		flex-basis: 33.333%;
		width: 33.333%;
	}
	.flex-col-sm-2x3 {
		flex-basis: calc(66.666% - 30px);
        flex-basis: calc(66.666% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(66.666% - 30px);
        width: calc(66.666% - calc(2 * var(--flex-gap-column, 15px)));
	}
	.collapse .flex-col-sm-2x3 {
		flex-basis: 66.666%;
		width: 66.666%;
	}
    .flex-col-sm-4 {
		flex-basis: calc(25% - 30px);
		flex-basis: calc(25% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(25% - 30px);
		width: calc(25% - calc(2 * var(--flex-gap-column, 15px)));
	}
	@supports (-ms-ime-align:auto) {
		.flex-col-sm-4 { /* Edge */
			flex-basis: calc(24.999% - calc(2 * var(--flex-gap-column, 15px)));
			width: calc(24.999% - calc(2 * var(--flex-gap-column, 15px)));
		}
	}
	.collapse .flex-col-sm-4 {
		flex-basis: 25%;
		width: 25%;
	}
	.flex-col-sm-3x4 {
		flex-basis: calc(75% - 30px);
		flex-basis: calc(75% - calc(2 * var(--flex-gap-column, 15px)));
		width: calc(75% - 30px);
		width: calc(75% - calc(2 * var(--flex-gap-column, 15px)));
	}
	@supports (-ms-ime-align:auto) {
		.flex-col-sm-3x4 { /* Edge */
			flex-basis: calc(74.999% - calc(2 * var(--flex-gap-column, 15px)));
			width: calc(74.999% - calc(2 * var(--flex-gap-column, 15px)));
		}
	}
	.collapse .flex-col-sm-3x4 {
		flex-basis: 75%;
		width: 75%;
	}
}

/* BITV / Screenreader */
.sr-only {
	position: absolute;
	top: auto;
	left: -5000px;
	overflow: hidden;
}
.sr-jump,
.sprungziel {
	position: fixed;
	top: -5000px;
	left: -5000px;
	z-index: 9999;
}
.sr-jump a:focus,
.sprungziel a:focus {
	display: inline-block;
	position: absolute;
	top: 5000px;
	left: 5000px;
	text-decoration: none;
	font-weight: bold;
	color: #fff;
	background-color: #383838;
	background-color: var(--darkgray, #383838);
	white-space: nowrap;
	padding: 5px;
	padding: calc(var(--padding, 15px) / 3);
}

/* BITV: Fokus-Hervorhebung bei Tastaturbedienung */
/* Browser-Formatierung zuruecksetzen */
:focus {
    border: 0;
    outline: 0;
}
::-moz-focus-inner {
    border: 0;
}
/* Generelle Formatierung ueber Klasse hinzufuegen */
.tab-focus {
    outline: 2px solid #000;
    outline-offset: 2px;
    z-index: 9999;
	-webkit-transition: outline 0s !important;
	transition: outline 0s !important;
}
/* Ausnahmen oder Ergaenzungen fuer besondere Elemente */
.sr-jump .tab-focus,
.sprungziel .tab-focus {
    border: 0;
    outline: 0;
    -webkit-box-shadow: none;
	box-shadow: none;
}
#nav .tab-focus {
	position: relative;
    z-index: 79;
}
.photoswipe-gallery.tab-focus {
    z-index: 1500;
}
/* Grundsaetzlich geaenderte Styles fuer Altsysteme */
.mediathek .result-list .list-img {
    overflow: visible;
}
.abc-list li a, .image-gallery li a {
    display: block;
    position: relative;
}