/*  ===============================================
Stand:  Layoutvorlage Müller
        dreispaltig, Header, Footer
        float und margin
Basis-Datei:  bildschirm.css
Datum:  2019-03-18
Autor:  OCG
Aufbau: 1. Kalibrierung und Restauration
        2. Allgemeine Styles
        3. Styles für Layoutbereiche
        4. Sonstige Styles
================================================ */

/* ======================================
  1. Kalibrierung und Restauration
  ====================================== */
/* Reset - alle Abstände auf NULL */
*  { padding: 0; margin: 0; }
/* optional: erzwingt Scrollbar im Firefox */
html { height: 100%; margin-bottom: 1px; }
h2, h3, p, ul, ol { margin-bottom: 1em; }
ul ul { margin-bottom: 0; }
li { margin-left: 1em ; }
/* hier ggfs. Abstände für weitere Elemente restaurieren */

/* ======================================
  2. Allgemeine Styles
  ====================================== */
body {
  background-color: rgb(204, 217, 229);
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: small;
}
h1 { font-size: 150%; }
h2 { font-size: 130%; }
h3 { font-size: 110%; }
address {
  text-align: center;
  font-size: 90%;
  font-style: normal;
  letter-spacing: 2px;
  line-height: 1.5;
  font-weight: bold;
}
a {
  text-decoration: none;
  /* outline: none; */ /* nur wenn es Sie wirklich stört */
}
a:link {
color: rgb(70, 116, 152); /* Ergänzung 28.3.2019*/
}
a:visited {  }
a:hover,
a:focus {
	color: rgb(80, 139, 186);background-color:rgb(240, 240, 240); /* Ergänzung 10.4.2019*/
}
a:active {
}

/* Allgemeine Klassen und IDs */
img#logo {

}
/* Skiplink ausblenden */
.skiplink {
  position: absolute;
  top: -9999px;
  left: -9999px;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
}
/* Bilder floaten und mit Rahmen versehen */
.bildlinks {
  float:left;
  padding: 3px;
  border: 5px solid #ccc;
  margin-right: 10px;
  margin-bottom: 10px;
}
.bildrechts {
  float:right;
  padding: 3px;
  border: 5px solid #ccc;
  margin-bottom: 10px;
  margin-left: 10px;
}
.clearing { clear: both; }

/* ======================================
  3.  Styles für die Layoutbereiche
  ====================================== */
#wrapper {
  background-color: white;
  border: 1px solid rgb(70, 116, 152); /* Testbereich, 28.3.2019 */
  box-shadow: 0px 2px 7px rgba(0,0,0,0.3); /* Schatten am Rahmen */
  /* border-radius: 4px;	/* runde Ecken*/ */
  color: black;
  width: 960px;
  margin: 10px auto;
}
#kopfbereich {
  position: relative;
  background-color: rgb(77, 131, 178);
  padding: 20px 70px 20px 70px;
}

#kopfbereich a {
  color: white;
}


  #kopfbereich a:hover,
  #kopfbereich a:focus { /* erg. 9.4.2019*/
    color: black;
    background-color: white;
}

#kopfbereich p {
  }

  div#kopfbereich p span {
  }

#kopfbereich2 {
	padding: 10px
  }

#navibereich {
  /*background-color: pink;*/ /* zum Testen Kommentar entfernen */
  float: left;
  width: 170px;/* Basiswert: 110px;*/
  padding-left: 20px;
  padding-top: 0px;/* Basiswert: 20px;*/
  margin-left: 40px;/* erg. 10.4.2019*/
}
/*#navibereich #navi01a a /* erg. 10.4.2019*/
{
border-top: 3px solid #5F8EDC;
}*/

#navibereich #navi00 a { /* Ergänzung OG */
background-color: white;
font-weight: bold;
border-left-color: rgb(70, 116, 152);
  }

#navibereich ul {
    width: 9em;
    border-top: 1px solid #5F8EDC;
  }
#navibereich li {
    list-style-type: none;
    border-left: 1px solid #5F8EDC;
    border-bottom: 1px solid #5F8EDC;
    margin: 0;
  }
#navibereich a {
    display: block;
    text-decoration: none;
    color: black;
    background-color: #D4E1F7;
    padding: 4px;
    border-left: 3px solid #D4E1F7;
  }
  #startseite #navi01 a,
  #galerieseite #navi02 a,
  #kontaktseite #navi03 a {
    color: black;
    background-color: white;
    border-left-color: #5F8EDC;
    border-bottom: none;
  }
  #navibereich a:hover,
  #navibereich a:focus {
    color: black;
    background-color: white;
    border-left-color: #5F8EDC;
    border-bottom: none;
  }
  #navibereich a:active {
    color: white;
    background-color: #5F8EDC;
  }
/* Style für #sidebar */
#sidebar, sidebar_intro {
  float: right;
  padding: 30px;
  padding-top: 20px;
  /* margin-left: 70px;*/ /* Testbereich, wieder löschen, 28.3.2019 */
  margin-right: 60px; /* Testbereich, wieder löschen, 28.3.2019 */
  height: 400px; /* Testbereich, wieder löschen, 28.3.2019 */
  overflow: hidden; /* Testbereich 28.3.2019 */
  /* overflow-x: hidden; Testbereich 28.3.2019 verhindert horizontale srollbar*/
  background-color: rgb(229, 221, 178);   /* Testbereich, 28.3.2019 */
  border-top: 3px solid rgb(70, 116, 152); /* Testbereich, 28.3.2019 */
}

#sidebar {
width: 100px;
margin-left: 50px; /* Testbereich, wieder löschen, 28.3.2019 */
}

#sidebar_intro {
width: 150px;
margin-left: 70px; /* Testbereich, wieder löschen, 28.3.2019 */
}

#textbereich, #textbereich_intro  {
  padding: 20px 10px 20px 20px;
  margin-left: 110px; /* Platz für #navibereich, Basiswert: 130px; */
  margin-right: 110px; /* Platz für #sidebar Basiswert: 130px; */
  height: 560px; /* Testbereich, 28.3.2019 */
  overflow: auto; /* Testbereich, 28.3.2019 */
  margin-bottom: 20px; /* Testbereich, 28.3.2019 */
  background-color: rgb(240, 240, 240);/* Testbereich, 28.3.2019 */
  border-top: 3px solid rgb(70, 116, 152); /* Testbereich, 28.3.2019 */
  overflow-x: hidden;
  }

#textbereich, #textbereich_intro  {
font-size: 100%
  }

#textbereich_intro span, #textbereich span {
  font-size: 80%;
  }

#textbereich_intro    /* betrifft nur die Startseite, 28.3.2019 */
{
  padding: 20px 40px 20px 60px; /*padding: 20px 10px 20px 20px;*/
  line-height: 2;
  font-size: 110%;
  height: 460px; /* Testbereich, 28.3.2019 */
  margin-left: 100px; /* Platz für #navibereich */
  margin-right: 150px; /* Platz für #sidebar */
  overflow: hidden; /* Testbereich, 28.3.2019 */
  margin-bottom: 20px; /* Testbereich, 28.3.2019 */
  background-color: rgb(240, 240, 240);   /* Testbereich, 28.3.2019 */
  border-top: 3px solid rgb(70, 116, 152); /* Testbereich, 28.3.2019 */
  }
 
#textbereich_intro  p  /* betrifft nur die Startseite, 28.3.2019 */
{padding-top: 15px;
}

#textbereich a, #textbereich_intro a {
  border-bottom: 1px dotted #D4E1F7;
}
  #textbereich a:hover,
  #textbereich a:focus {
    border-bottom: 1px solid #5F8EDC;
  }

  #textbereich_intro  a:hover, 
  #textbereich_intro   a:focus /* Testbereich, 28.3.2019 */
{
    /* border-bottom: 1px solid #5F8EDC; */
  color: rgb(77, 131, 178);
  letter-spacing: 1px;
  font-weight:bold;
  background-color: white;
  }

#sidebar a:hover, a:focus{
    border-bottom: 1px solid #5F8EDC;
  letter-spacing: 1.5px;
  }

#fussbereich {
  clear:both;
  background-color: white;
  color: black;
  padding: 10px 20px 30px 20px;
  margin-top: 0;
   /* Testbereich, 28.3.2019 */
  border-top: 1px solid rgb(70, 116, 152); /* Testbereich, 28.3.2019 */
 }
/* ====================================== 
  4. Sonstige Styles 
  ====================================== */
/* Das Kontaktformular */
form {
  background-color: #eee;
  width: 370px;
  padding: 20px;
  border: 1px solid #8c8c8c;
}
label {
  display: block;
  cursor: pointer;
}
input#absender,
textarea {
  width: 300px;
  border: 1px solid #8c8c8c;
  margin-bottom: 1em;
}
textarea {
  height: 7em;
}
input:focus,
textarea:focus {
  background-color: #d9d9d9;
}

/* Die kleine Galerie */
div.galerie {
  overflow: hidden; /* zum Einschließen der Floats */
  padding: 25px 10px 10px 0;
  margin: 0 3px 3px 0;
}

/* Sternchen-Hack und Holly-Hack
   bewirkt hasLayout für IE6 */
* html div.galerie { height: 1%; }

div.galerie img {
  float: left;
  padding: 4px;
  border: 1px solid #ddd;
  border-right-color: #aaa;
  border-bottom-color: #aaa;
  margin-right: 15px;
  margin-bottom: 15px;
}


/* =======================================
   E N D E   D E S   S T Y L E S H E E T S
   ======================================= */

