body {
	font-size: 80%; /* see http://www.thenoodleincident.com/tutorials/css/ - Text Size */
	font-family: Arial, Helvetica, sans-serif; 
	
}
body table {
	width: 70%; 
}

/* Navigationstabelle */ 
.navigation {
	background-color: #CE6542;
	background-color: #B5754A;
	background-color: #943408;
}
/* Inhaltstabelle */
.content {
	background-color: #eee;
}
/* Andere Klassen */ 
.small {
	font-size: 0.8em; 
}


.form {
	background-color: #ccc;
	border-top: 1px solid #CE6542;
	border-bottom: 1px solid #CE6542;
}

/* HTML Tags */
h1 {
	font-style: italic;
	font-size: 1.5em; 
	margin-top: 3px; 
}
h2 {
	font-style: italic;
	font-size: 1.2em; 
	margin-top: 3px; 
}
td {/* Schriftgröße */
	font-size: 0.8em;
}

/* Linkfarben in Navigation */
.activenavigation {
	color: #fff; 
}
.navigation td {
	color: #ddd; 
}
.navigation a:link {
	color: #eee; 
	text-decoration:none; 
}
.navigation a:visited {
	color: #ccc; 
	text-decoration:none; 
}
.navigation a:active {
	text-decoration: underline ; 
}
.navigation a:hover {
	text-decoration: underline ; 
}
/* Linkfarben im Inhalt */
a:link {
	color: #c00; 
	text-decoration:underline; 
}
a:visited {
	color: darkred; 
	text-decoration:underline; 
}
a:active {
	color: Red; 
	text-decoration:underline; 
}
a:hover {
	color: Red; 
	text-decoration:underline; 
}


