@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Horizontal list navigation
 * (de) Horizontale Navigationsliste
 *
 * @copyright       Copyright 2010, SoftVision Development
 * @link            http://www.softvision.de
 */

@media all
{
	.hlist {
		float: left;
		width: 100%;
		border-bottom: 6px solid #f78e00;
	}
	
	.hlist ul {
		margin: 0;
		padding: 0;
		line-height: 1em;
		list-style: none;
		white-space: nowrap;
		height: 30px;
	}
	
	.hlist li {
		list-style-type: none !important;
		float: left; /* LTR */
		margin: 0;
		padding: 0 1px 0 0;
		
	}
	
	.hlist a {
		display: block;
		font-weight: bold;
		text-decoration: none;
		text-transform: none;
		
		color: #fefefe;
		padding: 0.5em 0.8em 0.3em 0.93em;
		line-height: 1.8em;
		background: url(../img/nav.gif) left -35px repeat-x scroll;
		
		/**
		 * @bugfix
		 * @affected   IE5.x, IE6
		 * @css-for    all browsers
		 * @valid      yes
		 */
		width: auto; /* only IE 5.x */
		width/**/:/**/ .1em; /* only IE 6.0 */
	}
	
	/**
	 * @bugfix
	 * @affected   IE5.x, IE6
	 * @css-for    all browsers
	 * @valid      yes
	 */
	.hlist > ul a { width:auto; }  /* for other browsers */
	
	.hlist a:focus,
	.hlist a:hover,
	.hlist a:active,
	.hlist .active a {
		outline: 0 none;
		text-decoration: none;
		background-position: left top;
		padding-bottom: 0.7em;
		margin-bottom: -4px;
		
		color: #000;
	}
	
}
