/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Horizontal list navigation based on "Sliding Door II" from von "A List Apart"
 * (de) Horizontale Navigationsliste basierend auf "Sliding Door II" von "A List Apart"
 *
 * @copyright       Copyright 2005-2010, 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.3
 * @revision        $Revision:392 $
 * @lastmodified    $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $
 */

@media all
{
  .hlist {
    float:left;
    width:100%;
  }

  .hlist ul {
    margin:0;
    padding:0;
    line-height:1em;
    list-style:none;
    white-space:nowrap;
  }

  .hlist li {
    list-style-type:none !important;
    float:left; 
    margin:0;
    padding:0 10px 0 0;
  }

  .hlist a {
    color:#fff;
    display:block;
    padding:1px 13px 9px 9px;
	font-size:14px;

    /**
     * @bugfix
     * @affected   IE5.x, IE6
     * @css-for    all browsers
     * @valid      yes
     */
    width:auto; /* only IE 5.x */
    width/**/:/**/ .1em; /* only IE 6.0 */
  }

  .hlist a:link,
  .hlist a:visited { color:#fff; }

  /**
   * @bugfix
   * @affected   IE5.x, IE6
   * @css-for    all browsers
   * @valid      yes
   */
  .hlist > ul a,
  .hlist > ul strong { width:auto; }  /* for other browsers */

  .hlist a:focus,
  .hlist a:hover,
  .hlist a:active {
    background-color:#666666;
    color:#fff;
    text-decoration:none;
  }

  .hlist ul li.current_page_item a,
  .hlist ul li.current_page_item a:focus,
  .hlist ul li.current_page_item a:hover,
  .hlist ul li.current_page_item a:active {
    background-color:#666666;
  }
}