/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Horizontal list navigation "Shiny Buttons"
 * (de) Horizontale Navigationsliste "Shiny Buttons"
 *
 * @copyright       Copyright 2005-2010, 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.3
 * @revision        $Revision:392 $
 * @lastmodified    $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $
 */

@media all
{
  #header_nav {
    /* (en) containing floats in IE */
    /* (de) Einfassen der Floats im IE */
    width:100%;
    /* 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 */
    border:0px;
    line-height:0;
	background:transparent url("../../images/layout/nav_bg_sides.png") no-repeat top right;
  }

  #header_nav ul {
	display:inline;
    margin:0;
    padding:0;
    /* (en|de) Bugfix:IE - Doubled Float Margin Bug */
    float:left; /* LTR */
	background:transparent url("../../images/layout/nav_bg.png") repeat-x top left;
  }

  #header_nav ul li.nav_left, #header_nav ul li.nav_button, #header_nav ul li.nav_right, #header_nav ul li.nav_seperator {
    display:inline;
    float:left; /* LTR */
    margin:0;
    padding:0;
	height:35px;
	position: relative;
  }
  
  #header_nav ul li.nav_button {
	overflow:inherit;
	cursor:pointer;
  }

  #header_nav ul li a,
  #header_nav ul li strong {
    background:transparent;
    color:#000;
    display:block;
    margin:0;
    text-decoration:none;
    width:auto;
  }

  #header_nav ul li a:focus,
  #header_nav ul li a:hover,
  #header_nav ul li a:active  { background:transparent; text-decoration:none; outline: 0 none; }

  #header_nav ul li.active {
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
  }

  #header_nav ul li.active strong,
  #header_nav ul li.active a:focus,
  #header_nav ul li.active a:hover,
  #header_nav ul li.active a:active { background:transparent; color:#fff; text-decoration:none; }
  
  
  
  #header_nav ul li.nav_left {
    background:transparent url("../../images/layout/nav_bg_sides.png") no-repeat top left;
	width:20px;
  }
  
  #header_nav ul li.nav_right {
    background:transparent url("../../images/layout/nav_bg_sides.png") no-repeat top right;
	text-align:right;
  }
  
  #header_nav ul li.nav_seperator {
    background:transparent url("../../images/layout/nav_seperator.png") no-repeat top center;
	width:5px;
  }
  
  #header_nav ul li.nav_right div {
    margin-top:12px;
	margin-left:2px;
	width:20px;
	float:left;
	text-align:right;
  }
  
  
  #header_nav ul li.nav_button {
	background:transparent url("../../images/layout/nav_bg_sides.png") no-repeat top center;
    padding-left:10px;
	padding-right:10px;
	padding-top:8px;	
  }
  
  #header_nav ul li.nav_button ul{	
	z-index:100;
	margin: 0px; padding: 0px;
    position: absolute;
    top: 35px; left: -4px;
    display: none;  /* Unternavigation ausblenden */  
	text-decoration:none;
	border-left:3px #bb9352 solid;
	border-right:1px #bb9352 solid;
	border-bottom:1px #555 solid;
	width:200px;
  }
  
  /*
  #header_nav ul li.nav_button:hover ul{
  	display: block;   Unternavigation in modernen Browsern einblenden 
  }
  */
  
  #header_nav ul li.nav_button ul li {
    float: none;
	text-decoration:none;
    display: block;
    margin: 0px;
	padding:2px 10px;
	border-top:1px #fff solid;	
	background-color:#eee;
  }  
  
  #header_nav ul li.nav_button ul li:hover {    
	background-color:#d8d8d8;
	color:#fff;
  }
  
  #header_nav ul li.nav_button ul li.sub_nav_title { 
    background-color:#777;
	color:#fff;
	cursor:default;
  }
}
