/* Dokumentlayout */
body {
	background-color:black; 
	margin:0px 0px 0px 0px; 
	font-family:arial,verdana,helvetica,sans-serif; 
}

/* Überschriften (Textform einschließen in Bsp. <h2>Text und Wort</h2>) */
h1, h2, h3 { 
	font-weight:bold; 
	color:white; 
}

/* Standartfließtext zwischen <p> & </p> */
p, div { 
	font-size:11pt; 
	color:white;
}

/* Links (Werden automatisch vom CSS erkannt und umgewandelt) */
a:link { 
	color:#E54C4C; 
	text-decoration:none;
}
a:visited {
	color:#CC0000; 
	text-decoration:none;
}
a:hover {
	color:#E54C4C;
	text-decoration:underline;
}
a:active { 
	color:white;
	text-decoration:underline;
}

/* Besondere Markierung für Eingabefelder */
input:focus { 
	background-color:grey; 
	color:black; 
}


/* special-font fuer Domainumzug */
.umzug { 
	margin:0px 0px 0px 90px; 
	font-weight:bold; 
	color:white; 
} 

/* Text-Specials (Textform einschließen in Bsp. <span class="blau">Text und Wort in blau</span>) */
.norm { 
	color:white; 
}
.kursiv { 
	font-style:italic; 
}
.smal { 
	font-size:9pt; 
}
.fat { 
	font-weight:bold; 
}
.normspace { 
	font-size:11pt; 
	letter-spacing:2px; 
}
.smalspace { 
	font-size:8pt; 
	letter-spacing:3px; 
	color:white; 
}
/* Farben */
.blau { 
	color:blue; 
}
.gelb { 
	color:yellow; 
}
.rot { 
	color:red; 
}
.linkrot { 
	color:#E54C4C; 
}
/* Besondere Formatierung für versteckten Text auf der Indexseite */ 
.smalspace_index { 
	font-size:1pt; 
	visibility:hidden; 
}

