
/* = = = = = = = = = = = = = = = = = datei menue.css = = = = = = = = = = = = = = = = = = = = = = = = = */


/* ############################################################ */
/* diese datei enthält das hauptmenü */
/* alle anderen menüs sowie auch allgemeine links im text bzw. eventuelle "Weiter-Links"
sind in der Datei "format.css" direkt beim jeweiligen abschnitt (z.b. Logo, Info, Inhalt, Fuss o.ä.) definiert */
/* ############################################################ */



#menu1 ul {margin:0;padding:0}

#menu1 li {display:inline-block;
width : 100%;margin:0;
list-style-type: none;padding-right:1rem;
text-align:right;
}

#menu1 li a {display:block;
height:2.5rem;
line-height:2.5rem;
text-decoration : none;
color : #313131;

letter-spacing:0rem;
text-decoration:none;
}

#menu1 li a:hover {
color : #313131;
}

/* die font-icons (pfeile) im menü */

#menu1 li a:after {
font-family:'Font Awesome 5 Free';/* - 'Font Awesome 5 Free' for Regular and Solid symbols;
                                     - 'Font Awesome 5 Brands' for Brands symbols. */
font-weight: 900;/*  Weight of the font (mandatory)
                     - 400 for Regular and Brands symbols;
                     - 900 for Solid symbols. */
padding-left:1rem;
content:"\f137";
color:#000;
}

#menu1 li a:hover:after {
content:"\f359";
color:#000;
}


