@charset "UTF-8";
/**
 * "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-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.4
 * @revision        $Revision: 130 $
 * @lastmodified    $Date: 2008-04-02 18:35:00 +0700 (Mi, 02 Apr 2008) $
 */

@media all
{
  #nav_main {
    /* (en) This image is mainly transparent */
    /* (de) Dieses Bild ist größtenteils transparent */
    float: left;
	width: 100%;
  }

  #nav_main ul {
	line-height: 1em;
	list-style: none;
	margin: 0;
	padding: 6px 0 0 184px;
	white-space: nowrap;
  }

  #nav_main li {
	float: left;
	margin: 0;
	padding: 2px 16px 0 16px;
	background-image: url(../images/nav_linie.gif);
	background-repeat: no-repeat;
	background-position: right 6px;
  }

  #nav_main a,
  #nav_main strong {
	color: #626163;
	display: block;
	font-weight: normal;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.9em;
	font-weight: bold;
	letter-spacing: 0.1em;
	/**
     * @bugfix
     * @affected   IE5.x, IE6
     * @css-for    all browsers
     * @valid      yes
     */
    width: auto; /* only IE 5.x */
	width/**/:/**/ .1em; /* only IE 6.0 */
  }

  /**
   * @bugfix
   * @affected   IE5.x, IE6
   * @css-for    all browsers
   * @valid      yes
   */
  #nav_main > ul a,
  #nav_main > ul strong { width: auto; }  /* for other browsers */

  #nav_main ul li:focus,
  #nav_main ul li:hover,
  #nav_main ul li:active {}

  #nav_main li:focus a,
  #nav_main li:hover a,
  #nav_main li:active a { color:#1f1e21; }

  #nav_main a:focus,
  #nav_main a:hover,
  #nav_main a:active { color:#1f1e21; }

  #nav_main #current { color:#1f1e21; }

  #nav_main #current a,
  #nav_main #current strong { color:#1f1e21; }

}