/*
 * Design: FH Wedel
 * Designversion:
 * Designdatum:
 *
 * basiert auf:
 *   Yet Another Multicolum Layout (YAML)
 *   (c) by Dirk Jesse
 *   http://www.highresolution.info/webdesign/yaml
 */

/*
 * Datei: standard_layout_print.css
 * Dateiversion:
 * Dateidatum:
 * Funktion: grundlegendes Print-Layout
 *   - Formatierung der gemsamten Seite
 *   - Formatierung des Kopfbereiches
 *   - Formatierung der Inhaltspalten
 *   - Formatierung des Fussbereiches
 */

@media all /* nicht print, damit es auch als alternatives Screen-Layout funktioniert */
{
  /*
   ***********************************
   * Formatierung der gesamten Seite *
   ***********************************
   */

  body {
    background: #fff;
    margin: 0;
    padding: 0;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 90%;
  }

  #page_margins, #page {
    margin: 0;
    padding: 0;
    border: 0;
  }


  /*
   **********************************
   * Formatierung des Kopfbereiches *
   **********************************
   */

  #header {
    color: #fff;
    background: #1E3270;
  }

  #logo {
    color: black;
    background-color: white;
    height: 90px;
    width: 5%;
    text-align: center;
    overflow: hidden;
    float: right;
  }

  #breadcrumb {
    height: 90px;
    overflow: hidden;
  }

  #breadcrumb_content {
    padding: 0.5em 1em;
  }

  #breadcrumb_content a {
    color: #ffffff;
    text-decoration: none;
  }


  /*
   ***********************************
   * Formatierung der Inhaltsspalten *
   ***********************************
   */

  /* Inhaltsbereich (alle 3 Spalten) */
  #main {
    font-size: 90%;
  }

  #page {
    /* Hintergrund der rechten Spalte */
    background: url("/~si/icons/blaue_linie_x_95perc.gif") repeat-y 95% 0%;
  }

  /* Innenabstaende der Spalten */
  #col2_content {
    padding: 1.5em 1em;
  }


  /*
   **********************************
   * Formatierung des Fussbereiches *
   **********************************
   */

  #footer {
    display: none;
  }


  /*
   *******************************
   * Geaenderte Spaltenanordnung *
   *******************************
   */

  /* #col1 und #col3 werden nicht dargestellt */
  #col1, #col1_content, #col3, #col3_content {
    display:none;
  }

  /* #col2 ist linke Spalte */
  #col2 {
    float:none;
    width: 95%;
    margin: 0;
    padding: 0;
  }


  /*
   *******************************
   * Hilfselemente *
   *******************************
   */
  .invisible, #Navigationshilfe, .Abschnittstrenner {
    display: none;
  }
}
