@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-2007, 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.4
 * @revision        $Revision: 130 $
 * @lastmodified    $Date: 2007-10-05 19:05:21 +0200 (Fr, 05 Okt 2007) $
 */

@media all
{
  #nav_main {
    /* (en) This image is mainly transparent */
    /* (de) Dieses Bild ist größtenteils transparent */
    background: #fff;
    float: left;
    width: 100%;
	font-family: sans-serif !important;
  }
  
   #first_nav {
    float: left;
    width: 100%;
    height:20px;
  }
  

  

  #first_nav ul {
    line-height: 5px;
    list-style: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    white-space: nowrap;
  }

  #first_nav li {
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
    background: #e0ecf8 url("img_nav/left.jpg") no-repeat top left;
    float: left;
    margin: 0 0 0 5px;
    padding: 0 0 0 3px;
    line-height: 20px;
  }

  #first_nav a,
  #first_nav strong {
    /* (en) This image is mainly transparent */
    /* (de) Dieses Bild ist größtenteils transparent */
    background: transparent url("img_nav/right.jpg") no-repeat top right;
    color: #fff;
    display: block;
    font-weight: normal;
    font-size: 12px;
    padding: 0 11px 0 8px;
    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
   */
  #first_nav > ul a,
  #first_nav > ul strong { width: auto; }  /* for other browsers */

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

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

  #first_nav a:focus,
  #first_nav a:hover,
  #first_nav a:active { background-color: transparent; color: #fff;  }

  #first_nav #current {
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
    background: white url("img_nav/left_on.jpg") no-repeat top left;
    border: 0;
  }

  #first_nav #current a,
  #first_nav #current strong {
    /* (en) This image is mainly transparent */
    /* (de) Dieses Bild ist größtenteils transparent */
    background: transparent url("img_nav/right_on.jpg") no-repeat top right;
    color: #fff;
    font-weight: bold;

 
  }
}