@charset "utf-8";

html, body{	
	margin: 0 auto;
	padding: 0;
	
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	-o-hyphens: auto;
	hyphens: auto;
	
	cursor: default;
	
	text-align: center;
}

body{
	font-family: "Arial", sans-serif;
	font-size: 16pt;
	
	color: black;
	
	background: white url('../graphics/jpeg/background.jpg');
	
	text-align: center;
}

h1{
	font-size: 36pt;
	font-weight: bold;
}

h2{
	font-size: 24pt;
	font-weight: bold;
}

h3{
	font-size: 18pt;
	font-weight: bold;
}

h4{
	font-size: 16pt;
	font-weight: bold;
}

h5{
	font-size: 12pt;
	font-weight: bold;
}

a{
	text-decoration: none;
	
	color: gold;
}
a:hover{text-decoration: underline;}

dl, article, figure{
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	
	display: inline-block;
}

dl{
	margin: 0 auto;
	padding:12px;
}

dt{
	font-weight: bold;
}

fieldset{
	margin: 0 auto;
	margin-bottom: 48px;
	
	padding: 12px;
	
	border: 1px solid steelblue;
	border-radius: 5px;
	
	text-align: justify;
}

legend{
	font-size: 14pt;
	font-style: italic;
	
	color: steelblue;
}
legend a{color: black;}

#Datenbank{
	display: none;
}

.video-container{
	position: relative;
	
	padding: 0;
	
	height: 0;
	
	overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed{
	position: absolute;
	top: 0;
	left: 0;
	
	width: 100%;
	height: 100%;
}

iframe{
	box-shadow:2px 2px 5px black;
}

.cell{
	display: inline-block;
	
	width: 100px;	
}

.nachricht{
	column-count: 2;
}


/* Header - Bereich */
header{
	
	margin: 0 auto;
	padding: 0;
	
	width: 100%;
	height: auto;
	
	background-color: black;
	
	box-sizing: border-box;
}

text{
	font-weight: bold;
}

nav{
	margin: 0 auto;
	padding: 0;
	
	width: 100%;
	
	background-color: navy;
	color: white;
	
	text-align: center;
}
.menu{
	margin: 0 auto;
	padding: 0;
	
	max-width: 1200px;
	
	list-style: none;
	
	cursor: pointer;
	
	color:white;
}

.menu li{
	margin: 0;
	padding: 16px 12px;
}
.menu li.active, .menu li:hover{
	background-color: white;
	color: black;
}

main{
	margin: 0 auto;
	padding: 0;
	
	width: 100%;
	min-height: 300px;
	
	overflow: auto;
	
	background-color: none;
	color: black;
}
main a{color: black;}

footer{
	margin: 0 auto;
	padding: 12px;
	
	background-color: navy;
	color: white;
	
	text-align: left;
	vertical-align: top;
	
	box-sizing: border-box;
}


@media all and (min-width: 800px){
.menu{
	
	max-width: 1200px;
	
	column-count: 5;
	
	border-bottom: 1px solid navy;
}

.menu li.active, .menu li:hover{
	background-color: white;
	color: black;
}

main{
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: row;
	flex-flow: row;		
}

article{
	margin: 0 auto;
	padding: 12px;
	
	-webkit-flex: 3 1 0%;
	flex: 3 1 0%;
	
	-webkit-order: 2;
	order: 2;

}

aside.left{
	margin: 0 auto;
	padding: 12px;
	
	-webkit-flex: 1 1 0%;
	flex: 1 1 0%;
	
	webkit-order: 1;
	order: 1;
	
	border-right: 1px solid navy;
}
aside.right{
	margin: 0 auto;
	padding: 12px;
	
	-webkit-flex: 1 1 0%;
	flex: 1 1 0%;
	
	webkit-order: 3;
	order: 3;
	
	border-left: 1px solid navy;
}

footer{
	margin: 0 auto;
	padding: 12px;
	
	width: 100%;
	
	column-count: 2;
	column-gap: 24px;
	
	background-color: black;
}
