

/* = = = = = = = = = = = = = = = = = 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:#263f67 ;
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:#38bbd1;
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:#263f67;

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:#263f67;
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:0;left:0;
background:transparent;
margin-top:0;
margin-left:0;
padding-top:28rem;
border:none;opacity:1;
}

#menu1 ul  {text-align:center;
margin:0;
padding:0;
}

#menu1 li  {display:inline-block;
background: rgba(0,0,0,0.2);
margin:0 -.22rem;
padding: .6rem  1.5rem ;
}


#menu1 li:hover  {display:inline-block;color:white;
background: rgba(0,0,0,0.35);
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: rgba(38, 63, 103, 0.6);
}

#menu1  #aktuell a {background:transparent;
}

/* - - - - - Language menue - - - - - */

.dropdown {
	padding-top: 10px;
	text-align: center;
	text-decoration : none;
	font-size:0.5rem!important;
  	display: inline-block;
  	position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  overflow: auto;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.8);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
	font-size:1rem!important;
	text-transform:none!important;
}
.dropdown-content a:hover {
	font-size:1rem!important;
	text-transform:none!important;
}

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