<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* -------------------------------------------------- Allgemein -------------------------------------------------- */

a:link {
	color: #000000;
}

a:visited {
	color: #000000;
}

a:hover {
	color: #ff0000;
}

a:active {
	color: #ff0000;
}

/*a.decoration {
	text-decoration: none;
}*/

/* ------------------------------- */

body {
	margin: 0px;
	padding: 0px;
	font-size: 14px;
	font-family: arial;
	overflow: scroll; /* Setzt den vertikalen Scrollbalken auf immer sichtbar */
	background-image: url(bilder/layout/body-background.png);
	background-repeat: repeat-x;
	background-color: #eeeeee;
}

@media only screen and (max-width: 980px) {
	body {
		background-image: url(bilder/layout/body-background2.png);

	}
}

/* ------------------------------- */

h1 {
	font-family: arial;
	font-size: 18px;
	text-align: center;
}

h2 {
	font-family: arial;
	font-size: 14px;
	text-align: center;
}

strong { 
	font-weight: bold; 
}

.fontsmall {
	font-size: 10px;
}

/* ------------------------------- */

img {
	border: none;
	/* ##### Responsive IMG ##### */
	max-width: 100%; 
	height: auto;
	/* ########## */
}

img.border1 {
	border: #000000 1px solid;
}

img.newsthumbnail {
	max-width: 300px;
	max-height: 600px;
}

img.smilies {
	height: 20px;
	width: 20px;
}

@media only screen and (max-width: 580px) {
	img.newsthumbnail {
		width: 400px;
	}
}

img.textcenter {
	display: inline;
	vertical-align: middle;
}

img.floatleft {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}

@media only screen and (max-width: 580px) {
	img.floatleft {
		display: block; /* Text unter Bild */
		margin-left: auto; /* Bild Center */
		margin-right: auto; /* Bild Center */
		float: none;
	}
}

img.floatright {
	float: right;
	margin-left: 20px;
	margin-bottom: 20px;
}

@media only screen and (max-width: 580px) {
	img.floatright {
		display: block; /* Text unter Bild */
		margin-left: auto; /* Bild Center */
		margin-right: auto; /* Bild Center */
		float: none;
	}
}

img.borderradius {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

img.boxshadow {
	-webkit-box-shadow: 3px 3px 3px rgba(0,0,0,0.5); /* Safari, Chrome */
	-moz-box-shadow: 3px 3px 3px rgba(0,0,0,0.5); /* Firefox */
	box-shadow: 3px 3px 3px rgba(0,0,0,0.5); /* IE, Opera */
}

@media only screen and (min-width: 580px) {
	img.zoom {
		-webkit-transition: transform 0.8s;
		-moz-transition: transform 0.8s;
		-ms-transition: transform 0.8s;
		-o-transition: transform 0.8s;
		transition: transform 0.8s;
	}

	img.zoom:hover {
		-webkit-transform: scale(2.0);
		-moz-transform: scale(2.0);
		-ms-transform: scale(2.0);
		-o-transform: scale(2.0);
		transform: scale(2.0);
		z-index: 1; /* Benötigt damit vergrößertes Bild in den Vordergrund kommt */
	}
}
/* ------------------------------- */

table {
	border-collapse: collapse; /* Ersetzt cellspacing=0 */
	color: #000000;
}

td {
	padding: 5px;
}

/* ------------------------------- */

hr {
	clear: both; /* Benötigt um img.float von news zu beenden */
	border: none; /* Benötigt für Verlauf Effekt */
    height: 1px;
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); /* Safari, Chrome */
    background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); /* Firefox */
    background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); /* IE */
    background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); /* Opera */
}

/* ------------------------------- */

form {
	margin-bottom: 0px; /* Benötigt um &lt;form&gt; zu zentrieren */
}

input[type="color"] {
	padding: 0px;
	border: none;
	width: 40px;
	background: transparent;
	cursor: pointer;
}

input[type="submit"] {
	cursor: pointer;
}

@media only screen and (max-width: 580px) {
	input[type="file"] {
		font-size: 10px;
	}
}

textarea {
	width: calc(100% - 10px);
	min-width: 200px;
	height: 150px;
	font-size: 14px;
	font-family: arial;
	resize: none;
}

textarea#kommentare {
	width: calc(100% - 6px);
	height: 50px;
	font-size: 14px;
	font-family: arial;
	resize: none;
}

textarea#disclaimer {
	height: 500px;
}

textarea#datenschutz {
	height: 500px;
}

/* ------------------------------- */

/* DB Layout */


	.db-shadow {
		-webkit-box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
		-moz-box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
		box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
	}



	.db-corner {
		-moz-border-radius: 10px;
		-webkit-border-radius: 10px;
		border-radius: 10px;
		overflow: hidden;
	}


/* -------------------------------------------------- DIVs -------------------------------------------------- */

div {
	/*border: #000000 1px solid;*/
	color: #000000;
}

/* Zentriert absulutes DIV vertical innerhalb eines relativen DIV */
div.center {
	/* ##### Zentriert Div in Div ##### */
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	/* ########## */
}

/* ------------------------------- */

div#wartungsmodus {
	position: relative;
	margin-top: 0px;
	width: 100%;
	background-color: #ff0000;
	color: #ffffff;
	text-align: center;
	font-weight: bold;
}

.homepagebreite {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: calc(80% - 20px);
	min-width: 950px;
	max-width: 1280px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
}

@media only screen and (max-width: 980px) {
	.homepagebreite {
		width: calc(100% - 20px);
		min-width: 550px;
	}
}

@media only screen and (max-width: 580px) {
	.homepagebreite {
		width: calc(100% - 20px);
		min-width: 320px;
	}

	div {
		font-size: 18px;
	}

	table {
		font-size: 18px;
	}
}

/* ------------------------------- */

div#head-container {
	display: table;
	margin-top: 5px;
	width: 100%;
}

div#head-links {
	display: table-cell;
	vertical-align: top;
}

@media only screen and (max-width: 580px) {
	div#head-links {
		display: block;
		font-size: 14px;
	}
}

div#head-mitte {
	display: table-cell;
}

@media only screen and (max-width: 580px) {
	div#head-mitte {
		display: block;
		padding-left: 0px;
	}
}

div#head-rechts {
	display: table-cell;
	text-align: right;
}

/* ------------------------------- */

div#onlineuser {
	position: relative;
	margin-top: 0px;
	width: 100%;
}

@media only screen and (max-width: 580px) {
	div#onlineuser {
		font-size: 14px;
	}
}

/* ------------------------------- */

div#banner-container {
	position: relative;
	margin-top: 5px;
	width: 100%;
	height: 300px;
	background-image: url(bilder/layout/banner-background.png);
	background-repeat: no-repeat;
	background-color: #333333;
}

@media only screen and (max-width: 580px) {
	div#banner-container {
		height: 150px;
		background-image: url(bilder/layout/banner-background2.png);
	}
}

div#banner-links {
	position: absolute;
	width: 450px;
	height: 300px;
	background-image: url(bilder/layout/banner-logo.png);
	background-repeat: no-repeat;
	z-index: 1;
}

@media only screen and (max-width: 980px) {
	div#banner-links {
		background-image: url(bilder/layout/banner-logo.png);
	}
}

@media only screen and (max-width: 580px) {
	div#banner-links {
		width: 225px;
		height: 150px;
		background-size: contain; /* Verkleinert Bild auf DIV Größe */
		/* ##### Zentriert Div in Div ##### */
		/*left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);*/
		/* ########## */
	}
}

div#banner-rechts {
	position: absolute;
	right: 102px;
	width: 98px;
	height: 300px;
	/*background-image: url(bilder/layout/banner-rechts.png);*/
	/*background-repeat: no-repeat;*/
}

@media only screen and (max-width: 980px) { /* 580px */
	div#banner-rechts {
		visibility: hidden;
		/*background-image: none;*/
		/*width: 250px;
		height: 150px;
		background-size: contain;*/ /* Verkleinert Bild auf DIV Größe */
	}
}

div#bannertext {
	position: absolute;
	bottom: 0px;
	width: 100%;
	padding-top: 2px;
	padding-bottom: 2px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #ffffff;
	text-align: center;
}

@media only screen and (max-width: 980px) {
	div#bannertext {
		font-size: 0.75em;
	}
}

@media only screen and (max-width: 580px) {
	div#bannertext {
		display: none;
	}
}

/* ------------------------------- */

div#main-container {
	position: relative;
	margin-top: 20px;
	width: 100%;
	background-color: #ffffff;
	z-index: 1; /* Weil DIV über Bottom DIV liegt */
}

div#main-table {
	display: table;
	width: 100%;
	height: 500px;
}

div#main-tr {
	display: table-row;
}

div#main-links-td {
	display: table-cell;
	min-width: 250px;
	width: 250px;
	padding: 0px;
	vertical-align: top;
	text-align: center;
	background-image: -webkit-linear-gradient(bottom, #ffffff 0%, #132a54 100%);
	background-image: -moz-linear-gradient(bottom, #ffffff 0%, #132a54 100%);
	background-image: -ms-linear-gradient(bottom, #ffffff 0%, #132a54 100%);
	background-image: -o-linear-gradient(bottom, #ffffff 0%, #132a54 100%);
	background-image: linear-gradient(bottom, #ffffff 0%, #132a54 100%);
}

@media only screen and (max-width: 580px) {
	div#main-links-td {
		min-width: 10px;
		width: 10px;
	}
}

div#main-rechts-td {
	display: table-cell;
	padding-top: 5px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 5px;
	vertical-align: top;
	background-color: #ffffff;
	background-image: url(bilder/layout/haupttabelle-rechts-background.png);
	background-position: 50% 100px;
	background-repeat: no-repeat;
}

@media only screen and (max-width: 580px) {
	div#main-rechts-td {
		#max-width: 280px;
	}
}

/* ------------------------------- */

div#hinweistext {
	position: relative;
	margin-top: 10px;
	width: 100%;
	background-color: #d0d0d0;
	color: #000000;
	text-align: center;
	font-weight: bold;
}

/* ------------------------------- */

div#bottom {
	position: relative;
	margin-top: -40px;
	width: 100%;
	background-color: #d0d0d0;
}

div#bottom-container {
	display: table;
}

div#bottom-mitte {
	display: table-cell;
	padding-top: 50px;
	padding-right: 50px;
	padding-left: calc(50% - 250px);
	padding-bottom: 20px;
	vertical-align: top;
}

div#bottom-mitte a:hover {
	color: #ffffff;
}

@media only screen and (max-width: 580px) {
	div#bottom-mitte {
		display: none;
	}
}

div#bottom-menue {
	display: table-cell;
	padding-top: 50px;
	padding-left: 0px;
	padding-right: 5px;
	padding-bottom: 20px;
	vertical-align: middle;
}

div#bottom-menue a:hover {
	color: #ffffff;
}

@media only screen and (max-width: 580px) {
	div#bottom-menue {
		display: block;
		padding-left: calc(50% - 100px);
	}
}

/* ------------------------------- */

div#copyright {
	position: relative;
	margin-top: 20px;
	text-align: center;
}

/* ------------------------------- */

div#cookie_hinweis {
	position: fixed;
	min-height: 100px;
	bottom: 0px;
	padding-top: 5px;
	width: 100%;
	z-index: 1000;
	text-align: center;
	cursor: default;
	background-color: rgba(234, 239, 241, 0.95);
	border-top: #a8bcc6 1px solid;
}

a.cookie_hinweis_button, a.cookie_hinweis_button:visited {
	text-decoration: none;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 25px;
	padding-right: 25px;
	background-color: #00c700;
	-webkit-transition: background-color 0.3s linear;
	-moz-transition: background-color 0.3s linear;
	-o-transition: background-color 0.3s linear;
	-ms-transition: background-color 0.3s linear;
	transition: background-color 0.3s linear;
	color: #ffffff;
	margin-right: 10px;
}

a.cookie_hinweis_button:hover, a.cookie_hinweis_button:active {
	background-color: #00a600;
	color: #ffffff;
}

/* -------------------------------------------------- Text Farben -------------------------------------------------- */

.farbe-member-status {
	color: #000000;
}

.farbe-mod-status {
	color: #0000ff;
}

.farbe-admin-status {
	color: #d56a00;
}

.farbe-webmaster-status {
	color: #cc0000;
}

.farbe-termin-abgelaufen {
	color: #ff0000; /* rot */
}

.hinweis {
	color: #ff0000; /* rot */
	font-weight: bold;
}


/* -------------------------------------------------- Tabellen Main Seiten -------------------------------------------------- */

.tabellenbreite {
	width: 100%;
}

.tabellenkopf-tr {
	/*background-color: #d0d0d0;*/
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #7a95b2 100%);
	background-image: -moz-linear-gradient(top, #ffffff 0%, #7a95b2 100%);
	background-image: -ms-linear-gradient(top, #ffffff 0%, #7a95b2 100%);
	background-image: -o-linear-gradient(top, #ffffff 0%, #7a95b2 100%);
	background-image: linear-gradient(top, #ffffff 0%, #7a95b2 100%);
}

.zwei-spaltentabelle-td {
	width: 50%;
	border: #000000 1px solid;
	text-align: center;
}

@media only screen and (max-width: 580px) {
	.zwei-spaltentabelle-td {
		font-size: 10px;
	}
}

.drei-spaltentabelle-td {
	width: 33%;
	border: #000000 1px solid;
	text-align: center;
}

@media only screen and (max-width: 580px) {
	.drei-spaltentabelle-td {
		font-size: 10px;
	}
}

.kommentartabelle-table {
	border: #000000 1px solid;
}

.kommentartabelle-td {
	width: 70px;
	vertical-align: top;
	border-bottom: #000000 1px solid;
}

.kommentartabelle-td-rechts {
	vertical-align: top;
	padding-left: 10px;
	border-bottom: #000000 1px solid;
}

/* -------------------------------------------------- Tabellen Admin Seite -------------------------------------------------- */

.admintabelle-table {
	width: 100%;
	height: 500px;
	border: #000000 1px solid;
}

.admintabelle-td-links {
	min-width: 160px;  /* Min 160px */
	width: 160px;
	background-color: #d0d0d0;
	vertical-align: top;
}

.admintabelle-td-links ul {
	padding-left: 1em;
}

.admintabelle-td-links li {
	list-style-position: outside;
	
}

@media only screen and (max-width: 580px) {
	.admintabelle-td-links {
		min-width: 70px;
		width: 70px;
		font-size: 10px;
	}
}

.admintabelle-td-rechts {
	vertical-align: top;
}

@media only screen and (max-width: 580px) {
	.admintabelle-td-rechts {
		font-size: 10px;
	}
}

/* -------------------------------------------------- Menüs -------------------------------------------------- */

nav#headmenue {
	position: relative;
	width: 100%;
}

nav#headmenue ul {
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

nav#headmenue li {
	float: left;
	padding-right: 5px;
	padding-left: 5px;
	border-right: 1px solid #000000;
	font-size: 14px;
	list-style-type: none;
}

nav#headmenue li:last-child {
	border-right: none;
}

@media only screen and (max-width: 580px) {
	nav#headmenue li {
		clear: both;
		padding-left: 0px;
		border-right: none;
		list-style-type: disc;
	}
}

/* ------------------------------- */

@media only screen and (min-width: 581px) {
	nav#mobilemenue {
		display: none;
	}
}

@media only screen and (max-width: 580px) {
	nav#topmenue {
		display: none;
	}
}

nav#topmenue {
	position: relative;
	margin-top: 20px;
	width: 100%;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #7a95b2 100%);
	background-image: -moz-linear-gradient(top, #ffffff 0%, #7a95b2 100%);
	background-image: -ms-linear-gradient(top, #ffffff 0%, #7a95b2 100%);
	background-image: -o-linear-gradient(top, #ffffff 0%, #7a95b2 100%);
	background-image: linear-gradient(top, #ffffff 0%, #7a95b2 100%);
}

nav#topmenue ul {
	display: table;
	table-layout: fixed; /* Alle Buttons gleich breit */
	width: 100%; /* Benötigt für table-layout: fixed; */
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

@media only screen and (max-width: 980px) {
	nav#topmenue ul {
		table-layout: auto;
	}
}

nav#topmenue li {
	display: table-cell;
	height: 24px;
	border-right: 1px solid #ffffff;
	text-align: center;
	line-height: 24px; /* Zentriert Text vertikal */
	font-size: 14px;
	cursor: pointer;
	list-style-type: none;
	background-color: ;
	-webkit-transition: background-color 0.3s linear;
	-moz-transition: background-color 0.3s linear;
	-o-transition: background-color 0.3s linear;
	-ms-transition: background-color 0.3s linear;
	transition: background-color 0.3s linear;
}

nav#topmenue li:last-child {
	border-right: none;
}
	
nav#topmenue li:hover {
	background-color: #7a95b2;
	-webkit-transition: background-color 0.3s linear;
	-moz-transition: background-color 0.3s linear;
	-o-transition: background-color 0.3s linear;
	-ms-transition: background-color 0.3s linear;
	transition: background-color 0.3s linear;
}	

nav#topmenue li:hover a {
	color: #ffffff;
}

nav#topmenue a {
	display: block;
	line-height: 24px; /* Zentriert Text vertikal */
	text-decoration: none;
	color: #000000;
}

/* ------------------------------- */

nav#mobilemenue {
	position: relative;
	margin-top: 20px;
	width: 100%;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #7a95b2 100%);
	background-image: -moz-linear-gradient(top, #ffffff 0%, #7a95b2 100%);
	background-image: -ms-linear-gradient(top, #ffffff 0%, #7a95b2 100%);
	background-image: -o-linear-gradient(top, #ffffff 0%, #7a95b2 100%);
	background-image: linear-gradient(top, #ffffff 0%, #7a95b2 100%);
}

nav#mobilemenue ul {
	display: table;
	table-layout: fixed; /* Alle Buttons gleich breit */
	width: 100%; /* Benötigt für table-layout: fixed; */
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

nav#mobilemenue li {
	display: block;
	height: 24px;
	border-right: none;
	border-bottom: 1px solid #ffffff;
	text-align: center;
	line-height: 24px; /* Zentriert Text vertikal */
	font-size: 18px;
	cursor: pointer;
	list-style-type: none;
	background-color: ;
	-webkit-transition: background-color 0.3s linear;
	-moz-transition: background-color 0.3s linear;
	-o-transition: background-color 0.3s linear;
	-ms-transition: background-color 0.3s linear;
	transition: background-color 0.3s linear;
}

nav#mobilemenue li:last-child {
	border-bottom: none;
}
	
nav#mobilemenue li:hover {
	background-color: #7a95b2;
	-webkit-transition: background-color 0.3s linear;
	-moz-transition: background-color 0.3s linear;
	-o-transition: background-color 0.3s linear;
	-ms-transition: background-color 0.3s linear;
	transition: background-color 0.3s linear;
}	

nav#mobilemenue li:hover a {
	color: #ffffff;
}

nav#mobilemenue a {
	display: block;
	line-height: 24px; /* Zentriert Text vertikal */
	text-decoration: none;
	color: #000000;
}

/* ------------------------------- */

nav#sitemenue {
	position: relative;
	margin-top: 0px;
	width: 100%;
}

@media only screen and (max-width: 580px) {
	nav#sitemenue {
		display: none;
	}
}

nav#sitemenue ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
	
nav#sitemenue li {
	display: block;
	padding-left: 5px;
	padding-right: 5px;
	height: 40px;
	border-bottom: 2px solid #ffffff;
	text-align: center;
	line-height: 40px; /* Zentriert Text vertikal */
	font-size: 14px;
	cursor: pointer;
	list-style-type: none;
	background-color: ;
	-webkit-transition: background-color 0.3s linear;
	-moz-transition: background-color 0.3s linear;
	-o-transition: background-color 0.3s linear;
	-ms-transition: background-color 0.3s linear;
	transition: background-color 0.3s linear;
}

nav#sitemenue li:hover {
	background-color: #e30613;
	-webkit-transition: background-color 0.3s linear;
	-moz-transition: background-color 0.3s linear;
	-o-transition: background-color 0.3s linear;
	-ms-transition: background-color 0.3s linear;
	transition: background-color 0.3s linear;
}	

nav#sitemenue li:hover a {
	color: #ffffff;
}

nav#sitemenue a {
	display: block;
	line-height: 40px; /* Zentriert Text vertikal */
	text-decoration: none;
	color: #ffffff;
}</pre></body></html>