/* Auf jeder HTML-Seite sollte das hier oben stehen!!! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> */

/* Allgemeines: Seitenabstände und Zeichensatz */
* {
	margin:0px;
	padding:0px;
	font-family:Trebuchet MS, Arial, Helvetica;
	font-size:12px;
	line-height:14px;
	color:#130087;
}

/* Hintergrunddefinition & vertikaler Scrollbalken */
body {
	background-color:#ffffff; /* Hintergrundfarbe */
	overflow:-moz-scrollbars-vertical; /* vertikaler Scrollbalken ist immer zu sehen */
	height:100%;
}

a, a:link, a.visited, a:hover {
	color:#000000;
	text-decoration:underline;
}

a:hover {
	text-decoration:none;
	color:#929292;
}

#kontent {
	position:absolute;
	left:50%;
	margin-left:-375px; /* der halbe negative Wert der Containerbreite */
	top:50%;
	margin-top:-150px; /* der halbe negative Wert der Containerhoehe */
	width:750px;
}
