/*
standard.css

Man kann CSS-Styles in eine Datei auslagern
Diese Styles können somit im gesamten Webauftritt einheitlich verwendet werden
*/
            body{
            
               color:DimGray;
                background-color: #E5E5E5;
                font-family:  Arial,Verdana, Helvetica, sans-serif;
                text-align: center;
                font-size:17px;
            }
            #Ueberschrift{
                    background-color: #0080FF; 
                    color:#FFFFFF;  
                    position:absolute;
                    left: 25%;
                    top:10px;
                    height: 100px;
                    width: 50%;
                    border:1px solid #666;
                    padding:10px; 
                    text-align: center; 
                
            }
            
            #Inhalt{background-color: #ffffff; 
                    position:absolute; 
                    top:133px;
                    width: 50%;
                    left: 25%;
                    border:1px solid #666;
                    padding:10px;
                   }
	   hr {  border: 0px; /* Für Firefox und Opera */
                 border-top: solid 1px #A6A6A6;
                 border-bottom: transparent; 
              }           

           h2 {  /* Formatierung für Überschriften*/
                        text-align: center; 
                        color:SteelBlue;
               }
               
           h3 {/* Formatierung für Überschriften*/
                        text-align: center; 
                        color:SteelBlue;
               }
               
            p { font-size:22px;
                color: Gray; 
		}
                
            ul { font-size:22px;
                color: Gray; 
		}  

            a { /*Formatierung für Links*/
                font-size:23px;
                color: Gray; 
                text-decoration: none; 
               }