/**
 * "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.3
 * @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:hidden;
	display:inline;
	/* (en|de) Bugfix:IE - collapsing horizontal margins */
    position:relative;
	line-height:0;
	background-color: #CCC;
	font-size: 75%;
	float: left;
	min-height:24px;
  }

  .hlist ul {
	/* (en|de) Bugfix:IE - Doubled Float Margin Bug */
    display:inline;
	float:left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding: 0px;
  }

  .hlist ul li {
	/* (en|de) Bugfix:IE - Doubled Float Margin Bug */
    display:inline;
	float:left; /* LTR */
	font-size:1.0em;
	line-height:1em;
	list-style-type:none;
	padding: 0;
	margin: 0;
  }

  .hlist ul li a,
  .hlist ul li strong {
	background:transparent;
	color:#666;
	display:block;
	font-size:1.3em;
	font-weight:normal;
	text-decoration:none;
	width:auto;
	padding-top: 0.7em;
	padding-right: 2em;
	padding-bottom: 0em;
	padding-left: 2em;
	min-height:24px;
  }

  .hlist ul li a:focus,
  .hlist ul li a:hover,
  .hlist ul li a:active  {
	text-decoration:none;
	outline: 0 none;
	background-color: #C1C1C1;
	color: #0168AB;
}

  .hlist ul li.active a {
	background-color: #B2B2B2;
	text-decoration: underline;
	color: #000;
  }

  .hlist ul li.active strong,
  .hlist ul li.active a:focus,
  .hlist ul li.active a:hover,
  .hlist ul li.active a:active {
	background-color: #B2B2B2;
	text-decoration: underline;
	color: #000;
}
}
