﻿body {
	margin: 0px;
	padding: 8px;
	
	font-family: "Helvetica Neue", "Helvetica", "Arial", "sans serif";
	color: #555555;        /*schwarz*/
	background-color: #f2f1f0; /*hellgrau*/
}

a {
	color: #69977b;        /*Grünton*/
	font-family: inherit;
	text-decoration: none;
}

a:link {
	color: #69977b;        /*Grünton*/
	font-family: inherit;
	text-decoration: none;
}

a:visited {
	color: inherit;
	font-family: inherit;
	text-decoration: none;
}

a:hover {
	color: #F6BD5E;        /*Gelborange*/
	font-family: inherit;
	text-decoration: none;
}

a:active {
	color: inherit;
	font-family: inherit;
	text-decoration: none;
}

#container {
	width: inherit;
	max-width: 960px;
	margin: 0 auto 0 auto;
}

#kopfleiste {
    width: inherit;
	height: 60px;
	text-align: center;
	margin: 0px 0px 15px 0px;
	padding: 0px 0px 20px 15px;
	
	background-color: #366BF4; /*blau*/
	box-shadow: 5px 5px 6px 0px blue;
}

#kopfleiste h1 {
	margin: 0px;
	padding: 0px;
	text-align: center;
	font-size: 36px;
	line-height: 1.5em;
	color: #FAF9F8;    /*weiß*/
}

#menu {
    position: fixed;
	/*display: inline;*/
   	width: auto; 
	height: auto; 
    text-align: center;
    background-color: #FAED75;  /*gelb*/
	box-shadow: 8px 8px 8px 0px green;
	margin: 0px;
	padding: 15px 5px 5px 5px;
}

#menu a:hover {
    background-color: #f2f1f0;  /*hellgrau*/
    
}

#menu ul {
	border: solid red;
	border-radius: 5pt;
    background-color: yellow;
	margin: 0px;
    padding: 0px;
	float: left;   /*center -->der Rahmen ist weg!*/
	list-style-type: none;
}

#menu li {
    /*display: block;*/
    padding: 0px;
	margin: 0px;
	float:center;  /*left -->es ist oben wagrecht links!*/
	font-size: 16px;
}

#menu li.current {
	color: #FAF9F8;    /*weiß*/
	background-color: #366BF4; /*blau*/
}

#inhalt {
	width: 75%;
	height: 75%;
    float:right;
	overflow: scroll; /*Damit das Layout mit float funktioniert*/
	padding: 10px 0px 10px 20px;
	background-color: #FAF9F8; /*weiß*/
	box-shadow: 2px 2px 2px 0px #515151;   /*dunkelgrau*/
}

#inhalt a {
	color: inherit;
	font: inherit;
	text-decoration: underline;
}

#inhalt h2 {
	text-align: center;
	font-size: 16px;
	line-height: 1.4;
}

#inhalt p {
    width: 50%;
	background-color: yellow;
	text-align: center;
	font-size: 90%;
	line-height: 1.3;
	border: solid red;
	border-radius:5pt;
	padding:0px 0px 0px 20px;
	margin: 0px auto 0px auto;
}