html{
	height: 100%;
}

body{
	background:grey;
	margin: 0;
	padding: 0;
	height: 100%;
}

h1   { 
	color:#FFBF00;
    background-color:black; 
    /*font-family:'Comic Sans', cursive;*/
    font-style: normal;
    margin: 20px;
}

h2   { 
	color:rgb(128,128,64);  
	background-color:black; 
}

h3    { 
	color:lightgrey;             
	background-color:black;
	font-size: 30px;  
}
h4    { 
	color:lightgrey;             
	background-color:black;  
	font-size: 25px;
}

p    { 
	color:lightgrey;             
	background-color:black;  
}

.ie_msg{
	background-color: black;
	color: red;
	padding: 20px;
	padding-left: 40px;
	padding-right: 40px;
}

/*Definition des Aussehens der Navigation*/
nav{
	background:black;
	
}
#nav ul {
    list-style-type: none;
    text-decoration: none;
    margin: 0;
    padding: 30px;
    color:white;   
    font-family:"Arial";
    font-size: 20px;
}     

#nav a:link { 
	color:white;
	text-decoration: none;
	margin: 20px;
 }
#nav a:visited { 
	color:white;
	text-decoration: none;
	margin: 20px;
 }
#nav a:active { 
	color:white;
	text-decoration: none;
	margin: 20px;
 }
#nav li{
	display: inline;
}


#nav ul,nav ul li{
    background-color: black;
}
#nav ul li {
    list-style: none;
    float:left;
}
#nav ul li a {
    text-decoration: none;
    display: block;
    
}

#nav ul li ul{
    display: inline;
    visibility: hidden;
    position: absolute;
    padding:0px;
}
#nav ul li ul li{
    float: none;
}
#nav ul li:hover ul{
	visibility: visible;
	background-color:grey;
}

a {
	color: yellow;
}

/*Hier wird der Inhaltsbereich(schwarzer Bereich) der Webseite definiert*/ 
div#Inhalt {
	margin: 0 auto;
	width: 85%;
	background: black;
	min-height: 100%; /* Mindesthöhe auf 100 % (bei modernen Browsern) */
	height: auto !important; /* important Behel (bei modernen Browsern */
	height: 100%; /* IE soll wie gewünscht interpretieren */
	overflow: hidden !important; /* Firefox Scrollleiste */
	font-family:"Arial";
}

div#text{
	margin: 0px 0px 0px 50px;
}

#text p{
	color: lightgrey;
	line-height: 150%;
	font-size: 19px;
	font-style: normal;
	font-family:"Arial";
	
}



/* Hier wird das Ausshen der Bildunterschriften definiert*/
figure {
}

figure figcaption {
  color: white;
  font-style: italic;
  margin: 20px;
}


table tr th{
   color:lightgrey; 	
   font-size:20px;
}
table tr td{
   color:lightgrey; 	
   font-size:12px;
   font-family:Verdana, Arial, Helvetica, sans-serif;
  }