@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
{
  #topnav {
    /* (en) containing floats in IE */
    width: 100%; 
    overflow: hidden;
    /* (en) containing floats in all other browsers */
    float: left;
    display: inline;
  }

  #topnav ul {
    /* (en|de) Bugfix: IE - Doubled Float Margin Bug */
    display: inline;
    float: right;
    margin: 0;
    /* (en) Right margin of the first button  */
    margin-right: 50px;
    padding: 0;
  }

  #topnav ul li {
    /* (en|de) Bugfix: IE - Doubled Float Margin Bug */
    display: inline;
    float: left;
    line-height: 1em;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  #topnav ul li a,
  #topnav ul li strong {
    background: transparent;
    display: block;
    margin: 0;
    padding: 0.5em 0.8em 0.5em 0.8em;
    text-decoration: none;
    width: auto;
  }

  #topnav ul li a:focus,
  #topnav ul li a:hover,
  #topnav ul li a:active  { background: #eee; color: #333; text-decoration: none; }

}