@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: 2007-10-05 19:05:21 +0200 (Fr, 05 Okt 2007) $
 */

@media all
{
  #nav_main {
    /* (en) This image is mainly transparent */
    /* (de) Dieses Bild ist größtenteils transparent */
    /*background: transparent url("images/sliding_door/round/bg.gif") repeat-x bottom;*/
    /*float: left;
    width: 100%;*/
    height: 38px;
  }

  #nav_main ul {
    line-height: 1.0em;
    list-style: none;
    margin: 0;
    /*padding: 0 0 0 50px;*/
    padding: 0;
    white-space: nowrap;
  }

  #nav_main li {
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
    background: #e0ecf8 url("images/sliding_door/round/left.gif") no-repeat top left;
    border-bottom: 0px solid transparent;
    float: left;
    margin: 0;
    /*padding: 0 0 0 3px;*/
    padding: 0;
    height: 38px;
  }

  #nav_main a,
  #nav_main strong {
    /* (en) This image is mainly transparent */
    /* (de) Dieses Bild ist größtenteils transparent */
    background: transparent url("images/sliding_door/round/right.gif") no-repeat top right;
    height: 28px;
    color: #fff;
	font-family: arial, sans-serif;
	font-size:1.05em;
    display: block;
    font-weight: bold;
    padding: 10px 7px 0px 7px;
    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 */
  }

  /**
   * @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*/ {
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
    /*background-color: #fff;*/
    background-position: 0 -150px;
  }

	/*Comportamento hover s/ li.current e li.active*/
	
	  	/*#nav_main ul li.active:focus,*/
  		#nav_main ul li.active:hover,
  		#nav_main ul li.active:active,
  		/*#nav_main ul li.current:focus,*/
  		#nav_main ul li.current:hover,
  		#nav_main ul li.current:active {
  		    /*background: white url("images/sliding_door/round/left_on.gif") no-repeat top left;
    border: 0;*/
    		background: transparent url("images/sliding_door/round/left.gif") no-repeat 0 -150px;
    		border:0;
    		color:#fff;
  		}
  		/*#nav_main .active a:focus,*/
  		#nav_main .active a:hover,
  		/*#nav_main .active a:active,*/
  		/*#nav_main .current a:focus,*/
  		#nav_main .current a:hover/*,
  		nav_main .current a:active*/ {
			background: transparent url("images/sliding_door/round/right.gif") no-repeat 100% -150px;
			border:0;
			color:#fff;
  		}
  		
  /*#nav_main li:focus a,*/
  #nav_main li:hover a/*,
  #nav_main li:active a*/ { background-position: 100% -150px; }

  /*#nav_main a:focus,*/
  #nav_main a:hover/*,
  #nav_main a:active*/ { background-color: transparent; color: #/*223*/fff; }

	#nav_main li.active {
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
    background: #fff url("images/sliding_door/round/left_on.gif") no-repeat top left;
    border: 0;
  }
    #nav_main li.active a,
	#nav_main li.active strong {
    /* (en) This image is mainly transparent */
    /* (de) Dieses Bild ist größtenteils transparent */
    background: transparent url("images/sliding_door/round/right_on.gif") no-repeat top right;
    color: #000/*334*/;
    font-weight: bold;
    /*padding-bottom: 4px;
    padding-top: 5px;*/
    padding-bottom: 0px;
    padding-top: 10px;
  }
	
  #nav_main li.current {
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
    /*background: white url("images/sliding_door/round/left_on.gif") no-repeat top left;*/
    border: 0;
	background: transparent url("images/sliding_door/round/current.gif") no-repeat bottom;
  }
  #nav_main li.current .subnavOn {
    background: white url("images/sliding_door/round/left_on.gif") no-repeat top left;
  }
  #nav_main li.current a,
  #nav_main li.current strong {
    /* (en) This image is mainly transparent */
    /* (de) Dieses Bild ist größtenteils transparent */
    /*background: transparent url("images/sliding_door/round/right_on.gif") no-repeat top right;*/
    background: transparent url("images/sliding_door/round/current.gif") no-repeat bottom;
    color: #fff/*334*/;
    font-weight: bold;
    /*padding-bottom: 4px;
    padding-top: 5px;*/
    padding-bottom: 0px;
    padding-top: 10px;
  }
  
  #nav_main li.current .subnavOn a,
  #nav_main li.current .subnavOn strong {
  background: transparent url("images/sliding_door/round/right_on.gif") no-repeat top right;
  }
  
}