@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-2007, 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.1
* @revision        $Revision: 92 $
* @lastmodified    $Date: 2007-07-15 10:26:40 +0200 (So, 15 Jul 2007) $
*/

@media all
{

#menu_separator {
	margin-top: 25px;
}

#nav_headline {
	font-weight: bold;
	color: #ffe005;
	text-transform: uppercase;
	margin-bottom: 10px;

	font-size: 10px;
}

#nav_main {
  /* (en) containing floats in IE */
  /* (de) Einfassen der Floats im IE */
  width: 100%;
  overflow:hidden;
  font-size: 10px;
  /* (en) containing floats in all other browsers */
  /* (de) Einfassen der Floats in allen anderen Browsern */
  display:inline;
  line-height: 0px;
}

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

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

}

#nav_main ul li a,
#nav_main ul li strong {
  display:block;
  width: auto;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  color: #ffe005;
  margin: 0;
  padding-left: 0px;
  padding-top: 5px;
  padding-bottom: 5px;


  border-bottom-style: solid;
  border-bottom-color: #cce0f0;
  border-bottom-width: 1px;


}

#nav_main ul li a:focus,
#nav_main ul li a:hover,
#nav_main ul li a:active  {
  background: #eee;
  color: #ffe005;
  text-decoration: none;
}

#nav_main ul li#current {

}

#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 {
  color: #ffe005;
  text-decoration: none;
}

}