html {
	width: 100%;
	height: 100%;
	font-size: 62.5%;
	max-width: 100vw;
}
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-xv-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box; /*border and padding are included in the size of the box*/
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	-o-text-size-adjust: none;
	-xv-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none; /*font-size is not inflated on mobile devices*/
	margin: 0;
	padding: 0;
}
body, button, input[type="text"], input[type="number"] {
	font-family: "Segoe UI", "Helvetica", -apple-system, BlinkMacSystemFont, sans-serif;
}
body {
	display: block;
	width: 100%;
	/* width: 100vw; */ /*für body nicht benutzen, da die y-scrollbar nicht drin ist und dan eine x-scrollbar entseht*/
	max-width: 100vw;
	height: 100%;
	overflow-x: auto;
	overflow-y: scroll;
	color: #000000;
	font-size: 1.8rem;
	line-height: 1.38;
}
@media screen and (max-height: 640px) and (min-aspect-ratio: 16/10) {
	body {
		font-size: 1.6rem;
		font-size: calc(1.183rem + 0.964vh);
		line-height: 1.34;
		line-height: calc(1.257 + 0.019vh); }
}
@media screen and (max-width: 1024px) and (max-aspect-ratio: 16/10) {
	body {
		font-size: 1.6rem;
		font-size: calc(1.183rem + 0.602vw);
		line-height: 1.34;
		line-height: calc(1.257 + 0.012vw); }
}
@media screen and (max-width: 360px), screen and (max-height: 225px) {
	body {
		font-size: 1.4rem;
		line-height: 1.3; }
}

.none {
	display: none;
}
.left {
	float: left;
}
.right {
	float: right;
}

/*Linkformatierung hier am Anfang, damit die Links ohne Unterstreichung (im Menü) nicht später wieder überschrieben werden*/
a:link, button.download {
	text-decoration: underline;
	color: #186BD1;
}

/*Die grundlegenden Boxen bei normalen Bildschirmen*/
#fixed-header, #header, .b-anchor, #fixed-footer, nav, main {
	left: 0;
	right: 0;
	width: 100%;
	margin: 0 auto;
}
#fixed-header, #fixed-footer {
	position: fixed;
	z-index: 10;
}
#fixed-header {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
	background-color: #37689E;
}
#header {
	flex-basis: 65%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}
nav {
	flex-basis: 30%;
	display: flex;
	flex-direction: row;
	justify-content: start;
	flex-wrap: nowrap;
}
#fixed-footer {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	/* align-items: flex-start;
	align-content: stretch; */
	background-color: #8bb5d7;
}
nav.footer {
	flex-basis: 80%;
	display: flex;
	flex-direction: row;
	justify-content: start;
	flex-wrap: nowrap;
}
.flex-box {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
}

/*Gestaltung der Menüleiste*/
a.nav-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 5px 5px 0px 0px;
	color: black;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	background-color: #8bb5d7; /*wie background-color #fixed-footer*/
}
a.nav-item.footer {
	border-radius: 0px 0px 5px 5px;
	font-weight: 500;
	font-size: 0.92em;
	background-color: #b9d2e7;
}
a.nav-item.current/*, a.nav-item.footer.current*/ {
	background-color: white;
}

:root {
	--scrollbar-width: calc(100vw - 100%);
	--header-height: 100px;
	--footer-height: 36px;
	--input-width: 430px;
	--instructions-height: 60px;
	--from32to20: 32px;
	--buttons-height: 26px;
	--from24to20: 24px;
	--from22to18: 22px; /*nicht verwendet*/
	--from20to10: 20px; /*padding-left main*/
	--from18to8: 18px;
	--from16to8: 16px;
	--from16to6: 16px; /*padding-right main*/
	--from14to8: 14px;
	--from12to6: 12px;
	--from8to4: 8px;
	--foto-width: 140px;
	--foto-height: 178px;
}
@media screen and (max-height: 640px) and (min-aspect-ratio: 16/10) {
	:root {
		--header-height: calc(66.072px + 5.301vh); /*100px-78px*/
		--footer-height: calc(20.578px + 2.410vh); /*36px-26px*/
		--input-width: calc(298.916px + 20.482vh); /*430px-345px*/
		--instructions-height: calc(21.446px + 6.024vh); /*60px-35px*/
		--from32to20: calc(13.494px + 2.892vh); /*32px-20px*/
		--buttons-height: calc(19.831px + 0.964vh); /*26px-22px*/
		--from24to20: calc(17.831px + 0.964vh); /*24px-20px*/
		--from22to18: calc(15.831px + 0.964vh); /*22px-18px*/
		--from20to10: calc(4.578px + 2.410vh); /*20px-10px*/
		--from18to8: calc(2.578px + 2.410vh); /*18px-8px*/
		--from16to8: calc(3.663px + 1.928vh); /*16px-6px*/
		--from16to6: calc(0.578px + 2.410vh); /*16px-6px*/
		--from14to8: calc(4.747px + 1.446vh); /*14px-8px*/
		--from12to6: calc(2.747px + 1.446vh); /*12px-6px*/
		--from8to4: calc(1.831px + 0.964vh); /*8px-4px*/
		--foto-width: calc(32.048px + 16.867vh); /*140px-70px*/
		--foto-height: calc(var(--foto-width) * 1.2714); /*178px-89px*/ }
}
@media screen and (max-width: 1024px) and (max-aspect-ratio: 16/10) {
	:root {
		--header-height: calc(66.072px + 3.313vw);
		--footer-height: calc(20.578px + 1.506vw);
		--input-width: calc(298.916px + 12.801vw);
		--instructions-height: calc(21.446px + 3.765vw);
		--from32to20: calc(13.494px + 1.807vw);
		--buttons-height: calc(19.831px + 0.602vw);
		--from24to20: calc(17.831px + 0.602vw);
		--from22to18: calc(15.831px + 0.602vw);
		--from20to10: calc(4.578px + 1.506vw);
		--from18to8: calc(2.578px + 1.506vw);
		--from16to8: calc(3.663px + 1.205vw);
		--from16to6: calc(0.578px + 1.506vw);
		--from14to8: calc(4.747px + 0.904vw);
		--from12to6: calc(2.747px + 0.904vw);
		--from8to4: calc(1.831px + 0.602vw);
		--foto-width: calc(32.048px + 10.542vw);
		--foto-height: calc(var(--foto-width) * 1.2714); }
}
@media screen and (max-width: 360px), screen and (max-height: 225px) {
	:root {
		--header-height: 78px;
		--footer-height: 26px;
		--input-width: 345px;
		--instructions-height: 35px;
		--from32to20: 20px;
		--buttons-height: 22px;
		--from24to20: 20px;
		--from22to18: 18px;
		--from20to10: 10px;
		--from18to8: 8px;
		--from16to8: 8px;
		--from16to6: 6px;
		--from14to8: 8px;
		--from12to6: 6px;
		--from8to4: 4px;
		--foto-width: 70px;
		--foto-height: 89px; }
}
/*Positionierungen und Höhen- und Breiteneinstellungen für den normalen Bildschirm: min-width: 1024px und min-height: 640px*/
#header, nav, main {
	max-width: 1300px;
	width: 100%;
}
#fixed-header, #fake-header {
	top: 0;
	height: 89px;
	height: var(--header-height);
}
.grid-box.instructions {
	top: 88px;
	top: calc(var(--header-height) - 1px);
	height: 48px;
	height: var(--instructions-height);
}
#header, nav, main {
	padding-left: 15px;
	padding-left: var(--from20to10);
	padding-right: 11px;
	padding-right: var(--from16to6);
}
main {
	padding-top: 13px;
	padding-top: var(--from18to8);
	margin-bottom: 9px;
	margin-bottom: var(--from12to6);
}
#fixed-header {
	gap: 5px;
}
nav, .flex-box {
	gap: 15px;
	gap: var(--from20to10);
}
#fixed-footer, #fake-footer {
	bottom: 0;
	height: 31px;
	height: var(--footer-height);
}
nav.footer {
	gap: 10px;
}
a.nav-item {
	min-width: 200px;
	white-space: nowrap;
}
a.nav-item.footer {
	min-width: 150px;
	width: auto;
	padding: 0 4px 0 4px;
	overflow: hidden;
}
.flex-box {
	margin-top: 16px;
}
/*Änderungen in Abhängigkeit von der Bildschirmhöhe*/
@media screen and (max-height: 640px) and (min-aspect-ratio: 16/10) {
	#fixed-header {
		gap: 3px; }
	nav.footer {
		gap: 8px;
		gap: calc(2.289px + 1.205vh); }
	a.nav-item {
		min-width: 140px;
		min-width: calc(14.940px + 28.916vh);
		/* padding: 3px 12px 4px 12px; */ }
	a.nav-item.footer {
		min-width: 110px;
		min-width: calc(26.627px + 19.277vh); }
	.flex-box {
		margin-top: 13px;
		margin-top: calc(6.747px + 1.446vh); }
}
/*Änderungen in Abhängigkeit von der Bildschirmbreite*/
@media screen and (max-width: 1024px) and (max-aspect-ratio: 16/10) {
	#fixed-header {
		gap: 3px; }
	nav.footer {
		gap: 8px;
		gap: calc(2.289px + 0.753vw); }
	a.nav-item {
		min-width: 140px;
		min-width: calc(14.940px + 18.072vw);
		/* padding: 3px 10px 4px 10px; */ }
	a.nav-item.footer {
		min-width: 110px;
		min-width: calc(26.627px + 12.048vw); }
	.flex-box {
		margin-top: 13px;
		margin-top: calc(6.747px + 0.904vw); }
}
/*Einstellungen für kleinste Bildschirmhöhen und -breiten*/
@media screen and (max-width: 360px), screen and (max-height: 225px) {
	#fixed-header {
		gap: 1px; }
	nav.footer {
		gap: 5px; }
	a.nav-item {
		min-width: 80px; }
	a.nav-item.footer {
		min-width: 70px;
		letter-spacing: -0.01em; }
	.flex-box {
		margin-top: 10px; }
}
/*Überschriften*/
h1 {
	min-height: 50%;
	color: white;
	font-weight: 600;
	font-size: 3.6rem;
	overflow: hidden;
	hyphens: none;
}
h2 {
	padding-top: 20px;
	font-weight: 600;
	font-size: 2rem;
}
/* @media screen and (max-width: 1400px) {
	p.stat {
		margin-right: 80px; }
}
@media screen and (max-width: 525px) {
	p.stat {
		margin-right: 0; }
} */
h2.normal {
	font-size: 2.3rem;
}
h2.index {
	font-size: 1.05em;
}
h3, a.nav-item, button.button {
	font-weight: 550;
	font-size: 1.8rem;
}
h3.normal {
	padding-top: 11px;
	padding-top: var(--from14to8);
	font-weight: 600;
	font-size: 2rem;
}
@media screen and (max-height: 640px) and (min-aspect-ratio: 16/10) {
	h1 {
		font-size: 2.8rem;
		font-size: calc(1.133rem + 3.855vh); /*3.6rem-2rem*/ }
	h2 {
		padding-top: 16px;
		padding-top: calc(7.663px + 1.928vh);
		font-size: 1.8rem;
		font-size: calc(1.383rem + 0.964vh); }
	h2.normal {
		font-size: 2.1rem;
		font-size: calc(1.529rem + 1.205vh); }
	h3, a.nav-item, button.button {
		font-size: 1.6rem;
		font-size: calc(1.183rem + 0.964vh); }
	h3.normal {
		font-size: 1.8rem;
		font-size: calc(1.383rem + 0.964vh); }
}
@media screen and (max-width: 1024px) and (max-aspect-ratio: 16/10) {
	h1 {
		font-size: 2.8rem;
		font-size: calc(1.133rem + 2.410vw); /*3.6rem-2rem*/ }
	h2 {
		padding-top: 15px;
		padding-top: calc(7.663px + 1.205vw);
		font-size: 1.8rem;
		font-size: calc(1.383rem + 0.602vw); }
	h2.normal {
		font-size: 2.1rem;
		font-size: calc(1.529rem + 0.753vw); }
	h3, a.nav-item, button.button {
		font-size: 1.6rem;
		font-size: calc(1.183rem + 0.602vw); }
	h3.normal {
		font-size: 1.8rem;
		font-size: calc(1.383rem + 0.602vw); }
}
@media screen and (max-width: 360px), screen and (max-height: 225px) {
	h1 {
		font-size: 2rem; }
	h2 {
		padding-top: 12px;
		font-size: 1.6rem; }
	h2.normal {
		font-size: 1.8rem; }
	h3, a.nav-item, button.button {
		font-size: 1.4rem; }
	h3.normal {
		font-size: 1.6rem; }
}
@media screen and (max-width: 500px) {
	h1 {
		line-height: 1.1; }
}

/*Absatzformatierungen*/
p {
	padding-top: 10px;
}
p + p {
	padding-top: 8px;
}
ul {
	list-style-type: disc;
	padding-left: 26px;
	padding-left: var(--from32to20);
}
ul.without, ol.without {
	list-style-type: none;
	/* padding-left: 1em; */
}
ol {
	list-style-type: decimal;
	padding-bottom: 4px;
	padding-left: 22px;
	padding-left: var(--from24to20);
}
li, p.indent { /*p.indent für Absätze in Aufzählungen*/
	padding-left: 4px;
	/*padding-left: 0;*/
}
li {
	padding-top: 6px;
}
/*ol li {
	padding-left: 0;
}*/
/* p.stat {
	padding-top: 6px;
} */
ol li, p.indent {
	padding-top: 4px;
}
p.indent.alt {
	padding-top: 0;
	padding-bottom: 6px;
}
@media screen and (max-height: 640px) and (min-aspect-ratio: 16/10) {
	p {
		padding-top: 9px;
		padding-top: calc(6.916px + 0.482vh); }
	p + p {
		padding-top: 7px;
		padding-top: calc(4.916px + 0.482vh); }
	/*ul, ol {
		padding-left: 23px;
		padding-left: calc(4.241px + 4.337vh); }*/
	li, p.indent {
		padding-left: 2px;
		padding-left: calc(-2.169px + 0.964vh); }
	li {
		padding-top: 5px;
		padding-top: calc(2.916px + 0.482vh); }
	ol li, p.indent {
		padding-top: 3px;
		padding-top: calc(1.458px + 0.241vh); }
}
@media screen and (max-width: 1024px) and (max-aspect-ratio: 16/10) {
	p {
		padding-top: 9px;
		padding-top: calc(6.916px + 0.301vw); }
	p + p {
		padding-top: 7px;
		padding-top: calc(4.916px + 0.301vw); }
	/*ul, ol {
		padding-left: 23px;
		padding-left: calc(4.241px + 2.711vw); }*/
	li, p.indent {
		padding-left: 2px;
		padding-left: calc(-2.169px + 0.602vw); }
	li {
		padding-top: 5px;
		padding-top: calc(2.916px + 0.301vw); }
	ol li, p.indent {
		padding-top: 3px;
		padding-top: calc(1.458px + 0.151vw); }
}
@media screen and (max-width: 360px), screen and (max-height: 225px) {
	p {
		padding-top: 8px; }
	p + p {
		padding-top: 6px; }
	/*ul, ol {
		padding-left: 14px; }*/
	li, p.indent {
		padding-left: 0px; }
	li {
		padding-top: 4px; }
	ol li, p.indent {
		padding-top: 2px; }
}

/*ol li {
	padding-top: 1px;
	padding-left: 4px;
}*/
/*Spezifika für die ol-list in 'how to'*/
/*li:first-child {
	padding-top: 0;
}*/
ol li::marker {
	font-weight: 600;
	font-size: 1.08em;
}
ul.class2 {
	list-style-type: none;
	padding-left: 0;
}
li.class2 {
	padding-top: 3px;
	padding-left: 18px;
	text-indent: -18px;
	line-height: 1.3em;
}
li.dash:before {
	content: "\2012" "\00A0" " ";
	/*font-size: 1.05em;*/
}
li.arrow:before {
	content: "\27A4" "\2009";
	font-size: 0.88em;
}

p.stress { /*zur Zeit nicht gebraucht*/
	font-size: 1.1em;
	font-weight: 550;
}
strong {
	font-weight: 650;
	font-size: 1.02em;
}
b {
	font-weight: 600;
	font-size: 1.01em;
}
em {
	font-style: italic;
}
.background/*, .about*/ {
	padding: 15px; /*wie padding-left von #header, nav und main*/
	padding: var(--from20to10);
	background-color: #EBF1F7;
}
img.foto {
	width: 140px;
	width: var(--foto-width);
	height: 178px;
	height: var(--foto-height);
	margin-left: 11px;
	margin-left: var(--from16to6);
	margin-bottom: 11px;
	margin-bottom: var(--from16to6);
}
img.equations {
	margin-top: 18px;
}

@media screen and (min-width: 1000px) {
	.item-broader {
		/* flex-grow: 20; */
		flex-shrink: 1.08;
	}
}
/* .about {
	flex-basis: 50%;
}

.info-s {
	flex: 1 1 45%;
}
.info-b {
	flex: 1 1 55%;
} */


@media screen and (max-width: 1000px) /*and (max-aspect-ratio: 15/10)*/ {
	.flex-box {
		flex-wrap: wrap; }
}

/*Tabellenformatierungen*/
table.normal {
	table-layout: auto;
	height: auto;
	border-style: none;
	border-collapse: collapse;
	border-spacing: 0;
	-ms-hyphens: manual;
	-moz-hyphens: manual;
	-webkit-hyphens: manual;
	hyphens: manual;
}
table.normal th {
	padding: 0 1em 0.5em 0;
	font-weight: 600;
	font-size: 1.02em;
	white-space: nowrap;
	vertical-align: bottom;
	text-align: left;
}
	table.normal th:last-child {
		padding-right: 0;
		padding-left: 0;
		text-align: center;
		font-size: 1.01em;
	}
table.normal td {
	padding: 0.5em 1em 0.5em 0;
	border-style: solid none none none;
	border-width: thin;
	border-color: #000000;
	vertical-align: top;
	text-align: left;
}
	table.normal td:first-child, td:nth-child(2) {
		white-space: nowrap;
		-ms-hyphens: manual;
		-moz-hyphens: manual;
		-webkit-hyphens: manual;
		hyphens: manual;
	}
	table.normal td:nth-last-child(2) {
		padding-right: 0;
	}
	table.normal td:last-child {
		padding-right: 0;
		padding-bottom: 0;
		text-align: center;
		line-height: 1;
	}
	table.normal tr:last-child td {
		padding-bottom: 0;
	}
	button.download {
		border: none;
		padding-top: 4px;
		font-size: 0.99em;
		line-height: 1.1;
		background-color: transparent
	}

.popup {
	position: fixed;
	left: 50%;
	/* bottom: max(calc(8vh+10px, 35px)); */
	bottom: 60px;
	transform: translate(-50%);
	padding: 15px;
	outline: 20px solid white;
	border-style: solid;
	border-width: thin;
	background-color: rgb(249, 248, 248);
}

.grid-box {
	display: grid;
	grid-template-rows: auto;
	grid-template-columns: 388px auto;
	grid-template-columns: var(--input-width) auto;
	column-gap: 15px;
	column-gap: var(--from20to10);
}
@media (hover: none) {
	.grid-box {
		overflow-x: auto;
	}
}


/*.grid-box {
	grid-template-columns: max-content auto;
	column-gap: 15px;
	column-gap: var(--from20to10);
}
@media (hover: none) {
	.grid-box {
		overflow-x: auto;
	}
}*/
.instructions {
	position: sticky;
	padding: 11px 0;
	padding: var(--from16to6) 0;
	background-color: white;
	overflow: visible;
	z-index: 8;
}
.buttons, .input {
	grid-row-start: 1;
	grid-column-start: 1;
	justify-self: start;
	align-self: start;
	width: 388px;
	width: var(--input-width);
	width: 100%; /*!!!!!!!!!!!!!*/
}
.buttons {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	gap: 10px;
}
.buttons, .info {
	height: 24px;
	height: var(--buttons-height);
}
button.button {
	height: 100%;
}
input[type="submit"], button.button {
	width: 100%;
	height: 100%;
	padding-bottom: 2px;
	color: #000000;
	text-align: center;
	line-height: 1.45;
	font-size: 0.83em;
	white-space: nowrap;
	border: 1px solid #b4b4b4;
	-webkit-border-radius: 2px;
	border-radius: 3px;
	box-shadow: -0.5px -0.5px 4px 1px #a7a7a7 inset;
	cursor: pointer;
}
@media (hover: none) {
	input[type="submit"], button.button {
		padding-bottom: 0; }
}
button.button.example {
	width: min-content;
	padding-right: 10px;
	padding-left: 10px;
}
button.button.copy {
	width: 100%;
	margin-top: 6px;
	margin-top: var(--from8to4);
	padding-bottom: 3px;
	/* margin-bottom: 12px; */
	font-size: 0.8em;
	font-weight: 500;
}

.info, .result {
	grid-row-start: 1;
	grid-column-start: 2;
	justify-self: start;
	align-self: start;
}
.info {
	padding-right: 9px;
	padding-right: var(--from12to6);
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	gap: 30px;
	min-width: 370px;
	width: 100%;
	/* overflow: visible; */
}
label[for="how"] {
	width: max-content;
	padding-top: 1px;
	padding-left: 2px;
	display: flex; /* damit der Pfeil in der selben Zeile ist wie "How to ... */
	flex-direction: row;
	justify-content: start;
	flex-wrap: nowrap;
	cursor: pointer;
}
label[for="how"] h3:last-child {
	position: relative;
	top: 10px;
	/* padding-bottom: 2em; */
	font-weight: 800;
	font-size: 1.3em;
	transform: rotate(180deg);
}
#chevron {
	position: relative;
	top: 0.2em;
	bottom: 0;
	display: inline-block;
	border-right: 2px solid black;
	border-bottom: 2px solid black;
	height: 0.7em;
	width: 0.7em;
	/* margin-top: 0.2em;
	margin-bottom: 0; */
	transform: rotate(45deg);
	/* animation-name: rotate-chevron-up;
	animation-duration: 0.8s;
	animation-iteration-count: 1; */
}
@keyframes rotate-chevron-up {
	from { top: 0.2em; transform: rotate(45deg); }
	to { top: 0.6em; transform: rotate(225deg); }
}
#chevron.up {
	top: 0.6em;
	transform: rotate(225deg);
	/* animation-name: rotate-chevron-down;
	animation-duration: 0.8s;
	animation-iteration-count: 1; */
}
@keyframes rotate-chevron-up {
	from { top: 0.6em; transform: rotate(225deg); }
	to { top: 0.2em; transform: rotate(45deg); }
}
#chevron:hover {
	border-color: red;
	/* transform: rotate(360deg); */
}

.result {
	width: auto;
	max-width: calc(100vw - 15px - 15px - 388px - 11px);
	max-width: calc(100vw - 15px - var(--from20to10) - var(--input-width) - var(--from16to6));
	overflow: visible;
	animation-name: display-result;
	animation-duration: 0.8s;
	animation-iteration-count: 1;
}
@keyframes display-result {
	from { opacity: 0; }
	to { opacity: 1; }
}
input#how {
	display: none;
}
aside {
	height: 0;
	max-height: 0;
	min-width: 300px;
	width: auto;
	font-size: 0.89em;
	background-color: white;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.8s ease-out, opacity 1.5s ease-out;
}
#how:checked + aside, aside.permanent {
	height: auto;
	max-height: 100vh;
	padding: 0 11px 11px 2px;
	padding-right: var(--from16to6);
	padding-bottom: var(--from16to6);
	/* overflow: auto; */
	opacity: 1;
}

table.stat {
	/*margin-bottom: 10px;*/
	table-layout: fixed;
	border-collapse: collapse;
	border: 2px solid black;
	border-spacing: 0;
	text-align: left;
	white-space: nowrap;
	font-size: 0.89em;
	line-height: 1.2;
	overflow: hidden;
}
table.stat th, table.stat td {
	border: 1px solid black;
	padding: 3px 10px 4px 10px;
	vertical-align: middle;
	overflow: hidden;
}
table.stat td.field {
	padding-top: 2px;
	padding-bottom: 2px;
}
/* table.data td.field.bord-solid {
	padding-top: 2px;
	padding-bottom: 3px;
} */
table.stat td.note {
	/*padding-top: 3px;
	padding-bottom: 4px;*/
	font-size: 0.95em;
	white-space: normal;
}
table.stat th.l, table.stat td.l {
	text-align: left;
	padding-left: 10px;
}
table.stat th, table.stat td.c {
	font-weight: 400;
	text-align: center;
	padding-left: 1px;
	padding-right: 1px;
}
/*table.stat th.r, */table.stat td.r {
	text-align: right;
	padding-right: 7px;
	padding-left: 1px;
}
table.stat.results td.res.num {
	text-align: right;
	font-variant-numeric: tabular-nums;
}
table.general, table.data {
	width: 100%;
}
table.data {
	margin-top: 12px;
	margin-top: var(--from16to8);
}
table.results {
	margin-right: 11px; /*wie padding-right von main*/
	margin-right: var(--from16to6);
}
table.stat th.bord-top-0, table.stat td.bord-top-0 {
	border-top-style: none;
	padding-top: 2px;
}
table.stat td.bord-top-2 {
	border-top-width: 2px;
}
table.stat td.bord-righ-0 {
	border-right-style: none;
	padding-right: 2px;
}
table.stat th.bord-bot-0, table.stat td.bord-bot-0 {
	border-bottom-style: none;
	padding-bottom: 2px;
}
table.stat td.bord-left-0 {
	border-left-style: none;
}
table.data td.field {
	border-bottom-style: dashed;
	border-top-style: dashed;
}
table.data td.field.bord-solid {
	border-bottom-style: solid;
	border-top-style: solid;
}
table.general td.field, table.data td.field.bord-solid {
	padding-right: 1px;
}
input[type="text"], input[type="number"] {
	width: 100%;
	border-style: none;
	padding: 0;
	padding-block: 0;
	padding-inline: 0;
	/* vertical-align: middle; */
	font-size: inherit;
	line-height: 1em;
}
input[type="text"]:focus, input[type="number"]:focus {
	outline: 1px solid #a7a7a7;
}
::placeholder {
	/*padding-right: 0;*/
	color: #a7a7a7;
}
input[type="number"] {
	appearance: textfield;
	text-align: right;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
table.general input[type="number"] {
	text-align: left;
}
table.general input[type="number"].padl1 {
	padding-left: 1ch;
}
table.data input[type="number"].padDot1 {
	padding-right: calc(3px + 1ch);
}
table.data input[type="number"].padDot2 {
	padding-right: calc(3px + 2ch);
}
table.data input[type="number"].padDot3 {
	padding-right: calc(3px + 3ch);
}
table.data input[type="number"].padDot4 {
	padding-right: calc(3px + 4ch);
}
table.data input[type="number"].padDot5 {
	padding-right: calc(3px + 5ch);
}
table.data input[type="number"].padDot6 {
	padding-right: calc(3px + 6ch);
}
table.data input[type="number"].padDot7 {
	padding-right: calc(3px + 7ch);
}
table.data input[type="number"].padDot8 {
	padding-right: calc(3px + 8ch);
}
table.data input[type="number"].padDot9 {
	padding-right: calc(3px + 9ch);
}
table.data input[type="number"].pad1 {
	padding-right: 1ch;
}
table.data input[type="number"].pad2 {
	padding-right: 2ch;
}
table.data input[type="number"].pad3 {
	padding-right: 3ch;
}
table.data input[type="number"].pad4 {
	padding-right: 4ch;
}
table.data input[type="number"].pad5 {
	padding-right: 5ch;
}
table.data input[type="number"].pad6 {
	padding-right: 6ch;
}
table.data input[type="number"].pad7 {
	padding-right: 7ch;
}
table.results td.res.padDot3-10 {
	text-align: right;
	padding-right: calc(14px + 3ch);
}
/*Colors of buttons and tables*/
input[type="submit"], button.button, input[type="text"], input[type="number"] {
	background-color: #ffff9b;
}
input:-internal-autofill-selected {
	background-color: #ffff9b !important;
}
button.button.print {
	background-color: #EBF1F7;
	background-color: #8bb5d7;
	background-color: #b9d2e7;
}
button.button.print.disabled {
	color: #cccccc;
	background-color: #f3f3f3;
}
button.button.clear, button.button.copy {
	background-color: #ffffe6;
}
table.general, table.data {
	width: 100%;
	background-color: #ffffcc;
	background-color: #ffffe6;
}
table.general td.field, table.data td.field {
	background-color: yellow;
	background-color: #ffff4d;
	background-color: #ffff67;
	background-color: #ffff81;
	background-color: #ffff9b;
}














p.note {
	padding-top: 8px;
	padding-bottom: 0;
	font-size: 0.96em;
	line-height: 1.3;
}
.warn {
	color: #ff4314;
}



/*Sonderformatierungen für Schriften*/
/*.math {
	font-family: 'Calibri';
}*/
.nbsp- {
	word-spacing: 0.3em;
}
.ensp- {
	word-spacing: 0.6em;
}


.unbold {
	font-weight: normal;
}
sup {
	font-size: 0.7em;
	line-height: 0;
}
sub {
	font-size: 0.7em;
	line-height: 0;
}
.further {
	padding-top: 1em;
}
.bigger {
	font-size: 1.04em;
}
.biggest {
	font-size: 2em;
}
.small {
	font-size: 0.99em;
}
.smaller {
	font-size: 0.98em;
}
.smallest {
	font-size: 0.8em;
}
.dense {
	letter-spacing: -0.01em;
}
.close {
	padding-top: 0.25em;
}
.closer {
	padding-top: 0.1em;
	/*line-height: 1.2;*/
}
.small-caps {
	font-variant: small-caps;
}
.low {
	line-height: 1.1;
}
.lower {
	line-height: 1;
}

/*Umbrüche*/
.wrap {
	white-space: nowrap;
}
	@media screen and (max-width: 625px), screen and (max-height: 420px), screen and (max-width: 700px) and (max-height: 500px) {
		.wrap {
			white-space: normal; }
	}
.no-wrap {
	white-space: nowrap;
}

@media screen and (min-width: 700px) {
	.no-show {
		display: none; }
}
@media screen and (max-width: 700px) {
	.show {
		display: none; }
}
@media screen and (max-width: 1320px) {
	.br-0 {
		display: none; }
}
@media screen and (min-width: 1320px) {
	.sp-0 {
		display: none; }
}
@media screen and (max-width: 1300px) {
	.br-1 {
		display: none; }
}
@media screen and (min-width: 1300px) {
	.sp-1 {
		display: none; }
}
@media screen and (max-width: 1250px) {
	.br-2 {
		display: none; }
}
@media screen and (min-width: 1250px) {
	.sp-2 {
		display: none; }
}
@media screen and (max-width: 1200px) {
	.br-3 {
		display: none; }
}
@media screen and (min-width: 1200px) {
	.sp-3 {
		display: none; }
}
@media screen and (max-width: 1150px) {
	.br-4 {
		display: none; }
}
@media screen and (min-width: 1150px) {
	.sp-4 {
		display: none; }
}
@media screen and (max-width: 1100px) {
	.br-5 {
		display: none; }
}
@media screen and (min-width: 1100px) {
	.sp-5 {
		display: none; }
}

/*a:hover, a:active, button.download:hover, button.download:active, button.button:hover, button.button:active, input[type="submit"]:hover {
	color: #ff4314;
}*/
a:hover, a:active, button:hover, button:active, input[type="submit"]:hover, .chevron:hover {
	color: #ff4314;
}

/*Am Ende, damit die Abstände immer gleich sind*/
/* main + *,  */main h2:first-of-type, /* .background + *,  */.background h3:first-of-type, .first {
	padding-top: 0;
	margin-top: 0;
}
main > :last-child, .background > :last-child {
	padding-bottom: 0;
}
p.print {
	display: none;
}