* {
    margin: 0;
    padding: 0;
}

body {
    background-color: silver;
    font-family: Arial, sans-serif;
    background-image: url(bilder/hintergrund-bild.jpg);
    background-attachment: fixed;
    background-size: 100% 100%;
    text-align: center;
}

header, nav, footer, article {
    display: block;
}

#wrapper {
    width: 900px;
    margin: 0 auto; 
    background-image: url(bilder/hintergrund-inhalt.png); 
    text-align: left;    
}

header {
    background-image:   url(bilder/verlauf.png),
                        url(bilder/hintergrund-kopf.png);
    background-repeat: no-repeat;
    background-position: right 150px, center;
    height: 150px;
    width: 900px;
    margin: 0 auto;
}

#logotext {
    padding-top: 130px;
    font-size: 0.5em;
    font-weight: bold;
}

header p {
    text-align: right;
    color: white;
    padding-right: 20px;
    text-shadow: 1px 1px 4px black;
}

header a {
    color: white;
    text-decoration: none;
}

header a:hover {
    text-decoration: underline;
}

#steuerungoben {
    height: 1.5em;
    background-image: url(bilder/durchsichtiges-grau.png);
}

#steuerungoben ul {
    list-style-type: none;
}

#steuerungoben li {
    display: inline-block;
}

#steuerungoben a {
    display: inline-block;
    width: 330px;
    text-align: center;
    text-decoration: none;
    line-height: 1.5em;
    color: white;
}

#steuerungoben a:hover {
    background-image: url(bilder/durchsichtiges-grau.png);
}

#steuerunglinks {
    width: 220px;
    float: left;
    margin-top: 20px;
}

#steuerunglinks ul {
    padding-left: 2em;
    list-style-type: none;
    color: #945e37;
}

#steuerunglinks ul ul {
    list-style-type: square;
    padding-top: 0.5em;
    padding-left: 1em;
} 

#steuerunglinks li {
    padding-bottom: 0.8em;
}

#steuerunglinks a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    color: #945e37;
}

#steuerunglinks a:hover {
    text-decoration: underline;
    -webkit-animation-name: animation_steuerung_links;
    animation-name: animation_steuerung_links;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@-webkit-keyframes animation_steuerung_links {
    0%   { color: #945e37; }
    50%  { color: blue; }
    100% { color: #945e37; }
}

@keyframes animation_steuerung_links {
    0%   { color: #945e37; }
    50%  { color: blue; }
    100% { color: #945e37; }
}

article {
    width: 650px;
    height: auto;
    float: left;  
    margin-left: 20px;
}
.bild {
    float: right;
    width: auto;
    height: 150px;
    margin-left: 15px;
    border: 1px solid black;
}


article h1 {
    padding-top: 20px;
    padding-bottom: 0.2em;
    font-size: 1.8em;
    color: #e18f54; 
}

article h2 {
    color: #e18f54; 
    padding-top: 0.6em;
    padding-bottom: 0.2em;
    font-size: 1.4em;
}

article p {
    padding-bottom: 1em;
    line-height: 1.4em;
}

article ul, article ol {
    padding-left: 2em;
    padding-bottom: 1em;
}

article li {
    line-height: 1.4em;
}

footer {
    color: white;
    clear: both;
    background-image: url(bilder/durchsichtiges-grau.png);
    text-align: center;
    height: 1.5em;
    line-height: 1.5em;    
}

footer a {
    color: white;
    text-decoration: none;
}

.schriftklein {
    font-size: 0.9em;
}

.slicknav_menu {
	display:none;
}

@media only screen and ( min-width: 45em ) and ( max-width: 56.25em) {
	article {
		width: 62%;
	}
	
	#steuerungoben { 		
		display: none;
	}

	.slicknav_menu {
		display:none;
	}	
	
	#wrapper,
	header {
		width: 100%;
	}

	#wrapper {
		background-image: url(bilder/hintergrund-inhalt-2.png);   
	}
		
}

@media only screen and ( max-width: 45em ) {
	article {
		float: none;
		width: 90%;
		margin: 0 auto;
	}		
	
	#steuerungoben,
	#steuerunglinks { 		
		display: none;
	}	

	.slicknav_menu {
		display:block;
	}

	.slicknav_nav a {
		text-align: left;
	}	
	
	#wrapper,
	header {
		width: 100%;
	}	

	header {		
		height: 122px;
		background-position: right bottom, center bottom;
	}	

	#logotext {
		padding-top: 15px;
	}	
	
	
	
	#wrapper {
		background-image: none;
		background-color: hsla(0, 50%, 100%, 0.9);
	}

}