@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" for Drupal
 *
 * (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 2006-2009, Alexander Hass
 * @license         http://www.yaml-fuer-drupal.de/en/terms-of-use
 * @link            http://www.yaml-for-drupal.com
 * @package         yaml-for-drupal
 * @version         6.x-3.1.0.12
 * @lastmodified    2009-06-07
 */

@media all
{
  .hlist {
    background-color: transparent;
	position: relative;
    /*top: -200px;
	left: 90px;
	width: 970px;*/
	left: -5px
  }

  .hlist ul {
    line-height: 1em;
    list-style: none;
    margin: 0;
    /*padding: 0 0 0 20px;  LTR */
    white-space: nowrap;
  }

  .hlist li {
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
    list-style-type: none !important;
    /*background: #e0ecf8 url("images/sliding_door/round/left.png") no-repeat top left;*/
    float: left; /* LTR */
    margin: 0;
    padding: 0 0 0 1px;
  }

  .hlist a {
    /* (en) This image is mainly transparent */
    /* (de) Dieses Bild ist größtenteils transparent */
    /*background: transparent url("images/sliding_door/round/right.png") no-repeat top right;*/
    color: #3F6B9D;
    display: block;
    font-weight: normal;
    padding: 5px 7px 3px 5px;
    text-decoration: none;
    text-transform: none;

    /**
     * @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 { background-color: transparent; color: #3F6B9D; }

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

  .hlist ul li:focus,
  .hlist ul li:hover,
  .hlist ul li:active {
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
    background-color: #c4d0dc;
    background-position: 0 -150px;
  }

  .hlist li:focus a,
  .hlist li:hover a,
  .hlist li:active a { background-position: 100% 0px; }

  .hlist a:focus,
  .hlist a:hover,
  .hlist a:active { background-color: transparent; color: #223; text-decoration: none; }

  .hlist li.active,
  .hlist ul li.active:focus,
  .hlist ul li.active:hover,
  .hlist ul li.active:active {
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei 
    background: white url("images/sliding_door/round/left_on.png") no-repeat top left;*/
    border: 0 none;
  }

  .hlist li.active a {
    /* (en) This image is mainly transparent */
    /* (de) Dieses Bild ist größtenteils transparent 
    background: transparent url("images/sliding_door/round/right_on.png") no-repeat top right;*/
    color: #3F6B9D;
	text-transform: uppercase;
    padding-bottom: 11px;
    padding-top: 5px;
	font-weight: bold;
	background-color: #FFF;
	height: 12px;
  }

  /* (en) Repeat the main color from the header above the navigation */
  /* (de) Wiederholung der Hauptfarbe aus dem Header oberhalb der Navigation */
  #header { background: transparent url("../../images/bg_header2.jpg") no-repeat;}
}
