

/* = = = = = = = = = = = = = = = = = 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 */
/* ############################################################ */


/* = = = = = = = = = = = = = = = = = MENÜ 1 = = = = = = = = = = = = = = = = = = = = = = = = = */


/* - - - - - MENU FORMATIERUNG - - - - - */

#menu1 {height:28rem;display:table;
z-index:1;
width :30rem;
position:absolute;
top:50%;left:50%;
margin-left:-15rem;
background:#296A74 ;
padding: 1rem 0 1rem 0;
margin-top:-14rem;
opacity:0;
transition:all 2s;
}

#menu1 ul {display:table-cell;vertical-align:middle;
text-align:center;
margin:0 auto;
padding:0rem;
}

#menu1 li {list-style-type : none;
margin:0;
padding:0;
}

#menu1  a {
text-align:center;
text-decoration : none;
font-size:1.6rem;
height:2.8rem;
line-height:2.8rem;
letter-spacing:.1px;
padding:.2rem 1rem ;
margin: 0;
color:#fff ;
text-transform:uppercase;
}

#menu1 a:hover  {
background:#fff;
color:#000;
}

#menu1  #aktuell  a  {
background:orange;
color:#fff;
}


/* - - - - - TOGGLE-FUNKTION (MENÜ AN UND AUS) MIT CHECKBOX-HACK - - - - - */

/* menü-öffnen-schalter  formatierung */
label.button-open {display:table;
z-index:2;
position:absolute;
top:0rem;right:0%;
margin-left:0rem;
margin-top:0rem;
background:#296A74;

cursor:pointer;
height:4rem;
line-height:4rem;
width:4rem;
box-shadow: 0 0 1px black;
border-radius: 3px;transition:all 1s;
}

label.button-open .fa {font-size:2rem;
display:table-cell;
vertical-align:middle;
text-align:center;
color:#fff;
line-height:4rem;height:4rem;
}


/* menü-schliessen-schalter  formatierung */
label.button-close {display:table;
z-index:2;
background:#296A74;
box-shadow: 0 0 1px black;
position:absolute;
top:0rem;right:0%;
margin-left:0rem;
margin-top:0rem;
cursor:pointer;
height:4rem;
line-height:4rem;
width:4rem;
border-radius: 3px;
}

label.button-close .fa {font-size:2rem;
display:table-cell;
vertical-align:middle;
text-align:center;
color:#fff;line-height:4rem;height:4rem;
}


/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein/aus */
input#open:checked ~ #menu1  {
opacity:1;
}

/* schaltet zwischen 'menu-öffen-button' und 'menu-schliessen-button' */
input#open:checked ~ .button-open  {
visibility:hidden
}





/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN*/
/* ############################################################ */




/* ==================================== ab 1024 pixel ================================== */
@media (min-width: 1024px) {

/* menu-schalter versteckt */
label.button-open ,label.button-close {display:none;
}


/* menu sichtbar */
#menu1 {position:absolute;
height:0%;width:100%;
top:-2rem;left:20%;
background:transparent;
margin-top:0rem;
margin-left:0;
padding: 5rem 0 0rem 0;
border:none;opacity:1;
}

#menu1 ul  {text-align:center;
margin:0;
padding:0;
}

#menu1 li  {display:inline-block;
/* background: #29687A; /*IE9*/ */
/* background: linear-gradient(to bottom, #93cede,#29687A ); */
/* background: linear-gradient(to bottom, #93cede,#29687A ); */
box-shadow: 0 0 0 1px black;
margin:0 -.25rem;
/* padding: .6rem  1.5rem ; */
padding: .6rem  1.5rem ;
}

/*
#menu1 li:first-child  {border-top-left-radius:1rem;border-bottom-left-radius:1rem;
}

#menu1 li:last-child  {border-top-right-radius:1rem;border-bottom-right-radius:1rem;
}*/


#menu1 li:hover  {background: linear-gradient(to bottom, darkorange,darkred );
background: #445599; /*IE9*/
/* background: linear-gradient(to bottom, #BAE4E2,#378C88 ); */

cursor:pointer;
}

#menu1  a  {color:white;
display:inline-block;
padding: 0;
}

#menu1 a:hover  {color:white;
background:transparent;
}

#menu1 #aktuell   {display:inline-block;color:white;
/* background: #445599;/* #378C88; IE9*/ */
/* background: linear-gradient(to bottom, #BAE4E2,#378C88 ); */
}

#menu1  #aktuell a {background:transparent;
}


}

/* = = = = = = = = = = = = = = = = = = = = = Code Ende = = = = = = = = = = = = = = = = = = = = = */