

/* = = = = = = = = = = = = = = = = = 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  definiert */
/* ############################################################ */



nav {width:100%;
display:block;
POSITION:xabsolute;
margin:0;
padding:0;
overflow:hidden;
}

#menu1 {height:100%;
z-index:1;
width:36rem;
position:absolute;
top:0rem;left:50%;
margin-left:-18rem;
background:#4F4F4F;
padding: 4rem 0 1rem 0;
margin-top:-130vh;
border:solid .1rem silver;
box-shadow:0 0  1rem  rgba(0,0,0,.9);
transition:all 2s;
}

#menu1 ul {display:block;
text-align:center;
margin:0 auto;
padding:0rem;
}

#menu1 li {list-style-type : none;
margin:0;
padding:0;
}

#menu1 li a {
text-align:center;
text-decoration : none;
font-size:1.6rem;
line-height:2.8rem;
letter-spacing:.1rem;
padding:.4rem 1rem ;
margin: 0;
color:gold ;
text-transform:uppercase;
}

#menu1 a:hover  {
color:#fff;
}

#menu1  #aktuell  a  {
color:#efefef;
}


/*  menü-oeffnen-schalter  formatierung  */

/* menü-öffnen-schalter  formatierung */
nav label.button-open {display:inline-block;
text-align:center;
POSITION:absolute;
top:0rem; right:0%;
margin-right:0rem;
z-index:2;
padding:0rem;
background:#9b253c;
color:#fff;
font-size:2.2rem;
cursor:pointer;
height:4rem;
width:4rem;
line-height:4rem;
}

/*  menü-schließen-schalter  formatierung  */

nav label.button-close  {display:inline-block;
text-align:center;
POSITION:absolute;
top:0rem; right:0%;
margin-right:0rem;
z-index:3;
cursor:pointer;
background:darkolivegreen;
color:#fff;
font-size:2.2rem;
cursor:pointer;
height:4rem;
width:4rem;
line-height:4rem;
opacity:0;
transition:all 2s;
}


/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein */
input[type=checkbox]:checked ~ #menu1  {
margin-top:0rem;
height:140vh;
}





/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN*/
/* ############################################################ */




/* ==================================== ab 960 pixel ================================== */
@media (min-width: 960px) {

/* menu-schalter versteckt */
nav label.button-open{
display: none;
}


/* menu sichtbar */
#menu1 {background:transparent;z-index:4;
height:0%;width:100%;
margin-top:0;
position:absolute;
top:1.5rem;left:0%;
margin-left:0;
padding:.5rem;
border:none;
box-shadow:none;
}

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

#menu1 li  {display:inline-block;
margin:0;
padding:0;
}

#menu1 li a {
background:#9B263D;
line-height:3.6rem;
border-bottom:solid .3rem gold;
width:100%;

}

#menu1 li a:hover {
color:#000;
background:gold;
}

#menu1  #aktuell  a  {
color:#000;
background:gold;
letter-spacing:0rem;
}


}

/* = = = = = = = = = = = = = = = = = = = = = Code Ende = = = = = = = = = = = = = = = = = = = = = */