body {
	scrollbar-arrow-color: #FFFFFF; 
	scrollbar-base-color: #000000;
	scrollbar-highlight-color : #FFFFFF; 
	scrollbar-shadow-color : #FFFFFF;
	SCROLLBAR-TRACK-COLOR: #000000;
	font-family: sans-serif;
	font-size: 12pt;
	color: black ;
	background-color: white;
	padding: 1em;
}

/* -------------------- TABLE ------------------------------- */
/* Tabellen, in denen etwas dargestellt wird. Bsp. news.php */
.table1 {						
	color: black;
	border: 1;
	border-style: double;
	border-color: black;
	border-collapse: collapse;
	border-rules: all;
	margin: auto;
}

/* --------------------- TR ------------------------------ */
/* Linie um ganze Zeile, Bsp. news.php */
tr.zeile1 {
	border: 1px;
	border-color: black;
	border-style: solid;
}

/* Titel-Zeile, Farbig hinterlegt, ohne abgrenzung zwischen Zellen, Bsp. news_table.php */
tr.title1 {
	font-weight: bold;
	background-color: 325aff;
	color: white;
	border: 1px;
	border-color: black;
	border-style: solid;
}

/* Zeile mit wechselndem farbigem Hintergrund zur besseren Lesbarkeit, Bsp. news_table.php */
tr.bgcolor1a {
	background-color: 50a5ff;
	color: white;
	border: 1px;
	border-color: black;
	border-style: solid;
}

/* Zeile mit wechselndem farbigem Hintergrund zur besseren Lesbarkeit, Bsp. news_table.php */
tr.bgcolor1b {
	background-color: FFFFFF;
	color: black;
	border: 1px;
	border-color: black;
	border-style: solid;
}

/* --------------------- TD ------------------------------ */
/* Zelle mit border */
td.zelle1 {
	border: 1px;
	border-color: black;
	border-style: solid;
}

/* Wie Titelzeile, aber mit Rahmen zwischen den Zellen */
td.title1 {
	font-weight: bold;
	background-color: 325aFF;
	color: white;
	border: 1px;
	border-color: black;
	border-style: solid;
}

/* etwas blasser als Titelzeile */
td.untertitel1 {
	font-weight: bold;
	background-color: 50a5ff;
	color: white;
	border: 1px;
	border-color: black;
	border-style: solid;
}

/* -------------------- ALLG ------------------------------- */
.einzug {
	padding-left: 2em;
}

/* -------------------- H1-H5 -------------------------------- */
h1 {
 font-size: 24pt;
 text-align: center;
 color: #FF5F00;
 }

h2 {
 font-size: 16pt;
 text-align: center;
 color: #FF5F00;
}

h3 {
 font-size: 12pt;
 text-align: left;
 color: #FF5F00;
}

h4 {
 font-size: 12pt;
 font-weight: bold;
 text-align: left;
 color: #FF5F00;
}

h5 {
 font-style: italic;
 text-align: left;
 color: #FF5F00;
}

/* -------------------- LINKS ------------------------------- */
a {
 text-decoration: underline;
 color: #000000;
}

a:link {
 color: #000000;
 text-decoration: underline;
}

a:visited {
 color: #000000;
}

a:hover {
 color: #FF5F00;
}