body  {
	background: #FFFFF0;
	margin: 0px; /* Es empfiehlt sich, margin (Rand) und padding (Auffüllung) des Body-Elements auf 0 einzustellen, um unterschiedlichen Browser-Standardeinstellungen Rechnung zu tragen. */
	padding: 0px; /* Hierdurch wird der Container in IE 5*-Browsern zentriert. Dem Text wird dann im #container-Selektor die Standardausrichtung left (links) zugewiesen. */
	color: #000000;
	background-color: #FFFFF0;
	background-repeat: no-repeat;
}

/* Tipps für elastische Layouts:
1. Da die Gesamtgröße elastischer Layouts von der Standardschriftgröße des Benutzers abhängt, sind diese Layouts weniger berechenbar. Bei korrekter Verwendung haben sie außerdem für Personen, die größere Schriften benötigen, einen höheren Nutzwert, weil die Zeilenlänge proportional bleibt.
2. Die Größe der divs in diesem Layout basiert auf der Originalschriftgröße (100%) im Body-Element. Wenn Sie die Textgröße durch eine Einstellung wie font-size: 80% im Body-Element oder im #container global verringern, wird das gesamte Layout proportional verkleinert. Sie sollten die Breiten der verschiedenen divs vergrößern, um hierfür einen Ausgleich zu schaffen.
3. Wenn Sie in den einzelnen divs unterschiedliche Werte für die Schriftgröße angegeben, anstatt die Schriftgröße im Design global zu ändern (z. B. wenn #sidebar1 die Schriftgröße 70% zugewiesen wird und #mainContent die Größe 85%), so wird die Gesamtgröße der einzelnen divs proportional geändert. Sie sollten anhand der endgültig gewählten Schriftgröße entsprechende Anpassungen vornehmen.
*/
.twoColElsLtHdr #container {
	width: 850px;
	text-align: left;
	top: auto;
	background-color: #EEECE1;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border: 1px solid #066;
	height: auto;
} 
.twoColElsLtHdr #header {
	background-color: #FFFFF0;
} 
.twoColElsLtHdr #header h1 {
	margin: 0; /* Wenn Sie den Rand des letzten Elements im #header-div auf 0 einstellen, können Sie das Auftreten unerwarteter Abstände zwischen divs vermeiden. Wenn das div einen Rahmen hat, ist dies unnötig, weil dieser Rahmen die gleiche Wirkung hat. */
	padding: 10px 0;
	border-right-width: thin;
	top: auto;
}

/* Tipps für sidebar1:
1. Wenn Sie für dieses div eine Schriftgröße festlegen, wird die Gesamtbreite des div entsprechend angepasst.
2. Da wir mit Gevierten (ems) arbeiten, ist es empfehlenswert, für die Randleiste selbst keine Auffüllung zu verwenden. Sie wird bei standardgerechten Browsern der Breite hinzugefügt, und dies wiederum führt zu einer unbekannten tatsächlichen Breite. 
3. Zwischen der Kante des div und den darin liegenden Elementen kann ein Abstand eingefügt werden, indem Sie diesen Elementen wie in ".twoColElsLtHdr #sidebar1 p" demonstriert einen linken und rechten Rand zuweisen.
*/
.twoColElsLtHdr #sidebar1 {
	float: left;
	width: 140px; /* Da es sich hier um ein floatendes Element handelt, muss eine Breite angegeben werden. */
	background: #EEECE1; /* Die Hintergrundfarbe wird nur für die Länge des Spalteninhalts angezeigt. */
	padding: 20px 0;
}
.twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
	margin-left: 10px; /* Für jedes Element, das in den seitlichen Spalten platziert wird, sollten ein linker und ein rechter Rand angegeben werden. */
	margin-right: 10px;
	background-color: #EEECE1;
	text-align: center;
}
.twoColElsLtHdr #mainContent {
	background-color: #EEECE1;
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #066;
	border-right-color: #066;
	border-bottom-color: #066;
	border-left-color: #066;
	margin-top: 0;
	margin-right: 0em;
	margin-bottom: 0;
	margin-left: 12em;
	height: auto;
} 
.twoColElsLtHdr #footer {
	background:#EEECE1;
	border-top-color: #066;
	border-top: 1;
	border-top-style: double;
	border-top-width: medium;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 12em;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	border-left-color: #066;
	border-left-width: 1px;
	border-left-style: solid;
} 
.twoColElsLtHdr #footer p {
	margin: 0; /* Wenn Sie die Ränder des ersten Elements in der Fußzeile auf 0 einstellen, können Sie unerwartete Abstände zwischen divs vermeiden. */
	padding: 10px 0; /* Durch die Verwendung der Auffüllung bei diesem Element entsteht genau wie bei einem Rand ein Leerraum, aber ohne die potenziellen Abstandsprobleme. */
}

/* Verschiedene wieder verwertbare Klassen */
.fltrt { /* Mit dieser Klasse können Sie ein Element auf der Seite nach rechts fließen lassen. Das floatende Element muss vor dem Element stehen, neben dem es auf der Seite erscheinen soll. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* Mit dieser Klasse können Sie ein Element auf der Seite nach links fließen lassen. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* Diese Klasse sollte in einem div- oder break-Element platziert werden und das letzte Element vor dem Schließen eines Containers sein, der wiederum einen vollständigen Float enthalten sollte. */
	clear:both;
	height:0px;
	font-size: 1px;
	line-height: none;
}
.twoColElsLtHdr #container #header table tr td {
	font-size: 0px;
	line-height: normal;
}
.twoColElsLtHdr #container #mainContent blockquote blockquote blockquote p strong {
	color: #066;
}
.twoColElsLtHdr #container #mainContent blockquote blockquote div {
	font-size: 10pt;
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #sidebar1 div table tr {
	height: 20px;
	width: 100px;
}
.twoColElsLtHdr #container #header hr {
	color: #408080;
}
.textblockkursiv {
	font-style: italic;
	font-weight: normal;
}
.twoColElsLtHdr #container #mainContent div blockquote table tr .textcenter table tr {
	
}

a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-decoration: underline;
	color: #333;
	text-align: center;
}
.tabl font b {
	color: #066;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-shadow: 3;
}
.tablsubtitel {
	color: #066;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	text-align: center;
	line-height: 24px;
	font-style: italic;
	text-decoration: underline;
}
form {
	background-color: #CCCC99;
	text-align: left;
}
.title {
	font-family: Verdana, Geneva, sans-serif;
	color: #066;
	background: #FFFFF0;
	font-size: 14px;
	line-height: 20px;
	font-weight: bold;
}
.kategorie {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000;
	page-break-after: auto;
	line-height: normal;
	font-weight: bolder;
	font-style: normal;
	text-align: center;
}
.subtitle {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: normal;
	color: #066;
	font-weight: bold;
	font-style: italic;
	text-align: center;
}
.header {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	background-color: #FFFFF0;
	color: #333;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	text-align: left;
}
.nav {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: normal;
	background-color: #FFFFF0;
}
.navLink {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: normal;
	background-color: #FFFFF0;
	color: #000;
	text-align: center;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
.sidebar {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 14px;
	padding: 3px;
	background-color: #FFFFCC;
	color: #003333;
}
.sidebarHeader {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 18px;
	color: #003300;
}
.sidebarFooter {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 18px;
	font-style: italic;
}
.footer {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	line-height: normal;
	color: #333;
	font-weight: normal;
	text-align: left;
}
.legal {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	color: #333333;
}
.titlebar {
	color: #666;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	font-weight: bold;
	line-height: 18px;
	text-align: left;
}
input.big {
	width: 100px;
}
.tabl {
	height: auto;
	width: auto;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	padding-left: 5px;
	padding-right: 5px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-align: left;
}
.termin {
	font: bold normal 14px/normal sans-serif, Verdana;
	color: #F00;
	text-decoration: underline;
}
.text {
	color: #333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	cursor: text;
	font-weight: normal;
	text-align: left;
}
.textrechts {
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	cursor: text;
	font-weight: normal;
	text-align: right;
}

.texteinzug {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	word-spacing: normal;
	white-space: normal;
	color: #000;
	height: auto;
	width: auto;
	padding-left: 18px;
	line-height: 24px;
}
.termin {
	font-size: 12px;
	word-spacing: 0;
	line-height: 
normal;
	font-weight: normal;
	margin-top: 24;
	margin-bottom: 3;
	color: #066;
	text-align: center;
}
.Kategorie {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: 14px;
	font-weight: bold;
	font-variant: normal;
	text-transform: capitalize;
	color: #066;
}
.Datum {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	color: #F00;
	letter-spacing: normal;
	text-align: center;
	word-spacing: normal;
}
.Preis {
	font-weight: bold;
}
.Titel {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: 24px;
	font-weight: bold;
	font-variant: normal;
	color: #333;
	white-space: normal;
	text-align: center;
}
.Autor {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: italic;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-align: center;
	color: #000;
}
.Ort {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	color: #000;
}
.Mail {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	color: #066;
}
.Zeiten {
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	color: #000;
}
.Kategorie {
	text-align: center;
	page-break-before: always;
	text-transform: capitalize;
	color: #000;
	font-size: 12px;
}
.Untertitel {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: italic;
	line-height: 18px;
	font-weight: normal;
	font-variant: normal;
	text-align: center;
}
.Veranstalter {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: left;
	text-transform: capitalize;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
}
.Eintritt {
	font-weight: bold;
}
.Internet {
	font-weight: bold;
}
.Moderation {
	font-weight: bold;
}
.Telefon {
	font-weight: bold;
}
body, td, th {
	font-family: Verdana, Geneva, sans-serif;
	line-height: 18px;
	letter-spacing: normal;
	word-spacing: normal;
	white-space: normal;
	padding-right: 2px;
	padding-left: 2px;
	text-align: left;
	width: auto;
	color: #333;
	font-size: 12px;
}
body {
	margin-top: 0px;
	background-image: url();
	margin-left: 0px;
	background-color: #FFFFF0;
	font-size: 12px;
	font-style: normal;
	font-variant: normal;
	color: #000;
	letter-spacing: normal;
	text-align: center;
	word-spacing: normal;
	vertical-align: auto;
	font-weight: normal;
	padding-left: 5px;
	padding-right: 5px;
}
.Datum {
	font-size: 12px;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: normal;
	font-variant: normal;
	color: #000;
	font-style: normal;
	text-align: center;
	page-break-before: auto;
	padding: 0px;
	height: 0px;
	width: 0px;
	white-space: normal;
	list-style-type: upper-alpha;
	line-height: 24px;
}
.textlink {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #333;
	text-decoration: underline;
	font-style: normal;
	text-align: center;
	line-height: normal;
	font-variant: normal;
}
.footergreen {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	line-height: normal;
	color: #066;
	text-align: right;
}
.textlyrik {
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 24px;
	font-weight: normal;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	display: table-row;
}
.textfooter {
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	font-style: normal;
	line-height: 10px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	text-align: left;
}
.contentTitel {
	font-size: 14px;
	font-style: italic;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	color: #066;
	white-space: normal;
	text-align: center;
	font-family: Verdana, Geneva, sans-serif;
}
.titleThema {
	color: #066;
	background: #FFFFF0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 20px;
	font-weight: normal;
}
titelPOP {
	text-align: center;
}
.textcenter {
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	font-weight: normal;
	text-align: center;
	border-left: 2;
	border-right: 2;
}
.textbold {
	color: #333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	text-align: left;
	font-weight: bold;
}
.seitenmarque {
	color: #066;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	text-align: left;
	line-height: normal;
	font-style: italic;
	text-decoration: underline;
}
.unterschrifttbl {
	text-align: center;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: italic;
	line-height: normal;
}
.textboldcenter {
	color: #333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	font-weight: bold;
	text-align: center;
}
.textboldgreen {
	color: #066;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	display: inline;
	font-weight: bold;
	text-align: left;
}
.textboldcentertitel {
	color: #066;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	font-weight: bold;
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
}
.TextLinkKopie {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #06F;
	text-decoration: underline;
	font-style: normal;
}
.textboldcenteruntertitel {
	color: #333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	font-weight: bold;
	text-align: center;
}
.textblock {
	color: #333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 18px;
	font-weight: normal;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	cursor: text;
	text-align: justify;
}
.textgreen {
	color: #066;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	cursor: text;
	text-align: left;
	font-weight: normal;
}
.textgreen {
	color: #066;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	cursor: text;
	text-align: left;
	font-weight: normal;
}

.textquelle {
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: 10px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	display: table-row;
	text-align: right;
}
.textboldcenter {
	color: #333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	font-weight: bold;
	text-align: center;
}
.Kategorie {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000;
	text-decoration: none;
	page-break-after: auto;
	line-height: 24px;
	font-weight: bold;
	font-style: normal;
	text-align: center;
}
.textboldred {
	color: #F00;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	display: inline;
	font-weight: bold;
	text-align: center;
}
.textred {
	color: #F00;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	display: inline;
	font-weight: normal;
	text-align: left;
}
.textrechts {
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	cursor: text;
	text-align: right;
}
arRechts {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	color: #000;
	text-decoration: underline;
	text-align: center;
}
.a_recht {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	color: #066;
	text-decoration: underline;
	text-align: right;
}
.textcentergreen {
	color: #066;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	text-align: center;
}
.textblockgreen {
	color: #066;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-weight: normal;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	cursor: text;
	text-align: justify;
}
.a_links {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	color: #333;
	text-decoration: underline;
	text-align: left;
}
.a_center {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	color: #066;
	text-decoration: underline;
	text-align: center;
}
.text link links {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	color: #066;
	text-decoration: underline;
	text-align: left;
}
.textfootergreen {
	color: #066;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: 10px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	display: table-row;
	text-align: right;
}
.textrechtsgreen {
	color: #066;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	cursor: text;
	text-align: right;
}
.textblockkursiv {
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 18px;
	font-weight: normal;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	cursor: text;
	display: inline-table;
	text-align: justify;
	font-style: italic;
}
.textliste {
	line-height: 24px;
}
.textcenterunterstrichen {
	color: #333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 24px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	font-weight: normal;
	text-decoration: underline;
	text-align: center;
}
.textbildunterschrift {
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	text-align: right;
	font-weight: normal;
}
.textblockboldgreen {
	color: #066;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-weight: bold;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	cursor: text;
	text-align: justify;
	display: inline-table;
}
.textfootercenter {
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	text-align: center;
}
.textboldcentergreen {
	color: #006666;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-weight: bold;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	text-align: center;
}
.textHinweisrechts {
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	cursor: text;
	text-align: right;
}
.textHinweislinks {
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	cursor: text;
	text-align: left;
}

.textfooterrechts {
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: 10px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	text-align: right;
}
.textbildunterschriftrecht {
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: 18px;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	text-align: right;
	font-weight: normal;
}
.textbildunterschriftlinks {
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	text-align: left;
	font-weight: normal;
}
.a10 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-decoration: underline;
	color: #066;
	text-align: left;
}
.textboldcenter10 {
	color: #333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	font-weight: bold;
	text-align: center;
}
.textcenter10 {
	color: #333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
	letter-spacing: normal;
	white-space: normal;
	font-weight: normal;
	text-align: center;
}

