/**
 * "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.2
 */
@media all {
  .ym-hlist {
    /* (en) containing floats in IE */
    /* (de) Einfassen der Floats im IE */
    width: 100%;
	height: auto;
    overflow: hidden;
    position: relative;
    line-height: 1em;
	z-index: 100;
	border: 0px solid #000;
  }
  .ym-hlist ul {
    margin: 0 0 0% 24%;
    padding: 5em 0em 0em 0em;
    display: inline;
    float: left;
	border: 0px solid #000;
	width: 55%;
  }
  .ym-hlist ul li {
    display: inline;
    float: left;
    font-size: 1.0em;
    line-height: 1;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .ym-hlist ul li a, .ym-hlist ul li strong {
    background: transparent;
    color:#fff;
    display: block;
    font-size: 1.5em;
    line-height: 1em;
    padding: 0em 1.25em;
    font-weight: normal;
    text-decoration: none;
    width: auto;
  }
  .ym-hlist ul li a:focus,
  .ym-hlist ul li a:hover {
    color: #825133;
    background: transparent;
    text-decoration: none;
    outline: 0 none;
  }
  .ym-hlist ul li.active {
    background: #DED6CA;
    color: #825133;
	width: 40%;
  }
  .ym-hlist ul li.active strong,
  .ym-hlist ul li.active a:focus,
  .ym-hlist ul li.active a:hover,
  .ym-hlist ul li.active a:active {
    background: #DED6CA;
    color: #825133;
    text-decoration: none;
  }

.ym-hlist ul li ul {
    margin: 0;
    padding: 2em 0;
    display: inline;
    float: left;
	width: 90%;
  }
  
  .ym-hlist ul li ul li {
    display: inline;
    float: left;
    font-size: 1.0em;
    line-height: 1;
    list-style-type: none;
    margin: 0em 0 4em 0;
    padding: 0;
  }
  
  .ym-hlist ul li ul li a:focus,
  .ym-hlist ul li ul li a:hover {
    color: #825133;
    background: transparent;
    text-decoration: bold;
    outline: 0 none;
  }
}
