html {
	box-sizing: border-box;
	height: 101%; /* erzwingt dauerhaften Scrollbar */
}

*, ::before, ::after {
	box-sizing: inherit;
}

body {
	margin: 4px auto;
	max-width: 60em;
	min-width: 30em;
	font-family: calibri,helvetica,arial,sans-serif;
	font-size: 1em;
	color: #222222;
}

p {
padding-left: 8px;
padding-right: 8px;
}

h1 {
font-family: calibri,helvetica,arial,sans-serif;
font-size: 2em;
font-weight: bold;
line-height: 40%;
color: #ffffff;
padding-left: 8px;
padding-right: 8px;
}

h2 {
font-family: calibri,helvetica,arial,sans-serif;
font-size: 1.2em;
font-weight: bold;
line-height: 40%;
color: #222222;
padding-left: 8px;
padding-right: 8px;
}

h3 {
font-family: calibri,helvetica,arial,sans-serif;
font-size: 1.2em;
font-weight: bold;
line-height: 40%;
color: #11786b;
padding-left: 8px;
padding-right: 8px;
}

header, nav, nav a, main, article, section, aside, footer {
	border-radius: 0px 0px 0px 0px;
	border: 2px solid;
	padding: 2px;
	margin: 4px;
}

header {
	background: #1e8b7d; /* Hintergrundfarbe der obersten Box - ALT: f2f1f1 */
	border-color: #045349; /* Randfarbe der obersten Box */
	text-align: center;
	color: #ffffff; /* Farbe von Rand (und Schrift) der obersten Box - ALT: 1e8b7d */
	margin-bottom: 10px;
}

header img {
	width: 13em;
	margin-right: 50px;
	float:left;
}

nav {
	margin-top: 0px;
	font-size: 1em;
	float: left;
	width: 6.95em;
	padding: 0;
	background: #dff2f2; /* Hintergrundfarbe der Navigationsbox */
	border-color: #1e8b7d; /* Randfarbe der Navigationsbox */
}

nav ul {
	padding:0;
}

nav li {
	list-style: none;
	margin: 0;
	padding: 0.1em;
}

nav a {
	display: block;
	padding: 0.1em 10px;
	font-weight: bold;
	text-decoration: none;
	background-color: #acdcd6; /* Farbe der Navigationsschaltflaechen */
	color: #222222; /* Farbe von Schrift (und Rand) der Navigationsschaltflaechen */
	border: 1px solid; /* Dünnerer Rand der Navigationsschaltflächen */
	border-color: #6df9e7; /* Randfarbe der Navigationsschaltflächen */
}

nav ul a:hover {
	color: #88bbb5;
	background-color: #56ada2; /* Farbe der aktiven Navigationsschaltflaechen */
	border-color: #6df9e7; /* Randfarbe der aktiven Navigationsschaltflaechen */
	border: 1px solid; /* Dünnerer Rand der aktiven Navigationsschaltflächen */
	color: #ffffff; /* Schriftfarbe der aktiven Navigationsschaltflaechen */
}

nav ul a:active  {
	background-color: #56ada2; /* siehe: hover */
	border-color: #222222;
	color: #ffffff;
}

main {
	margin-top: 2px;
	display: block;
	background: #1e8b7d; /* Hintergrundfarbe der die anderen beiden umgebenden Box - ALT: cad1d1*/
	border-color: #045349; /* Randfarbe der die anderen beiden umgebenden Box */
	margin-left: 7.8em;
	min-width: 16em; /* Mindestbreite (der Ueberschrift) verhindert Anzeigefehler in modernen Browsern */
}

section {
	margin-top: 2px;
	background: #ffffff; /* neutral */
	border-color: #ffffff; /* neutral */
}

article {
	background: #ffffff; /* Hintergrundfarbe der (oberen) Article-Box */
	border-color: #1e8b7d; /* Randfarbe der (oberen) Article-Box */
}

article a {
font-weight: bold;
color: #11786b;
text-decoration: none;
}

article a:visited {color: #11786b;}
article a:hover {color: #33aa9b;}
article a:active {color: #33aa9b;}

aside {
	background: #dff2f2; /* Hintergrundfarbe der (unteren) Aside-Box */
	border-color: #1e8b7d; /* Randfarbe der (unteren) Aside-Box */
}

aside a {
font-weight: bold;
color: #11786b;
text-decoration: none;
}
aside a:visited {color: #11786b;}
aside a:hover {color: #33aa9b;}
aside a:active {color: #33aa9b;}

footer {
	background: #1e8b7d; /* Hintergrundfarbe der Footerbox */
	border-color: #045349; /* Randfarbe der Footerbox */
	color: #eeeeee;
	margin-bottom: 50px;
	margin-top: 10px;
	font-size: 0.8em;
}

footer a {
font-weight: bold;
color: #6df9e7;
text-decoration: none;
}

footer a:visited {color: #6df9e7;}
footer a:hover {color: #ffffff;}
footer a:active {color: #ffffff;}

footer p {
	float:right;
	margin: 0;
}

table, td {
border-collapse: collapse;
border: 0px;
background-color: transparent;
}

.bewegt {
  animation-duration: 2s;
  animation-name: slidein;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
@keyframes slidein {
  from {
    margin-left: 15px;
    width: 90%;
  }

  to {
    margin-left: 0px;
    width: 90%;
  }
}





















