﻿/*Universal-Selektor*/
*{
	font-family:"Lucida Sans",  Verdana, sans-serif;
}
/*Seiten-Hintergrund*/
body{
	background-color: #FFFFCC;
} 
/*==========================================*/
/*Überschriften*/
h1{
	font-size: 12pt;
	border-bottom-width: 1px; border-bottom-style: solid; border-left-width: 13px;
	border-color: blue; border-left-style: solid; 
	padding-left: 3px; color: blue;
} 
	h1.gerahmt
	{
		border: 2px solid #aaaaaa;
	}
h2{
	font-size : 10pt; 
	border-bottom-width: 1px; border-bottom-style: solid;border-left-width: 13px;
	border-color: blue;border-left-style : solid; 
	padding-left: 3px;color : blue;
} 

/*Nun kommen Klassen für normale Absätze*/
p{
	font-size: 10pt; 
 	margin-left: 5px; 
 	color: black;
 }

/*Diese Klassen können in allen Tags genutzt werden*/	
.anmerkung{
	font-size: 8pt;
	}
.anmerkungklein{
	font-size: 6pt;
	}
/*==============================================================*/
/*  Link-Stile: (unbedingt in dieser Reihenfolge deklarieren!)  */
a{
	font-family:"Comic Sans MS"
}
	a:link{color: maroon}
	a:visited{color: fuchsia}
	a:hover{color: blue}
	a:active{color: green}

/*Links als Schalt-Button darstellen*/
a.button {
  background-color: #008080;
  color: white;
  font-family: verdena, arial, helvetica, sans-serif;
  font-size: 12px; font-weight: normal; 
  text-align: center;
  text-decoration:none;  
  border-width: thin; border-style: solid;
  width: 144px;  
  padding: 4px 8px 4px 8px;  
  margin-left:5px;

}
.button:link {
  background-color: #666666;
  border-width: thin;
  border-style: solid;
  border-color: #808080 #2A0000 #2A0000 #808080;
  }
.button:visited {
  background-color:#666666;
  border-width: thin;
  border-style: solid;
  border-color: #808080 #2A0000 #2A0000 #808080;
  }
.button:hover {
  color: black;
  background-color: #CCCCCC;
  border-width: thin;
  border-style: solid;
  border-color:  #2A0000 #808080 #808080 #2A0000 ;
  }
 
  	}
 /*Links ohne Button normal darstellen*/
    a.normallink { }
    a.normallink:link { 
      	color: #ffffff;
    }
    a.normallink:visited {
      	color: #ffffff;
    }
    a.normallink:hover {  
      	color: #FFFF00;
	}