/* Respons füe Nivigation, iframe, Tabelle, Bild , DIV, Formulare -------------------------------------*/
/* DIV und iframe ------------------------------------------------------------------------------------------------------------------------ */
  
      * {
      box-sizing: border-box;
      }
      html {
      font-family: "Lucida Sans", sans-serif;
      }

      .container {
		  content: center;
		  padding: 0px;
		  max-width: 100%;
		}

			.embed-container {
			  position: relative; 
			  padding-bottom: 56.25%; /* ratio 16x9 */
			  height: 0; 
			  overflow: hidden; 
			  width: 100%;
			  height: auto;
			}
			.embed-container iframe {
			  position: absolute; 
			  top: 0; 
			  left: 0; 
			  width: 100%; 
			  height: 100%; 
			}
			/* ratio 4x3 */
			.embed-container.ratio4x3 {
			  padding-bottom: 75%;
			}			
      img {
      width: 100%;
      height: auto;
      }
      .row:after {
      content: "";
      clear: both;
      display: table;
      }
      .content {
      content: center;
      padding: 0px;
	  max-width: 1200px;
      text-align: left;
      }
      @media only screen and (min-width: 600px) {
      .content {width: 75%;}
      }
      @media only screen and (min-width: 768px) {
      .content {width: 79%;}
      }

      .header {
      background-color: #FFFFFF;
      color: #ffffff;
      padding: 10px;
      text-align: left;
	  max-width: 1200px;
      }
      .footer {
      background-color: #DDDDDD;
      color: #000000;
      text-align: left;
      font-size: 12px;
      padding: 5px;
      }
	  


/* Navigation  -------------------------------------*/

.topnav {
  overflow: hidden;
  background-color: #DDDDDD;
}

.topnav a {
  float: left;
  display: block;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-weight: bold;
}

.active {
  background-color: #4CAF50;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: #000000;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  font-weight: bold;
  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: #DDDDDD;
  color: white;
}

.dropdown-content a:hover {
  background-color: #DDDDDD;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 700px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 700px) {
  .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;
  }
}
/* Formular  -------------------------------------*/

* {
  box-sizing: border-box;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 6px 6px 6px 8px;
  display: inline-block;
}

input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 6px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: left;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.container {
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 10px;
}

.col-01 {
  float: left;
  width: 200px;
  margin-top: 6px;
}

.col-02 {
  float: left;
  width: 130px;
  margin-top: 6px;
}


/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


@media screen and (max-width: 500px) {
  .col-01, .col-02, input[type=submit] {
    width: 200px;
    margin-top: 0;
  }
}

/*---------------------------------------------------------------------*/
