/**
 * "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) $
 */


 /*

 #navigation ul {
	list-style-type: none;
	margin-top: 0; /* Fix fuer Mozilla
}


#navigation li {
	display: inline;
}
#navigation a:link, #navigation a:visited {
	color: #003366;
	text-decoration: none;
}
#navigation a:focus, #navigation a:hover {
	color: #FF0000;
	text-decoration: underline;
}
#navigation a:active {
	color: #003366;
	text-decoration: none;


*/



@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:right;
		/*line-height:1em;*/
		border-top: 4px #003366 solid;
		margin: 0em 10em 0em 0em;
		font-size: 90%;

	}

	.ym-hlist ul {
		/*margin:0;*/
		margin: 0.5em 0 0.5em 0.5em;
		/* (en|de) Bugfix:IE - Doubled Float Margin Bug */
		display:inline;
		float:right; /* 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;

	}

	.ym-hlist ul li a,
	.ym-hlist ul li strong {
		background:transparent;
		color:#003366;
		display:block;
		font-size:1em;
		/*line-height: 2em;*/
		padding: 0 0 0 0.5em;
		font-weight:normal;
		text-decoration:none;
		width:auto;
	}

	.ym-hlist ul li a:focus,
	.ym-hlist ul li a:hover {text-decoration:underline; color:#c83c28},
	.ym-hlist ul li a:active  {
		color: #003366;
		background:#666;
		background: rgba(255,255,255,.25);
		-webkit-border-radius: 0.2em;
		-moz-border-radius: 0.2em;
		border-radius: 0.2em;
		text-decoration:none;
		outline: 0 none;
	}

	.ym-hlist ul li.active {
		background:#003366;
		background: rgba(255,255,255,.3);
		-webkit-border-radius: 0.2em;
		-moz-border-radius: 0.2em;
		border-radius: 0.2em;
		color: #fff;
	}

	.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;
	}

}