@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Screen layout for YAML examples
 * (de) Bildschirmlayout für YAML-Beispiele
 *
 * @copyright       Copyright 2005-2008, Dirk Jesse
 * @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
 *                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
 * @link            http://www.yaml.de
 * @package         yaml
 * @version         3.0.6
 * @revision        $Revision: 202 $
 * @lastmodified    $Date: 2008-06-07 14:29:18 +0200 (Sa, 07 Jun 2008) $
 */

@media screen, projection
{
  /*------------------------------------------------------------------------------------------------------*/

  /**
   * (en) Formatting YAML's  basic layout elements
   * (de) Gestaltung des YAML Basis-Layouts
   */

  /* (en) Marginal areas & page background */
  /* (de) Randbereiche & Seitenhintergrund */
  body { background: #005588; padding: 10px 0; }

  /* (en) Centering layout in old IE-versions */
  /* (de) Zentrierung des Layouts in alten IE-versionen */
  body { text-align: center; }
  #page_margins { text-align:left; margin: 0 auto; }

  /* (en) Layout: width, background, borders */
  /* (de) Layout: Breite, Hintergrund, Rahmen */
  #page_margins { min-width: 740px; max-width: 80em; background: #fff; }
  #page {
    padding: 10px;
  }

  /* (en) Designing main layout elements */
  /* (de) Gestaltung der Hauptelemente des Layouts */
  #header {
    position: relative;
    color: #000;
    background: #fff repeat-x top left;
    background-image: url(../../images/vds-logo.gif);
    background-position: top right;
    background-repeat: no-repeat;
  }

  #topnav {
     /*position: static;*/
     margin-top: 0px;
     margin-bottom: 0px;
     color: #aaa;
     background: transparent;
  }

  /* (en) adjustment of main navigation */
  /* (de) Anpassung der Hauptnavigation */
  #nav ul { margin-left: 20px; }
  #nav_main {
    background-color: #336;
    }

  #main { background: #fff; padding: 10px 0; }

  #footer { 
    color:#666; 
    background: #f9f9f9;
    padding: 10px 20px;
    border-top: 5px #efefef solid;
  }

  /*------------------------------------------------------------------------------------------------------*/

  /**
   * (en) Formatting content container
   * (de) Formatierung der Inhalts-Container
   *
   * |-------------------------------|
   * | #header                       |
   * |-------------------------------|
   * | #col1   | #col3     | #col2   |
   * | 25%     | flexible  | 25%     |
   * |-------------------------------|
   * | #footer                       |
   * |-------------------------------|
   */


  #col1 {
    width: 25%;
    background: #ffffff;
  }
  #col1_content { padding: 10px 10px 10px 20px; }

  #col2 { width: 25%; }
  #col2_content { padding: 10px 20px 10px 10px; }

  #col3 { margin: 0 25%; }
  #col3_content { padding: 10px; }

  .hideboth #col3 { margin-left: 10px; margin-right: 10px; }
  .hidecol1 #col3 { margin-left: 10px; margin-right: 25%; }
  .hidecol2 #col3 { margin-left: 25%; margin-right: 10px; }

  /*------------------------------------------------------------------------------------------------------*/

  /**
   * (en) Modifying "shiny buttons" navigation
   * (en) Anpassung der "Shiny Buttons" Navigation
   */

  #nav * { border: 0px none !important; }
  .hlist { background: #efefef; }
  .hlist ul { margin-left: 10px; }
  .hlist ul li { line-height: 1.2em; }
  
  .hlist ul li a,
  .hlist ul li strong {
    color: #666666;
    font-weight: normal;
    padding: 0.5em 0.8em 0.5em 0.8em;
    }
  
  .hlist ul li a:focus,
  .hlist ul li a:hover,
  .hlist ul li a:active {
    background: #005588;
    color: #ffffff;
    }
  
  .hlist ul li#current { background: transparent; }
  
  .hlist ul li#current strong,
  .hlist ul li#current a,
  .hlist ul li#current a:focus,
  .hlist ul li#current a:hover,
  .hlist ul li#current a:active {
    color: #4D87C7;
    font-weight: bold;
    }
    
}

