
/* = = = = = = = = = = = = = = = = = datei menue.css = = = = = = = = = = = = = = = = = = = = = = = = = */


/* ############################################################ */
/* diese datei enthält das hauptmenü */
/* ############################################################ */



/* = = = = = = = = = = = = = = = = = MENÜ 1 = = = = = = = = = = = = = = = = = = = = = = = = = */

/*===== menue 1 =====  */
/*===== vertikal =====  */
* {
margin : 0;
padding : 0;
}


.menue-button {height:4.6rem;
width:100%;
float :right;
background-color : khaki;
display : block;
position : fixed;
z-index:3;
right : 0;
top : 0;
padding : 0.5rem;
color : white;
cursor : pointer;
text-decoration : none;
border-bottom:solidx 0.2rem;
border-color:#EFEFEF;
}

#menu1 {display : none;
height:100%;
background-color:khaki;
width : 32rem;
top:4.6rem;
position:fixed;
left:50%;
margin-left: -16rem;
}

#menu1 li {display:inline;
width : 100%;
list-style : none;
}

#menu1 a:link, #menu1 a:visited, #menu1 a:active {
display : block;
width : 100%;
padding : 1rem;
text-decoration : none;
color : white;
background-color: darkkhaki;
letter-spacing:0.2rem;
}

#menu1 a:hover {
color : #fff;
background : sandybrown;
}


   /*  Menü-Button- öffnen ausblenden -  Schließen-Button dadurch sichtbar */
#nav-menue:target .menue-button-open {
display : none;
}


   /* Menü einblenden */
#nav-menue:target #menu1  {
display : block;z-index:3;
}




/* ==================================== ab 360 pixel ================================== */

@media (min-width:360px) {

#menu1 {
width : 36rem;
left:50%;
margin-left: -18rem;
}

}

/* ==================================== ab 480 pixel ================================== */

@media (min-width:480px) {

#menu1 {
width : 38rem;
left:50%;
margin-left: -20rem;
}

#menu1 a:link, #menu1 a:visited, #menu1 a:active {
padding : 0.2rem 0.5rem 0.2rem 2rem;
}

}




/* ==================================== ab 600 pixel ================================== */

@media (min-width:600px) {

#menu1 {
width : 52rem;
left:50%;
margin-left: -26rem;
}

#menu1 a:link, #menu1 a:visited, #menu1 a:active {
padding : 0.4rem 0.5rem 0.4rem 2rem;
}

}



/* ==================================== ab 768 pixel ================================== */
/*===== menue 1 =====  */
/*===== horizontal =====  */


@media (min-width:768px) {

#menu1 {height:0;
width : 100%;
display :inline-block;
text-align : center;
top:0rem;
left:0;margin:0 auto; margin-bottom:8rem;
position:relative;
}

#menu1 ul {display : block;
line-height:3rem;padding:1rem;
background-color:white;
background:rgba(255,255,255,0.5);
}

#menu1 li {display : inline;
line-height:3rem;
list-style : none;width:100%;
}

#menu1 a:link, #menu1 a:visited, #menu1 a:active {
display : inline;
width : 100%;
padding : 0.4rem;
background:transparent;
text-decoration : none;
color:darkkhaki;
border-radius:0.4rem;
font-variant:none;
border-bottom:none;
letter-spacing:0;
}

#menu1 a:hover {
color:darkkhaki;
background : transparent;
text-decoration : underline;
}

#menu1 #aktuell a   {
color:darkkhaki;
text-shadow:none;
font-weight:bold;
text-decoration : none;
}

.menue-button {
display : none;
}


}


/* ==================================== ab1024 pixel ================================== */
/*===== menue 1 =====  */
/*===== horizontal =====  */


@media (min-width:1024px) {
#menu1 a:link, #menu1 a:visited, #menu1 a:active {
letter-spacing:0.2rem;

}

}

/* ==================================== ab 1280 pixel ================================== */
/*===== menue 1 =====  */
/*===== horizontal =====  */


@media (min-width:1280px) {
#menu1 a:link, #menu1 a:visited, #menu1 a:active {
letter-spacing:0.3rem;padding : 0.6rem;
}

}





/* = = = = = = = = = = = = = = = = = = = = = Code Ende = = = = = = = = = = = = = = = = = = = = = */