/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Horizontal list navigation "Shiny Buttons"
 * (de) Horizontale Navigationsliste "Shiny Buttons"
 *
 * @copyright       Copyright 2005-2009, 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.2
 * @revision        $Revision:392 $
 * @lastmodified    $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $
 */

@media all
{
  .hlist {
    /* (en) containing floats in IE */
    /* (de) Einfassen der Floats im IE */
    width:100%;
    overflow:visible;
    /* (en) containing floats in all other browsers */
    /* (de) Einfassen der Floats in allen anderen Browsern */
    float:left;
    display:inline;
    /* (en|de) Bugfix:IE - collapsing horizontal margins */
    position:relative;
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
   
    line-height:0;
    padding-bottom: 3px;
  }

  .hlist ul {
    margin:0;
    padding:0;
    /* (en|de) Bugfix:IE - Doubled Float Margin Bug */
    display:inline;
    float:left; /* LTR */
  }

  .hlist ul li {
    border-right:1px #979da7 solid;
    /* (en|de) Bugfix:IE - Doubled Float Margin Bug */
    display:inline;
    float:left; /* LTR */
    font-size:1.0em;
    line-height:1em;
    list-style-type:none;
    margin:0;
    padding:0;
    background: transparent;
	position: relative;
  }

  .hlist ul li a,
  .hlist ul li strong {
    background:transparent;
    color:#979da7;
    display:block;
    font-size:1.0em;
    margin:0;
    padding:0.3em 1.3em 0.3em 1.3em;
    text-decoration:none;
    width:auto;
  }

  .hlist ul li a:focus,
  .hlist ul li a:hover,
  .hlist ul li a:active  {  text-decoration:none; color: #003662}
  
  .hlist ul li:hover {
	visibility:	inherit; /* fixes IE7 'sticky bug' */
  }

  .hlist ul li.active { }
  
  .hlist ul li a.active { color: #003662; }
  
  
  .hlist ul li.active a:focus,
  .hlist ul li.active a:hover,
  .hlist ul li.active a:active { text-decoration:none; }
}

/* ##########################
** ### Accessible menu ######
** ##########################
*/
@media screen, print {
.hlist dfn, 
.hlist .hidden {position:absolute; left:-1000em; width:20em;}
}
