/**
 * "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.1
 * @revision        $Revision: 724 $
 * @lastmodified    $Date: 2012-03-03 11:45:41 +0100 (Sa, 03 Mrz 2012) $
 */

@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;
		padding: 14px 0 30px 0;
	}

	.ym-hlist ul {
		margin:0;
		padding:0;
		/* (en|de) Bugfix:IE - Doubled Float Margin Bug */
		display:inline;
		float:left; /* LTR */
		width:100%;
	}

	.ym-hlist ul li {
		/* (en|de) Bugfix:IE - Doubled Float Margin Bug */
		display:inline;
		float:left; /* LTR */
		font-size:14px;
		line-height:1em;
		list-style-type:none;
		margin:0;
		padding:0;
		width:25%;
		background-image: url(../../images/bg_nav.png);
		background-repeat: repeat-x;
		background-position: left bottom;
		height:37px;
	}

	.ym-hlist ul li a {
		display:block;
		line-height: 1.3em;
		padding: 0;
		text-align:center;
		text-decoration:none;
		height:37px;
	}

	.ym-hlist ul li a:focus,
	.ym-hlist ul li a:hover,
	.ym-hlist ul li a:active  {
		color:#84af21;
		text-decoration:none;
		outline: 0 none;
		background-image: url(../../images/bg_nav_pfeil.png);
		background-repeat: no-repeat;
		background-position: center bottom;
	}

	.ym-hlist ul li.current_page_item a {
		color: #84af21;
		background-image: url(../../images/bg_nav_pfeil.png);
		background-repeat: no-repeat;
		background-position: center bottom;
	}

	.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:transparent;
		color:#fff;
		text-decoration:none;
	}
}