@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Horizontal list navigation "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.4
 * @revision        $Revision: 130 $
 * @lastmodified    $Date: 2007-10-05 19:05:21 +0200 (Fr, 05 Okt 2007) $
 */

@media all
{
  #nav_main {
    /* (en) containing floats in IE */
    width: 100%;
    overflow: hidden;
    /* (en) containing floats in all other browsers */
    float: left;
    display: inline;
    /* (en) Repeat the main shiny button colour */
    background: #c0c0c0 url("images/shiny_buttons/background1.gif") repeat-x center right;
    border-top: 1px #fff solid;        /* KL button top edge */
    border-bottom: 1px #bb7 solid;     /* KL button bottom edge */
  }

  #nav_main ul {
    border-left: 1px #bb7 solid;       /* KL before first button */
    border-right: 1px #fff solid;      /* KL after last button */
    /* (en|de) Bugfix: IE - Doubled Float Margin Bug */
    display: inline; 
    float: left; 
    margin: 0;
    /* Width of left margin before the first button  */
    margin-left: 194px;
    padding: 0;
  }

  #nav_main ul li {
    border-left: 1px #fff solid;       /* KL button edge */
    border-right: 1px #bb7 solid;       /* KL button edge */
    /* (en|de) Bugfix: IE - Doubled Float Margin Bug */
    display: inline; 
    float: left; 
    margin: 0;
  }

  #nav_main ul li a {
    font-weight: bold;
    margin: 0;
    text-decoration: none;
  display: block;
    padding-left: 8px ;
    padding-right: 8px ;
    padding-top: 6px ;
    padding-bottom: 4px ;
    width: auto;
  }

  #nav_main ul li a:focus,
  #nav_main ul li a:hover,
  #nav_main ul li a:active  {
    background: #ffd;              /* KL hover background */
    color: #921;                   /* KL hover text colour */
    text-decoration: none;
  }

}
