<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
	--schwarz: #1A1A1A;
	--grau1:   #343333;
	--grau2:   #444444;
	--grau3:   #B3B3B3;
	--grau4:   #CCCCCC;
	--grau5:   #E6E6E6;
	--blau:    #19558d;
	--hellgruen:   #8CC25F;	
	--hellgruentransp: rgba(132, 218, 58, 0.8);
	--dunkelgruen: #527b2b;
	--blassgruen:  #c1dcab;	
	--rot:   #FF0000;
	--gelb:  #FDD585;
	--gold:  #ffc400;
	--weiss: #FFF;
}

@font-face {
    font-family: 'expressway';
    src: url('/fonts/ExpresswayRg-Regular.eot');
    src: url('/fonts/ExpresswayRg-Regular.eot?#iefix') format('embedded-opentype'),
        url('/fontsExpresswayRg-Regular.woff2') format('woff2'),
        url('/fontsExpresswayRg-Regular.woff') format('woff'),
        url('/fonts/ExpresswayRg-Regular.ttf') format('truetype'),
        url('/fonts/ExpresswayRg-Regular.svg#ExpresswayRg-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html { 
	height: 100%; 
}

body {
  	background-color: #ffffff;
	color: var(--grau1);
  	display: grid;
	min-height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'espressway', sans-serif;
	font-size: 16px;
	font-style: italic;
	line-height: 160%;
}

body.public {
	grid-template-rows: auto auto 1fr auto;
	grid-template-areas: 
	"nav"
	"header" 
	"main"
	"footer";
}

body.admin {
	grid-template-rows: auto auto auto 1fr auto;
	grid-template-areas: 
	"topnavi"
	"nav"
	"header" 
	"main"
	"footer";	
}

#topnavi {
	grid-area: topnavi;
	box-sizing: border-box;
	width: 100%;
	height: 30px;
	position: relative;
	margin: 0px;
	z-index: 1000;
	text-align: right;
	top: 0;
	background-color: #000;
}

#topnavi span {
	margin-left: 20px;
	float: left;
	color: #FFF;
	font-weight: bold;
	display: inline-block;
}

#topnavi ul {
	width: auto;
	right: 10px;
	top: -15px;
	position: absolute;
}

#topnavi li {
	float: left;
	list-style: none;
}

#topnavi li a {
	padding-left: 30px;
	display: block;
	color: #FFF;
	text-decoration: none;
}

#topnavi a:hover {
	text-decoration: underline;
}

nav {
	grid-area: nav;
	width: 100%;
}

header {
	grid-area: header;
	box-sizing: border-box;
	padding: 15px;
	position: relative;
	height: 15vw;
	background-color: var(--weiss);
	border-bottom: solid 5px var(--hellgruen);
	margin-bottom: 20px;
}

header h1 {
	position: relative;
	margin: 20px 0 10px 0;
	font-size: 170%;
	color: var(--hellgruen);
}

#logo-ibeik-klein {
	width: 20%;
	max-width: 200px;
	height: auto;
	position: relative;
}

#logo_ibeik_weiss {
	max-width: 250px;
	height: auto;
	display: block;
	z-index: 1000;
}

#main {
	grid-area: main;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: block;
	position: relative;
	box-sizing: border-box;
	padding: 0 20px 20px 20px;
}

#main span.spacer50 {
	display: inline-block;
	width: 50px;
	height: 10px;
}

#main.flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 20px;
}

#main table {
	border-collapse: collapse;
	width: 80%;
	min-width: 600px;
}

#main thead tr {
	background-color: var(--hellgruen);
}

#main thead th {
	text-align: left;
}

#main th,
#main td {
	padding: 5px;
}

#main td.edit {
	background-color: lightblue;
}

#main tbody tr:nth-child(even) {
	background-color: #CCC;
}

.articleheader {
	background-color: #222;
	color: #FFF;
}

.articlecontent {
	background-color: #FFF;
	border: solid 2px #444;
}

#main input[type='text'],
#main input[type='password'] {
	height: 20px;
	padding: 5px;
	margin: 5px;
}

#main input[type='text']:focus,
#main input[type='password']:focus {
	background-color: var(--gelb);
	height: 20px;
	padding: 5px;
	margin: 5px;
}

input[type='checkbox'] {
	margin-right: 30px;
}

input[type='button'] {
	width: 100%;
}

input[type='checkbox'] + .slider {
	position: absolute;
	cursor: pointer;
	top: 2px;
	left: 0;
	right: 0;
	bottom: 0;
	width: 40px;
	height: 20px;
	background-color: #ccc;
	border-radius: 34px;
}

input[type='checkbox'] + .slider span {
	width: 20px;
	height: 20px;
	background-color: #777;
	border-radius: 100%;
	float: left;
	transition: all 0.5s ease-in-out;
}

input[type='checkbox']:checked + .slider span {
	background-color: #527b2b;;
	border-radius: 100%;
	float: right;
}

label.checkboxlabel {
	width: auto;
}

#main div.hinweis {
	box-sizing: border-box;
	width: 100%;
	background-color: var(--gelb);
	margin: 20px 0;
	padding: 20px;
}

.bigbtn {
	width: 200px;
	padding: 10px;
	margin: 0 0 10px 0;
	text-align: center;
	background-color: var(--hellgruen);
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.bigbtn:hover {
	background-color: var(--dunkelgruen);
}

.bigbtn::before {
	width: 30px;
	height: 30px;
	content: "+";
	font-size: 40px;
	font-weight: bold;
	color: #FFF;
	position: absolute;
	left: 0px;
	top: 10px;
}

.btn {
	width: 25px;
	height: 25px;
	background-size: 22px 22px;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.btn:hover {
	filter: invert(1);
}

.btn.sortauf {
	background-image: url('/img/up.png');
}

.btn.sortab {
	background-image: url('/img/down.png');
}

.btn.edit {
	background-image: url('/img/edit.png');
}

.btn.copy {
	background-image: url('/img/kopieren.png');
}
.btn.del {
	background-image: url('/img/del.png');
}

td.del {
	width: 30px;
	height: 30px;
	background-image: url('/img/del.png');
	background-size: contain;
	background-position: center top;
	background-repeat: no-repeat;
	cursor: pointer;
}

.new {
	width: 250px;
	padding: 10px 20px 10px 50px;
	margin-bottom: 10px;
	color: #FFF;
	background-color: #021C2D;
}

.new:hover {
	background-color: #F30;
	cursor: pointer;
}

span.anzeige {
	width: 20px;
	height: 20px;
	display: inline-block;
	border-radius: 100%;
	background-color: var(--rot);
}

span.anzeige.active {
	background-color: var(--hellgruen);
}

.galeriebilder {
	display: flex;
	column-gap: 10px;
	flex-direction: row;
	flex-wrap: wrap;
}

.thumbnail {
	display: inline-block;
	box-sizing: border-box;
	position: relative;
	flex: 1;
	min-width: 150px;
	max-width: 200px;
	height: auto;
	margin-top:10px;
	background-size: cover;
	background-position: center;
}

.thumbnail::before {
    content: "";
    display: block;
    padding-top: 100%;
    float: left;
}

/* start map design   */

#map {
	width: 100%;
	height: 50%;
	position: relative;
}

#map_lonlat {
	width: auto;
	min-width: 200px;
	padding: 3px;
	border: solid 1px #666;
	height: 20px;
	background-color: #FFF;
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 15px;
	z-index: 1000;
}

#locationinfo {
	position: fixed;
	left: 20px;
	top: 80px;
	box-sizing: border-box;
	width: 400px;
	height: 300px;
	max-width: 50%;
	padding: 10px;
	background-color: #FFF;
	border: solid 1px #666;
	box-shadow: 4px 4px 10px rgba(0,0,0,0.6);
	z-index: 1000;
}

#locationinfo_close {
	width: 30px;
	height: 30px;
	position: absolute;
	right: 10px;
	top: 10px;
	background-image:url('/img/close.png');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
}

/* end map design  */

footer {
	grid-area: footer;
	box-sizing: border-box;
	width: 100%;
	padding: 20px;
	background-color: var(--grau1);
	color: #FFF;
}

textarea {
	font-size: 16px;
	line-height: 160%;	
	color: var(--farbe1);
}

#HyphenatorToggleBox {
	display: none;
}

#cookiezustimmung {
	position: fixed;
	box-sizing: border-box;
	top: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	background-color: var(--hellgruentransp);
	color: #000;
	text-align: center;
	z-index: 4000;
	transition: all 0.5s ease-in-out;
}

#cookiezustimmung.show {
	padding: 15vh 0 10vh 0;
	height: auto;
	min-height: 50vh;
}

#allowcookies:hover {
	cursor: pointer;
}

.clearfix {
	clear:both;
	width: 100%;
	position: relative;
	padding: 0;
	margin: 0;
}

.bildlinks {
	float: left;
	margin: 0 20px 20px 0;
}

.bildrechts {
	float: right;
	margin: 0 0 20px 20px;
}

.bildtop {
	float: none;
	margin: 0 0 20px 0;
}

figcaption {
	font-size: 90%;
	font-style: italic;
	color:var(--grau2);
	text-align: center;
}

figure {
	min-width: 100%;
}

p {
	margin:10px 0;
	padding: 0;
}

.clear {clear: both;}

a {
	color:var(--hellgruen);
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color:var(--gold);
	text-decoration: underline;
}

h1 {
	font-size: 180%;
	color: var(--hellgruen);
	margin: 10px 0 20px 0;
	line-height: 100%;
}

h2 {
	font-size: 160%;
	color: var(--grau3);
	margin: 20px 0;
	padding: 0;
	font-weight: 500;
	text-transform: uppercase;
}

h3 {
	font-size: 140%;
	margin: 10px 0;
	font-weight: bold;
	line-height: 130%;
}

h4 {
	margin: 10px 0;
	padding: 0;
	font-weight: bold;
	font-size: 120%;
	text-transform: uppercase;
}

h5 {
	color:var(--hellgruen);
	font-size: 120%;
	margin:0;
}

h5 a{
	background: #fff;
	border: 2px solid var(--hellgruen);
	padding: 10px 20px;
	font-size: 90%;
	font-weight: 400;
	line-height: 140%;
	text-transform: uppercase;
	display: block;
	max-width: 100%;
	width: max-pages;
}

h5 a:hover{
	background: var(--gelb);
	text-decoration: none;
	transition: all ease-in-out 0.3s;
	color: var(--hellgruen);
}

h6 {
	font-weight: bold;
}

hr {
	border: 0; 
	height: 10px; 
	background:var(--grau4); 
	margin: 20px auto;
}

blockquote {
	color: var(--farbe1);
	font-size: 120%;
	font-style: italic;	
	margin: 0;
	padding: 0;	
}

input {
	background-color: #DAF5DA;
}

input[type=text],
input[type=password] {
	padding: 5px;
	margin: 0;
	border: solid var(--grau1) 2px;
	cursor: pointer;
}

input[type=submit],
input[type=button],
button {
	padding: 8px 50px;
	cursor:pointer;
	background-color: var(--dunkelgruen);
	transition: all 0.3s ease-in-out;
	font-size: 120%;
	color: #FFF;
}

input[type=submit]:hover,
input[type=button]:hover,
button:hover {
	background-color: var(--hellgruen);
	cursor: pointer;
}

input[type=text]:required,
input[type=email]:required {
	background-color: #8BE4CC;
}

input[type=text]:required:invalid,
input[type=email]:required:invalid,
input[type=password]:invalid {
	background-color: #FF8278;
}

label {
	display: block;
	position: relative;
	width: 100%;
}

textarea {
	width: 100%;
}

input[type='text']:focus,
input[type='password']:focus {
	box-shadow: 0 0 5px rgba(81, 203, 238, 1);
	padding: 3px 0px 3px 3px;
	margin: 5px 1px 3px 0px;
	border: 1px solid rgba(81, 203, 238, 1);
}

.short {
	width: 100px;
}

.medium {
	width: 480px;
}

.long {
	width: 600px;
}

#ladeanzeige {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.5);
	background-image: url('/img/ladeanzeige.gif');
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 500;
}
	
header {
	width: 100%;
	height: auto;
	position: relative;
	display: block;
}


#logo {
    position: absolute;
    left: 0;
    top: -10px;
	height: 25vw;
    max-height: 130px;
	width: 27vw;
	max-width: 150px;
    cursor: pointer;
	background-color: rgba(255,255,255,0.3);
    background-image: url("/img/logo_ibike.png");
    background-size: contain;
    background-repeat: no-repeat;
	background-position: center center;
    z-index: 30;
    margin: 20px auto;
    padding: 0;
}

#logo img {
	width: 100%;
	height: auto;
}

#scrollup {
	width: 40px;
	height: 30px;
	position: fixed;
	bottom: 30px;
	right: 20px;
	font-size: 40px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	display: none;
	background-color: var(--gelb);
	border-radius: 5px;
	z-index: 1000;
	display: none;
	padding: 10px;
	color: var(--hellgruen);
	border: 2px solid #fff;
}

#scrollup.show {
	display: block;
}

#scrollup:hover {
	color: var(--farbe4);
}

#mobilswitch {
	position: absolute;
	right: 10px;
	top: 0;
	width: 50px;
	height: 40px;
	background-color: var(--gelb);
	background-image: url('/img/mobilswitch.png');
	background-size: 70%;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	display: block;
	z-index: 1000;
	border-radius: 0 0 10px 10px;
}

nav {	
	box-sizing: border-box;
	width: 100%;
	height: 50px;
	background-color: var(--hellgruen);
	z-index: 500;
	position: relative;
	display: block;
	text-align: center;
}

nav a,
nav a:visited {
	text-decoration: none;
	color: #000;
	display: block;
}


nav ul {
	position: absolute;
	margin: 0 auto;
	list-style-type: none;
	display: block;
	width: 100%;
	max-width: 1200px;
	padding: 0;
}

nav ul li {
	box-sizing: border-box;
	width: 100%;
	padding: 0; 
	list-style: none;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	font-size: 110%;
	font-weight: bold;
	background-color: var(--hellgruen);
	cursor: pointer;
}

nav.show ul li {
	padding: 10px 0;
	height: auto !important;
	border-top: 2px solid var(--gelb);
}

nav ul li:not(#navibutton) {
	height: 0;
	overflow: hidden;
}

nav ul li#navibutton {
	padding: 10px 0;
}

nav ul li:hover &gt; a {
	color: #FFF;
	text-decoration: none;
}
nav ul li ul {
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	transition-delay: 0.5s;
}

nav ul li:hover &gt; ul {
	height: auto;
	opacity: 1;
}

#registernavi {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: stretch;
}

.registerswitch {
	color: #FFF;
	background-color: #333333;
	text-align: center;
	height: 25px;
	margin-right: 1px;
	padding: 5px 10px;
	cursor: pointer;
}

.registerswitch:hover {
	background-color: #999999;
	color: #FFF;
}

.registerswitch.active {
	background-color: #AAC901;
}

.register {
	display: none;
	padding-top: 40px;
}

.register.aktiv {
	display: block;
}

#eintragspeichern {
	width: 130px;
	text-align: center;
	float: left;
	height: 25px;
	width: 100px;
	margin-right: 1px;
	padding-top: 5px;
	cursor: pointer;
	background-color: #F60;
	color: #FFF;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	float: left;
	position: relative;
}

#eintragspeichern:hover {
	background-color: #F30;
}

#infometadaten {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	display: none;
	background-color: #666666;
	color: #000;
	padding: 10px 30px;
}

#infometadaten p {
	color: #FFF;
}

#infometadateneinaus {
	position: absolute;
	right:10px;
	margin-top: -30px;
	width: 130px;
	padding: 6px;
	height: 20px;
	background-color: #ABC901;;
	color: #000;
	text-align: center;
	cursor: pointer;
	z-index: 100;
	transition: all 0.3s ease-in-out;
}

#infometadateneinaus:hover {
	background-color: #697C00;
	color: #FFF;
}

#infometadaten_slideup {
	background-color: #444;
	color: #fff;
	width: 100%;
	padding: 10px 0;
	position: absoulte;
	bottom: 0;
	font-size: 30px;
	text-align: center;
}

#infometadaten_slideup:hover {
	cursor: pointer;
}

#metadaten {
	width: calc(100% - 20px);
	height: auto;
	position: relative;
	padding: 10px 10px;
	background-color: #DDD;
}

#metadaten h2 {
	margin-top: 0;
}

#metadaten textarea,
#metadaten input[type=text] {
	width: 70%;
}

#meta_description {
	height: 50px;
	background-color: #FFF;
}

#metadaten input[type=text]#zeichenzaehler {
	width: 80px;
	background: none;
	border: none;
	padding: 3px 5px;
}

#metadaten input[type=text]#zeichenzaehler.zulang {
	background-color: #FF0000;
}

#metadaten label {
	display: inline-block;
	width: 120px;
}

#bildbearbeitung {
	height: 0;
	width: 100%;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #FFF;
	transition: all 0.5s ease-in-out;
	background-color: rgba(0,0,0,0.7);
	z-index: 1000;
}

#bildbearbeitung.visible {
	height: 100%;
}

#bildbearbeitungiframe {
	width: 800px;
	max-width: 100vw;
	height: 700px;
	max-height: 100vh;
	margin-top: 80px;
	margin-left: calc(50vw - 400px);
	background-color: #FFF;
}

article,
article.box33,
article.box66,
article.box100 {
	width: 100%;
	min-width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	position: relative;
}

article.tourbox,
article.regionbox {
	box-sizing: border-box;
	background-color: var(--blassgruen);
	border-radius: 10px;
	border: solid 3px var(--dunkelgruen);
}

article.tourbox img,
article.regionbox img {
	border-radius: 8px 8px 0 0;
}

article.tourbox h1,
article.tourbox h2 {
	width: 100%;
	max-width: 100%;
	padding-right: 20px;
	margin-bottom: 0;
	padding-bottom: 0;
	box-sizing: border-box;
}

article.tourbox img
article.regionbox img {
	border-radius: 10px 10px 0 0;
}

article.regionbox figure.bildlinks {
	margin-bottom: 0;
}

article.tourbox:hover,
article.regionbox:hover {
	cursor:pointer;
	display: block;
	box-sizing: border-box;
}

article.tourbox::after,
article.regionbox::after {
	position: absolute;
	bottom: 0;
	box-sizing: border-box;
	display: block;
	width: 100%;
	height: auto;
	padding: 10px 10px 10px 0;
	content: "zur Tour \27a5";
	text-align: right;
	background-color: var(--hellgruen);
	font-size: 150%;
	display: none;
}

article.regionbox::after {
	content: "zur Region \27a5";	
}

article.tourbox:hover::after,
article.regionbox:hover::after {
	display: block;
}

article.tourbox h1,
article.regionbox h1 {
	position: absolute !important;
	color: #FFF;
	text-shadow: #000 2px 2px 3px;
	font-size: 200%;
	margin-left: 10px;
}

article.tourbox h2,
article.regionbox h2 {
	position: absolute;
	color: var(--gelb);
	top: 30vw;
	font-size: 150%;
	font-weight: bold;
	margin-left: 10px;
	z-index: 1000;
}

#main article.tourbox h2 {
	text-shadow: #000 2px 2px 3px;
}

article.regionbox h2 {
	color: var(--weiss);
	padding-left: 10px;
	padding-top: 0px;
	margin-top: 10px;
}

article.tourbox h3 {
	margin-left: 10px;	
}

article.tourbox p {
	display: none;
	padding: 10px;
}

article.tourbox p:first-of-type {
	display: block;
	max-width: 100%;
	box-sizing: border-box;
}

article.tourbox figure
article.regionbox figure {
	width: 100%;
	max-width: 100%;
}

article.tourbox figure img,
article.regionbox figure img {
	width: 100%;
	max-width: 100%;
}

.landschaft {
	font-size: 215%;
	color: var(--gold);
}

.schwierigkeit {
	font-size: 130%;
}

.tourdaten {
	box-sizing: border-box;
	padding: 0 10px 10px 10px;
	font-style:normal;
}

.videoplayer {
	width: 720px;
	max-width: 100%;
}

@media (min-width: 500px) {

	article.tourbox h2 {
		top: 30vw;
	}

	article.tourbox * {
		width: 100%;
	}

	article.tourbox label {
		width: 120px;
	}

}

@media (min-width: 800px) {

	body.admin #main {
		display: block;
	}

	#main article.box33 {
		width: calc((100% - 20px) / 2);
		min-width: calc((100% - 20px) / 2);
		max-width: calc((100% - 20px) / 2);
	}
	
	#main article.regionbox h2 {
		color: var(--schwarz);
		top: 50px;
		font-size: 2vw;
	}
	
	#main article.tourbox h1 {
		font-size: 3vw;
	}

	#main article.tourbox h2{
		top: 20%;
		font-size: 2vw;
	}

	#main article.box100 {
		flex: 3;
		min-width: 700px;
	}

	#main article figure {
		min-width: 0;
	}

	label {
		display: inline-block;
		width: 150px;
	}

	textarea {
        min-width: calc(100% - 160px);
        max-width: calc(100% - 160px);
    }

}

@media (min-width: 1200px) {

	
	nav {
		padding-left: calc(50% - 600px);
		padding-right: calc(50% - 600px);
		height: 48px;
	}

	nav ul {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
	}

	nav ul li#navibutton {
		display: none;
	}

	nav ul li:not(#navibutton) {
		height: auto;
		border-right: solid 2px var(--gelb);
		padding: 10px 0;
	}

	nav ul li:last-child {
		border-right: none !important;
	}

	header,
	footer {
		padding-left: calc(50% - 600px);
		padding-right: calc(50% - 600px);
	}

	header {
		padding-top: 0;
		height: 100px;
		margin-bottom: 20px;
	}

	header h1 {
		width: auto;
		padding-left: 35%;
		max-width: 1200px;
		margin: 30px 0 10px 0;
		font-size: 300%;
	}
	
	#logo-ibeik-klein {
		width: 33%;
		max-width: 170px;
		height: auto;
		position: absolute;
	}
	
	#logo_ibeik_weiss {
		position: absolute;
		width: 38%;
		margin-top: 10px;
		max-width: 
		300px;
		float: left;
	}

	#main h1 {
		font-size: 250%;
	}

	#main article.box33 {
		width: calc((100% - 40px) / 3);
		min-width: calc((100% - 40px) / 3);
		max-width: calc((100% - 40px) / 3);
	}

	#main article.box66 {
		width: calc((100% - 20px) / 3 * 2);
		min-width: calc((100% - 20px) / 3 * 2);
		max-width: calc((100% - 20px) / 3 * 2);
	}

	#main article.regionbox h2 {
		top: 240px;
		font-size: 120%;
		color: black !important;
	}

	#main article.tourbox h1 {
		font-size: 180%;
	}

	#main article.tourbox h2 {
		font-size: 120%;
	}

	footer {
		display: flex;
		flex-direction: row;
	}

	footer div {
		flex: 1;
		margin-right: 40px;
	}

}</pre></body></html>