/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Horizontal list navigation "Shiny Buttons"
 * (de) Horizontale Navigationsliste "Shiny Buttons"
 *
 * @copyright       Copyright 2005-2009, Dirk Jesse
 * @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
 *                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
 * @link            http://www.yaml.de
 * @package         yaml
 * @version         3.1
 * @revision        $Revision: 343 $
 * @lastmodified    $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $
 */

@media all
{
	div#nav {
		padding-top: 0px;
	}

	div#nav .hlist {
		/* (en) containing floats in IE */
		/* (de) Einfassen der Floats im IE */
		overflow: hidden;
		/* (en) containing floats in all other browsers */
		/* (de) Einfassen der Floats in allen anderen Browsern */
		/*
		float: left;
		display: inline;
		*/
		/* (en|de) Bugfix: IE - collapsing horizontal margins */
		position: relative;
		/* (en) Repeat the main color from the image */
		/* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
		line-height: 0px;
		background: #00548e;
  	}

	div#nav .hlist ul {
		/* (en|de) Bugfix: IE - Doubled Float Margin Bug */
		display: block;
		/*float: left;*/ /* LTR */
		/* (en) Left margin of the first button  */
		/* (de) Abstand des ersten Buttons vom linken Rand  */
		margin: 0px 0 0 100px; /* LTR */
		padding: 4px 
			0px;
		border-left: 0px #aaa solid;
		border-right: 0px #fff solid;
	}

	div#nav .hlist ul li {
		color: #d7d7d7;
		font-size: 12px;
		display: inline;
		float: left; /* LTR */
		list-style-type: none;
		margin: 0;
		padding: 1px 0;
	
		/*
		background-image: url(../../elemente/nav-main-trenner.gif);
		background-position: 100% 50%;
		background-repeat: no-repeat;
		*/		
		border-left: 0px #fff solid;
		border-right: 0px #aaa solid;
		border-top: 0px solid #d7d7d7;
		border-bottom: 0px solid #d7d7d7;

		/* (en|de) Bugfix: IE - Doubled Float Margin Bug */
	}

	div#nav .hlist ul li.last {
		background: none;
	}

	div#nav .hlist ul li.first a {
	}

	div#nav .hlist ul li.last a {
	}

	div#nav .hlist ul li a,
	div#nav .hlist ul li strong {
		color: white;
		display: inline;
		font-size: 12px;
		height: 22px;
		font-weight: bold;
		margin: 0;
		padding: 0px 
			6px 
			0px 
			6px;
		text-decoration: none;
		width: auto;
	}

	div#nav .hlist ul li.last a,
	div#nav .hlist ul li.last strong {
		padding-right: 0px;
	}

	div#nav .hlist ul li a:focus,
	div#nav .hlist ul li a:hover,
	div#nav .hlist ul li a:active  { 
		color: #333;
		text-decoration: none; 
	}

	div#nav .hlist ul li.active strong,
	div#nav .hlist ul li.active a,
	div#nav .hlist ul li.active a:focus,
	div#nav .hlist ul li.active a:hover,
	div#nav .hlist ul li.active a:active { 
		color: #333;
		text-decoration: none; 
	}

	div#nav .hlist ul li.current strong,
	div#nav .hlist ul li.current a,
	div#nav .hlist ul li.current a:focus,
	div#nav .hlist ul li.current a:hover,
	div#nav .hlist ul li.current a:active { 
		color: #333;
		text-decoration: none; 
	}
}
