/* generelles Seitenlayout */
body {
  margin:0;     			 /*setzt Außenrahmen auf 0 */
  padding:0;   				 /*setzt Innenabstände auf 0 */
  color: #000; 				/* Schriftfarbe */
  background-color: #000; 													 /*Hintergrundfarbe  */
  background-image: url(images/hintergrundhimmel.jpg);    /* setzt hintergrundbild */
  background-repeat:repeat-y;  						 /* wiederholt Hintergrundbild in y-Richtung */
  background-attachment:fixed;  					 /* fixiert Hintergrundbild */
  font-family:Times New Roman,Times,serif;     /* setzt Schrift-Font  */
  font-size:16px;   											/* setzt Schriftgröße  */
}

/* Gestaltung der Elemente */
td, p, span {
  font-family:Times New Roman,Times,serif;
  font-size:16px;
  }
 p {padding-top:7px;}
  
  /* Aussehen der Navigationslinks - Klasse "navi" */
  /* Link generell */
a.navi { 
	font-family:Times New Roman,Times,serif; 
	font-weight: bold; 											/* Schriftgewicht */
	line-height:30px; 											/* Zeilenhöhe */
	margin-top: 0px;
	margin-left:15px;											/* Außenabstand nach links  */
	
	}
/*Definition der einzelnen Zustände der Navi-links */
a.navi:link {  
	font-size:18px; 
	color:#fff; 
	text-decoration:none; 			
	}	 
a.navi:visited { 
	font-size:18px; 
	color:#fff; 
	text-decoration:none; 
	}	 
a.navi:active { 
	font-size:18px; 
	color:#ff0000; 
	text-decoration:none; 
	}	 
a.navi:hover { 
	font-size:18px; 
	color:#ff0000; 
	text-decoration:underline; 
	}

/* diese Klasse bekommt der aktive Link */
.active { 
	font-size:18px; 
	color:#000; 
	text-decoration:none; 
	font-weight: bold;
	line-height:30px; 
	margin-left:15px; 
	}		

/* die Klasse für kleiner gewünschte Textpassagen */
.smal { 
	font-family:Times New Roman,Times,serif; 
	font-size:14px;
	}
/*  generelles Layout  für die Bilder */
img {
	border:0;
	margin:0;
	padding:0;
	}
	
/* Aussehen der Textlinks */
a  {  
	font-size:16px; 
	color:#000; 
	text-decoration:underline; 			
	}	

/*Überschrift */
h3 {  
	font-size:18px; 
	color:#000;
	margin-top:3px;
 }
 
 /* Aussehen der Liste */
.list {  
	padding-bottom: 3px;   /*Abstand zum nächsten Listenpunkt */
	}