@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Vertical list navigation "vlist"
 * (de) Vertikale Navigationsliste "vlist"
 *
 * @copyright       Copyright 2005-2009, 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.1
 * @revision        $Revision: 343 $
 * @lastmodified    $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $
 */

@media all
{
  /* title */
  h6.vlist {
    font-family:  Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 100%;
    width: 90%;
    padding: 3px 0px 3px 10%; /* LTR */
    margin:0;
    color: #444;
    background-color: #fff;
    border-top: 2px #ddd solid;
    border-bottom: 4px #888 solid;
  }

  .vlist {
    width: 100%;
    overflow: hidden;
    margin: 0 0 3em 0;
    list-style-type: none;
    border-bottom: 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 {
    display:block;
    padding: 5px 20px 6px;
    text-decoration: none;
	line-height: 1.1;
	color: #333;
  }
  
  .vlist a { font-size: 130%; }
  
  .vlist li { border-bottom: 1px #ddd solid; }
  
  .vlist li:hover { background: #f3f3f3; }
  .vlist li.active ,
  .vlist li .rootlinelink { background: #8D6333; }
  .vlist a.active ,
  .vlist a.rootlinelink{ color: #fff; font-weight: bold; }
  
  .vlist li ul  li a {padding-left: 37px; }
  .vlist li ul  li { background:#ac9274;}
  .vlist li ul  li:hover { background:#caab88;}

  .vlist li ul li ul li a {padding-left: 60px;}
  .vlist li ul li ul li ul li a {
    padding-left: 100px;
  }
  
  .vlist li ul li a.active,
  .vlist li ul li a.rootlinelink{ color: #fff; font-weight: normal; }
  
  .vlist li ul li.active ,
  .vlist li ul li .rootlinelink { background: #caab88; }
  
} 

