/* CSS Design */

/* Globale Einstellungen */
* {
	border: 0;
	font-family: "vt220";
	font-size: 15pt;
	margin: 0;
	padding: 0;
}

/* VT220 Schriftart - IE */
@font-face {
	font-family:"vt220";
	src: url(/fonts/vt220.eot);
}

/* VT220 Schriftart - Non-IE */
@font-face {
	font-family:"vt220";
	src: url(/fonts/vt220.ttf) format("truetype");
}

/* Grundeinstellungen */
body {
	background-color: #000000;
	color: #FF9933;
	min-width: 850px;
}

/* Links */
a:active, a:focus, a:link, a:visited {
	background-color: #151515;
	color: #FF9933;
	text-decoration: none;
}

/* Links */
a:hover {
	background-color: #FF9933;
	color: #151515;
	text-decoration: underline;
}

/* Website zentrieren */
div#container {
	margin: 1% auto;
	width: 85%;
}

/* Header */
div#header {
	background-color: #151515;
	border-style: dotted;
	border-width: 1px;
	margin-bottom: 50px;
	padding: 10px;
}

/* ASCII-Text anzeigen */
div#header pre {
	white-space: pre;
}

/* ASCII-Text zentrieren */
div#headertext {
	margin: 10px auto;
	width: 658px;
}

/* Menü */
div#menu {
	background-color: #151515;
	border-style: dotted;
	border-width: 1px;
	float: left;
	margin-left: 50px;
	padding: 10px;
	width: 200px;
}

/* Menü */
div#menu h1 {
	text-decoration: underline;
}

/* Menü */
div#menu li {
	list-style-type: none;
}

/* Menü */
div#menu li li {
	padding-left: 10px;
}

/* Inhalt */
div#content {
	background-color: #151515;
	border-style: dotted;
	border-width: 1px;
	margin-left: 300px;
	margin-right: 50px;
	min-height: 300px;
	padding: 10px;
}

/* Überschriften */
div#content h1 {
	text-align: center;
}

/* Überschriften */
div#content h2 {
	text-decoration: underline;
}

/* Überschriften */
div#content hr {
	background-color: #FF9933;
	height: 1px;
	margin-top: 10px;
}

/* Footer */
div#footer {
	background-color: #151515;
	border-style: dotted;
	border-width: 1px;
	clear: both;
	margin-top: 50px;
	padding: 10px;
}

/* Klassen */
.active {
	font-weight: bold;
}

/* Klassen */
.center {
	text-align: center;
}

/* Klassen */
.floatfix {
	clear: both;
}

/* Klassen */
.left {
	float: left;
}

/* Klassen */
.justify {
	text-align: justify;
}

/* Klassen */
.right {
	float: right;
	text-align: right;
}
