/*-------------------- Testklassen -----------------------*/
.rot{
   background-color: red !important;
}
.blau{
   background-color: blue !important;
}
.gruen{
   background-color: green !important;
}
.gelb{
   background-color: yellow !important;
}
.randrot{
   border: 1px solid red !important;
}
.randblau{
   border: 1px solid blue !important;
}
.randgruen{
   border: 1px solid green !important;
}
.randgelb{
   border: 1px solid yellow !important;
}
/*-------------------- allgemeine Klassen -----------------------*/
html {
	scroll-behavior: smooth;
}
body{
	font-family : Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	background: black;
}
*{
	box-sizing: border-box;
}
table{
   border-spacing: 0;
   border-collapse: collapse;
}
th, td{
   padding: 0;
}
p{
   hyphens: auto;
   hyphenate-limit-chars: auto 5;
   hyphenate-limit-lines: 3;
}

/*-------------------- eigene Klassen -----------------------*/
.block{
   display: block;
}
.flex{
   display: flex;
}
.inline{
   display: inline;
}
.inlineBlock{
   display: inline-block;
}
.weg{
   display: none;
}
.sichtbar{
   visibility: visible;
}
.unsichtbar{
   visibility: hidden;
}
.hand{
   cursor: pointer;
}
.defaultZeiger{
   cursor: default;
}
.klickbar{
   cursor: pointer;
}
.klickbar:hover{
   color: #f7bc5b;
}
.klickbar:active{
   color: #ff8928;
}
.maxgross{
   width: 100%;
   height: 100%;
}
.maxbreit{
   width: 100%;
}
.maxhoch{
   height: 100%;
}
.abs{
   position: absolute;
}
.rel{
   position: relative;
}
.fix{
   position: fixed;
}
.stat{
   position: static;
}
.links{
   left: 0;
}
.oben{
   top: 0;
}
.rechts{
   right: 0;
}
.unten{
   bottom: 0;
}
.keinUmbruch{
   white-space: nowrap;
}
.unselektierbar{
   user-select: none;
}
.selektierbar{
   user-select: auto;
}
.textZentriert{
	text-align: center;
}
.textLinks{
	text-align: left;
}
.textRechts{
	text-align: right;
}
.keinRand{
	margin: 0;
	padding: 0;
}
.flusslinks {
   float: left;
}
.flussrechts {
   float: right;
}
.hMitte{
   text-align: center;
   margin: 0 auto;
}

/*-------------------- Farben -----------------------*/
.HGFarb{
   background-color: #000000;
}
.HGFarb2{
   background-color: #272727;
}
.HGFarb3{
   background-color: #808080;
}
.HGFarbContent{
   background-color: #000000;
}
.hell{
   color: #f0d0b0;
}
.mittel{
   color: #f7bc5b;
}
.dunkel{
   color: #fe8a2a;
}
.inaktiv{
   color: #333;
}
/*-------------------- TextKlassen ------------------------*/
h1{
	text-align: left;
	margin: 0 0 0.5em 0;
	font-size: 110%;
	font-weight: bold;
}
.fliesstext {
   font-size : 0.95rem;
   line-height: 160%;
   color : #f0d0b0;
}
.fliesstextLink {
   font-size : 0.95rem;
   line-height: 160%;
   color : #f7bc5b;
   text-decoration: none;
   cursor: pointer;
}
.fliesstextLinkKlein {
   font-size : 0.8rem;
   line-height: 160%;
   color : #f7bc5b;
   text-decoration: none;
   cursor: pointer;
}
.fliesstextKlein {
   font-size : 0.8rem;
   line-height: 160%;
   color : #f0d0b0;
}
.fett{
   font-weight : bold;
}
.undekoriert{
	text-decoration: none;
}

/*-------------------- MenüStyles ------------------------*/
.handyWeg{
	display: block;
}
.handyDa{
	display: none; 
}
.schmalWeg{
	display: block;
}
.schmalDa{
	display: none;
}
#homeMenueBox{
	position: absolute;
	left: 0;
	top: 0;
	min-height: 2.5em;
	font-size: 0.95rem;
	text-align: center;
	line-height: 160%;
	padding: 0.5em 2.5em 0.5em 220px;
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: #404040;
	box-shadow: -0.5em 1em 1.5em 0 rgba(0, 0, 0, 0.5);

}
.menuePunkt{
	cursor: pointer;
	margin-right: 1.6em;
	display: inline-block;
}
.menuePunktAkt{
	color: #fe8a2a;
	border-style: solid;
	border-width: 0 0 2px 0;
	border-color: #70ff70;
}
#suchBox{
	display: flex;
	justify-content: center;
}
#suchFeld{
	font-size: 0.95rem;
	width: 12rem;
	margin: 0.2rem 0 0 0.5rem;
	color: #f0d0b0;
	border: 1px solid #606060; /* #f0d0b0 */
	background-color: #303030;
	outline: none;
}
#suchFeldX{
	font-size: 1.5rem;
}
#suchListenBox{
	position: absolute;
	padding: 0 0 0.6em 0;
	margin: 2.2em 0 0 2em;
	border-radius: 0 0 0.5em 0.5em;
	border-width: 0 1px 1px 1px;
	border-style: solid;
	border-color: #707070 #404040 #303030 #707070;
}
#suchListenFeld{
	max-height: 13.3em;
	min-width: 13.5em;
	overflow: auto;
	padding: 0.4em;
	margin: 0 0 0 0;
	text-align: left;
}
.suchListenPunkt{
	font-size: 0.9rem;
	padding: 0 0.5em 0 0.5em;
	margin: 0;
}
.listenPunktAktiv{
	background: #404040;
}
#homeVollbildTaste{
	position: fixed;
	top: 0.6rem;
	right: 0.6rem;
	font-size: 0.95rem;
	white-space: nowrap;
	box-shadow: 3px 3px 6px rgba(0,0,0,0.6);
	background-color: rgba(0, 0, 0, 0.6);
}
/*-------------------- Box Klassen -----------------------*/
.boxrand{
   border-radius: 0.5em;
   border-width: 1px;
   border-style: solid;
   border-color: #707070 #404040 #303030 #707070;
}
.boxschatten{
   box-shadow: 1em 1em 1.5em 0 rgba(0, 0, 0, 0.6);
}
#homeInhaltsBox{
	display: flex;
	flex-direction: row;
	margin: 4em 0.6em 2em 0.6em;
}
#themenVorschauBox{
	width: 100%;
	display: flex; 
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	margin: 0 0.6em 0 0;
}
.themaVorschau{
	width: 100%;
	max-width: 20%;
	border-radius: 0.5em;
	border-width: 1px;
	border-style: solid;
	border-color: #707070 #404040 #303030 #707070;
	box-shadow: 1em 1em 1.5em 0 rgba(0, 0, 0, 0.6);
	margin: 0 0.3em 0.6em 0.3em;
	padding: 0.3em;
	font-size: 0.95rem;
	text-align: center;
}
.buttonBlock{
   width: 22rem;
   text-align: center;
   background: #202020;
   margin: 0 0 0.6em 0;
   padding: 0.6em 0.3em 0.55em 0.3em;
   border-radius: 8px;
   border-width: 1px;
   border-style: solid;
   border-color: #707070 #404040 #303030 #707070;
   box-shadow: 8px 8px 10px 0 rgba(0, 0, 0, 0.5);
}
#schmalHeaderText{
	text-align: center;
}

/*-------------------- ThemenKlassen -----------------------*/
#themaMenueBox{
	position: fixed;
	left: 0;
	top: 0;
	min-height: 2.8em;
	font-size: 0.95rem;
	text-align: center;
	line-height: 160%;
	padding: 0.5em 8em 0.5em 220px;
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: #404040;
	box-shadow: -0.5em 1em 1.5em 0 rgba(0, 0, 0, 0.5);
}
#themaKartenTaste{
	height: 2rem;
	margin: 0.4rem 3rem 0 0;
	padding: 0 0.5rem 0 0.5rem;
}
#themaInhaltsBox{
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	margin: 4em 0.3em 2em 1em;
}
#textBox{
	width: 30%;
	min-width: 20em;
	max-width: 45em;
}
#textFeld{
	margin: 0.8rem;
	padding: 1rem;
	text-align: justify;
}
#themaTextUeberschrift{
   font-size : 1em;
   font-weight : bold;
}
#fussLinks{
   width: 100%;
   text-align: right;
   line-height: 220%;
   padding: 1.2rem 0.6rem 1rem 0;
   user-select: none;
}
#fotosVorschauBox{
	width: 70%;
	display: flex; 
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
}
.fotoVorschau{
	width: 100%;
	max-width: 10%;
	border-radius: 0.5em;
	border-width: 1px;
	border-style: solid;
	border-color: #707070 #404040 #303030 #707070;
	box-shadow: 1em 1em 1.5em 0 rgba(0, 0, 0, 0.6);
	margin: 0 0.6em 0.6em 0.6em;
	padding: 0.5em;
	font-size: 0.9em;
	text-align: center;
}
.panoramaVorschau{
	width: 100%; 
	height: 75%; 
	object-fit: cover;
}
.panoramaVorschauText{
	font-size: 1rem;
	margin: 0 0 0.6rem 0;
}
.videoVorschau{
	width: 100%; 
}
.videoVorschauText{
	font-size: 1rem;
}
#themaVollbildTaste{
	position: fixed;
	top: 0.6rem;
	right: 0.6rem;
	font-size: 0.95rem;
	white-space: nowrap;
	box-shadow: 3px 3px 6px rgba(0,0,0,0.6);
	background-color: rgba(0, 0, 0, 0.6);
}
#foto{
	object-fit: scale-down;
	cursor: zoom-in;
}
#buehneSchliessenBox{
	margin: 0 3rem 0 0;
	padding: 0.1rem 0.5rem 0.5rem 0.5rem;
	text-align: center;
	font-size: 1.6rem;
	font-weight: bold;
	text-shadow: 3px 3px 6px #000000;
}
#fotoLinks, #fotoRechts{
	display: block;
	color: #aaa;
	font-size: 6vmin;
	opacity: 0.5;
	text-shadow: 3px 3px 6px #000000;
	width: 30vw;
	height: 100%;
	transform: scale(1.4, 1); 
	line-height: 100vh;
	vertical-align: middle;
}
#fotoLinks{
	text-align: left;
	padding-left: 6vw;
}
#fotoRechts{
	text-align: right;
	padding-right: 6vw;
}
#fotoLinks:hover, #fotoRechts:hover{
	color: #fff;
}
#ausnahmeLinks, #ausnahmeRechts{
	color: #aaa;
	font-size: 6vmin;
	opacity: 0.5;
	text-shadow: 3px 3px 6px #000000;
	transform: scale(1.4, 1); 
	padding: 3vmin;
}
#ausnahmeLinks{
	position: absolute;
	top: 44vh;
	left: 4vw;
}
#ausnahmeRechts{
	position: absolute;
	top: 44vh;
	right: 4vw;
}
#ausnahmeBU{
	font-size: 0.8rem;
	text-align: center;
	color: #f0d0b0;
	text-shadow: 2px 2px 4px #000000;
	background: rgba(0,0,0,0.6);
	margin: 0.5rem 0 0 0;
	padding: 0.2rem 0.5rem 0.3rem 1rem;
}
#fotoBU{
	text-align: center;
	color: #f0d0b0;
	text-shadow: 2px 2px 4px #000000;
	background: rgba(0,0,0,0.6);
	padding: 0.3em 2em 0.5em 2em;
}
#diashowBU{
	text-align: left;
	text-shadow: 2px 2px 4px #000000;
	background: rgba(0,0,0,0.6);
	padding: 0.3em 2em 0.5em 2em;
}
#diashowZeitBox{
	padding: 0.3em 2em 0.5em 2em;
}
#panoramaBuehne{
	display: flex;
	justify-content: left;
	align-items: center;
	overflow: auto;
	overflow-y: hidden;
}
#panorama{
	cursor: zoom-in;
}
#panoramaScroller{
	height: 1.8rem;
}
#videoBuehne{
	display: flex;
	justify-content: center;
	align-items: center;
}
#dasVideo{
	width: 100%;
	height: 100%;
}
#fotoTasteBox{
	width: 100%;
	display: flex;
	justify-content: center;
}
.fotoTaste{
	width: 10.5rem;
	height: 7rem;
	margin: 1em 0 2em 0;
	border-radius: 0.6rem;
	background-size: contain;
}
.fotoTastenText{
	width: 100%;
	font-size: 1.1rem;
	text-align: center;
	color: white;
	text-shadow: 1px 1px 0px black;
	padding: 4rem 0 0 0;
}

/*-------------------- Chronik -----------------------*/
#chronikMenueBox{
	position: fixed;
	min-height: 2.5em;
	left: 0;
	top: 0;
	min-height: 2.8em;
	font-size: 0.95rem;
	text-align: center;
	line-height: 160%;
	padding: 0.5em 8em 0.5em 220px;
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: #404040;
	box-shadow: -0.5em 1em 1.5em 0 rgba(0, 0, 0, 0.5);
}
#chronikBox{
	margin: 4em 2.5em 1em 1em;
}
.jahresZeile{
	display: flex; 
	align-items: flex-start;
	margin: 1em;
	padding: 0.8em;
}
.jahresTextBlock{
	min-width: 25em;
	padding: 0.1em 0 0 0;
}
.jahresText{
	padding: 0.1em 1em 0.1em 1em;
}
.jahresTourenBlock{
	margin: 0 0 0 0.5em;
	display: flex; 
	flex-wrap: wrap;
}
.chronikVorschau{
	width: 14rem;
	padding: 0 0 1.2em 0.8em;
	font-size: 0.95rem;
	text-align: center;
}
#jahresWahlFeld{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 80vw !important;
}
.jahresWahlButton{
	margin: 1em;
}
/*-------------------- Sitemap -----------------------*/
#sitemapBox{
	margin: 1rem;
	padding: 1rem;
	column-width: 12rem;
	column-gap: 2em;
	column-rule: 3px inset #666;
	font-size: 1.1rem;
	line-height: 150%;
	text-align: left;
}

/*-------------------- Kartenklassen -----------------------*/
.kmlMarker{
   color: #f0d0b0;
   white-space: nowrap;
   font-size: 80%;
}
.checkbox{
   width: 20px;
   height: 20px;
   background: url('../images/alle_symbole_inakt.png') no-repeat scroll;
   background-position: -505px -40px; float: left;
}
#kartenleiste{
   width: auto;
   height: auto;
   max-width: 78%;
   padding: 0.3em 0.5em 0.2em 18px;
   border-radius: 0.6em 0em 0em 0em;
   border-left: 1px solid #878787;
   border-top: 1px solid #a0a0a0;
}
.kartenreiter{
   padding: 0 0.2em 0 0.4em;
   font-size: 80%;
}
.kartenreiter:hover .checkbox{
   background: url('../images/alle_symbole_orange.png') no-repeat scroll;
   background-position: -505px -40px; float: left;
}
#filterTaste:hover #filterSymbol{
   background: url('../images/alle_symbole_orange.png') no-repeat scroll;
}
#kartenSchliesser{
   padding: 0 0em 0 0.8em;
}
#filterSymbol{
   width: 20px;
   height: 20px;
   margin: 5px 0 0 4px;
   background: url('../images/alle_symbole_inakt.png') no-repeat scroll;
}
.infoWindow{
	color: #f0d0b0;
	margin: 2em 0.4em 0.4em 0.4em;
}
.infoWindowUeberschrift{
   color: #f0d0b0;
   font-size: 110%;
   font-weight: 500;
}
.infoWindowLink{
   color: #f7bc5b;
   font-weight: 500;
}
.infoWindowLink:hover{
   color: #fe8a2a;
}
.infoWindowSchliessen{
	color: #f7bc5b;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	margin: 0 10px 0 0 !important;
	font-size: 2em;
}
.infoWindowSchliessen:hover{
   color: #fe8a2a;
}
.infoWindowImg{
   border: 1px inset #a0a0a0;
   border-radius: 5px;
}
.infoWindowImgLink{
   border: 1px inset #a0a0a0;
   border-radius: 5px;
   cursor: pointer;
}
.gm-style-iw{
	background-color: black !important;
	overflow: hidden !important;
}
.gm-ui-hover-effect img{
	display: none !important;
}
.reiterSchatten{
   box-shadow: 0em 0em 1em 0 rgba(0, 0, 0, 0.5);
}

/*-------------------- Google Translator -----------------------*/
.goog-te-gadget-simple  {
	font-size: 0.95rem !important;
	background-color: #272727 !important;
	border: 1px none #606060 !important;
	border-radius: 4px!important;
	display: inline-block;
	cursor: pointer;
}

.VIpgJd-ZVi9od-xl07Ob-lTBxed {
	color: #f0d0b0 !important;
}

.goog-te-menu-value {
	color: #f0d0b0 !important;
	user-select: none;
}
.goog-te-gadget-icon {
    background-image: url(/images/gt_logo.png)!important;
	margin-right: 8px !important;
}
.goog-te-menu-frame{
	background-color: #272727 !important;
}
.goog-te-banner-frame.skiptranslate {
	display: none!important;
} 
#themaTranslateBox{
	position: fixed;
	left: 0;
	top: 0;
	padding: 0.5em 0 0.5em 0.5em;
}

/*-------------------- Handy-Klassen -----------------------*/
#handyMenueBox{
	text-align: center;
	background: #202020;
	padding: 0 0 0.6em 0;
	box-shadow: 8px 8px 10px 0 rgba(0, 0, 0, 0.5);
}
#handyMenueFeld{
	padding-top: 2.5em;
	display: flex; 
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
}
#hamburgerMenue{
	width: 100%;
	font-size: 1.5rem;
	padding: 0.2rem 0 0.5rem 4rem;
}
#menueSchliesser{
	font-size: 0.8em;
	transform: scale(3, 1);
}
.handyMenuePunkt{
	width: 47%;
	font-size : 0.95rem;
	padding: 0.5em 0 0.5em 0;
}
#handyFilterFeld{
	font-size: 1rem;
	position: relative;
	top: -0.15rem;
	left: 0.5rem;
}
.blockHeadTxt{
   font-size: 0.95em;
   text-align: left;
   font-weight: bolder;
   font-variant: small-caps;
   padding: 0 0 0.3em 0.6em;
}
.fotoklein{
   position: relative;
   display: inline-block;
   width: 31.0%;
   padding-bottom: 20%;
   margin: 2px 3px 0 3px;
   background: no-repeat scroll;
   background-size: cover;
}
.fotoklein:hover .fotoKleinText{
   color: #fe8a2a;
}
.fotoKleinText{
   width: 100%;
   text-align: center;
   font-size: 1em;
   color: white;
   text-shadow: 1px 1px 0px black;
   font-weight: normal;
   line-height: 100%;
   position: absolute;
   bottom: 0px;
   padding: 0 0.2em 0.8em 0.2em;
}

/*-------------------- Media Queries -----------------------*/
@media screen and (min-width: 2300px){
	#fotosVorschauBox {width: 100%;}
	#textBox {width: 100%;}
}
@media screen and (max-width: 4500px){
	.fotoVorschau {max-width: 12%;}
	.themaVorschau {max-width: 12.2%;}
}
@media screen and (max-width: 3900px){
	.fotoVorschau {max-width: 16%;}
	.themaVorschau {max-width: 13.9%;}
}
@media screen and (max-width: 3300px){
	.fotoVorschau {max-width: 19.3%;}
	.themaVorschau {max-width: 16.1%;}
}
@media screen and (max-width: 2700px){
	.fotoVorschau {max-width: 23.8%;}
	.themaVorschau {max-width: 19.4%;}
}
@media screen and (max-width: 2100px){
	.fotoVorschau {max-width: 31.6%;}
	.themaVorschau {max-width: 24.0%;}
}
@media screen and (max-width: 1500px){
	.fotoVorschau {max-width: 47.3%;}
	.themaVorschau {max-width: 31.9%;}
}
@media screen and (max-width: 1200px){
	.themaVorschau {max-width: 48.5%;}
}
@media screen and (max-width: 1020px){
	.fotoVorschau {max-width: 47.3%;}
	.buttonBlock {width: 16rem;}
	#homeInhaltsBox {margin: 5em 0.6em 2em 0.6em;}
	#suchFeld {width: 9rem;}
}
@media screen and (max-width: 950px){
	.themaVorschau {max-width: 48%;}
}
@media screen and (max-width: 880px){
	.fotoVorschau {max-width: 96.7%;}
}
@media screen and (max-width: 765px){
	.themaVorschau {max-width: 100%;}
}
@media screen and (max-width: 655px){
	#homeInhaltsBox {margin: 7em 0.6em 2em 0.6em;}
}

/*-------------------- Handy -----------------------*/
@media only screen and (max-width: 600px) and (orientation: portrait), only screen and (max-width: 959px) and (orientation: landscape){
	.goog-te-gadget-simple{
		font-size:0px !important;
	}
	.handyWeg{
		display: none !important;
	}
	.handyDa{
		display: block;
	}
	#buttonBox{
		width: 100%;
	}
	.buttonBlock{
		width: 100%;
	}
	.menuePunkt{
		margin: 0 0 0 1.2em;
		display: inline-block;
	}
	#schliessenBox{
		margin: 0 0.5rem 0 0;
	}
	#buehneSchliessenBox{
		margin: 0 0.5rem 0 0;
	}
	#homeInhaltsBox {
		margin: 3.5em 0em 2em 0em;
	}
	#themaMenueBox{
		position: relative;
		padding: 0.5rem 5rem 0.5rem 0.5rem;
		box-shadow: none;
	}
	#themaTranslateBox{
		position: absolute;
	}
	#chronikMenueBox{
		padding: 0.5em 1em 0.5em 1em;
		box-shadow: none;
	}
	#chronikBox{
		margin: 3em 0 0 0;
	}
	.jahresZeile{
		width: 100%;
		display: block; 
		align-items: flex-start;
		margin: 0;
		padding: 0;
		border: none;
		box-shadow: none;
	}
	.jahresTextBlock{
		min-width: 25em;
		padding: 0.1em 0 0 0;
	}
	.jahresText{
		padding: 0.1em 1em 0.1em 1em;
	}

	#themaKartenTaste{
		margin: 0.4rem 0.5rem 0 0;
	}
	#themaTranslateBox{
		padding: 0.5em;
	}
	.goog-te-gadget-simple{
		max-width: 2.5em;
	}
	#themaInhaltsBox{
		display: block;
		margin: 0;
	}
	#textBox{
		width: 100%;
		min-width: 0;
		max-width: 100%;
		margin: 0;
		padding: 0;
		border: 0;
	}
	#textFeld{
		margin: 0;
		padding: 1.2em;
	}
	.themaVorschau{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		@media (orientation: portrait){max-width: 45vw;}
		@media (orientation: landscape){max-width: 31vw;}
		border-radius: 0.5em;
		border-width: 1px;
		border-style: solid;
		border-color: #707070 #404040 #303030 #707070;
		margin: 0 0.3em 0.6em 0.3em;
		padding: 0.3em;
		font-size: 0.95rem;
		text-align: center;
	}
	.themaVorschauText{
		display: flex;
		flex-wrap: wrap;
		align-content: center;
	}
	.jahresTextBlock{
		width: 100%;
		min-width: 100% !important;
		padding: 0.8em;
	}
	.jahresText{
		height: 100%;
		padding: 0.1em 1em 0.1em 1em;
	}
}

