:root {}
* {
	-moz-box-sizing: border-box;   -webkit-box-sizing: border-box;   box-sizing: border-box;
    margin: 0; padding: 0;
}

html {
	background-color: white;
	font-family: Montserrat,Verdana,Geneva,sans-serif;   
	font-size: 1em;   font-weight: 500;
	line-height: 1.7em;
}

body {
	background-color: white;   background-image: url("images/headline.jpg");   background-repeat: no-repeat;   background-size: 66.30em auto;   background-position: 0 0;
}

#skip-to-main {
	grid-area: none;
	text-align: center;
	width: 100%;
	position: fixed;   left: -100%;
	padding: 0.2em;	
}
#skip-to-main:focus {
	left: 0;
}


/*== Standard-Elemente =======================================================================================================================================*/

[hidden] {
	display: none;
}

a {
	color: #930;
}

a:hover {
	color: #f93;
}

a:focus {
	color: black;   background-color: #fb7;
	text-decoration: none;
}

audio {
	width: 100%;
	margin-bottom: 0.5em;
}

code, a[href$=".mp3"], a[href$=".pdf"], a[href$=".zip"]
{
	font-family: "Courier New", Courier, monospace;
	font-size: 1.1em;
}

fieldset {
	border:none;
}

h1 {
	grid-area: title;
	font-size: 1em;
	display: block;
	height: 13em;
}
h1 > a {
	color: rgba(0,0,0,0);
	display: block;
	height: 100%;   width: 100%;
}
h1 > a:hover, h1 > a:focus {
	color: rgba(0,0,0,0);
	background-color: rgba(0,0,0,0);
}
h2 {
	font-weight: 700;   font-size: 1.6em;
	margin-bottom: 0.9em;
	border-bottom: solid 0.1em #f93;
}
h3 {
	font-weight: 700;   font-size: 1.4em;
	margin-top: 1.8em;   margin-bottom: 0.7em;
	border-bottom: solid 0.11em #eee;
}
h4 {
	font-weight: 700;   font-size: 1.1em;
	margin-top: 2em;   margin-bottom: 0.5em;
}
h5 {
	font-weight: 600;   font-size: 1em;
	margin-top: 1em;
}

hr {
	display: none;
}

img {
	border:none;
}

p {
	margin-bottom: 0.5em;
}

q:before {
	content: "»";
}

q:after {
	content: "«";
}

pre {
	font-family: "Courier New", Courier, monospace;   line-height: 1.2em;
	margin-bottom: 0.5em;
	white-space: pre-wrap;
}

small {
	font-size: 0.9em;   line-height: 1em;
}

strong {
	font-weight: 700;
}

sub {
	font-size: 0.6em;   line-height: 1em;
	vertical-align: top;
}

dt {
	
}

dd {
	margin-bottom: 0.5em;   margin-left: 1em;
}


/*-- Listen ------------------------------------------------------------------------------------------------------------------------- */

dl, ol, ul {
	margin-bottom: 0.5em;
}

ol {
	padding-left: 2em;
}

ul {
	padding-left: 1em;
}

h5 + * {
	font-size: 0.95em;
}

ol.timestamps {
	padding-left: 0;
}
ol.timestamps li {
	display: grid;
	grid-template-columns: 4em auto;
}
ol.timestamps .time {
	display: block;
	grid-column: 1;
	font-weight: 600;
}
ol.timestamps p {
	grid-column: 2;
}

#footer ul {
	list-style: none;
}

#footer li {
	display: inline;
}

/*== Klassen für Standard-Elemente (Variationen) ================================================================================================ */

.jump-link {
	color: #999;
	font-size: 0.9em;
	float: right;
}
.jump-link:hover {
	color: #000;
}
.mentionable:target {
	background-color: #f93;
	animation: mentionable-animation 0.5s steps(2, start) infinite;
	-webkit-animation: mentionable-animation 0.5s steps(2, start) infinite;
}
@keyframes mentionable-animation {
  to {
    background-color: white;
  }
}
@-webkit-keyframes mentionable-animation {
  to {
    background-color: white;
  }
}

.news-date {
	font-weight: 600;
}

.list-year {
	font-weight: 600;
	display: inline-block;
	width: 3em;
}

.tombstone {
	text-align: center;
}


/*== Grund-Layout ============================================================================================================================================*/

body {
	width: 100%;   overflow-y: scroll;
	padding: 0 1.5em;
	display: grid;   grid-row-gap: 1em;
	transition: grid-column-gap 0.1s, padding 0.1s;   -webkit-transition: grid-column-gap 0.1s, padding 0.1s;
}

#sidebar {
	grid-area: aside;
}

#footer {
	grid-area: footer;
	margin: 3em 0em 1em;
}

#main {
	grid-area: main;
}

#nav {
	grid-area: nav;
	margin-bottom: 2em;
	height: 100%;   width: 100%;
}

/* schmaler als */
@media not screen and (min-width: 38em){
	body {
		grid-template-columns: 100%;
		grid-template-rows: 12em repeat(3, auto);
		grid-template-areas:  "title"  "main"  "aside"  "footer";
	}
	#nav {
		grid-area: none;   position: fixed;   top: 0;   left: 0;
		display: none;
	}
}

/* ab dieser Breite */
@media screen and (min-width: 38em){
	body {
		grid-template-columns: 10em auto;
		grid-template-rows: 12em repeat(3, auto);
		grid-template-areas:  "title title"  "nav main"  "nav aside"  "footer footer";
	}
}

/* schmaler als */
@media not screen and (min-width: 45em){
	body {
		grid-column-gap: 2em;
		padding: 0 1em;
	}
}

/* ab dieser Breite */
@media screen and (min-width: 45em){
	body {
		grid-column-gap: 3.5em;
		padding: 0 2em;
	}	
}

/* ab dieser Breite */
@media screen and (min-width: 52em){
	body {
		grid-template-columns: 10em auto 10em;
		grid-template-rows: 12em auto auto;
		grid-template-areas:  "title title title"  "nav main aside"  "footer footer footer";
		grid-column-gap: 2em;
		padding: 0 1em;
	}
}

/* ab dieser Breite */
@media screen and (min-width: 60em){
	body {
		grid-column-gap: 3.5em;
		padding: 0 2em;
	}
}

/* ab dieser Breite */
@media screen and (min-width: 66em){
	body {
		border: solid 0.15em;   border-radius: 0.2em;
		box-shadow: 0em 0.3em 0.5em 0.2em grey;   -moz-box-shadow: 0em 0.3em 0.5em 0.2em grey;   -webkit-box-shadow: 0em 0.3em 0.5em 0.2em grey;
		background-position-x: center;
		max-width: 66.30em;
		margin: 1em auto 2em;
	}
}


/*== Navigation =============================================================================================================================================*/

#nav a {
	color: #000;
	font-size: 1.1em;   font-weight: 700;   text-decoration: none;
	display: block;
	padding: 0.2em 0.4em 0.3em;
	transition: background-color 0.1s;   -webkit-transition: background-color 0.1s;
}

#nav a:hover, #nav a:focus {
	color: #000;
	background-color: #f93;
	transition: background-color 0s;
	-webkit-transition: background-color 0s;
}

#nav .open-1 { background-color:#953; color:white; }

#nav .open-2 { background-color:#d84; }

#nav .open-3 { background-color:#fb7; }

#nav .open-4 { background-color:#fdb; }

/* durchsichtige Fläche unter Mobile-Menü */
#nav label {
	position: fixed;   top: 0;   left: 0;
	background-color: rgba(0,0,0,0.7);
	height: 100%;   width: 100%;
}

#nav li {
	margin-bottom: 0;
}

#nav > ul {
	background-color: white;
	border: solid 0.15em;   border-radius: 0.2em;
	position: sticky;   position: -webkit-sticky;
	top: 1em;
}
/* schmaler als */
@media not screen and (min-width: 38em){
	#nav > ul {
		position: fixed;   top: 5em;   left: 0; left: calc(1em + 0em);   z-index: 1;
		width: 100%; width: calc(100% - 2em);
	}
}

#nav > ul > li > ul > li > a
{
	padding-left: 0.6em;
}

#nav > ul > li > ul > li > ul > li a
{
	padding-left: 0.8em;
}

#nav ul {
	list-style-type: none;
	margin: 0;   padding-left: 0;
}


/*-- Menü-Einklapp-Funktionalität ----------------------------------------------------------------------------------------------------------------*/

#menu-on-off-switch {
	position: fixed;   left: -2em;   width: 1em;   height: 1em;
}

#menu-on-off-switch + label {
	position: fixed;   right: 1em;   top: 1em;   z-index: 2;
	background-image: url("images/buttons.png");   background-repeat: no-repeat;   background-position: -0.1em -0.1em;
	width: 3em;   height: 3em;   background-size: 3.2em auto;
}

#menu-on-off-switch + label span {
	font-size: 0;
}

#menu-on-off-switch + label:hover, #menu-on-off-switch:focus + label {
	background-position: -0.1em -3.3em;
}

/* schmaler als */
@media not screen and (min-width: 38em){
	#menu-on-off-switch, #menu-on-off-switch + label,
	#menu-on-off-switch:checked ~ #nav, #menu-on-off-switch ~ #nav label {
		display:block;
	}
}


/*== Seitenzeugs ============================================================================================================================================*/

#sidebar {
	font-size: 0.9em;   font-weight: 500;
	line-height: 1.33em;
}

#sidebar q {
	display: block;
	margin: 0 0.8em 0.4em;
	text-align: center;
}

#sidebar q + cite {
	font-size: 0.9em;   font-weight: 600;
	display: block;
	margin-bottom: 2.5em;
	text-align: center;
}

/* ab dieser Breite */
@media screen and (min-width: 52em){
	#sidebar h3 {
		display: none;
	}
}


/*== Gefüßel =========================================================================================================================*/

#footer {
	font-size: 0.9em;   text-align: center;
}


/*  Schriften  ========================================================================================================*/

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/montserrat-v12-latin-500.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Medium'), local('Montserrat-Medium'),
       url('fonts/montserrat-v12-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/montserrat-v12-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/montserrat-v12-latin-500.woff') format('woff'), /* Modern Browsers */
       url('fonts/montserrat-v12-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/montserrat-v12-latin-500.svg#Montserrat') format('svg'); /* Legacy iOS */
}
/* montserrat-500italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 500;
  src: url('fonts/montserrat-v12-latin-500italic.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Medium Italic'), local('Montserrat-MediumItalic'),
       url('fonts/montserrat-v12-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/montserrat-v12-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/montserrat-v12-latin-500italic.woff') format('woff'), /* Modern Browsers */
       url('fonts/montserrat-v12-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/montserrat-v12-latin-500italic.svg#Montserrat') format('svg'); /* Legacy iOS */
}
/* montserrat-600 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/montserrat-v12-latin-600.eot'); /* IE9 Compat Modes */
  src: local('Montserrat SemiBold'), local('Montserrat-SemiBold'),
       url('fonts/montserrat-v12-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/montserrat-v12-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/montserrat-v12-latin-600.woff') format('woff'), /* Modern Browsers */
       url('fonts/montserrat-v12-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/montserrat-v12-latin-600.svg#Montserrat') format('svg'); /* Legacy iOS */
}
/* montserrat-600italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 600;
  src: url('fonts/montserrat-v12-latin-600italic.eot'); /* IE9 Compat Modes */
  src: local('Montserrat SemiBold Italic'), local('Montserrat-SemiBoldItalic'),
       url('fonts/montserrat-v12-latin-600italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/montserrat-v12-latin-600italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/montserrat-v12-latin-600italic.woff') format('woff'), /* Modern Browsers */
       url('fonts/montserrat-v12-latin-600italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/montserrat-v12-latin-600italic.svg#Montserrat') format('svg'); /* Legacy iOS */
}
/* montserrat-700 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/montserrat-v12-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Bold'), local('Montserrat-Bold'),
       url('fonts/montserrat-v12-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/montserrat-v12-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/montserrat-v12-latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/montserrat-v12-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/montserrat-v12-latin-700.svg#Montserrat') format('svg'); /* Legacy iOS */
}
/* montserrat-700italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  src: url('fonts/montserrat-v12-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Bold Italic'), local('Montserrat-BoldItalic'),
       url('fonts/montserrat-v12-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/montserrat-v12-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/montserrat-v12-latin-700italic.woff') format('woff'), /* Modern Browsers */
       url('fonts/montserrat-v12-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/montserrat-v12-latin-700italic.svg#Montserrat') format('svg'); /* Legacy iOS */
}
