html,
body {
  margin: 0;
  font: normal 1.1em 'Arial', sans-serif;
  /* Keine Mindestschriftgröße! Dies wird dem Browser, bzw. dem Nutzer überlassen! */
  color: #333;
	
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}

* {
 /* margin: 0;*/
  padding: 0;
  /*font-family: 'Arial', sans-serif;*/
  box-sizing: border-box;
}
	
#wrapper {
margin: 0 auto; /* Zentriert das Layout */
width: 100%; /* Definiert die maximale Gesamtbreite des Layouts */
}
	
#header{
background: #bdb3b0;
height: 50px; /* Nur zur Sichtbarkeit im Browser, 
solange kein Inhalt vorhanden ist */
float: left;
width: 100%;
/*margin-bottom: 50px;*/
}
#logo{
/*background: yellow;*/
height: auto;
float: left;
width: 50%;
}

#foto{
/*background: orange;*/
height: auto;
float: left;
width: 50%;
}
	
#navigation{
background: #bdb3b0;
float: left;
	width: 100%;	}
	
#content, #content-1spalt{
height: auto;
float: left;
width: 100%;
	margin-top: 30px;
margin-bottom: 20px;
}

#box {display:flex; float: left;
padding: 0 1.5%;
	width: 50%;}
	
#sidebar{
background: #f5f3f3;
	border:0.15em #bdb3b0 dotted;
height: auto; /* Nur zur Sichtbarkeit im Browser, 
solange kein Inhalt vorhanden ist */
float: right;
width: 100%;
	margin-top: 30px;
margin-bottom: 20px;
	margin-bottom: 20px;
}

#footer{
background: #bdb3b0;
height: auto;
float: left;
width: 100%;
margin-top: 20px;
}
	
/* Container */

#container{
	margin: 0 auto;
	max-width: 1200px;
}	
	


/* verberge checkbox Label*/

input#responsive-nav,
label.responsive-nav-label {
  display: none;
}

/* Hauptnavigation */

nav {
  float: left;
  width: 100%;
}

nav ul {
  margin: 0;
  padding: 0;
}

nav a {
  display: block;
  color: #333;
  text-decoration: none;
}

nav ul li {
  position: relative;
  float: left;
  list-style: none;
  color: #bdb3b0;
  transition: 0.5s;
}

nav ul li a {
  padding: 10px 100px 10px 20px;
	font-size: 1em;
letter-spacing:1px;
}

nav ul > li.submenu > a:after {
  position: relative;
  float: right;
  content: '';
  margin-left: 10px;
  margin-top: 5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
  border-bottom: 5px solid transparent;
}

nav ul ul li.submenu > a:after {
  margin-left: auto;
  margin-right: -10px;
  border-left: 5px solid #333;
  border-right: 5px solid transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

nav ul li:hover {
  background: #f5f3f3;
}

nav ul ul {
  position: absolute;
  top: -9999px;
  left: -9999px;
  background: #bdb3b0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

nav ul ul li {
  float: none;
  width: 234px;
  border-bottom: 1px solid #555;
}

nav ul ul li a {
  padding: 10px 10px;
}

nav ul ul li:last-child {
  border-bottom: none;
}

nav ul li:hover > ul {
  top: 100%;
  left: 0;
}

nav ul ul li:hover > ul {
  top: 0;
  left: 200px;
}
	
	
	
/*Text formatierung*/

html { font-size: 100%; }
h1 {font-family: 'benm_0';
font-style: italic;
font-weight: normal;
color:#b0131a;
font-size: 25px;
font-size: 1.55rem;
line-height: 1.3;
margin: 1.3em 0;
}
#sidebar h2 {font-family: 'benm_0';
font-style: italic;
	font-weight: normal;
	color:#333;
font-size: 19px;
font-size: 1.15rem;
line-height: 1.3;
	text-align: left;
}
#content h2, #content-1spalt h2 {font-family: 'benm_0';
font-style: italic;
	font-weight: normal;
	color:#b0131a;
font-size: 21px;
font-size: 1.3rem;
line-height: 1.3;
	text-align: left;
margin-top: 2rem;
margin-bottom: 2rem;
}

h3 {font-family: 'benm_0';
font-style: italic;
	font-weight: normal;
	color:#b0131a;
font-size: 17px;
font-size: 1.1rem;
line-height: 1.3;
}
p, p.footer, span {
font-family:Arial, sans-serif;
font-size: 17px;
font-size: 1.1rem;
line-height: 1.7;
margin-bottom: .75rem;
}

h1, h2, h3, h4, h5, p {padding: 0 1.5%;}

p.footer {float: unset;
	text-align: center;
color: #ffffff}

p.fussnote {font-style: italic; font-size: 0.9rem; margin-top: 2rem;}

span.mobil { display: none;}
span.bold { font-weight: bold;}
	
a {color:#b0131a;}
a:hover {color:#bdb3b0;}
#footer a {color:#333;}
#footer a:hover{color:#b0131a;}

#content ul, #content-1spalt ul {padding-left: 4%; padding-right: 1.5%;}
#content ul li, #content-1spalt ul li {font-size: 1.1rem;
	line-height: 1.7; list-style: disc;}

	
img{
max-width:100%;
}	
	
/*Specials*/

#boxtausch {width: 100%; display: inline-flex;
    flex-direction: row-reverse; margin: 1.5% 0;}

#box h2 {padding-top: 30px;}

hr {margin: 40px;
border-top: 1px solid #bdb3b0;
border-bottom: 1px solid #bdb3b0;
height: 3px;
}
	

/* Responsive Navigation Anpassung */

@media (max-width: 640px) {
	
#foto, #logo {width: 100%}

#logo {text-align: center;}

	#boxtausch {display: unset;} 
	
#box {float: left;
	width: 100%; }
	
	
#box h2 {padding-top: 30px; /*border-top: solid 1px #333;*/}
	
span.mobil { display: initial;}
}	
	

@media screen and (max-width: 810px) {
 
html,
body {
  /*font-size: 16px;*/
}
	
	#box iframe {width: 100%;}
	
	span.mobil2 { display: initial;}
}
	
@media only screen and (max-width: 960px) {
	
#sidebar {width: 94%; margin-left:3%; margin-right:3%; margin-bottom: 30px;}
	
}

	

@media only screen and (min-width: 1024px) {
#wrapper {
max-width: 1200px;
}
	
/*#content{
height: auto;
width: 66%;
/*margin-left: 25%;*/
/*margin-bottom: 50px;
}*/
	
/*	#content-1spalt{
height: auto;
width: 100%;
margin-bottom: 50px;
}
	
#sidebar{
height: auto;
width: 31%;
margin-left: 1%;
margin-right: 1%;
margin-top: 6em;
}*/
	
	span.mobil2 { display: none;}
}

	
@media screen and (max-width: 1024px) {
 
input#responsive-nav,
label.responsive-nav-label {
display: none;
}
		
label.responsive-nav-label {
  position: relative;
  display: block;
  padding: 20px;
  cursor: pointer;
  color: #333;
}
		
label.responsive-nav-label span {
  margin-right: 10px;  
}
		
nav {
  position: absolute;
  top: -9999px;
  padding: 10px;
}
 
input#responsive-nav[type=checkbox]:checked ~ nav {
  position: relative;
  top: 0;
}
		
nav a:after {
  display: none;
}
	
nav li {
  float: none !important;
  width: 100% !important;
  border-bottom: none !important; 
}
   
nav li a {
  margin-bottom: 10px !important;
  padding: 10px 20px !important; 
  border-bottom: solid 1px #fff;
}
 
nav ul li:hover {
  background: none;
}
   
nav ul li a:hover {
  background: #4096ee;
}
		
nav ul ul {
  position: relative !important;
  width: 100%;
  left: 0 !important;
  top: 0 !important;
  background: none !important;
  box-shadow: none;
}
		
nav ul ul li {
  padding-left: 20px;
}
		
}

	
@media screen and (max-width: 1680px) {
  
* {
  font-size: 1.1rem;
}
  
label.responsive-nav-label {
	position: relative;
  display: block;
  padding: 20px;
  cursor: pointer;
  color: #333;
}
  
label.responsive-nav-label span {
  margin-right: 10px;  
}

nav {
  position: absolute;
  top: -9999px;
  padding: 10px;
}

input#responsive-nav[type=checkbox]:checked ~ nav {
  position: relative;
  top: 0;
}

nav a:after {
  display: none;
}

nav li {
  float: none !important;
  width: 100% !important;
  border-bottom: none !important; 
}
  
nav li a {
  margin-bottom: 10px !important;
  padding: 10px 20px !important; 
  border-bottom: solid 1px #fff;
}
  
nav ul li:hover {
  background: none;
}
  
nav ul li a:hover {
  background: #f5f3f3;
}
  
nav ul ul {
  position: relative !important;
  width: 100%;
  left: 0 !important;
  top: 0 !important;
  background: none !important;
  box-shadow: none;
}
  
nav ul ul li {
  padding-left: 40px;
}

}

