@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
{
  .vlist {
    width: 100%;
    overflow: hidden;
    margin: 20px 0 15px 20px;
    list-style-type: none;
	text-transform: uppercase;
	font-weight: bold;
  }

  .vlist ul {
    list-style-type: none;
    margin:0;
	padding: 0;
  }

  .vlist li {
    float:left; /* LTR */
    width: 90%;
    margin:0;
    padding: 0;
  }

  .vlist a,
  .vlist strong,
  .vlist span {
    display:block;
    padding: 3px 0px 3px 5%;
    text-decoration: none;
  }

  .vlist a,
  .vlist a:visited {
    color: #79848b;
  }

  /* active list element */
  .vlist li.active a.active{
    color: #fff;
  }

  /* Level 1 */
  .vlist li a,
  .vlist li strong,
  .vlist li span { width: 80%; padding-left: 10%; } /* LTR */

  .vlist li a:focus,
  .vlist li a:hover,
  .vlist li a:active {color: #fff;}
}

