@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" for Drupal
 *
 * (en) Horizontal list navigation "Shiny Buttons"
 * (de) Horizontale Navigationsliste "Shiny Buttons"
 *
 * @copyright       Copyright 2006-2008, Alexander Hass
 * @license         http://www.yaml-fuer-drupal.de/en/terms-of-use
 * @link            http://www.yaml-for-drupal.com
 * @package         yaml-for-drupal
 * @version         6.x-3.0.6.11
 * @lastmodified    2008-11-10
 */

@media screen, projection
{
  #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: right;
	display: inline;
	line-height: 0;
  }

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

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

  #nav_main ul li a,
  #nav_main ul li strong {
	background: transparent;
	color: #FFFFFF;
	display: block;
	font-size: 1.2em;
	font-weight: normal;
	margin: 0;
	padding: 0.5em 0.8em 0.5em 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  {
	color: #FFFFFF;
	text-decoration: none;
	background-color: #B30000;
}

  #nav_main ul li.active {
	/*font-weight: bold;*/
	color: #FFFFFF;
	/*background-color: #B30000;*/

  }

  #nav_main ul li.active strong,
  #nav_main ul li.active a,
  #nav_main ul li.active a:focus,
  #nav_main ul li.active a:hover,
  #nav_main ul li.active a:active {
	/*background: transparent;*/
	background-color: #B30000;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}
}