@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-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.2.1
 * @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%;
    display:inline;
    /* (en|de) Bugfix:IE - collapsing horizontal margins */
    position:relative;
    line-height:0;
  }
  
  .hlist table,
  .hlist table td { border:none }

  .hlist ul {
    margin:0;
    padding:0;
    /* (en|de) Bugfix:IE - Doubled Float Margin Bug */
    display:inline;
    float:left; /* LTR */
  }

  .hlist ul li {
	position:relative;
    /* (en|de) Bugfix:IE - Doubled Float Margin Bug */
    display:inline;
    float:left; /* LTR */
    font-size:1.2em;
    line-height:1em;
    list-style-type:none;
    margin:0;
    padding-bottom:10px;
  }

  .hlist ul li a,
  .hlist ul li strong {
    background:transparent;
    color:#66b5e0;
    display:block;
    font-size:1em;
	text-transform:uppercase;
    font-weight:bold;
    margin:0;
    padding:0.5em 4.5em 0.5em 0;
    text-decoration:none;
    width:auto;
  }

  .hlist ul li a:focus,
  .hlist ul li a:hover,
  .hlist ul li a:active,
  .hlist ul li.current_page a  { color:#f29000; text-decoration:none; outline: 0 none; }

  .hlist ul li.active {}

  .hlist ul li.active strong,
  .hlist ul li.active a:focus,
  .hlist ul li.active a:hover,
  .hlist ul li.active a:active { background:transparent; color:#fff; text-decoration:none; }
}

/* Second level */

.hlist ul li ul {
	display:none;
	position:absolute;
	top:38px;
	left:0;
	padding:5px 0;
	background:#fff;
	border-left:1px solid #ebe1dc;
	border-right:1px solid #ebe1dc;
	border-bottom:1px solid #ebe1dc;
	}

.hlist ul li:hover ul {
	display:block;
}

.hlist ul li ul li{
    /* (en|de) Bugfix:IE - Doubled Float Margin Bug */
    display:inline;
    float:none;
    font-size:0.8em;
    line-height:1em;
    list-style-type:none;
    margin:0;
    padding:0;
  }
  
  .hlist ul li ul li a {
	color:#ab9d8a;
	font-size:1em;
	padding:5px 60px 5px 10px;
	text-transform:none;
  }
  
  .hlist ul li.current_page ul li a {
	color:#ab9d8a;
  }
  
  .hlist ul li.current_page ul li a:hover,
  .hlist ul li.current_page ul li a:focus,
  .hlist ul li.current_page ul li a:active{
	color:#f29000;
  }
