@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Horizontal list navigation "Shiny Buttons"
 * (de) Horizontale Navigationsliste "Shiny Buttons"
 *
 * @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
{
  div#nav_haupt {
    /*background-image:url(../images/haupt.jpg);*/
    height:36px;
    font-size:0.875em;
  }

  div#nav_haupt a{
    display:block;
    padding:5px 10px;
    color:white;
    text-decoration:none;
    font-weight: bold;
  }

  /*
   * Menüpunkte Ebene0
   */
  div#nav_haupt ul {list-style: none; margin:0;padding:0;}

  div#nav_haupt ul li.e0{
    border-right: 1px solid white;
    float: left;
    position: relative;
    list-style: none;
    margin:0;
    height:36px;
  }
  div#nav_haupt ul li.e0_current{
    background-image:url(../images/haupt-current.jpg);
  }
  div#nav_haupt ul li.e0_current a{color:#515151;}

  div#nav_haupt ul li.e0:hover {
    background-image:url(../images/haupt-current.jpg);
  }
  div#nav_haupt li:hover a {color:#515151;}

  /*
   * Menüpunkte Ebene1
   */
  div#nav_haupt ul li ul{
    list-style: none;
    position: absolute;
    left: -1px;
    top: 36px;
    display: none;
    width: 18em;
    background-color:#f98900;
    border-left:1px solid white;
    border-right:1px solid white;
  }
  div#nav_haupt ul li:hover ul {
    display: block;
  }

  div#nav_haupt ul li.e1{
    border-bottom:1px solid white;
    list-style: none;
    margin:0;
    height:36px;
  }
  div#nav_haupt ul li.e1:hover a{
    color:#515151;
  }
  div#nav_haupt ul li:hover li a{color:white;}
}
