@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Horizontal list navigation "Shiny Buttons"
 * (de) Horizontale Navigationsliste "Shiny Buttons"
 *
 * @copyright       Copyright 2005-2008, 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.0.6
 * @revision        $Revision: 202 $
 * @lastmodified    $Date: 2008-06-07 14:29:18 +0200 (Sa, 07 Jun 2008) $
 */

@media all
{
  #nav_main {
    /* (de) Einfassen der Floats im IE */
    width: 100%;
	/* 
	Sonst macht der FF 2 Probleme beim Drop-Down-Menue
	overflow: hidden; */
    /* (de) Einfassen der Floats in allen anderen Browsern */
    float: left;
	line-height: 0;
	position: relative;
	z-index: 100;
	display: inline;
  }
  
 #nav_main a { 
 	text-decoration: none; 
 	border-bottom:none; 
}	

  #nav_main ul {
    border-left: 0px #fff solid;
    /* (en|de) Bugfix: IE - Doubled Float Margin Bug */
    display: inline;
    float: left;
    margin: 0 0 0 0;
    /* (en) Left margin of the first button  */
    /* (de) Abstand des ersten Buttons vom linken Rand  */
    padding: 0 0 0 0;
  }

  #nav_main ul li {
    border-right: 0px #fff solid;
	background: transparent url("images/trenner-li.gif") no-repeat 0 2px;
    /* (en|de) Bugfix: IE - Doubled Float Margin Bug */
    display: inline;
    float: left;
    font-size: 12px;
    line-height: 12px;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  #nav_main ul li a,
  #nav_main ul li strong {
    background: transparent;
    color: #fff;
    display: block;
    font-size: 1em;
    font-weight: normal;
    margin: 0;
    padding: 0.1em 0.8em 0.8em 0.8em;
    text-decoration: none;
    width: auto;
  }

  #nav_main ul li a:focus,
  #nav_main ul li a:hover,
  #nav_main ul li a:active  { 
	background: url("images/background_main_hover.gif") repeat-x 0 2px; 
	color: #fff; 
	text-decoration: none; 
  }

  #nav_main ul li.first, #nav_main ul li.first a:hover { background:none; }

  #nav_main ul li a.active {   	
  	font-weight:bold;
	color:#B4CC2C;
  }
	 
  #nav_main ul li a.active:hover { 
  	color:#fff; 
  } 

  #nav_main ul li#active {
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
	height: 12px;
    background: #272727 url("images/background_active.gif") repeat-x center right;
    border-right: 1px #fff solid;
  }

  #nav_main ul li#current strong,
  #nav_main ul li#current a,
  #nav_main ul li#current a:focus,
  #nav_main ul li#current a:hover,
  #nav_main ul li#current a:active {
  
  }
}
