/**
 * "Yet Another Multicolumn Layout" - YAML CSS Framework
 *
 * (en) Horizontal list navigation "hlist"
 * (de) Horizontaleß Navigationsliste "hlist"
 *
 * @copyright       © 2005-2013, Dirk Jesse
 * @license         CC-BY 2.0 (http://creativecommons.org/licenses/by/2.0/),
 *                  YAML-CDL (http://www.yaml.de/license.html)
 * @link            http://www.yaml.de
 * @package         yaml
 * @version         4.1.0
 */
@media all {
  .ym-hlist-sub {
    /* (en) containing floats in IE */
    /* (de) Einfassen der Floats im IE */
    width: 100%;
    overflow: hidden;
    position: relative;
    line-height: 1em;

    background:#ADADAD; /*alternative Hintergrundfarbe für IE*/
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#ADADAD), to(#CCC));
	background: -moz-linear-gradient(top, #ADADAD, #CCC);

  }
  .ym-hlist-sub ul {
    margin: 0;
    padding: 0.5em 1.2em;
    display: inline;
    float: left;
  }
  .ym-hlist-sub ul li {
    display: inline;
    float: left;
    font-size: 1.0em;
    line-height: 1;
    list-style-type: none;
    margin: 0 .25em 0 0;
    padding: 0;
  }
  .ym-hlist-sub ul li a, .ym-hlist-sub ul li strong {
    background: transparent;
    color: #000000;
    display: block;
    font-size: 1em;
    line-height: 2em;
    padding: 0 0.5em;
    font-weight: normal;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    width: auto;
  }
  .ym-hlist-sub ul li a:focus,
  .ym-hlist-sub ul li a:hover,
  .ym-hlist-sub ul li a:active {
    color: #000000;
    background: #666;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 0.2em;
    text-decoration: none;
    outline: 0 none;
  }
  .ym-hlist-sub ul li.active {
    background: #666;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0.2em;
    color: #fff;
  }
  .ym-hlist-sub ul li.active strong,
  .ym-hlist-sub ul li.active a:focus,
  .ym-hlist-sub ul li.active a:hover,
  .ym-hlist-sub ul li.active a:active {
    background: transparent;
    color: #000000;
    text-decoration: none;
  }


}
