/* *********************************************** */
/* allgemeine styles */
body {
	margin: 0;
	padding: 0;
	height: 100%;
	text-align: center;  /* wenn der inhalt zentriert sein soll */
	font: 95% arial, sans-serif; 
	color: white;
	background: #000 url("../../scharri.jpg") no-repeat top center;
}

a:link	{ 
}

a:link	{ 
	color: #8ECDDD;
}

a:visited	{ 
	color: #8ECDDD;
}

a:focus, a:hover, a:active	{ 
	color: #f29400;
	text-decoration: underline;
}

a img	{ 
	border: 0;
	background: none;
}

label	{
	cursor: pointer;
}

fieldset	{
	border: 0;
	padding: 0;
	margin: 0;
}

legend	{
	font: 75%/100% arial, sans-serif;
	color: black;
	margin: 0;
}

table	{
	width: 100%;
	border-spacing: 2px;
	border: 0;
	margin: 0 0 10px 0;
}

tr	{
	background-color: none;
}

td	{
	vertical-align: top;
	padding: 0;
}

th	{
	vertical-align: top;
	padding: 5px;
	font-weight: bold;
	color: black;
}

img	{
	border: 0;
	margin: 0;
}

ol, ul	{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

br	{
	clear: both;
}

/* *********************************************** */
/* rahmenklassen */

#rahmen	{
    position: relative;
	 width: 917px;
	 text-align: left;
	 padding: 0;
	 margin: auto; /* wichtig für zentrierte seiten */
}

.hide	{
	position: absolute;
  	top: -6000px;
  	left: -6000px;
  	height: 1px;
 	width: 1px;
}

.hide	{
	display: none;
}

.abstand5	{
	width: 5px;
	height: 5px;
}

.abstand10	{
	width: 10px;
	height: 10px;
}

.abstand20	{
	width: 20px;
	height: 20px;
}

.ausrichtungLinks	{
	float: left;
	margin: 0 10px 10px 0;
}

.ausrichtungRechts	{
	float: right;
	margin: 0 0 10px 10px;
}

.keineAusrichtung	{
	display: block;
	margin: 0 0 10px 0;
}

.clear	{
	clear: both;
	height: 0;
	width: 1px;
	line-height: 0;
	margin: 0;
	padding: 0;
}

/* *********************************************** */
/* kopf */

#logo {
	position: absolute;
	left: 362px;
	top: 0px;
}

#logo #termin {
	position: absolute;
	left: 88px;
	top: 310px;
	width: 260px;
}

#logo #termin h2 {
    font-size: 1.65em;
    color: #8ECDDD;
    font-weight: normal;
    margin: 0;
}

#logo #termin p {
    line-height: 140%;
}

.subline {
	position: absolute;
    left: 385px;
    top: 20px;
    width: 420px;
    margin: 0;
    font-weight: normal;
    font-size: 1.65em;
    color: #8ECDDD;
}

#text {
	position: absolute;
    left: 40px;
    top: 300px;
    width: 380px;
    line-height: 140%;
}

#text p {
    margin: 0 0 1em 0;
    color: white;
}

#text h2 {
	font-size: 20px;
}

/* *********************************************** */
/* inhalt */

#article	{
	
}

/* *********************************************** */
/* input */

#article input,
#article textarea,
#article select,
#infobox input	{
	border: 1px solid black;
	font: 75%/140% arial, sans-serif; 
	color: black;
	margin: 0;
	float: left;
	padding: 2px;
}

#article input:focus,
#article textarea:focus,
#article select:focus,
#infobox input:focus	{
	color: white;
	background-color: black;
	border: 1px solid black;
}

...