/* Kleiner Reset * * * * * * * * */
* {
	padding: 0;
	margin: 0;
}

* { box-sizing: border-box; }
html, body { 
	font-family: lato, sans-serif;
}
html {background-color: darkgrey;}

/* Standard-CSS-Angaben & Angaben für kleinere Bildschirme * * * * * * * * */

body {
	margin: 0 auto; /* Zentriert das Layout */
	width: 100%; /* Definiert die Gesamtbreite des Layouts */
	max-width: 480px;
	background-color: rgb(250, 250, 250);
}

.kopfbild {
	max-width: 100%;
	height: auto;
}

header {
	background-color: rgb(26, 88, 117);
	float: left; 
	width: 100%;
	margin-bottom: 0px;
	color: white;
}

#mission {
	text-align: right;
	font-weight: 400;
	font-size: 1.3rem;
	padding: 0 1rem 1rem 1rem;
	margin-top: 0;
}

.sendung {
	color: rgb(147, 197, 110);
	font-weight: 700;
}

#subnavigation{
	background: #999;
	height: 250px; /* Nur zur Sichtbarkeit im Browser, solange kein Inhalt da ist */
	float: left; 
	width: 100%;
}
/*
#content{
	background: rgb(250, 250, 250);
	float: left;
	width: 100%;
	margin-bottom: 0px;
	padding: 0;
}
*/
#sidebar{
	background-color: rgb(26, 88, 117);
	float: right; 
	width: 100%;
	margin-bottom: 0px;
}
/*
#titulus {
	background-color: rgb(26, 88, 117);
	color: white;
	padding: 1rem;
}

#spur {
	text-align: right;
	font-weight: 400;
	font-size: 1.5rem;
	margin-top: -1rem;
}
*/
article {
	color: black;
	padding: 1rem;
	-webkit-hyphens: auto;
	hyphens: auto;
	text-align: left;
	border-bottom: solid 7px rgb(147, 197, 110);
}

div.podcast {
	padding: 0 1rem;
}

h1 {
	display: block;
	float: left;
	color: rgb(227, 145, 65);
	font-size: 2.7rem;
	margin-bottom: 2rem;
}

.podcast img {
	display: block;
	float: right;
	width: 30%;
	margin-top: 0.5rem;
}

.podcast h2, .podcast h3 {
	clear: both;
	font-size: 1.2rem;
	font-weight: 400;
}

.h1_normal {
	font-size: 2.0rem;
	margin-top: 0.5rem;
}

.podcast h2 {
	font-weight: 600;
	color: rgb(26, 88, 117);
}

.podcast p {
	margin-top: 1rem;
	font-size: 1rem;
	clear:both;
}

.kursiv { font-style: italic; }

.audio_wrapper {
	margin-top: 1rem;
}
audio {
	margin: 0 auto;
	display: block;
}

ul {
	color: white;
	font-weight: 600;
	list-style-type: none;
	padding: 1rem;
	margin-bottom: 1rem;
}

li {
	border: solid 3px rgb(147, 197, 110);
/*	height: 4rem; */
	margin-bottom: 8px;
	text-align: center;
	font-size: 2.0rem;
	line-height: 3.5rem;
/*	vertical-align: middle; */
	border-radius: 0.7rem;
	background-color: rgb(147, 197, 110);
}

.inlineBlock {
	display: inline-block;
}

.freelink:link {
	color: white;
	text-decoration: none;
	font-size: 70%
}

.navlink:visited {
	color: white;
}

.navlink:link {
	color: white;
	text-decoration: none;
	font-size: 70%
}

.freelink:visited {
	color: white;
}


li:hover {
	background-color: rgb(227, 145, 65);
}

li:active {
	background-color: rgb(227, 145, 65);
	border-color: white;
}

.abstand {
	margin-bottom: 2rem;
}

.textlink:link {
	color: rgb(147, 197, 110);
}
.textlink:visited {
	color: rgb(147, 197, 110);
}
.textlink:hover {
	color: rgb(227, 145, 65);
}
.textlink:active {
	color: rgb(227, 145, 65);
}

/*
@media only screen and (min-width: 768px) {   
/*  CSS für Smartphones (Landscape) & kleine Tablets */
/*
#content{
	width: 75%;
}

#sidebar{
	height: 500px; 
	width: 20%;
}

}


@media only screen and (min-width: 1024px) {   
/*  CSS für Tablets (Landscape), Laptops  */ 
/*
#wrapper {
	max-width: 1200px; 
}

#subnavigation{
	height: 500px; 
	width: 20%;
	margin-left: -75%; 
}

#content{
	height: 500px; 
	width: 50%;
	margin-left: 25%;
}

#sidebar{
	height: 500px; 
	width: 20%;
}

}
*/