@charset "utf-8";
/* CSS Document */
html, body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	background-color:#c4b697;
	height: 100%;
	
}
header {
	width:100%;
}

h1 {font-size: xx-large;
	color: white;
 	margin-bottom: 10px;
	margin-top: 0px;
	text-align: center;}		

article {border: 1px solid white;
	border-radius:10px;
	padding-bottom:10px;
	padding-left:20px;
	padding-right:20px;
	padding-top:10px;
	height:100%;
}

footer {background-color:#c4b697;
	clear:left;
	color:#ffffff;
	font-size:large;
	font-style:italic;
	font-weight:bolder;
	padding-bottom:10px;
	padding-top:10px;
	text-align:center;
	width: 100%;}

#hilfscontainer {
	margin:0px auto;
	max-width:1024px;
}
#bereichlogo {
	background-color:#c4b697;
	background-image: url(../images/header_website.png);
	background-repeat: no-repeat;
	background-size:contain;
	background-position: center;
	height:193px;
}
#bereichlogo {
	width: 100%;
}
	
/*Steuerung / Navigation*/
	
.menue-button {
	display: none;
}			
#steuerung li {
	list-style: none;
	float: left;
	display:block;
	margin:10px;
}
#steuerung a {
	display: block;
	height: 100%;
	width: 100%;
	padding: 0.5em;
	text-decoration: none;
	color: #ffffff;
	background-color: #c4b697;
    display:block;
	border-radius:10px;
	border-style:solid;
	border-width: 1px; 
  	border-color: #c4b697;
}	
#steuerung a:hover {
	color: black;
	background: #ffffff;
}
#steuerung {
}

ul {margin:0; 
    padding:0;
    width:100%;
    list-style-type:none;
	font-size:large;
	text-align:center;
}

/* CSS erweitern um MENÜ-Button und entsprechende Steuerung */
/*	Menü-Button oben rechts einblenden bei kleiner als 600px */
@media only screen and (max-width:680px) {
	.menue-button {
		display: block;
		background-color: #c4b697;
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		padding: 0.5em;
		color: white;
		cursor: pointer;
		text-decoration: none;
	}	
	#bereichlogo {
		background-image: url(../images/header_website_mobile3.png);
		background-position: left;
		width: 85%;
		height:75px;
	}
	#steuerung {
		font-size:large;
		float: left;
		width: 95%;
		display: none;
	}	
	#steuerung a {
		border-radius: 10px;
		border-style: solid;
		border-width: 1px; 
  		border-color: #ffffff;
	}
	#steuerung li {
		width: 95%;
		margin:2px;
	}	
	.menue-button:hover {
		color: black;
		background: orange;
	}
}
/* die Magie, um die Steuerung einzublenden (auch auf mobile Devices) */
#nav-menue:target #steuerung {
	display: block;
}
/* ausblenden des Menü-Buttons zum öffnen - somit wird der zum Schließen sichtbar */
#nav-menue:target .menue-button-beschr-open {
	display: none ; 
}	
/* Allgemein Anweisungen */
section {
	/*padding: 0.5em;*/
	float: left;
	width: 100%;
}
h1, p {
	margin: 0.5em 0 0 0;
}	

A.mail_links {border-style:none; margin:0; padding:0;}
A.mail_links:link    {color:green; background-color:transparent; text-decoration:underline}
A.mail_links:visited {color:pink; background-color:transparent; text-decoration:underline}
A.mail_links:hover   {color:red; background-color:transparent; text-decoration:underline}
A.mail_links:active  {color:yellow; background-color:transparent; text-decoration:underline}

dl {color: white;}

dt {
	margin: 0;
	padding: 0;
/*	font-weight: bold;*/
	font-style: italic;
}

dd {
	margin: 0 0 1em 0;
	padding: 0;
}

p { 
   	-moz-hyphens: auto;
   	-o-hyphens: auto;
   	-webkit-hyphens: auto;
   	-ms-hyphens: auto;
   	hyphens: auto; 
	color: white;
}