

html, body {
	margin: 5px 0 10px 0;					/* kein Randabstand */
	padding: 0;					/* kein Innenabstand */
	font-family : Verdana, Helvetica, Arial, sans-serif; /* Schriftfamilie */
	color: #333;				/* Schriftfarbe dunkel-grau */
	background: #c70027;		/* Hintergrundfarbe */
	font-size : 13px;			/* Basis-Schriftgröße */
}

.logo {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	border: none;
	float:left;
}




/* Zuruecksetzen des Randes aller wichtigen Text-Elemente */

a, p, h1, h2, h3, h4, h5, h6, td, tr {
	margin: 0;
	padding: 0;
}

/* Formatierung Bilder */
img {
	border: 1px solid #000;		/* 1 Pixel-Rand in schwarz */
	float: left;					/* Inhalte umfliessen Bilder an der rechten Seite */
	margin: 0 ;		/* Abstand rechts und unten 8 Pixel */
}

/* --- LAYOUT -------------------------- */

#gesamteseite {
	margin: 0 0 0 0;
	padding: 0;
	margin-left: auto;
	margin-right: auto;
	width: 770px;
	background: #c70027;
	text-align: left;
}


#kopfzeile {
	margin: 0 20px 0 20px;
	padding: 0;
	width: 730px;
	height: 210px;
}

#linkespalte {
	margin: 0 0 30px 0;
	padding: 0;
	width: 340px;
	float: left;
}

#linkespalte-abstand {
	margin: 20px 5px 0px 20px;
}

#rechtespalte {
	margin: 0 0 30px 0;
	padding: 0;
	width: 430px;
	float: right;
}

#rechtespalte-abstand {
	margin: 20px 20px 20px 10px;
}




/* --- NAVIGATION -------------------------- */


/* navigation */

#navcon {
	margin: 0 0 0 20px;
}


#nav {
	float: left;
	margin: 0;
	padding: 0;
	width: 730px;
	list-style: none;
	border-top: 1px solid #bbb;
	border-bottom: 1px solid #333;
	background: #555 url('nav-hintergrund-dunkelgrau.gif') repeat-x top left;
}

#nav li {
	float: left;
	margin: 0;
	padding: 0 1px 0 0;
	list-style: none;
	background: url('nav-li-hintergrund.gif') no-repeat top right;
}

#nav a {
	float: left;
	padding: 3px 13px;
	text-decoration: none;
	color: #fff;
	border: none;
}

#nav a:hover, #nav a.active {
	color: #fff;
	background: #aaa url('nav-aktuell-hintergrund.gif') repeat-x bottom left;
}

#nav a.active {
	font-weight: bold;
	background: #777 url('nav-aktuell-hintergrund.gif') repeat-x bottom left;
}

	





/* TEXTFORMATIERUNG -------------------------------------------*/

/* Hauptueberschrift */
h1 {
	font-size: 160%;			/* Schriftgröße */
	line-height: 170%;		/* Zeilenabstand */
	font-weight: bold;		/* Fettschrift */
	padding-bottom: 8px;		/* unten Innenabstand zwischen Elementinhalt */
}

/* Zweite Ueberschrift */
h2 {
	font-size: 120%;			/* Schriftgröße */
	line-height: 120%;		/* Zeilenabstand */
	font-weight: bold;		/* Fettschrift */
	padding-bottom: 8px;		/* unten Innenabstand zwischen Elementinhalt */
}

/* Anreissertext */
h3 {
	font-size: 110%;			/* Schriftgröße */
	line-height: 120%;		/* Zeilenabstand */
	font-weight: bold;		/* Fettschrift */
	padding-bottom: 6px;		/* unten Innenabstand zwischen Elementinhalt */
}

/* Zwischenueberschrift */
h4 {
	font-size: 105%;			/* Schriftgröße */
	line-height: 120%;		/* Zeilenabstand */
	font-weight: bold;		/* Fettschrift */
	padding-top: 12px;		/* unten Innenabstand zwischen Elementinhalt */
	padding-bottom: 8px;		/* unten Innenabstand zwischen Elementinhalt */
}
h5 {
	font-size: 80%;			/* Schriftgröße */
	line-height: 120%;		/* Zeilenabstand */
	font-weight: bold;		/* Fettschrift */
	padding-bottom: 8px;		/* unten Innenabstand zwischen Elementinhalt */
}
td, p {
	font-size: 100%;			/* Schriftgröße */
	line-height: 120%;		/* Zeilenabstand */
	font-weight: normal;		/* Fettschrift */
	padding-bottom: 12px;	/* unten Innenabstand zwischen Elementinhalt */
}

ul {
	margin: 0 0 12px 24px; 	/* unten und linker Abstand */
	padding: 0;					/* Innenabstand */
	list-style: square;
}


ol {
	margin: 0 0 12px 24px; 	/* unten und linker Abstand */
	padding: 0;					/* Innenabstand */
}

li {
	margin: 0;				/* Abstand */
	padding: 0 0 0 0;				/* Innenabstand */
	line-height: 150%;	/* Zeilenabstand */
}



blockquote {
	margin: 0 0 0 24px;	/* Abstand */
	padding: 0px 0 12px 0;				/* Innenabstand */
}


/* Link */
a {
	text-decoration: none;				/* Keine Unterlinierung */
	font-weight: bold;					/* Fettschrift */
	color: #000000;							/* Schriftfarbe schwarz */
	border-bottom: 1px solid #000000;	/* Untere Linie grau 1 Pixel Rahmen durchgezogen */
}

/* Link bei darueberfahrender Maus */
a:hover {
	color: #fff;							/* Schriftfarbe weis */
	border-bottom: 1px solid #c70027;	/* Untere Linie hellgruen 1 Pixel Rahmen durchgezogen */
}

/* Bereits besuchter Link */
a:visited {
	color: #660000;							/* Schriftfarbe dunkelgraurot */
                border-bottom: 1px solid #660000
}

/* Geklickter Link */
a:active {
	color: #fa0;							/* Schriftfarbe tuerkis */
	border-bottom: 1px solid #ff0;	/* Untere Linie tuerkis 1 Pixel Rahmen durchgezogen */
}


.artikel {
margin: 0 0 14px 0;
}


/* links-liste -------------------------------------------*/

.links-liste ul {
list-style: none;
margin: 0;
padding: 0 0 28px 0;
}

.links-liste ul li li {
list-style: square;
margin: 0 0 0 22px;
passing: 0;
}

.hinweis {
color: #f00;
font-weight: bold;
}


/* FORMULAR -------------------------------------------*/

textarea, input {
border: 1px solid #333;		/* einpixeliger Rahmen */
background: #eee;
padding: 2px;				/* ein wenig Abstand innerhalb des Formularfeldes vom Rand */
}

textarea:hover, input:hover, textarea:focus, input:focus {
border: 1px solid #d00;		/* einpixeliger Rahmen */
background: #fff;
padding: 2px;				/* ein wenig Abstand innerhalb des Formularfeldes vom Rand */
}


/* Auswahlknopf ohne Rand und Hintergrund */
.radiobutton {
background: none;
border: none;
}

/* Der Abschick-Button mit orangefarbenen Hintergrund und Fettschrift */
.submit {
background: #d00;
border: 2px solid #000;
color: #fff;
padding: 1px;
font-weight: bold;
}

.submit:hover {
background: #fa0;
border: 2px solid #000;
color: #fff;
padding: 1px;
color: #000;
}


.submit:focus {
background: #ff0;
border: 2px solid #000;
color: #fff;
padding: 1px;
color: #000;
}


/* Breite der Textboxen */
.name, .email, .betreff {
margin: 4px 0 0 0;
}

.betreff, .texteingabefeld {
width: 320px;
}


/* Fehlermeldung */
.hinweis {
font-weight: bold;
color: #d00;
padding: 0;
margin: 0;
}



#gesamteseite {	background: #c70027;  }
#nav { background: #555 url('nav-hintergrund-dunkelgrau.gif') repeat-x top left; }
#nav li { background: url('nav-li-hintergrund.gif') no-repeat top right; }
#nav a:hover, #nav a.aktuell { background: #aaa url('nav-aktuell-hintergrund.gif') repeat-x bottom left; }
#nav a.aktuell { background: #777 url('nav-aktuell-hintergrund.gif') repeat-x bottom left; }
