body {
/* Für ein Hintergrundbild/Rahmenbild auf ges. Bildschirm */
/* background: url(Pfad zum Hintergrundbild) no-repeat; */

background-color: #ffe8d8;
background-position: center;
background-position: top;

text-align: left;  /* Zum Zentrieren der ges Site */
}

#webseite {
width: 980px;
margin: 0;
font-size: small;
}

#header {
/*width: 800px; */  /* statt 980px - nach Bildgröße angepasst */
height: 100px;

/*
height: 203px;
background: url("Garten_2014.jpg") no-repeat; 
*/
/* background: orange;*/
}

#header h1 {
  padding-top: 20px;
  font-size: 60px;
  font-weight: bold;
  color: darkblue;
  font-family: Courier;
  text-align: center;
}

h2 {
  padding-top: 5px;
  font-size: 30px;
  font-weight: bold;
  color: darkblue;
  font-family: Courier;
  text-align: center;
}

#main {
width: 980px;
}

#menue {
float: left;  /* Sortierung der Container */
width: 200px;
background: #ffe0c8;
margin-top: 10px;
margin-bottom: 10px;

border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;   /* Chrome, Safari */
-o-border-radius: 5px;        /*opera */

padding-left:5px;
text-align: left;
font-weight: bold;
}

#navi {
  list-style: none;
  font-size: 10px;
  font-weight: normal;
  padding-left:5px;
  /* background-color: green; */
}

.menupunkt {

  display: block;  /* grosse gleichmaess. Schaltflächen, waag: inline */
  /* line-height: 20px; */
  /* margin: 0; */

  color: darkblue;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  font-family: Courier;
}
.menupunkt:hover {
  color: blue;
}
.menutext {
  font-size: 6px;
}

/* Hilfe - die Koblenzseite ist so lang - Länge hier angepaßt */
#inhalt {
float: right;   /* oder left =schliesst direkt an #menu an */
width: 750px;
height: 600px;
margin-top: 10px;
margin-bottom: 10px;

text-align: left;
padding-left:5px;

border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;   /* Chrome, Safari */
-o-border-radius: 5px;        /*opera */
}

#footer {
width: 980px;
height: 20px;
background: orange;
margin-top: 20px;
clear: both; /* wichtig!!! Aufheben des float: left und right */

text-align: left;
}




