@charset "utf-8";
/* navigations-menu.css */
#navigation {
  position: fixed;                     /*menue scrollt nicht*/
  line-height: 15px;                   /*zeilenhöhe*/
  font-size: 15px;                     /*schriftgrösse*/
  color: blue;                         /*schriftfarbe*/
  background-color: #00FFFF;           /*#ADD8E6;*/
  font-style: italic;                  /*schriftart= schräg*/
  font-weight: bold;                   /*schriftstärke=fett*/
  border: 5px solid #00BFFF;
  border-bottom-left-radius: 10px;     /*Ecken abrunden*/
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  margin: 0px 30px 0px 40px;
  padding: 0px 2px 0px 2px;
  display: block;
  width: 140px;
}
#navigation a:focus, #navigation a:active, #navigation strong, #navigation ul {
  list-style-type: none;
  padding: 0px 1px 0px 3px;            /*abstand nach aussen*/ /*abstand nach innen*/
  text-decoration: none;               /*hier -keine unterstreichung*/
  display: block;                      /*menue als block (Anordnung untereinander)*/
}
#navigation a:hover {
  background-color: blue;
  color: white;
}
                                       /*Ende - navibereich*/