@charset "UTF-8";
/**
* "Yet Another Multicolum Layout" - (X)HTML/CSS Framework
* "YAML for Joomla Template" - http://www.joomla-template-yaml.de
*
* (en) Horizontal list navigation "Shiny Buttons"
* (de) Horizontale Navigationsliste "Shiny Buttons"
*
* @copyright       Copyright 2005-2007, Dirk Jesse
* @license         CC-A-NC 2.0 (http://creativecommons.org/licenses/by-nc-sa/2.0/de/),
*                  YAML-C (http://www.yaml.de/en/licence.html)
* @link            http://www.yaml.de
* @package         yaml
* @version         3.0
* @revision        $Revision: 63 $
* @lastmodified    $Date: 2007-06-25 15:47:28 +0200 (Mo, 25 Jun 2007) $
*/

@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:right;
    display:inline;
	background-color: #3c3bd1;
   /* background: #446993 url("gfx/shiny_buttons/background.gif") repeat-x top right;
    line-height: 0px;*/
  }
  
  #nav_main ul {
    float:right;
      /* (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-right:5px;
    /*border-left: 1px #222 solid;
    border-right: 1px #444 solid;*/
  }
  
  #nav_main ul li {
    float: right;
      /* (en|de) Bugfix: IE - Doubled Float Margin Bug */
    display:inline;
    margin: 0;
    padding: 0;
    font-size: 1em;
    line-height: 1em;
    list-style-type: none;
/*	padding:5px 0 5px 0 ;*/
    /*border-left: 1px #444 solid;
    border-right: 1px #222 solid;*/
  }
  
  #nav_main ul li a,
  #nav_main ul li strong {
    display:block;
    width: auto;
    font-size: 1.2em;
    font-weight: bold;
    background: transparent;
    text-decoration: none;
    color: #fff;
    margin: 0;
    padding: 0.5em 0.8em 0.5em 0.8em;
	text-decoration:underline;
  }
  
  #nav_main ul li a:focus,
  #nav_main ul li a:hover,
  #nav_main ul li a:active  {
    /*background: transparent url("gfx/shiny_buttons/background_active.gif") repeat-x top right;*/
    color: #fff;
    text-decoration: none;
	background-color:#000080;
	
  }
  
  #nav_main ul li#current {
/*  border-left: 1px #444 solid;
    border-right: 1px #222 solid;
	background: transparent url("gfx/shiny_buttons/background_active.gif") repeat-x top right;*/
   background-color:#ffffff;
  }
  
  #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: #000;
    background: transparent;
	text-decoration: none;
  }

}