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

/* Hauptnavigation */
#MainNav {
  display: flex;#Content nav;
  justify-content: space-between;/*Elemente gleichmßig verteilen*/
/*alternativ::space around*/
}
#Oben {
  display: flex;#Content nav;
  justify-content: space-between;/*Elemente gleichmßig verteilen*/
/*alternativ::space around*/
}
/* Haupt-Layout */
#Content {
  display: flex;
  padding: 1px 0; list-style:none;
}
#Content nav {
  flex: 160px 0 0;/* Basisgröße, wachsfaktor, schrumpffaktor: hier: statisch*/
  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: 150px 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*/
