/* Grundlegende Stile für die gesamte Seite */
body {
	color: #000000;
	font-family: Arial, sans-serif;
	background-color: #2311D0;
	display: flex;
	justify-self: center;
}

/* Gestaltung der Absätze */
p {
	font-size: 16px;
}

/* Gestaltung der Hauptüberschrift */
h1 {
	font-size: 32px;
	font-weight: bold;
	text-decoration: underline;
}

/* Gestaltung der Kapitelüberschrift 1. Gliederungsebene */
h2 {
	font-size: 22px;
	font-weight: bold;
	text-decoration: underline;
}

/* Gestaltung der Kapitelüberschrift 2. Gliederungsebene */
h3 {
	font-size: 18px;
	font-weight: bold;
}

/* Gestaltung der Hyperlinks */
a {
	color: black;
	text-decoration-color: black;
}

/* Gestaltung der Bildbeschriftung */
small {
	color: black;
	font-size: 13px;
}

/* Gestaltung der Haupt-Tabelle */
.MainTable {
	padding: 0px;
	border-spacing: 0px;
	width: 1000px;
}

/* Gestaltung der Titelleiste */
.TitleLine {
	color: #FFFF00;
	font-size: 18px;
	padding-top: 0px;
	padding-bottom: 0px;
	border-spacing: 0px;
	text-align: center;
}

/* Gestaltung der Titelleiste - kleine Schrift*/
.TitleLine_SmallFont {
	color: #FFFF00;
	font-size: 11px;
	text-align: center;
}

/* Gestaltung der Navigationsleiste */
.NavigationLine {
	color: #FFFF00;
	font-size: 13px;
	padding-top: 2px;
	padding-bottom: 2px;
	border-spacing: 0px;
}

/* Gestaltung der Orientierungsleiste */
.OrientationLine {
	color: #C0C0C0;
	background-color: #808080;
	font-size: 13px;
	padding-top: 2px;
	padding-bottom: 2px;
	border-spacing: 0px;
}

/* Gestaltung der Copyrightleiste */
.CopyrightLine {
	color: #C0C0C0;
	font-size: 10px;
	text-align: center;
}