@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: 410 $
 * @lastmodified    $Date: 2008-06-17 18:54:08 +0200 (Di, 17 Jun 2008) $
 */

@media all
{
  #nav_main {
    /* (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) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
	  background: #f4a229 url(../../../images/v3/navigation/nav_main/nav_main_bg.gif) no-repeat left top; 
    line-height: 0;
  }

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

  #nav_main ul li {
    border-left: 1px #f4a229 solid;
    border-right: 1px #ffcd38 solid;
    /* (en|de) Bugfix: IE - Doubled Float Margin Bug */
    display: inline;
    float: left;
    font-size: 1.0em;
    line-height: 1em;
    list-style-type: none;
    margin:1px 0 0 0;
    padding: 0;

  }
	#nav_main ul li.first_item { border-left:0; }

  #nav_main ul li a,
  #nav_main ul li strong {
    background: transparent;
    color: #fff;
    display: block;
    font-size: 1.18em;
    font-weight: bold;
    margin: 0;
    padding:6px 12px 9px 10px;
    text-decoration: none;
    width: auto;
  }
	
	#nav_main ul li.active {
		background:#0B2750 url(../../../images/v3/navigation/nav_main/nav_main_active_bg.gif) repeat-x top;
    margin:0;
		padding-top:1px;
    border-left: 1px #01070F solid;
    border-right: 1px #2F507F solid;
	}
	#nav_main ul li.active a { 
	  color:#fff;
	}
	
	#nav_main ul li.first_item_active {
		background:#0B2750 url(../../../images/v3/navigation/nav_main/nav_main_active_bg_first.gif) no-repeat left top;	
		border-left:0;
	}

}