/**
 * "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.3
 * @revision        $Revision:392 $
 * @lastmodified    $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $
 */

@media all
{
  /* title */
  #vlist {
    width:100%;
    overflow:hidden;
    margin:0 0 0 0;
	padding:0 0 0 0;
    list-style-type:none;
	border-top: 1px solid #474844;
  }

  #vlist ul {
    list-style-type:none;
    margin:0;
    padding:0;
  }

  #vlist li {
    width:100%;
    margin:0;
    padding:0;
  }

  #vlist a {
    display:block;
    padding:0px 0px 1px 0px;
    text-decoration:none;
    border-bottom: 1px solid #474844;
	font-size:15px;
  }

  #vlist a,
  #vlist a:visited {
    color:#fff;
  }

  /* Level 1 */
  #vlist li a { width:100%; } /* LTR */

  #vlist li.current_page_item a,
  #vlist li a:focus,
  #vlist li a:hover,
  #vlist li a:active { color: #a8a8a8; }	
}