@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Vertical list navigation "vlist"
 * (de) Vertikale Navigationsliste "vlist"
 *
 * @copyright       Copyright 2005-2010, 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.2.1
 * @revision        $Revision:392 $
 * @lastmodified    $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $
 */

@media all
{

  .vlist {
    width:100%;
    overflow:hidden;
    margin:0 0 1.5em 1px;
    list-style-type:none;
  }

  .vlist ul {
    list-style-type:none;
    margin:0;
    padding:0;
  }

  .vlist li {
    float:left; /* LTR */
    width:100%;
    margin:0;
    padding:0;
  }

  .vlist a,
  .vlist strong,
  .vlist span {
    display:block;
    padding:3px 0px 3px 10%;
    text-decoration:none;
    border-bottom:1px #ddd solid;
  }

  /* Level 1 */
  .vlist li a,
  .vlist li strong,
  .vlist li span { color:#34718F; width:85%; padding:5px 0px 5px 15%; line-height:19px; } /* LTR */

  .vlist li a:focus,
  .vlist li a:hover,
  .vlist li a:active { color: #194D66; text-decoration:none; font-weight:bold; outline: 0 none; }
  .vlist li.active a{font-weight:bold; color: #194D66;}
  
  /* Level 2 */
  .vlist li ul li a{background:none;}
  .vlist li.active ul.active a{font-weight:normal; color:#34718F;}
  .vlist li.active ul.active a.active{font-weight:bold;} 
  
  .vlist li.active ul.active a:focus,
  .vlist li.active ul.active a:hover,
  .vlist li.active ul.active a:active { font-weight:bold; outline: 0 none; }
}
