                                                                                                                                            @charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Vertical list navigation "vlist"
 * (de) Vertikale Navigationsliste "vlist"
 *
 * @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
{
  #submenu {
   width: 92%;
    overflow: hidden;
    margin: 1.4em  0  1.5em 0.5em;
    list-style-type: none;
    color:#444;
    font-weight: bold;
    border-top: 1px #708090; solid;
    border-bottom: 2px #708090; solid;
  }

  #submenu ul { list-style-type: none; margin:0; padding: 0; }
  #submenu li { float:left; width: 100%; margin:0; padding:0; }

   #submenu a  {
    display:block;
    width: 85%;
    padding: 3px 0px 3px 10%;
    text-decoration: none;
    background-color:#B9B3BD;
    color: #fff;
    border-bottom: 1px #708090 solid;
  }
     #submenu li #active {
    width: 85%;
    padding: 3px 0px 3px 10%;
    font-weight: bold;
    color: #fff;
    background-color:#B9B3BD;
    border-bottom: 2px #708090 solid;
  }

   #submenu li a { width: 90%; background-color:#fff; color: #0A073B; }
  #submenu li a:focus {background-color:#fff; color:#444; font-weight:bold;}
  #submenu li a:hover {background-color: #eee; color: #444;}
  #submenu li a:active { background-color:#B9B3BD; color: #fff; font-weight: bold; }

 
  #submenu li#current a,
  #submenu li#current a:focus,
  #submenu li#current a:hover,
  #submenu li#current a:active
  {
    background-color: #B9B3BD;
    color: #fff;
    font-weight: bold; 
    text-decoration: none;
  }
 
}

