/*alle nicht spezifizierten Elemente****/
* {
    font-size: 12px;                     /*Texthöhe*/
    font-family: Arial, Helvetica, sans-serif;         /*Textfamilie*/
	margin: 0px;                                    /*Außen-Abstand */
	padding: 0px;                                    /*Innen-Abstand*/
   }
/*------------------------------------------------------------------*/
/*Überschrift H1*/
 h1 {
        font-size: 15px;                                 /*Texthöhe*/
        color: #005000;                                  /*Textfarbe-grün*/
     	margin-top: 0px;                          /*Abstant oberhalb*/
	margin-bottom: 10px;                          /*Abstand unterhalb*/
        text-align: left;
 }
/*------------------------------------------------------------------*/
/*Überschrift H2*/
 h2 {
        font-size: 13px;                                 /*Texthöhe*/
        color: #005000;                                  /*Textfarbe-grün*/
       	margin-top: 0px;                          /*Abstant oberhalb*/
	margin-bottom: 3px;                          /*Abstand unterhalb*/
 } 
 
/*------------------------------------------------------------------*/
/*Überschrift H3*/
 h3 {
        font-size: 11px;                                 /*Texthöhe*/
        color: #000000;                         /*Textfarbe schwarz*/
     	margin-top: 0px;                          /*Abstant oberhalb*/
	margin-bottom: 0px;                          /*Abstand unterhalb*/
 } 
 
/*------------------------------------------------------------------*/
/*Überschrift H4*/
 h4 {
        font-size: 14px;                                 /*Texthöhe*/
        color: #800000;                                  /*Textfarbe*/
     	margin-top: 0px;                          /*Abstant oberhalb*/
	margin-bottom: 0px;                          /*Abstand unterhalb*/
 } 
 
/*------------------------------------------------------------------*/
/*Überschrift H5*/
 h5 {
color: #ffffff;                                  /*Textfarbe*/
     	margin-top: 0px;                          /*Abstant oberhalb*/
	margin-bottom: 5px;                          /*Abstand unterhalb*/
        background-color:#5555aa;                    /*Text ist farbig hinterlegt*/
       /*  width:450px;           */                       /*länge des farbigen Breiches*/
    
 } 
 
/*------------------------------------------------------------------*/
/*Überschrift H6*/
 h6 {
        color: #ffffff;                                  /*Textfarbe*/
     	margin-top: 0px;                          /*Abstant oberhalb*/
	margin-bottom: 5px;                          /*Abstand unterhalb*/
        background-color:#5555aa;                    /*Text ist farbig hinterlegt*/
        width:450px;                                 /*länge des farbigen Breiches*/
	


 } 
 
/*------------------------------------------------------------------*/
/*Absatz*/
p {
    color: #000;                                /*Textfarbe*/
     	margin-top: 0px;                          /*Abstant oberhalb*/
	margin-bottom: 3px;                          /*Abstand unterhalb*/
    margin-left: 0px;                          /*Abstand unterhalb*/
    text-align: left;  
}
/*------------------------------------------------------------------*/
/*roter Text*/
.rot {
  color: #ff0000;  
}

/*------------------------------------------------------------------*/
/*grüner Text*/
.grün {
  color: #008000;  
}

/*------------------------------------------------------------------*/
/*tabellenzelle*/
td {      
 vertical-align: top; 
  text-align: left;;
 margin-left: 15px;
}
table {
  margin-bottom: 0px;
}





/*ocker balken*/ 
 
.ockerbar {
 	/*width:157px;*/
	background-color:#ffcc66;
/* 	cursor:pointer; */
 	margin: 0px 0 5px 0px; /*Abstand links, rechts, oben, unten*/
/* 	padding:5px;    */      
 }
  
/*------------------------------------------------------------------*/ 
/*Link*/ 
a        {
	color: #4b6294;          /*Textfarbr*/
    /*font-size: 12px;  */   /*Textgröße*/
 	text-decoration: none    /*Unterstrichen: nein*/
         }
a:active { color: black }
a:hover  { color: black }
/*------------------------------------------------------------------*/ 
/*velinktes Bild*/
a img {                     
border : 0 none;    /*kein Rahmen*/
}

/*------------------------------------------------------------------*/ 
/* Fix for MS Office Listenpunkt */
ul {
	margin-top: 0;      /*Abstand vor*/
	margin-bottom: 0;   /*Abstand nach*/
}
/*------------------------------------------------------------------*/ 
/* Akkordeon  bitte nicht benutzen
.bar {
	width:440px;
	background-color:#DDDDDD;
	cursor:pointer;
	margin:10px 0 5px 10px;
	padding:5px;
}
.current {
	color:#CC0000;
}
.content {
	width:810px;
	padding:1px;
}
*/





























































