@charset "utf-8";
/**
 * @site          betze-stuermer-steinweiler.de
 * @media         screen
 * @section       Browser-Reset
 * @author        Thorsten Walk | Mediendesign <thorsten@walk-steinweiler.de>
 * @lastmodified  $LastChangedDate: 2009-11-19 18:35:25 +0100 (Do, 19 Nov 2009) $
 * @note          Als Vorlage dienten die Bücher Little Boxes 1 & 2 von Peter Müller
 * @see           http://little-boxes.de/
 */

@media all {

/**
 * Alle Abstaende auf 0 setzen
 */

  * {
    padding: 0;
    margin: 0;
  }

/**
 * Body-Formatierung
 */

  body {
    background-color: white;
    color: black;
    font: 100.01%/1.5 Verdana, Arial, Helvetica, sans-serif;
  }

/**
 * Serifenschrift fuer Ueberschriften, inkl. h1 (alt-Text)
 */

  h1, h2, h3, h4, h5, h6 {
     font-family: Georgia, "Times New Roman", serif;
     font-weight: bold;
  }

  h1 { font-size: 2.0000em; } /* 24px */
  h2 { font-size: 1.8333em; } /* 22px */
  h3 { font-size: 1.3333em; } /* 16px */
  h4 { font-size: 1.1667em; } /* 14px */
  h5 { font-size: 1.0000em; } /* 12px */
  h6 { font-size: 1.0000em; } /* 12px */

/**
 * margin-bottom fuer Ueberschriften, Absaetze, Listen etc.
 */

  h1, h2, h3, h4, h5, h6,
  p, blockquote, address, pre,
  ul, ol, dl, table {
     margin-bottom: 0.6250em;
  }

/**
 * Absätze
 */

  p {
    margin-bottom: 0.6250em;
  }

/**
 * Zitate
 */

  blockquote {
    margin: 1em 2em;
  }

/**
 * Alle Listen etwas einruecken
 */

  ul, ol, dl {
    margin-left: 1em;
  }

/**
 * Listenelemente etwas mehr einruecken
 */

  li {
    margin-left: 1em;
  }

/**
 * Definitionen in Definitionslisten noch mehr einruecken
 */

  dd {
    margin-left: 2em;
  }

/**
 * Verschachtelte Listen ohne Aussenabstand oben/unten
 */

  ul ul, ul ol, ul dl,
  ol ul, ol ol, ol dl,
  dl ul, dl ol, dl dl {
     margin-top: 0;
     margin-bottom: 0;
  }

/**
 * Listen
 *
 * Ebene 1 - ul: square (ausgefuelltes Rechteck); ol: Dezimalzahlen
 */

  ul { list-style-type: square; }
  ol { list-style-type: decimal; }

/**
 * Ebene 2 - ul: disc (ausgefuellter Kreis); ol: kleine Buchstaben
 */

  ul ul { list-style-type: disc; }
  ol ol { list-style-type: lower-alpha; }
  ul ol { list-style-type: decimal; }
  ol ul { list-style-type: square; }

/**
 * Ebene 3 - ul und ol mit circle (nicht ausgefuellter Kreis)
 */

  ol ol ol, ol ol ul, ol ul ul, ol ul ol,
  ul ul ul, ul ul ol, ul ol ol, ul ol ul {
     list-style-type: circle;
  }

/**
 * Auswahl in Auswahllisten (select) durch padding:0 schlecht lesbar
 */

  option {
    padding-left: 0.2em;
    padding-right: 0.3em;
  }

/**
 * Rahmen um fieldset und verlinkte Bilder entfernen
 */

  fieldset, a img {
    border: none;
  }

/**
 * Bildlaufleiste im Firefox immer zeigen
 */

  html {
    height: 100.01%;
    padding: 0 0 1px 0;
  }

} /* Ende @media */