@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
{
  #topnav {
    float: right;
    width: auto;
    overflow: hidden;
    line-height: 0;
  }

  #topnav ul.topnav {
    line-height: 1em;
    list-style: none;
    display: block;
    margin-right:0;
    padding: 0;
    float: right;
    white-space: nowrap;
  }

  #topnav ul.topnav li {
    /*border-left: 1px #fff solid;
    border-right: 1px #aaa solid;*/
    display: block;
    float: left;
    line-height: 1em;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  
  #topnav ul.topnav li.last {border: none}

  #topnav ul.topnav li a,
  #topnav ul.topnav li strong {
    background: transparent;
    color: #aaa;
    font-weight: normal;
    padding: 0.25em 0.8em 0.25em 0.8em;
    text-decoration: none;
    text-transform: none;
    width: auto;
  }
  
  #topnav ul.topnav li a:hover {text-decoration: underline;}

  }