/* Standart-CSS fUer Webdesign */


/* saemtliche Abstaede auf NULL stellen */
* {
	margin: 0;
	padding: 0;
}

/* Grundeinstellungen fuer den Body */
html, body {
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size: 11px;
 }

p {
	margin-bottom: 10px; /*Abstand zwischen den Abschnitten*/
}

ul, ol {
	padding-left: 25px;
}

/* Standarttabelle ohne Rahmen */
table {
	empty-cells:show;
	border-collapse: collapse;
	border: 0px;
	font: normal 12px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

td {
	padding: 5px;
	border: 0px;
}


/*************/
/* Sektionen */
/*************/
#right {
text-align:right
}

/* Titelleiste */
#kopf {
  background: url(x4816/bg-blau.gif) 100% 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 66px;
  font-size: 0.9em;
  padding: 5px;
  color: #fff;
}

div#kopf h1 {
  font-size : 1.6em;
}

div#kopf a {	/* normale, nicht angewaehlte Links */
  color: #FFFFFF;	
  background: transparent;
  margin-right: 1em;
  padding: 0em 2em;
  text-transform: none;
  text-decoration: none;
  border-top: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #888;
}

div#kopf a:hover {
  color: #000000;
  background: #fff;
  border-top: 1px solid #888;
  border-left: 1px solid #888;
  border-right: 1px solid #e1e1e1;
}


/* Hauptbereich */
#inhalt_mitte {
  height:auto;
  width: 80%;
  position: absolute;
  top: 90px;
  left: 220px;
  padding: 10px 15px 10px 15px;
  margin-bottom: 145px;
  font-size: 1.2em;
  ine-height : 1.6em;
  border-top: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  border-bottom: 1px solid #888;
  border-right: 1px solid #888; 
}

div#inhalt_mitte h1
{
  font-size : 1.5em;
  font-weight: bold;
  letter-spacing:3px;
  color:#005EBF;  
  line-height: 1;
}
	
div#inhalt_mitte h2 {
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #005EBF;  
  margin-bottom: 7px;
}

div#inhalt_mitte h3 {
  font-size: 1em;
  color: #005EBF;  
  margin-bottom: 7px;
}

div#inhalt_mitte a:link, div#nav a:link { 
  color:#66A0BB;
  text-decoration: none;
}
	
div#inhalt_mitte a:visited, div#nav a:visited{ 
  color: #66A0BB;
  text-decoration: none;
}

div#inhalt_mitte a:active, div#nav a:active{ 
  color: #66A0BB;
  text-decoration: underline;
}
	
div#inhalt_mitte a:hover, div#nav a:hover{ 
  color:#66A0BB;
  text-decoration: underline;
}

/* Formularfelder */
div#inhalt_mitte input {
  font: normal 16px Comic Sans MS,Arial,Helfetica,sans-serif;
  color: black;
  border: 1px solid blue;
  background-color: #CCC;
}

div#inhalt_mitte input:focus {
  background-color: #99CCCC;
  color: red;
} 

/*Buttons*/
div#inhalt_mitte a.button1 {	
  color: #fff;	
  background-color: #009595;
  margin-right: 1em;
  padding: 0em 2em;
  text-transform: none;
  text-decoration: none;
  border-top: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #888;
}

div#inhalt_mitte a.button1:hover {
 color: #009595;
 background: #fff;
 border-top: 1px solid #888;
 border-left: 1px solid #888;
 border-right: 1px solid #e1e1e1;
}



/* Navigation */
#inhalt_links {
height: auto;
width: 200px; 
position: absolute;
top: 90px;
left: 5px;
padding: 2px 0px 2px 2px;
background: #f3f3f3;
padding: 2px 8px 7px 0px;
}

/* First Level Navigation */
a.fstLevel {
  text-decoration: none;
  display: block;
  padding: 4px;
  margin: 0px;
  text-align: left;
  font-size: 14px;
  color: #000;
  border-left: 7px solid #005EBF;       
}

a:hover.fstLevel  {
  color: #000;
  background: #fff;
  border-left: 7px solid #66A0BB;
}

a.fstLevelActive {
  text-decoration: none;
  display: block;
  padding: 4px;
  margin: 0px;
  text-align: left;
  font-size: 14px;
  color: #000;
  border-left: 7px solid #66A0BB;
}

/* Second Level Navigation */
a.secLevel {
  text-decoration: none;
  display: block;
  padding: 3px;
  margin-left: 7px;
  font-size: 12px;
  color: #000;
  border-left: 7px solid #005EBF;
}

a:hover.secLevel {
  color:#000;
  background: #fff;
  border-left: 7px solid #66A0BB;
}

a.secLevelActive {
  text-decoration: none;
  display: block;
  padding: 3px;
  margin-left: 7px;
  font-size: 12px;
  color:#000;
  border-left: 7px solid #66A0BB;
}






