@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.2
 * @revision        $Revision: 107 $
 * @lastmodified    $Date: 2007-08-01 18:27:14 +0200 (Mi, 01 Aug 2007) $
 */

@media all
{
  div#nav_tabs ul {
    background: url(nav_tabs_bg.gif) repeat-x bottom;
    list-style-type: none;
    margin: 0 0 2em 0;
    padding: 0 0 0 0.25em;
    width: 100%;
  }

  div#nav_tabs ul li {
    display: inline;
    float: left;
    margin: 0 0.25em 0 0;
    padding: 0 0 0 1px;
    border-bottom: 1px solid #a4a6a9;
    background: url(nav_tabs_bg2.gif) repeat-y left;
  }

  div#nav_tabs ul li.active {
    border-bottom: 1px solid #fff;
    background: url(nav_tabs_bg.gif) repeat-y left;
  }

  div#nav_tabs ul li span {
    display: block;
    width: 7.16em; 
    height: 2.75em;
    color: #838383;
    background: url(nav_tabs.gif) no-repeat top right;
    position: relative;
  }

  div#nav_tabs ul li.active span {
    background: url(nav_tabs_active.gif) no-repeat top right;
  }

  div#nav_tabs ul li a {
    position: absolute; 
    bottom: 0; 
    left: 0;
    font-size: 0.92em;
    line-height: 1.1em;
    color: #838383;
    display: block;
    width: 7.16em; 
    padding: 1.5em 0 0.3em 0.5em; 
  }

  div#nav_tabs ul li a:focus,
  div#nav_tabs ul li a:hover,
  div#nav_tabs ul li a:active {
    text-decoration: none;
    color: #333;
  }

  div#nav_tabs ul li.active a,
  div#nav_tabs ul li.active a:focus,
  div#nav_tabs ul li.active a:hover,
  div#nav_tabs ul li.active a:active {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
}