@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Horizontal list navigation based on "Sliding Door II" from von "A List Apart"
 * (de) Horizontale Navigationsliste basierend auf "Sliding Door II" von "A List Apart"
 *
 * @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 all
{
  #nav_main2 {
    /* (en) This image is mainly transparent */
    /* (de) Dieses Bild ist größtenteils transparent */
    background: #9acaf4;
    float: left;
    width: 100%;
  }

  #nav_main2 ul {
    line-height: 1em;
    list-style: none;
    margin: 0;
    white-space: nowrap;
    font-size: 11px;
  }

  #nav_main2 li {
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
    background: #9acaf4 no-repeat top left;
    float: left;
    margin: 0;
    padding: 0 0 0 0;
  }

  #nav_main2 a,
  #nav_main2 strong {
    /* (en) This image is mainly transparent */
    /* (de) Dieses Bild ist größtenteils transparent */
    background: transparent no-repeat top right;
    color: rgb(0,29,65);
    display: block;
    font-weight: normal;
    padding: 9px 0px 6px 7px;
    text-decoration: none;
    text-transform: none;

    /**
     * @bugfix
     * @affected   IE5.x, IE6
     * @css-for    all browsers
     * @valid      yes
     */
    width: auto; /* only IE 5.x */
    width/**/:/**/ .1em; /* only IE 6.0 */
  }

  /**
   * @bugfix
   * @affected   IE5.x, IE6
   * @css-for    all browsers
   * @valid      yes
   */
  #nav_main2 > ul a,
  #nav_main2 > ul strong { width: auto; }  /* for other browsers */

  #nav_main2 ul li:focus,
  #nav_main2 ul li:hover,
  #nav_main2 ul li:active {
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
    background-color: white;
    background-position: 0 -150px;
  }

  #nav_main2 li:focus a,
  #nav_main2 li:hover a,
  #nav_main2 li:active a {background-position: 100% -150px;}

  #nav_main2 a:focus,
  #nav_main2 a:hover,
  #nav_main2 a:active { background-color: transparent; color: rgb(0,29,65); }

  #nav_main2 #current {
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
    background: #9acaf4 no-repeat top left;
    border: 0;
  }

  #nav_main2 #current a,
  #nav_main2 #current strong {
    /* (en) This image is mainly transparent */
    /* (de) Dieses Bild ist größtenteils transparent */
    background: transparent no-repeat top right;
    color: rgb(0,29,65);
    font-weight: bold;
    padding-bottom: 4px;
    padding-top: 10px;
    border: 0;
  }
}