body {
	font-family: Hevetica,Arial, sans-serif;
	font-size: 0.97em;
	line-height: 125%;
}

@media (max-width: 1100px) {
  body {
	  font-size: 0.9em;
  }
}

@media (max-width: 900px) {
  body {
	  font-size: 0.8em;
  }
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	max-width: 100%;
	height: auto;
	position: relative;
}

.top20 {
	margin-top: 20px;
}

.top40 {
	margin-top: 40px;
}

h1 {
	font-size: 200%;
	line-height: 100%;
	font-weight: normal;
}

h2 {
	padding: 20px 0 10px 0;
	color: #996633;
	font-weight: normal;
	font-size: 210%;
	line-height: 100%;
}

.kv h2 {
	padding-top: 3px;
}

h1 + h2 {
	padding: 0px 0 10px 0;
}

hr + h2 {
	padding: 0px 0 10px 0;
}

h3 {
	font-weight: normal;
	padding: 0px 0 5px 0;
	font-size: 140%;
	line-height: 110%;
	color: #4b6301
}

h4 {
	font-weight: bold;
	padding: 0px 0 5px 0;
	font-size: 110%;
	line-height: 100%;
}

p {
	padding: 5px 0;
}

a {
	color: #996633;
	text-decoration: none;
}

a.button {
	border: 2px solid #996633;
	border-radius: 5px;
	padding: 5px 10px;
	font-size: 100%;
	color: #000;
	transition: all 0.3s ease;
}

a.button:hover {
	background: #996633;
	color: #fff;
	transition: all 0.3s ease;
}

hr {
	border: 0px solid #fff;
	border-top: 1px solid #996633;
	margin: 20px 0;
}

.wrapper {
	width: 100%;
}
.content,
.container {
	width: 100%;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.header,
.navi,
.kv {
	width: 100%;
	max-width: 1280px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.navi,
.header {
	max-width: 100%;
}

.container {
	background-color: #8A8F0E;
}

.topleiste {
	width: 100%;
	color: #fff;
	background: #996633;
	text-align: center;
	padding: 3px 0;
}

.header {
	width: 100%;
	/*background: rgba(153, 102, 51, 0.4);*/
	background: url(Bilder/bambus2.jpg) no-repeat;
	/* pixabay britaseifert https://pixabay.com/de/users/britaseifert-1651244/ */
	background-size: cover;
	background-position-y: -300px;
	background-position-x: 0px;
}

@media (max-width: 1100px) {
  .header {
	  background-size: 120%;
	  background-position-y: -250px;
	  background-position-x: 0px;
  }
}

@media (max-width: 900px) {
  .header {
	  background-size: 120%;
	  background-position-y: -200px;
	  background-position-x: 0px;
  }
}

@media (max-width: 900px) {
  .header {
	  background-size: 140%;
	  background-position-y: -100px;
	  background-position-x: 0px;
  }
}

.kv {
}

.kv img {
	width: 100px;
}

.kv > div {
	display: flex;
	justify-content: space-around;
	background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(255,255,255,0.0) 50%, rgba(0,0,0,0) 100%);
}

.kv > div > div {
	padding: 20px;
}

.navi {
	border-top: 2px solid #fff;
	background: rgba(0, 0, 0, 0.2);
	border-bottom: 3px solid #996633;
}

.navi ul {
	max-width: 1280px;
	display: flex;
	justify-content: space-around;
}

.navi li {
	list-style-type: none;
	border-right: 1px solid #fff;
}

.navi li:last-child {
	border-right: 0px solid #fff;
}

.navi li a {
	padding: 8px 15px;
	color: #fff;
	font-size: 110%;
	display: block;
	background: rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.navi li a:hover {
	background: rgba(0, 0, 0, 0.6);
	transition: all 0.3s ease;
}

#menuicon {
	display: none;
	/* width: 26px; */
	height: 24px;
	/* left: 20px; */
	cursor: pointer;
	/* top: 5px; */
	border: 1px solid #fff;
	border-radius: 4px;
	/* padding: 3px; */
	margin: 5px;
	background: rgba(255, 255, 255, 0.75);
}

#menuicon:hover {
	background: rgba(0, 0, 0, 0.75);
}

#menuicon span {
	display: block;
	height: 3px;
	width: 26px;
	background: #996633;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
	margin: 2px 3px;
}

#menuicon:hover span {
	background: #fff;
}

@media (max-width: 520px) { 
	.navi #menuicon {
		display: block;
	}
	
	.navi ul {
		max-width: 1280px;
		display: none;
	}
	
	.navi.open ul {
		display: block;
		width: 100%;
		position: absolute;
		top: 36px;
		background: #4b6301;
		z-index: 1;
	}
	
	.navi li {
		border-right: 0px solid #fff;
		border-bottom: 1px solid #fff;
	}
}

.content {
	padding: 50px 20px;
}
.content .inner {
	max-width: 1280px;
}

.content li {
	margin-left: 22px;
}

.zweispaltig {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.zweispaltig > div {
	width: calc(50% - 30px);
}

.zweispaltig.col4060  > div {
	width: calc(40% - 30px);
}

.zweispaltig.col4060  > div:last-child {
	width: calc(60% - 30px);
}

@media (max-width: 620px) {
  .zweispaltig {
	  display: block;
  }
  
  .zweispaltig > div {
	  width: calc(100%) !important;
  }
  
  .zweispaltig > div:last-child {
	  margin-top: 25px;
  }
}

td {
	vertical-align: top;
	padding: 3px 0;
}

.vita td:first-child {
	width: 100px;
}