@charset "utf-8";
/* CSS Document */
/* FlexBox Start*/
#Wrapper {
  width: 90%; max-width:1400px; margin-left:auto; margin-right:auto;
}

/* Hauptnavigation */
#MainNav {
  display: flex;#Content nav;
  justify-content: space-between;/*Elemente gleichmßig verteilen*/
/*alternativ::space around*/
}

/* Haupt-Layout */
#Content {
  display: flex;
  padding: 1em 0; list-style:none;
}
#Content nav {  
  /*flex: 160px 1 2; Basisgröße, wachsfaktor, schrumpffaktor: hier: statisch bei 0 0*/
 flex: 160px 0 0;
  list-style:none; padding-left:0;  text-align: left;
}

#Content nav ,li{ list-style:none; padding-left:0; margin-left:0;}
#Content main {
  flex: auto 1 2;
  margin: 0 1em; list-style:none;
}
#Content aside {
  flex: 240px 1 1;
}

/* Footer-Module */
footer {
  display: flex;
  justify-content: space-around; 
}
footer section { width:30%;
  margin: 0 1em; font-size: 0.95em; color:#666666;
}
/* FLEX Box Ende*/
#KartenNav {
  display: flex;Content nav;
  justify-content: space-between;/*Elemente gleichmßig verteilen*/
/*alternativ::space around*/
}