  
* {    
	box-sizing: border-box;
}


/* -- Allgemeines -- */
html {
  background-color:white;
  background:
    radial-gradient(circle at 0% 50%, rgba(96, 16, 48, 0) 9px, darkgreen 10px, rgba(96, 16, 48, 0) 11px) 0px 10px,
    radial-gradient(at 100% 100%,      rgba(96, 16, 48, 0) 9px, darkgreen 10px, rgba(96, 16, 48, 0) 11px),
    #b3cba2;
  background-size: 20px 20px;
  color: black;
}

body {
  margin: 0 auto;
  padding: 1%; 
  max-width: 75em; 
  font-family: verdana, arial, sans-serif ;
  font-size: 0.8em; 
  border: 1px solid #aaa; 
  border-top: 0; 
  background: white;
}

.skip { 
  position: absolute;
  margin-left: -999px;
}


/* - Logo bzw. Kopf - */
header {
  background: url(../img/Blume.jpg) 0 0 no-repeat black; 
  height: 64px; 
  margin: 0; 
  padding: 0 1em;
  text-align: right;
  line-height: 54px;
  font-size: 4em; 
}
header a#logo {
  color: white; 
  text-decoration: none;
}
header a#logo span { 
  color: black;
  background: white;
  padding-right: 0.1em; 
  font-weight: bold;
}
a { color: #0B4D8C; text-decoration: underline; } 
a:visited { color: black; } 
a:focus {background-color: yellow;}

/* - Der Hauptinhaltsteil - */
main {
  padding: 0 2%; 
  line-height: 1.5em; 
}

section{display : inline-block;width:73%;}

/* - Sidebar, Rechte Spalte - */
aside {
  width: 25%; 
  float: right; 
  clear:right;
  display : inline-block;
  padding: 0em 1% 1em;
  margin: 10em 1% 0 1%;
  border-left: 1px dotted #aaa; 
  font-size: 0.9em; 
}
aside dt { /* Die einzelnen Überschriften in der Sidebar */
  font-size: 1.2em;
  font-family: Georgia, "Times New Roman", Times, serif;
  padding: 0.5em;
  margin-top: 1em;
  border-top: 1px dotted #aaa; 
}
aside dd { /* Die Unterpunkte der Sidebar. */
  padding: 0;
  margin: 0.2em 0;
}

h1 { 
  font-size: 2.7em;
  font-weight: normal;
  line-height: 0.8em;
  padding: 0.6em 0 0.2em 2%;
  margin: 0;
  border-bottom: 1px dashed #E6E6FA;
}
h2, h3, h4 { font-weight: normal; }
h1, h2, h3, h4, h5, h6 { 
  color: #6699CC;
  font-family: Georgia, "Times New Roman", Times, serif;
}

/*DL, DT, DD Datenliste*/
dl 	{ margin-bottom:50px;}
 
dl dt {	
    float:left;
    font-weight:bold;
    margin-right:5px;
    padding:5px; 
    width:50%;
}
 
dl dd {
    margin:2px 0;
    padding:5px 0;
}

img { /* Alle Bilder bekommen einen schönen Rahmen. */
  border: solid 1px #aaa;
  padding: 1px;
}

.fleft { 
  float: left;
  margin: 0 1em 0.2em 0; 
  width: 33%;
}
.fright {
  float: right;
  margin: 0 0 0.2em 1em;
  width: 33%
}


/* -- Layoutspezifisches -- */

footer {
  clear: both; 
  padding: 2%;
  text-align:center;
  border-top: 1px dotted #aaa; 
}

footer .copy span {
	margin:0 auto;
	display:block;
}


/* - Menü - */
nav ul {
  background: repeating-linear-gradient(to right, darkgreen 10px, green 15px, darkgreen 20px, #287635 32px);
  padding: 5px 5%; 
  margin: 0;
  text-align: right;
  color: yellow; 
}
nav ul li {
  font-size: 1.2em;
  display: inline; /* Damit die Menüpunkte nebeneinander und nicht untereinander erscheinen. */
  list-style-type: none; /* Die Bullets vor den Menüpunkten schalten wir ab. */
  border-left: 1px solid white; /* Ein optischer Trennungsstrich */
  padding: 0 .5em 0 .5em;
  font-weight: bold;
}
nav ul li a {
  color: white; /* Hier ist das mit der Linkfarbe genauso, sie soll weiß sein. */
  padding:0.1em 1em;
  border-radius:0.2em;
  text-decoration: none;
}

nav ul li a:hover,
nav ul li a:focus {   /* Wenn der Link durch Maus oder Tastatur aktiviert wird, leuchtet er gelb auf! */
	color:green;
	background:yellow;
	opacity:0.8;
}

/* 1-Spaltenlayout  mit Navigation unten*/
@media only screen and (max-width: 600px) {
nav ul {
	display:block; 
	background:transparent;				/*Der grüne Schatten wird deaktiviert, stattdessen wird nav ul li a mit grünem Hintergrund sichtbar! */
	margin: 1em 0;
}
nav ul li{width:90%;margin: 5px 0;  }   /* Damit man auf SmartPhones navigieren kann, werden die Menüpunkte jetzt über 90% der Screen-Breite gezogen */
nav ul li.active{padding:0 2em; background:green; border-radius:10px;}
nav ul li a{display:inline-block;width:100%; color:white; background:green; margin:5px 0; border-radius:10px;text-align:center;}
nav ul li a:after{display:none;} 

section, 				/* kein Spalten-Layout mehr, alles wird untereinander dargestellt*/
section.spalte, 
aside {
	float:none;
	display:block;
	width:100%;
}


.fleft,.fright {		/*Damit die Bilder jetzt nicht zu klein werden, nehmen sie die halbe Breite des Bildschirms ein.*/
	width:50%;
}
}

