/*
 * Aus https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_responsive_navbar_dropdown
 */

.topnav {
  overflow: hidden;
	background-color: #D4D0C8; /* Standard-Farbe input button */
  /* background-color: inherit; */
	color: white;
	font-size: 70%;
	clear: both;
  /* min-width: 160px; */
}

.topnavnc {	/* ==> topnav no collapse */
  overflow: hidden;
	background-color: #D4D0C8; /* Standard-Farbe input button */
  /* background-color: inherit; */
	color: white;
	font-size: 70%;
	clear: both;
  /* min-width: 160px; */
}

.topnav a {
  float: left;
  display: block;
	background-color: #D4D0C8; /* Standard-Farbe input button */
	color: black;
  /* color: #f2f2f2; */
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  /* font-size: 17px; */
	font-size: inherit;

  border-top: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

.topnavnc a {
  float: left;
  display: block;
	background-color: #D4D0C8; /* Standard-Farbe input button */
	color: black;
  /* color: #f2f2f2; */
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  /* font-size: 17px; */
	font-size: inherit;

  border-top: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

.active {
	background-color: rgb(111,179,13);
  /* background-color: #4CAF50; */
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;

  border-top: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

.dropdown .dropbtn {
  /* font-size: 17px;     */
	font-size: inherit;
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  /* background-color: #f9f9f9; */
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  /* padding: 12px 16px; */
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #8FB5E4;
  color: black;
}

.topnavnc a:hover, .dropdown:hover .dropbtn {
  background-color: #8FB5E4;
  color: black;
}

.dropdown-content a:hover {
  /* background-color: #ddd; */
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Ori: @media screen and (max-width: 600px) { */
@media screen and (max-width: 579px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
  /* .topnav a, .dropdown .dropbtn { */
    display: none;
	  min-width: 225px;
  }
  .topnav a.icon {
    float: right;
    display: block;
	  min-width: 10px;
  }


  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}


/*
 * Ende https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_responsive_navbar_dropdown
 */



/* Smartphones - Querformat */ 
/*@media screen and (max-width:569px) { */
@media screen and (min-width:768px) { 
	#Inhalt {
	  /*
	   * Rechter Teil der Seite 
	   */
	  border:4px rgb(0,0,125);
	  /* font: 143% sans-serif; */
	  font: 90% sans-serif;
	  width: 100%;
	}

	#Inhalt_links {
	  /*
	   * Linker Teil der Seite
	   */
	  border:4px rgb(0,0,125);
	  width: 100%;
	}
}


/* Tablets bis hin zu normalen Bildschirmen */
@media screen and (min-width:1024px) { 

	#Inhalt {
	  /*
	   * Hauptcontainer fuer rechte Seite (Mitte und rechts)
	   */
	  border:30px rgb(0,0,125);
	  font-size: 100%;
	  font-family: sansserif;
	  width: 100%;
	}

	#Inhalt_links {
		/*
		* Linker Teil der Seite
		*/
		/* background-color: rgb(186,205,228); */
		border:2px rgb(0,0,125);
		float:left;
		width: 48%;
		font-size: 15px;
		font-family: sansserif;
		padding-left: 1em;
		padding-top: 1em;
		display: inline;
	}

	#Inhalt_rechts {
	  /*
	   * Rechter Teil der Seite
	   */
	  /* background-color: rgb(186,205,228); */
		border:2px rgb(0,0,125);
		float: right;
		width: 48%;
		font-size: 15px;
		font-family: sansserif;
		padding-left: 1em;
		padding-top: 1em;
		display: inline;
	}

}



/* Smartphones - Hochformat */
@media screen and (max-width:767px) { 

	#Inhalt {
	  /*
	   * Rechter Teil der Seite 
	   */
	  border:4px rgb(0,0,125);
	  /* font: 143% sans-serif; */
	  font: 80% sans-serif;
	  width: 100%;
	}

	#Inhalt_links {
	  /*
	   * Linker Teil der Seite
	   */
	  border:4px rgb(0,0,125);
	  width: 100%;
	}

}


