@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 {
    display:none;
    font-family:  Arial, Helvetica, sans-serif;
    font-weight: bold;
    width: 90%;
    padding: 3px 0px 3px 10%; /* LTR */
    margin:0;
    color: #444;
    background-color: #fff;
    border-bottom: 4px #888 solid;
  }

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

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

  .vlist li {
    float:left; /* LTR */
    width: 100%;
    padding: 0;
	  background: transparent url("../../images/vlist/background.png") no-repeat;
    list-style-type: none;
  }

  .vlist a {
    display: block;
    padding: 6px 0px 6px 10%;
    text-decoration: none;
  }

  .vlist a,
  .vlist a:visited {
    text-decoration: none;
  }

  .vlist li span {
  }

  /* Level 1 */
  .vlist li { margin: 10px 0 0 0; }
  .vlist li.active { background: url("../../images/vlist/background_active.gif"); }
  .vlist li.current { background: url("../../images/vlist/background_active.gif"); }
  .vlist li.active a { font-weight: normal; }
  .vlist li.active li a { font-weight: normal; }
  
  .vlist li a,
  .vlist li a:visited { width: 90%; padding-left: 10%; color: #fff; } /* LTR */

  .vlist li a:focus,
  .vlist li a:hover,
  .vlist li a:active { background: url("../../images/vlist/background_over.gif"); text-decoration: none; }

  /* Level 2 */
  .vlist li ul li { margin: 0; background: #f3f4f0; }
  .vlist li ul li.active,
  .vlist li ul li.current { background: #d5d8ca; }
  .vlist li ul li.active a { }
  .vlist li ul li.active li a { font-weight: normal; }

  .vlist li ul li a,
  .vlist li ul li a:visited { background: transparent; color: #555555 ; width: 85%; padding-left: 15%; border-bottom: 1px #555 dotted; } /* LTR */

  .vlist li ul li a:focus,
  .vlist li ul li a:hover,
  .vlist li ul li a:active { background: #e2e6dc; text-decoration: none; }


  /* Level 3 */
  .vlist li ul li ul li { margin: 0; background: #ddd; }
  .vlist li ul li ul li.active,
  .vlist li ul li ul li.current { background: #ccc; }
  .vlist li ul li ul li.active a { }
  .vlist li ul li ul li.active li a { font-weight: normal; }  
    
  .vlist li ul li ul li a,
  .vlist li ul li ul li a:visited{ width: 75%; padding-left: 25%; background: transparent; color: #555555; border-bottom: none; }

  .vlist li ul li ul li a:focus,
  .vlist li ul li ul li a:hover,
  .vlist li ul li ul li a:active { background-color:#d5d5d5; text-decoration: none; }

  /* Level 4 */
  .vlist li ul li ul li ul li a,
  .vlist li ul li ul li ul li strong,
  .vlist li ul li ul li ul li span { width: 60%; padding-left: 40%; } /* LTR */

  .vlist li ul li ul li ul li a,
  .vlist li ul li ul li ul li a:visited { background-color:#e8e8e8; color: #111; }
  .vlist li ul li ul li ul li a:focus,
  .vlist li ul li ul li ul li a:hover,
  .vlist li ul li ul li ul li a:active { background-color:#a88; color: #fff; }
}
