 /* Logofarben:
  * Sonne (hellgrün): #7BC228 
  * Text (dunkelgrün): #023C10
  * Hintergrund: #FAFBDE  
  * */
  

* {
    margin: 0;
}

html, body    {
    font-family: Tahoma;
}


nav {
    background-color: #ceb98e;
    text-align: right;
}

nav ul {
    padding: 0;
}

nav li {
    /* background-color: orange; */
    list-style-type: none;
    display: inline-block;
    height: 1.5em;
    padding: 0 1em;
    line-height: 1.5em;
    border-left: black 1px solid;

}

nav a {
    color: black;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
    color: #7BC228;
}


article {
    margin: 20px 40px;
/*	background-color: orange;*/
}

article h1 {                  /* Überschriften */
    margin-top: 1.2em;
    margin-bottom: 0.7em;
    /* color: red; */
    font-family: cursive;
    font-size: 1.7em;
    color: #023C10; 
}

article h2 {                  /* Überschriften */
    margin-top: 1.2em;
    margin-bottom: 0.7em;
    /* color: red; */
    font-family: cursive;
    font-size: 1.5em;
    color: #023C10;
}
article h3 {                  /* Überschriften */
    margin-top: 0.2em;
    /* color: red; */
    font-family: cursive;
    font-size: 1.2em;  
    color: #023C10;
}

article p,
article ul
{
    margin-bottom: 1em;
    line-height: 1.5em;
    font-size: 1em;
}

footer {
    background-color: #ceb98e;
    text-align: center;
    height: 5em;
    padding: 0 1em;
    line-height: 2.5em;
    font-size: 0.6em;
}
footer li {
    display: inline;            /* horizontal */
    margin-right: 5em;
}
footer a {                  /* text der Links im footer */
    color: #023c10;
    font-size: 1.5em;
    text-decoration: none;
    text-transform: uppercase;   
    margin: 1em; 
}
footer a:hover {
    color: #FF0000;
}

header {
   /* background-color: #ceb98e;      */
   /* background: url(Dateien/MeikeLadenschild_h150_transp.png) no-repeat;  */
    height: 150px;
    margin: 5px auto 5px;
}

#kopflinks {
     background: url(Dateien/Logo_transp_h150.png) no-repeat;
     background-position: left;
     /* border-style: dotted; */
     height: 150px;
     width: 100%;
}
#kopfrechts {
     background: url(Dateien/Logotext_transp_h150.png) no-repeat;
     background-position: right;
    /*  border-style: dotted; */
     height: 150px;
     width: 70%;
}

#impressum {/* 
    font-size: 0.8em; */
    /* background-color: #800000; */
}

#wrapper {
    background-color: #fafbde;
    width: 62em;
    margin: 0 auto;
    border-color: green;
    border-width: 1px;
    border-style: solid;
}

#bilder {
    /* background-color: #FF0000; */
}




