body 	{/*HTML-Selektor*/
		background:#cccccc; /*Hintergrundfarbe*/
		font-family:Verdana; /*Schriftart*/
		color:#000000; /*Schriftfarbe*/
		font-size:12px; /*Schriftgröße*/
	}
h1	{
		font-size:18px;
		color:#ff5200;
	}
.vita {/*CLASS-Selektor*/
		color:#cccccc;
		font-size:14px;
	}
#rahmen	{/*ID-Selektor*/
		background:#ffffff;	
		width:800px; /*Breite*/
		height:400px; /*Höhe*/
		/*Außenabstand, verkürzte Schreibweise*/
		margin:0px auto 0px auto; /*Zentrieren des HTML-Objekts */
		position:relative; /*Beziehung wird zum Elternelement */
		top:50px; /*Position*/
		background-image:url("bilder/hg.png");
		background-position:center;
		background-repeat:no-repeat;
		}
#kopf 	{
		/*background:#ffff00;didaktisch*/
		width:800px;
		height:45px;
		position:absolute; /*Wird zum Kindelement*/
		top:10px; /*Position bezogen auf das Elternelement*/
		text-align:center; /*Text zentrieren*/
		}
#inhalt	{
		/*background:#cccccc;/*didaktisch*/
		width:200px;
		height:100px;
		overflow:auto; /*Textfluss Umbruch*/
		padding:0px 50px 0px 30px; 
		position:absolute; 
 		top:230px;
		}
#fuss	{
		background:#83829f;
		width:800px;
		height:20px;
		padding-top:10px; 
		position:absolute; 
		top:370px;
		text-align:center;
		}
/*+++NEU+++ Pseudoklassen +++NEU*/
a, a:link {/*Verweis allgemein, unbesuchter Verweis*/
			color:#ffffff;
			text-decoration:none; 
			font-weight:bold; 
			text-transform:uppercase;
			}
a:hover, a:visited {/*Verweis beim Überrollen, besuchter Verweis*/
					color:#ff9900;
					}