﻿/* Stand 2018 */

/* Allgemein -------------------------------------------------------------------------------- */

/*
Struktur:
| id_container  - fenster zentriert, für das layoutbild
|| id_text  - für den seitentext ||
|| id_fuss  - für die fusszeile ||
|
*/

/* 	Standard / Background  ------------------------------------------------------------------ */
/* 	----------------------------------------------------------------------------------------- */

* {
	padding: 0;
	margin: 0;
}

html {
	background: #fff url("") repeat-x left;
}

body {
	background: #fff url("") repeat-x left;
	font-family: Verdana, Arial, Helvetica, Sans-Serif;
	font-size: 99%;
	color: #000;
	text-align: center; /* Zentrieren für den IE 5 und 5.5 */
}
	
#container				/* Hintergrundmotiv und Layoutcontainer */
{
	background: #fff url("") no-repeat;
	width:900px;
	height:550px;
	margin: 0px auto;
	padding: 0px;
	text-align: left; /* Zentrieren für den IE 5 und 5.5 wieder aufheben, wegen nicht weitervererben  */
}

#text					/* Textfenster */
{
	padding-top: 100px;	
	padding-left: 50px;
	padding-right: 50px;
	
	color: #808080;	
	font-size: 100%;
	text-align: center;
	line-height: 120%;	
}

#fuss					/* Fusszeile */
{
	clear: both;		
	padding: 5px;
	padding-top: 50px;		
	padding-right: 0px;
	text-align: right;
	
	color: #808080;	
	font-size: 75%;
	text-align: center;
	line-height: 120%;
}

/* Text/Ueberschriften ----------------------------------------------------------------------- */
/* 	----------------------------------------------------------------------------------------- */

h1 {
	color: #808080;
	font-size: 200%;
	font-weight: bold;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 20px;	
}

/* Farbe der Hyperlinks---------------------------------------------------------------------- */
/* 	----------------------------------------------------------------------------------------- */

a.text:link        { color: #808080; font-weight: normal; text-decoration: none; border-bottom: 1px dotted; }
a.text:visited   { color: #808080; font-weight: normal; text-decoration: none; border-bottom: 1px dotted; } 
a.text:hover    { color: #000; font-weight: normal; text-decoration: underline; border-bottom: 0px; }
a.text:active    { color: #000; font-weight: normal;  text-decoration: underline; border-bottom: 0px; }