﻿@charset "utf-8";

/**
----------------------------------------------------------
Regeln für allgemeine Elemente
---------------------------------------------------------- */

/* Alle kritischen Werte instanziieren */
* {
  margin: 0;
  padding: 0;
  vertical-align: top;
  border-spacing: 0;
}

/* FARBE und HINTERGRUND setzen */
body {
  color: #cb351b;
  background: #5d5d5d;
}

/* SCHRIFTGRÖßE */
body, td, th {
  font: normal 70% "Ludica Grande", Verdana, Arial, sans-serif;
}
td, th {
  f/ont-size: 100%;
}

/* LINKS und ANKER */
a:link {
  color: #5d5d5d;
  background-color: transparent;
}
a:visited {
  color: #5D5D5D;
  background-color: transparent;
}
a:hover,
a:focus {
  color: #5D5D5D;
  background-color: #ffffff;
}
a:active {
  color: #5d5d5d;
  background-color: #cccccc;
}
a:link img, a:visited img,
a:hover img, a:focus img, a:active img {
  border: 0;
}

/* ÜBERSCHRIFTEN */
h1, h2, h3, h4, h5, h6 {
  color: #cb351b;
  background-color: transparent;
}
h1 {
  font-size: 1.6em;
  margin: 0 0 0.8em 0;
}

h2 {
  font-size: 1.2em;
  margin: 0 0 1.5em 0;
}

/* Absätze */
  p {
  margin: 1.0em 0;
}

/* Bilder */
img {
  vertical-align: bottom;
}

/* Listen */
dt {
  font-weight: bold;
}
dd {
  margin: .5em 0 1em 3em;
}



/**
----------------------------------------------------------
Regeln für besondere Bereiche
---------------------------------------------------------- */

/* Standardmäßig nicht sichtbare Inhalte zur Erleichterung der
   Orientierung mit assistiven Technologien */
.invisible {
  position: absolute;
  left: -9999px;
}


/** Hauptbereich
---------------------------------------------------------- */
/** Hauptbereich horizontal zentrieren
---------------------------------------------------------- */
div#top {
  color: #5D5D5D;
  background: #ffffff url(images/bg_top.gif) top left repeat-y;
  border: 5px solid #ffffff;
  border-top: 0;
  width: 920px;
  margin: auto; /* Reicht eigentlich */
}
/* Für kaputte Browser */
body {
  /* Alle Inhalte horizontal zentrieren */
  text-align: center;
}
body * {
  /* Textausrichtung korrigieren */
  text-align: left;
}


/** globale Navigation
---------------------------------------------------------- */
#head ul {
  font-size: .9em;
  margin: .8em 0;
}
#head ul,
#head li {
  float: left;
  list-style: none;
}
#head ul a,
#head ul strong {
  color: #5D5D5D;
  background-color: white;
  text-decoration: none;
  padding: .2em 1em;
}
#head ul a:hover,
#head ul a:focus {
  text-decoration: underline;
}

#head li.skiplink {
  padding: 0;
}
#head li.skiplink a {
  color: #aaaa9c;
  background-color: #cb351b;
}
#head li.skiplink a:focus {
  color: black;
  background-color: white;
}


/** Logo
---------------------------------------------------------- */
h1#logo {
  color: #5D5D5D;
  background: #cb351b url(images/bg_logo.gif)left bottom no-repeat;
  text-align: left;
  margin: 0;
}


/** Seitenspalte
---------------------------------------------------------- */
#sidebar {
  float: right;
  width: 290px;
  margin: 0 0 50px 0;
  background: url(images/bg_sidebar.gif) top left no-repeat;
}

/** Navigation
---------------------------------------------------------- */
ul#nav {
  margin: 25px 0 0 0;
  list-style: none;
}
#nav a,
#nav strong {
  color: white;
  background-color: #5D5D5D;
  display: block;
  padding: 5px 10px 7px 10px;
  text-align: center;
  border-top: 5px solid white;
  border-right: 5px solid white;
  border-bottom: 5px solid white;
  line-height: normal; 
  text-decoration:none;
  /* Breitenangabe notwendig, um den IE-Leerraum-Bug
     bei Listen zu umgehen */
  width: 160px;
  wid\th: 160px;
}
#nav a:hover,
#nav a:focus,
#nav a:active,
#nav strong {
  color: #ffffff;
  background-color: #cb351b;
  text-decoration:none;
}


/** Kontaktfeld
---------------------------------------------------------- */
div#contact {
  color: #5D5D5D;
  background-color: white;
  padding: 10px;
}
#contact h2 {
  color: #5D5D5D;
  background-color: white;
  font-size: 1.3em;
  text-align: right;
  text-transform: uppercase;
}
#contact p.tel {
  font-size: 2em;
  font-weight: bold;
  text-align: right;
  margin: 0;
}
#contact p.address {
  text-align: right;
  margin: 0;
}




/** Inhaltsbereich
---------------------------------------------------------- */
div#main {
  background: url(images/eckbild.jpg) left bottom no-repeat;
}


/** Content
---------------------------------------------------------- */
div#content {
  margin: 0 300px 0 250px;
  padding: 40px 60px 40px 60px;
  /* Behebt den 3-Pixel-Textsprung-Bug und andere Bugs im IE 6 */
  height: 1%;  
}



