/* CSS Document index */

/* Befehl, dass alle Positionen  auf 0 gesetzt werden */
/* dadurch gibt es keine Verschiebungen bei den Browsern */
/* * steht für alle Elemente */
* {
margin: 0;
padding: 0;
}

/* alle Rahmen im Layout werden vorerst auf 0 gesetzt */
html, body {
border: 0 solid;
}

/* Grunddefinition für Schrift und Farbe */
body {
font: 11px Verdana, Arial, Helvetica, sans-serif;
color: #333;
background: #e9e9e9 url(back.gif) 0 0 repeat-x;
text-align: center; /* der body wird zentriert - zentriertes Design */
}

img {
margin: 0px 10px;
}

p {
font-size: 11px;
line-height: 16px;
}

.fett {
font-size: 12px;
font-weight: bold;
}

.fettkasten {
font-size: 12px;
font-weight: bold;
border: 1px solid #000;
padding: 2px;
margin: 5px;
}

.kastenschwarz {
color: #f60;
background-color: #000;
font-size: 12px;
font-weight: bold;
border: 1px solid #000;
padding: 2px;
margin: 5px;
}

a {
font-size: 11px;
font-weight: bold;
color: #000;
text-decoration: none;
}

a:hover {
color: #f60;
font-weight: bold;
text-decoration: none;
}

a:active; 
a:visited; {
color: #f60;
font-weight: bold;
text-decoration: none;
}

#website {
position: relative;
width: 100%;
margin: 0 auto;
background: transparent;
text-align: center;
}

#logo {
display: block;
width: 100%;
height: 200px;
margin: 40px auto 0px auto;
background: transparent; 
}

#schwarz {
width: 100%;
height: 200px;
margin: 10px auto;
padding: 1px 0px 10px 0px;
background: #000; 
text-align: center;
}

#bereiche {
width: 800px;
height: 185px;
margin: 15px auto;
background: #000; 
text-align: center;
}
