/*	allgemein   -------------------------------------------------------------------------------*/


/* orange  		FF7400 */
/* hellgrau  	efefef */

:root {
	--dunkelgrau: 			rgba(69,73,73,1.00); /* #585353 #2F2F2F */
	--dunkeldunkelgrau: 	rgba(40,41,41,.95); /* #585353 #2F2F2F */
	--weiss: 				#e0ddcb; /* #efefef */
}

@import url('https://fonts.googleapis.com/css?family=Roboto');



* {
	box-sizing: border-box;
	margin:0;
	padding:0;
}

#swipebox-caption{top:0 !important;}
#swipebox-action{bottom:0 !important;}


html {
	width:100%;
	height:100%;
}
body {
	padding:1rem 2rem;
	color:var(--weiss);
	background:var(--dunkelgrau);
}

div {
	box-sizing:border-box;	
}

body, input, select, textarea {
	font-family: 'Roboto',Arial, Verdana, Helvetica, sans-serif;
    font-size:17px;
    line-height: 1.2rem;
}


img {
	border:none;
}

a {
	color: var(--weiss);
	text-decoration:none !important; 
}

.child a {
	color: #FF7400 !important;	
}

a:link, 
a:visited {
	text-decoration:none;
} 
a:hover, 
a:active,
a.standpunkt {
	color:#FF7400;
}

h1, h2, h3, h4 {
	font-weight:normal;
	color: var(--weiss);
}

ul {
	padding-start: 20px;
	-moz-padding-start: 20px;
    -webkit-padding-start: 20px;
	line-height:25px;
}
ul li li {
	line-height:20px;
}
ol {
	padding-start: 20px;
	-moz-padding-start: 20px;
    -webkit-padding-start: 20px;
}
ol li {
	padding-bottom:15px;
}

/* KLASSEN */
.easy_clearfix {
	clear:both;	
	height:1px;
}
.klein {
	font-size:0.65rem;
}

.icon {
	padding-right:6px;
}
.icon-klein {
	font-size:15px !important;
	margin:7px !important;
}

.ui-accordion-header {
	margin:0px;
	padding:0px;
}
.ui-state-focus h3{
	font-size:0.7em;
	color:#FF7400;
}
.ui-state-focus p{
	font-size:0.9em !important;
	margin:0px;
	padding:0px;
}
.linie_oben {
		border-top:1px solid  var(--weiss); /*FF7400 */
}

.linie_unten {
		border-bottom:1px solid  var(--weiss); /*FF7400 */
}

.bild_titel {
		font-size:1.2em;
		margin-bottom:0px;
		padding-bottom:0px;
}
.bild_info {
		font-size:0.9em;
}
.bild_google {
		font-size:0.9em;
}
@media screen and (max-width: 900px) {
	.bild_titel {
		font-size:1em;
		display:block;
		clear:both;
		line-height:1.1em;
		margin:0px !important;
		padding:0px !important;
	}
	.bild_info {
		display:none;
		line-height:1em;
		display:block;
		clear:both;
		font-size:0.7em;
		margin:0px !important;
		padding:0px !important;
	}
	.bild_google {
		display:none;
		line-height:1em;
	}
}


p, h2 {
	padding:0;
	margin:0 0 10px 0;
	outline:0; 
}
a.swipebox:hover {
	cursor:zoom-in !important;
}
a.swipebox img {
	display:block;
}
.easytotop {
	background-color:rgba(255,255,255,0.9);
	border:1px solid #FF7400;
	color:#333;
	box-shadow:1px 1px 10px rgba(0,0,0,0.7);
	padding:10px; 
	font-weight: bold;
	position:fixed;
	bottom:30px;
	right:20px;
	display:none;
}

/*	struktur div  -------------------------------------------------------------------------------*/
main {
	/*box-shadow:1px 1px 5px 2px rgba(0,0,0,0.6);*/
	margin:0px auto;
	width:100%;
	max-width:1600px;
	position: relative;
}



header {
	display:flex;
    flex-direction:row;
    align-items: flex-end;
    justify-content:flex-start;
}
header a {
	width:50%;
}
header img {
	width:100%;
}
header h3 {
	width:40%;
    font-size:1.1rem;
    color: var(--weiss);
    padding:0 1rem;
}

.spezialbild {
	opacity:1;
	position:relative;
	width:100%;
	overflow:hidden;
	height:20rem;
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	margin:1rem 0rem 0rem 0rem;
	transition:all 1s ease-in-out;
	border-radius:0.2rem;
}
.spezialbild:hover {
	/*height:25rem;*/
	opacity:0.8;
	transition:all .6s ease-in-out;
}
.spezialbild_titel {
	font-size:3rem;
	position:absolute;
	left:1rem;
	bottom:1rem;
	padding:0.5rem 0rem;
	text-shadow: 0px 0px 3px  rgba(33,33,33,0.8);
	animation:fade-in 1.2s ease-in-out forwards;
	opacity:0;
	transform:translateX(1rem);
	transition:all .6s ease-in-out;
}
.spezialbild:hover .spezialbild_titel{
	/*height:25rem;*/
	left:2rem;
	transition:all .3s ease-in-out;
}





@keyframes fade-in {
	0%{
	opacity:0;
	transform:translateX(1rem);
	}
	
	100%{
	opacity:1;
	transform:translateX(0rem);
	}
}



.toggle_info {
		cursor:pointer;
		font-weight:bold;
		font-size:1.3rem;
		position: absolute;
		top:2rem;
		right:0rem;
		
}
.infos {
	display:none;
	border:2px solid  var(--weiss);
	border-radius: 0.5rem;
	overflow: auto;
	justify-content: space-around;
	position:fixed;
	/* center fixed element */
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width:80vw;
	max-height:80vh;
	background:rgba(33,33,33,0.95);
	backdrop-filter:blur(2px);
	padding:3rem 2rem 8rem 2rem;
	z-index: 999;
}
.infos_open {
	display:flex !important;
}
.infos_titel {
		width:100% !important;
		flex-grow: 1;
		margin-bottom:1rem;
		padding-bottom:.5rem;
	font-size:1.5rem;
}

.infos_text {
		width:60%;
}
.infos_text p {
		max-width:80ch;
		text-align:justify;
		padding-bottom:1rem;
}

.infos_text p a{
		border:1px solid antiquewhite;
		border-radius:0.2rem;
		padding:0.1rem 0.3rem;
		text-decoration:none !important; 
}

.infos_bilder {
		width:30%;
}

.infos_bilder img {
	border:2px solid white;
	
}
.infos .info_close {
	border:2px solid white;
	width:3rem;
	height:3rem;
	padding:0.2rem;
	position:absolute;
	top:.5rem;
	right:.5rem;
	z-index:99;
	display: flex;
	justify-content: center;
	align-items: center;
	background:rgba(33,33,33,0.9);
	backdrop-filter:blur(2px);
	border-radius:50%;
	cursor:pointer;
}
.infos .info_close .fa {
	font-size:2rem;
		transition:all ease-in-out 0.6s;
}
.infos .info_close:hover .fa {
	color:gray;
		transition:all ease-in-out 0.4s;
}
.infos .info_close:hover  {
	background:rgba(223,223,223,0.9);
}	

    /* NEU 2020 */
    .unteruntermenuvorschau{
        display:flex;
        flex-wrap:nowrap;
    }
    .unteruntermenuvorschau a{
        font-size:1.1rem;
        text-decoration: none !important;
        border:1px solid darkslategray;
        padding:0.5rem;
        margin-right:0.5rem;
        color:#FF7400 !important;
    }
	.unteruntermenuvorschau_button {
		background:rgba(222,22,33,0.8);
		padding:0.5rem 1rem;
	}


	.breadcrumbs {
		text-transform: uppercase;
	}
	.breadcrumbs a:link {
		text-decoration:none !important;
	}
	.breadcrumbs a:after {
		content: " | ";
	}
	.breadcrumbs a:last-child:after {
		content: "   ";
	}

	/* neue Galeriebuttons */
	.untermenu_vorschau {
		display:flex;
		flex-wrap:wrap;
		justify-content: space-around;
		gap:0.5rem;
		margin-top:2rem;
	}
	.untermenu_vorschau_button {
		width:19%;
		margin-bottom:0.5rem;
		aspect-ratio:1/1;
		border:1px solid rgba(33,33,33,0.7);
		box-shadow:0px 0px 2px 2px rgba(33,33,33,0.7);
		border-radius:0.2rem;
		position: relative;
		overflow: hidden;
		padding:0;
		transition:all ease-in-out 0.6s;
	}

	.galerie_vorschau_button {
		width:18%;
		margin-bottom:0.5rem;
		aspect-ratio:1/1;
		border:1px solid rgba(33,33,33,0.9);
		box-shadow:0px 0px 3px 1px rgba(33,33,33,0.5);
		border-radius:0.2rem;
		position: relative;
		overflow: hidden;
		padding:0;
		transition:all ease-in-out 0.6s;
	}
	.untermenu_vorschau_button_background {
			position: absolute;
			bottom:0;
			left:0;
			width:120%;
			height:120%;
			object-fit: cover;
			z-index:15;
			filter:blur(6px);
	}


	

	.untermenu_vorschau_width_20{
			width:16.666%;
			aspect-ratio:16/9;
	}


	.untermenu_vorschau_button_titel {
		font-size:1.2rem;
		font-weight:bold;
		position: absolute;
		bottom:0;
		left:0;
		width:100%;
		height:50%;
		object-fit: cover;
		z-index:22;
		display:flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		opacity:1;
		text-align:center;
		transition:all ease-in-out 0.6s;
		color:rgba(255,255,255,0);
		text-shadow:0px 0px 3px rgba(33,33,33,0.0);
	}


	.untermenu_vorschau_button_titel_line_before, .untermenu_vorschau_button_titel_line_after{
		width:0rem;
		opacity:0;
		transition:all ease-in-out 0.6s;
		height:.5rem;
	}
	.untermenu_vorschau_button_titel_line_before{
		border-top:1px solid rgba(255,255,255,0);
	}
	.untermenu_vorschau_button_titel_line_after{
		border-bottom:1px solid rgba(255,255,255,0);
	}



	.untermenu_vorschau_button_bild {
		position: absolute;
		top:0;
		left:0;
		width:150%;
		height:100%;
		object-fit: contain;
		z-index:20;
	} 


	.untermenu_vorschau_button_bild img {
		width:100%;
		height:100%;
		object-fit: contain;
		object-position: center;
		transition:all ease-in-out 0.6s;
		z-index:20;
	} 




	.galerie_vorschau_button img{
		width:100%;
		height:100%;
		object-fit: cover;
		object-position: center;
		transition:all ease-in-out 0.6s;
		z-index:20;
	}











	.untermenu_vorschau_button:hover .untermenu_vorschau_button_titel_line_before, .untermenu_vorschau_button:hover .untermenu_vorschau_button_titel_line_after{
		opacity:1;
		transition:all ease-in-out 0.3s;
		color:white;
		width:70%;
	} 

	.untermenu_vorschau_button:hover .untermenu_vorschau_button_titel{
		opacity:1;
		height:100%;
		transition:all ease-in-out 0.3s;
		color:white;
		cursor: pointer;
		background:rgba(33,33,33,0.3);
	} 


	.untermenu_vorschau_button:hover .untermenu_vorschau_button_bild img{
		opacity:1;
		transition:all ease-in-out 0.3s;
		filter:blur(1px);
		transform:scale(1.1);
	} 

	.info_facts_button {
		border:1px solid rgba(255,255,255,0.7);
		background:rgba(255,255,255,0.9);
		box-shadow:0px 0px 0px 0px rgba(33,33,33,0);
	}
	.info_facts_button .untermenu_vorschau_button_titel {
		color:rgba(30,29,28,1.00);
		opacity:0.8;
		font-size:0.8rem;
	}
	.info_facts_button:hover .info_facts_button {
		border:2px solid rgba(255,255,255,1);
		background:rgba(255,255,255,1);
		box-shadow:0px 0px 0px 0px rgba(33,33,33,0);
	}


 .untermenu_vorschau_button_bild_start {
		position: absolute;
		top:0;
		left:0;
		width:100%;
		height:100%;
		object-fit: cover;
		z-index:20;
	}

 .untermenu_vorschau_button_bild_start img{
		width:100%;
		height:100%;
		object-fit: cover;
		object-position: center;
		transition:all ease-in-out 0.6s;
		z-index:20;
	}


















	.galerie_vorschau_button .untermenu_vorschau_button_titel{
		opacity:0.1;
	}
	.info_facts_button {
		cursor:pointer !important;
	}


	@media screen and (max-width: 1000px) {
		.untermenu_vorschau_button {
			width:45%;
			margin-bottom:1rem;
			font-size:0.9rem;
		}
		.untermenu_vorschau_width_20{
			width:45%;
		}	
		.untermenu_vorschau_button_titel {
			font-size:1rem;
			opacity:1;
			color:rgba(255,255,255,1);
		}
	}


	@media screen and (max-width: 800px) {
		.untermenu_vorschau_button {
			width:100%;
			margin-bottom:1rem;
		}
		.untermenu_vorschau_width_20{
			width:100%;
		}
	}








.fotogalerie_start {
	//border-top:1px solid rgba(255,255,255,0.3);
	padding-top:1rem;
	width:80%;
	display:block;
}











.publikationen {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width:100%;
}


.publikation_eintrag {
	width:49%;
	border:1px solid var(--weiss);
	border-radius:0.5rem;
	margin-bottom:1rem;
	max-height:20rem;
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
	background:rgba(33,33,33,0.8);
}
.publikation_eintrag_bild {
	width:49%;
	overflow: hidden;
	padding:0.5rem;
}
.publikation_eintrag_bild:hover {
	transform:scale(1.1);
	transition: all ease-in-out 0.3s;
}
.publikation_eintrag_bild img {
	width:100%;
	height:100%;
	object-fit: cover;
}
.publikation_eintrag_titel_inhalt {
	padding:1rem 0.5rem;
	width:49%;
}

.publikation_eintrag_titel_inhalt h4{
	font-size:1.2rem;
	text-transform: uppercase;
	color:white;
}

.publikation_eintrag_titel_inhalt .jahreszahl{
	font-size:1rem;
}


















	#navigation {
		position: absolute;
		top:1rem;
		right:0rem;
		font-size:1.8rem;
		z-index:20000;
		width:auto;
		text-align:right;
	}
	.big {
			font-size:2rem;
	}
	.navigation_menu{
		position: absolute;
		z-index:20001;
		top:3rem;
		right:0rem;
		display:none;
		padding:1.5rem 2rem;
		border-radius:0.4rem;
		line-height:0.8;
		background: var(--dunkeldunkelgrau);
		width:100%;
	}

	.navigation_menu_level_1 .standpunkt{
		font-size:1.1rem ;
		color:darkorange !important;
	}

	.navigation_menu_level_1 a{
		font-size:1.1rem ;
		color:rgba(244,244,244,0.6);
		text-transform:none ;
	}
	.navigation_menu_level_2 .standpunkt{
		font-size:1.1rem ;
		color:darkorange !important;
	}
	.navigation_menu_level_2 a{
		font-size:1.1rem ;
		color:rgba(244,244,244,0.6);
		text-transform:none ;
	}




	/* Level 3 */
	.navigation_menu_level_3 {
		display:block;
		font-size:.9rem;
		line-height:0.8;
		text-transform:normal ;
	}

	.navigation_menu_level_3 a{
		text-transform:normal ;
		color:rgba(244,244,244,0.6);
	}







	.navigation_fotoreisen {
		display:flex;
		flex-wrap: wrap;
		justify-content: space-between;
		border:white;
		padding:1rem 0rem;
	}


	/* Level 1 */
	.navigation_menu_level_1 {
		display:block;
		font-size:1.3rem;
		padding:0.2rem 0rem;
		line-height:1.3;
		/*
		border-bottom:1px solid rgba(255,255,255,0.3);
		*/
		text-transform:uppercase;
	}
	/* Level 2 */
	.navigation_menu_level_2 {
		display:block;
		font-size:1.2rem;
		padding:0.2rem 0rem;
		text-transform:none;
	}

	/* Fotoreisen */
	.navigation_fotoreisen .navigation_menu_level_1 {
		display:flex;
		flex-wrap: wrap;
		justify-content: space-between;
		font-size:1.3rem;
		padding:0.2rem 0rem;
		line-height:1.1;
		text-transform:uppercase;
	}


	.navigation_fotoreisen .navigation_menu_level_2 {
		display:flex;
		flex-direction: column;
		flex-wrap:wrap;
		border:1px solid var(--dunkeldunkelgrau);
		width:20%;
	}
	.navigation_fotoreisen .navigation_menu_level_3 {
		display:flex;
		flex-wrap:wrap;
		flex-direction: column;
		width:100%;
		background:none;
	}






	/* normale Fotogalerien  */




	.navigation_fotos{
		display:flex;
		flex-wrap: wrap;
		justify-content:flex-start;
		border:white;
		padding:1rem 0rem;
	}
	.navigation_fotos .navigation_menu_level_1 {
		display:flex;
		flex-wrap: wrap;
		flex-direction: column;
		font-size:1.3rem;
		padding:0.2rem 0rem;
		line-height:1.1;
		text-transform:uppercase;
		border:1px solid var(--dunkeldunkelgrau);
		width:20%;
	}


	.navigation_fotos .navigation_menu_level_2 {
		display:flex;
		flex-direction: column;
		flex-wrap:wrap;
		font-size:.9rem !important;
		line-height:0.8 !important;
		text-transform:normal ;
	}
	.navigation_fotos .navigation_menu_level_2 a {
		font-size:.9rem !important;
		line-height:0.8 !important;
	}

	.navigation_fotos .navigation_menu_level_3 {
		display:flex;
		flex-wrap:wrap;
		flex-direction: column;
		width:100%;
		background:none;
	}

	/* weitere Links */
	.navigation_weitere {
			display:flex;
			flex-wrap: wrap;
			justify-content:flex-start;
			border:white;
			padding:1rem 0rem;
	}
	.navigation_weitere .navigation_menu_level_1 {
		display:flex;
		flex-wrap: wrap;
		flex-direction: column;
		font-size:1.3rem;
		padding:0.2rem 0rem;
		line-height:1.1;
		text-transform:uppercase;
		border:1px solid var(--dunkeldunkelgrau);
		width:20%;
	}





	.menu_main_title{
		font-size:1.7rem;
		text-transform:uppercase;
	}
	.menu_main_subtitle {
		background:gray;
		color:white !important;
		font-size:1.2rem !important;
		text-transform:uppercase !important;
		padding:0.2rem;
	}
	.menu_main_sub_subtitle {
		font-size:.9rem !important;
		padding:0.2rem 0.4rem;
	}



















	.backarrow {
		position: absolute;
		top:-2rem;
		right:0rem;
		font-size:1.6rem;
	}




#easycontent {
	letter-spacing:1.1px;
    line-height:1.4rem;
	position:relative;
	padding-top:2rem;
}
.easycontentcontent {
	text-align:left;
	margin-top:1rem;
	padding-top:1rem;
	position: relative;
}


.easycontentcontent .main_content{
	padding:1rem 0rem;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
}

.easycontentcontent .main_content .main_content_text{
	width:60%;
	
}
.easycontentcontent .main_content .main_content_text p{
	text-align:justify;
}


 .easycontentcontent .main_content .main_content_text p a{
		border:1px solid antiquewhite;
		border-radius:0.2rem;
		padding:0.1rem 0.3rem;
		text-decoration:none !important; 
}
 .easycontentcontent .main_content .main_content_text p a:after{	
  content: "\A";
  white-space: pre; /* oder pre-line */
}
 




.easycontentcontent .main_content .main_content_bilder{
	width:33%;
	padding-top:2.5rem;
}

.easycontentcontent a:link {
	font-weight:normal;
	text-decoration:underline;
}
.easycontentcontent a:before {
   content: "";
}
.easycontentcontent a:hover {
	color:#fff !important;
}
.easycontentcontent a:visited {
	color:var(--weiss);
}
.easycontentcontent img { 
	max-width:100%;
		border-radius:0.2rem;
}
.easycontentcontent img:last-child { 
}
#easycontent .standard_bilder {
	width:33%;
}
#easycontent .standard_bilder img {
	margin-left:20px;
	margin-bottom:10px;
	opacity:1;
	transition:all ease-in-out 0.3s;
	border-radius:0.2rem;
}
#easycontent .standard_bilder img:hover {
	opacity:0.8;
	cursor:zoom-in;
	transition:all ease-in-out 0.3s;
}

#easycontent .newsblog_bild {
	opacity:0.7;
	max-height:180px;
	margin-right:10px;
	transition:all ease-in-out 0.3s;
}
#easycontent .newsblog_bild:hover {
	opacity:1;
	transition:all ease-in-out 0.3s;
}

#formularcontent {
	padding:10px;
}

.easygallery {
    display:flex;
    flex-wrap:wrap;
    justify-content: space-around;
	gap:1rem;
}
.easygallery .bilder_vorschau_div {
    width:32%;
    margin-bottom:0.5rem;
	aspect-ratio:16/3;
	border:1px solid black;
	border-radius:0.2rem;
	position: relative;
	overflow: hidden;
	padding:0;
    transition:all ease-in-out 0.6s;
} 


.easygallery .bilder_vorschau_title {
	font-size:1.2rem;
	font-weight:bold;
	position: absolute;
	bottom:0;
	left:0;
	width:100%;
	height:50%;
    object-fit: cover;
	z-index:22;
	display:flex;
	justify-content: center;
	align-items: center;
	opacity:0.8;
    transition:all ease-in-out 0.6s;
	color:rgba(255,255,255,0.6);
} 
.easygallery  .bilder_vorschau_div_container {
    width:100%;
    height:100%;
    object-fit: cover;
} 
.easygallery  .bilder_vorschau_div_container img {
    width:100%;
    height:100%;
    object-fit: cover;
	object-position: center;
    transition:all ease-in-out 0.6s;
} 
.easygallery .bilder_vorschau_div:hover .bilder_vorschau_title{
    opacity:1;
	height:100%;
    transition:all ease-in-out 0.3s;
	color:white;
	cursor: pointer;
} 
.easygallery .bilder_vorschau_div:hover .bilder_vorschau_div_container img{
    opacity:1;
    transition:all ease-in-out 0.3s;
	filter:blur(1px);
	transform:scale(1.1);
} 


.easygalerie {
	display:flex;
    flex-wrap:wrap;
	/*justify-content: space-between;*/
}
.easygalerie .galerie_vorschaulink_container {
	width:16%;
    margin-left:0.33%;
    margin-bottom:0.33%;
}
.easygalerie .galerie_vorschaubild_container {
    width:100%;
    height:100%;
}
.easygalerie .galerie_vorschaubild_container img {
    width:100%;
    height:100%;
    object-fit: cover;
}
		
	
.galeriebild:hover {
	cursor:zoom-in !important;
}
.easygalerie div img {
	
}
.easygalerie div .item {
		width:100%;
		}
.easygalerie div span {
}
.bilder_vorschau_div {
		/*border:1px solid #fff;*/
		padding:5px;
		width:50%;
		height:150px;
		float:left;
		max-width:50%;
}
.bilder_vorschau {
		width:95%;
		max-width:95%;
}


.bilder {
		padding:30px 0;
		max-width:20%;
}
.bilder img {
		max-width:20%;
}

	

#easyfooter {
	border-top:1px solid darkslategray;
	clear:both;
	color:#aaa;
	padding-top:10px;
	margin-top:40px;
	text-align:left;
	font-size:0.8em;
}
#easyfooter a {
	color:#aaa;
}
#easyfooter:hover {
	color:#fff;
	transition:all 1s;
}

/*	form  -------------------------------------------------------------------------------*/


input,
select,
textarea {
	font-size:1em !important;
	background-color:rgba(33,33,33,0.5);
	color:#fff;
	border:none;
	padding:8px;
	width:98%;
}
input:focus, textarea:focus {
	color:#fff;
	background-color:#FF7400;
}

textarea {
	height:70px;
}
input[type=submit] {
	cursor:pointer;
	text-align:left;
	width:auto;
	background-color:rgba(33,33,33,0.5);
	color:#ddd;
	margin-top:15px;
}
input[type=submit]:hover {
	background-color:#333;
	color:#ddd;
}
#kommentare_bestehend {
	padding-bottom:30px;
	
}
#kommentare_erstellen {
	
}
.kommentar {
	background-color:#222;
	padding:10px;
}
#kommentare_bestehend .kommentar:nth-child(odd)  { 
	background: #000; 
}
#formbox div {
	padding:10px 0;
}
#formbox div.captcha input {
	width:30%;
	display:block;
	float:left;
}
#formbox div.captcha img {
	
}


/* ================================ MEDIA QUERIES =========================  */
/* ================================ MEDIA QUERIES =========================  */
/* ================================ MEDIA QUERIES =========================  */


@media screen and (max-width: 1000px) {
	/* ======== 1024px old Screens ======== */

	body {
		/*border:2px solid #f00;	*/
	}
	#navigation {
		top:1rem;
	}
	.navigation_menu{
		width:100%;
	}
	#easynavimini_button {
		font-size:3rem;
		top:0rem;
	}
	.easynavimini_button_text {
		display:none;
	}
	
	main {
		width:95%;
	}
	header {
		padding:1rem 0rem;
		flex-direction:column;
		justify-content: flex-start;
		align-items: flex-start;
	}
	header a{
		padding:0rem;
		width:70%;
	}
	header h3{
		padding:0rem;
		width:70%;
	}
	
	.spezialbild {
		height:10rem;
	}
	
	
	.publikationen {
		flex-direction: column;
	}
	.publikationen>div {
		width:100%;
		margin-bottom:1rem;
	}
	
	
}

@media screen and (max-width: 768px) {
	/*======== 768px iPad ======== */
	
	body {
		/*border:2px solid #0f0;*/
		
		margin:0;
		padding:0;
		background-image:none;
	}
	#easyheaderlogo h1 {
	font-size:1.2em;
	}
	/* AUSBLENDEN */
	#easynavi, #breadcrumb, #banner-fade {
		display:none;
	}
	
	.fa-navicon {
		margin:10px 0px 10px 0px;
	}
	
	#easynavimini {
		font-size:1.2em;
		display:block;
		margin-bottom:10px;
	}
	#easynavimini ul {
		padding:0px;
		margin:0px;
	}
	#easynavimini li {
		padding:2px 0px 2px 0px;
		border-bottom:1px solid #999;
	}	
	#easynavimini li:hover {;
	}
	#easynavimini_nav{
		padding:0px;
		margin:0px;
		font-size:1.4em;
		border-top:1px solid #666;
		border-bottom:1px solid #666;
	}
	#easynavimini_button a {
		padding:0px;
		margin:0px;
		font-size:1.9em;
		background-color:rgba(11,11,11,0.8);
		border-bottom:1px solid #999;
	}
	#easycontainer {
		border:0px;
		margin:0px;
		padding:15px;
		position:initial;
		width:100%;
	}
	
	.easytotop {
		bottom:50px;
		right:15px;
	}
	.easycontentcontent {
		margin:0;
		padding:0;
		display:block;
		width:100%;
		text-align:left;
		text-overflow: ellipsis; /* Umbruch bei zu langen Zeilen */
	}
	
	#easycontent .standard_bilder {
	display:block;
	width:100%;
	max-height:100%;
}
#easycontent .standard_bilder img {
	margin-left:0px;
	margin-bottom:5px;
	opacity:1;
}
	#easycontent .newsblog_bild {
	width:100%;
	max-height:100%;
}
	#quicklinks {
		display:block;
		width:100%;
	}
	.easygalerie div span {
		font-size:0.8em;
	}
	
	.bilder_vorschau_div {
		/*border:1px solid #fff;*/
		padding:5px;
		width:100%;
		height:150px;
		display:block;
		max-width:100%;
}
	
	.easygalerie div {
	width:100%;
	padding:10px 0px 0px 0px;
	overflow:hidden;
	position:relative;
	display:block;
	}
	
	
}


@media screen and (max-width: 375px) {
	/* ========360px Galaxy S5 | 320px iPhone5 | 375px iPhone6 ======== */
	body {
		/*border:10px solid #00f;*/
		margin:0;
		padding:0;
		background-image:none;
	}
	
	#easyheaderlogo h1 {
	font-size:1em;
	}
	#easynavimini {
		font-size:1.1em;
	}
	
	.easygalerie div {
	width:100%;
	padding:10px 0px 0px 0px;
	overflow:hidden;
	position:relative;
	display:block;
	}
	
	

}


