@charset "utf-8";
/* CSS Document */


* {
	margin: 0;
	padding: 0;
/*	font-family: Arial, sans-serif;*/
}
header {
	display: inline;	
	background-color: gray;
	width: 100%;
	float: left;
	border-bottom: 1px solid black;
}

#logo {
	color: white;
/*	background-color: #87cefa;		*/
	display: block;
	padding: 0.1em;
	text-decoration: none;
	float: left;	
}

#logo {
	width: auto;
}

#logo_icon {
	border: 0;	
	height: 35px;	
}

#info_banner{
	display: inline;	
	padding: 0.1em;
/*	padding: 0;*/
	color:#FFF;
/*	border: 1px solid #000;	*/
	float: left;
/*	font:Georgia, "Times New Roman", Times, serif;	*/
}
#info_banner{
	font-size:0.9em; 
}

#steuerung {
	float: right;
}

#steuerung li {
	list-style: none;
	float: left;
}

#steuerung a {
	display: block;
	height: 20px;
	width: 100%;
	padding: 0.5em;
	text-decoration: none;
	color: white;
	background-color: gray;
}	

#steuerung a:hover {
	color: black;
	background: #87cefa;
}

.menue-button {
	display: none;
}		

#submenu a{	
	background-color:	#7DD779;
	width:100px;	
}

/* CSS erweitern um MENÜ-Button und entsprechende Steuerung */
/*	Menü-Button oben rechts einblenden bei kleiner als 600px */
@media only screen and (max-width:600px) {
	#logo {
		width: 100%;
	}
	
	#logo_icon {			
		height: 33px;	
	}
	
	#info_banner{
/*		display: none;*/
		font-size:0.4em; 
	}	
	
	.menue-button {
		display: block;
		
		border: 1px solid black;
	}
	.menue-button {
		background-color: gray;
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		padding: 0.5em;
		color: white;
		cursor: pointer;
		text-decoration: none;
	}	
	.menue-button:hover {
		color: black;
/*		background: #7DD779;*/
		background: #700;
	}	
	#logo {
		width: 100%;
	}
	#steuerung {
		float: left;
		width: 100%;
		display: none;
	}	
	#steuerung li {
		width: 100%;
		border-bottom: 2px solid silver;
	}	


	#submenu a{	
		margin-left:20px;	
		background-color:	#7DD779;
		width:100px;	
	}		
}
/* 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;
}
nav > ul ul {
	display: none;
	position: absolute;	
	width:100px;	
}

nav > ul li:hover > ul{
	display: block;		
}	