/**
 * "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#metanav {
	color: #666;
  }

  div#metanav .hlist {
	/* (en) containing floats in IE */
	/* (de) Einfassen der Floats im IE */
	width: 100%;
	/* (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: 0;
	border: 0px solid red;
	text-align: center;
  }

  div#metanav .hlist ul {
	/* (en|de) Bugfix: IE - Doubled Float Margin Bug */
	display: inline-block;
	display: inline;
	display: block;
	/* (en) Left margin of the first button  */
	/* (de) Abstand des ersten Buttons vom linken Rand  */
	/*float: right;*/
	margin: 0px;
	padding: 0;
	text-align: center;
	border: 0px solid green;
  }

  div#metanav .hlist ul li {
	/*
	background-image: url(../../elemente/nav-main-trenner.gif);
	background-position: 100% 50%;
	background-repeat: no-repeat;
	*/

	/* (en|de) Bugfix: IE - Doubled Float Margin Bug */
	/*display: block;*/
	/*float: left;*/
	display: inline-block;
	display: inline;
	text-align: center;
	list-style: none;

	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-left: 0px;
	border: 0px solid yellow;
  }

  div#metanav .hlist ul li.last {
	background: none;
  }

  div#metanav .hlist ul li a,
  div#metanav .hlist ul li strong {
	color: #666;
	display: inline;
	font-weight: normal;
	margin: 0;
	padding: 0 8px;
	text-decoration: none;
	width: auto;
	border: 0px solid blue;
  }

  div#metanav .hlist ul li.first a {
	padding-left: 0px;
  }

  div#metanav .hlist ul li.last a {
	padding-right: 0px;
  }

  div#metanav .hlist ul li a:focus,
  div#metanav .hlist ul li a:hover,
  div#metanav .hlist ul li a:active  { 
	color: #333;
	text-decoration: none; 
  }

  div#metanav .hlist ul li.active {

  }

  div#metanav .hlist ul li.active strong,
  div#metanav .hlist ul li.active a,
  div#metanav .hlist ul li.active a:focus,
  div#metanav .hlist ul li.active a:hover,
  div#metanav .hlist ul li.active a:active { 
	color: #333;
	text-decoration: none; 
  }
}
