/**
 * "Yet Another Multicolumn Layout" - YAML CSS Framework
 *
 * (en) Horizontal list navigation "hlist"
 * (de) Horizontale Navigationsliste "hlist"
 *
 * @copyright       Copyright 2005-2012, 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         v4.0.2
 * @revision        $Revision: 743 $
 * @lastmodified    $Date: 2012-10-23 23:01:14 +0200 (Di, 23 Okt 2012) $
 *
 * Modifizierte dvv-Version
 */

@media all {

	.ym-hlist {
		/* (en) containing floats in IE */
		/* (de) Einfassen der Floats im IE */
		width:100%;
		overflow:hidden;
		/* (en|de) Bugfix:IE - collapsing horizontal margins */
		position:relative;
		line-height:1em;
    /* Komm.ONE removed line */
	}

	.ym-hlist ul {
		margin:0;
    /* Komm.ONE removed line */
		/* (en|de) Bugfix:IE - Doubled Float Margin Bug */
		display:inline;
		float:left; /* LTR */
	}

	.ym-hlist ul li {
		/* (en|de) Bugfix:IE - Doubled Float Margin Bug */
		display:inline;
		float:left; /* LTR */
		font-size:1.0em;
		line-height:1em;
		list-style-type:none;
		margin: 0 .25em 0 0;
		padding:0;
	}

  /* Komm.ONE added lines */
  .ym-hlist
  {
  	font-size:1.2em;
    background-color: #eee;
  }
  .ym-hlist.hlist2
  {
  	font-size:1em;
    background-color: #f8f8f8;
  }

    /* Komm.ONE changed lines */
	.ym-hlist ul li a,
	.ym-hlist ul li strong {
		background:transparent;
		color:#111;
		display:block;
		line-height: 2em;
		padding: 0 16px;
    font-weight:normal;
		text-decoration:none;
		width:auto;
	}

	.ym-hlist ul li a:focus,
	.ym-hlist ul li a:hover,
	.ym-hlist ul li a:active  {
		text-decoration:none;
		outline: 0 none;
	}

	.ym-hlist ul li.active {
	}

	.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 {
		text-decoration:none;
	}

}