<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
	margin: 0;
	padding: 0;
	border: none;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}

/* HTML5 display-role reset fuer aeltere Browser */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary {
	display: block;
}

/* HTML5 Korrektur 'inline-block' (nicht definiert in IE 6/7/8/9 und Firefox 3) */

audio, canvas, video {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

/* inline-block Hacks */
.inline-block {
	display: -moz-inline-stack;	  /* FF2 */
	display: inline-block;
	vertical-align: top;
	zoom: 1;   /* IE */
	*display: inline;   /* IE */
}

/* Verhindert Anzeige von 'audio' ohne Controls
 * Entfernen der Hoehe in iOS 5 Devices */

audio:not([controls]) {
	display: none;
	height: 0;
}

/* Angabe fuer `hidden` Atrribut, nicht vorhanden in IE 7/8/9, Firefox 3 und Safari 4.
 * Known issue: kein IE 6 Support */

[hidden] {
	display: none;
}

/* Padding nicht mehr zur Breite hinzurechnen */
div, input, textarea {
	box-sizing: border-box;
}

/* Erzwingen vertikaler Scrollbalken in Netscape, Firefox und Safari Browsern
*  Textgroesse */
html {
	font-size: 100%;
	height: 100%;
	-webkit-text-size-adjust: 100%; /* verhindert iOS text size Anpassung, betrifft nicht User Zoom */
	-ms-text-size-adjust: 100%; /* verhindert iOS text size Anpassung, betrifft nicht User Zoom */
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* Rahmen fuer fieldset und img Elemente loeschen */
fieldset, img {
	border: 0 solid;
}

/* Input-Text */
input, button, select {
	vertical-align: middle;
}

/* Korrektur: Das Zuruecksetzen der Abstaende verursacht zu kleine Selectboxen */
option {
	padding-left: 0.4em;
}

/* Vermeidung der Zeilenhoehe-Aenderung bei Hoch-, Tiefstellung */
sup, sub {
	line-height: 0;
}

/* verhindert Luecken bei Bildern innerhalb Tabellen */
td img {
	vertical-align: bottom;
}

/* Bilder an umgebenden Block anpassen */
img {
	border: 0;
	/*max-width: 100%;*/
	height: auto;
}

* html body img {
	width: 100%;
}

svg:not(:root) {
	overflow: hidden;
}

/* nur Ausschnitt von absolut positionierten Bildern zeigen */
.extract {
	clip: rect(0px, 100px, 100px, 0px);
}

/* Pixelinterpolation fuer IE */
img {
	-ms-interpolation-mode: bicubic;
}

/* PNG-Transparenz bei IE */
* html img, * html .png {
	position:relative;
	behavior: expression(
		(this.runtimeStyle.behavior="none")&amp;&amp;(this.pngSet?this.pngSet=true:(this.nodeName == "IMG" &amp;&amp; this.src.toLowerCase().indexOf('.png')&gt;-1?(this.runtimeStyle.backgroundImage = "none",
		this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')",
		this.src = "transparent.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''),
		this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "', sizingMethod='crop')",
		this.runtimeStyle.backgroundImage = "none")),this.pngSet=true)
	);
}

/* Rahmen bei aktiven Links entfernen */
*:focus, a:active, a:hover {
	outline: 0;
}

/* Wort-Umbruch/kein Wort-Umbruch */
.break-word {
	word-wrap: break-word;
}

.nowrap {
	white-space: nowrap;
}

/* Text in Container kuerzen mit Auslassungszeichen ... */
.ellipse {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-mz-text-overflow: ellipsis;
}

/* Tabelle */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Formular */
legend {
	border: 0;
	padding: 0;
	white-space: normal;
	*margin-left: -7px;
}

button, input, select, textarea {
	font-size: 100%;
	margin: 0;
	vertical-align: baseline;
	*vertical-align: middle;
}

button, input {
	line-height: normal;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
	*overflow: visible;
}

input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
	*height: 13px;
	*width: 13px;
	border: none;
}

input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
	resize: vertical;
}

/* Cursor */
a[href], input[type="image"], select, button, .pointer {
	cursor: pointer;
}

button[disabled], input[disabled] {
	cursor: default;
}

/* Trennlinie */
hr {
	display: block;
	height: 1px;
	width: 100%;
	border: 0;
	color: #ccc;
	background-color: #ccc;
	margin: 1em 0;
	padding: 0;
}

/* Auszeichnungen */
strong, b, .bold {
	font-weight: bold;
}

em, i {
	font-style: italic;
}

u {
	text-decoration: underline;
}

blockquote {
	margin: 1em 20px;
}

pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

q {
	quotes: none;
}

q:before,
q:after {
	content: '';
	content: none;
}

small {
	font-size: 80%;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

/* Overflow-Methode zum Clearen der Float-Umgebungen innerhalb einer Box */
.floatbox {
	overflow: hidden;
}

/* Float-Umgebungen clearen */
.clear {
	clear: both;
	*zoom: 1;
	height: 0;
	overflow: hidden;
}

.clear:before,
.clear:after {
	content: " ";
	display: table;
}

.clear:after {
	visibility: hidden;
	height: 0;
	clear: both;
}

div.right {
	float: right;
}


/* --- Effekte --- */
/* -- abgerundete Ecken -- */
.rounded {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
}

.rounded-bottom {
	border-bottom-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-o-border-bottom-right-radius: 5px;
	
	border-bottom-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-o-border-bottom-left-radius: 5px;
}

.rounded-top {
	border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-khtml-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	-o-border-top-right-radius: 5px;
	
	border-top-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-khtml-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	-o-border-top-left-radius: 5px;
}

/* -- Schatten -- */
.text-shadow {
	text-shadow: 1px 1px 1px #777;   /* Horizontal, Vertikal, Groesse, Farbe */
}

.box-shadow {
	box-shadow: 2px 2px 5px #bbb;   /* Horizontal, Vertikal, Groesse, Farbe, optional: "inset" - Schatten nach Innen */
}

/* -- Verlauf -- */
.gradient {
	background: #ddd no-repeat;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dddddd') no-repeat;
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dddddd')" no-repeat;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#dddddd)) no-repeat;
	background: -moz-linear-gradient(top, #ffffff, #dddddd) no-repeat;
}

/* -- Transparenz -- */
.opacities {
	opacity: 0.5;		/* modern browser */
	-moz-opacity: 0.5;		/* older Mozilla browser */
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";		/* IE8 in Standard Compliant Mode */
	filter:alpha(opacity=50);		/* IE5.x -7.0 */
}

/* --- Cookie Warnung --- */

#script-warning {
	position: fixed;
	top: 0;
	left: 0;
	background: #ffffc4;
	background: #333;
	color: #fff;
	color: #ffffc4;
	width: 100%;
	height: 46px;
	text-align: center;
	padding: 1em 0;
	box-shadow: 0px 1px 3px #666;
	z-index: 900;
}

#cookie-warning {
	position: fixed;
	bottom: 25px;
	left: 0;
	background: #ffffc4;
	background: #666;
	color: #fff;
	color: #ffffc4;
	width: 100%;
	min-height: 46px;
	text-align: center;
	padding: 1em 0;
	display: none;
	box-shadow: 0px 1px 3px #666;
	z-index: 1000;
}

#cookie-warning a {
	color: #fff;
}

#cookie-acc {
	padding: 4px 10px;
	background: #ccc;
	color: #000;
	cursor: pointer;
	margin-left: 20px;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-icab-border-radius: 5px;
}

#cookie-acc:hover {
	background: #999;
	color: #fff;
}

/* -- Themes -- */

.blue {
	background: #7697b7;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7697b7', endColorstr='#ffffff');	
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#7697b7', endColorstr='#ffffff')";	
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#7697b7), to(#ffffff)) no-repeat;
	background: -moz-linear-gradient(top, #7697b7, #ffffff) no-repeat;
	
	font-family: Lucida Sans Unicode, Lucida Grande, sans-serif;
}

.blue #top {
	background: #efefef;
}

.blue #navbar {
	background: #a6bbd0;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#6c8093');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#6c8093')";
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#6c8093));
	background: -moz-linear-gradient(top, #ffffff, #6c8093);
}

.blue #navbar .nav-bar li a {
	color: #1c1a1a;
}

.blue #navbar .nav-bar li a:hover,
.blue #navbar .nav-bar li:hover {
	background: #4e5f70;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#929292', endColorstr='#4e5f70');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#929292', endColorstr='#4e5f70')";
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#929292), to(#4e5f70));
	background: -moz-linear-gradient(top, #cccccc, #4e5f70);
	
	color: #fff;
	text-shadow: none;
}

.blue #navbar .nav-bar li.active a,
.blue #navbar .nav-bar li.active a:hover {
	background: #d7e2ec;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#929292', endColorstr='#d7e2ec');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#929292', endColorstr='#d7e2ec')";
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#929292), to(#d7e2ec));
	background: -moz-linear-gradient(top, #ffffff, #d7e2ec);
	
	color: #183652;
	text-shadow: none;
}

.blue .fform {
	background: #eff3f7;
}

/* -- grey -- */

.grey {
	background: #cacaca no-repeat;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cacaca', endColorstr='#848484') no-repeat;	
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#cacaca', endColorstr='#ffffff')" no-repeat;	
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#cacaca), to(#ffffff)) no-repeat;
	background: -moz-linear-gradient(top, #cacaca, #ffffff) no-repeat;
}

.grey #top {
	background: #f6f6f6;
}

.grey #navbar {
	background: #6c8093;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#6c8093');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#6c8093')";
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#6c8093));
	background: -moz-linear-gradient(top, #dadada, #848484);
}

.grey #navbar .nav-bar li a {
	color: #262626;
}

.grey #navbar .nav-bar li a:hover,
.grey  #navbar .nav-bar li:hover {
	background: #646464;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#929292', endColorstr='#646464');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#929292', endColorstr='#646464')";
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#929292), to(#646464));
	background: -moz-linear-gradient(top, #929292, #646464);
	
	color: #fff;
	text-shadow: none;
}

.grey #navbar .nav-bar li.active a,
.grey  #navbar .nav-bar li.active a:hover {
	background: #bbbbbb;

	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#bbbbbb');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#bbbbbb')";
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#bbbbbb));
	background: -moz-linear-gradient(top, #ffffff, #bbbbbb);
	
	color: #000;
}


.formSubject {
	display: none;
}
</pre></body></html>