@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: 0;
    padding: 0;
    list-style-type: none;
  }
  .vlist ul {
    list-style-type: none;
    margin:0;
    padding: 0;
  }
  .vlist li {
    float:left;
    width: 150px;
    height: 100px;
    border-bottom: 2px solid #fff;
    font-size: 150%;
    line-height: 130%;
    margin:0;
    padding: 0;
  }
  .vlist a,
  .vlist strong,
  .vlist span {
    display:block;
    padding: 5px 10px;
    width: 130px;
    height: 90px;
    text-decoration: none;
  }
  .vlist a,
  .vlist a:visited {
    color: #fff;
    font-weight: bold;
  }
  .vlist li span {
    display:block;
    font-weight: bold;
  }
  /* active list element */
  .vlist li.active {
    font-weight: bold;
  }
  .vlist li.active a {
    border-right-width: 8px;
    border-right-style:solid;
    }
  .vlist strong {
    border-right-width: 8px;
    border-right-style:solid;
  }
  /* Level 1 */
  .vlist li a:focus,
  .vlist li a:hover,
  .vlist li a:active { 
    text-decoration: none; 
  }
  /* Listen in Artikeln und Produktseiten*/
   .art-post ul {
   list-style-type:disc;
   }
}

