@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-2009, 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.1
 * @revision        $Revision: 1.1 $
 * @lastmodified    $Date: 2009/08/07 09:44:28 $
 */

@media all {
    
.hlist {
    
    /** (en) containing floats in IE */
    /** (de) Einfassen der Floats im IE */
    overflow: hidden;
    /** (en) containing floats in all other browsers */
    /** (de) Einfassen der Floats in allen anderen Browsern */
    
    float: left;
    display: inline;
    
    /** (en|de) Bugfix: IE - collapsing horizontal margins */
    
    position: relative;
    
    /** (en) Repeat the main color from the image */
    /** (de) Wiederholung der Hauptfarbe aus der Bilddatei */
    
    background: #0D006A;
    line-height: 0;
}

.hlist ul {

    /** (en|de) Bugfix: IE - Doubled Float Margin Bug */
    
    display: inline;
    float: left; /* LTR */
    
    /** (en) Left margin of the first button  */
    /** (de) Abstand des ersten Buttons vom linken Rand  */
    
    margin: 0; /* LTR */
    padding: 0;
	 width: 200px;
}

.hlist ul li {
    border-right: 1px #FFF solid;
    
    /** (en|de) Bugfix: IE - Doubled Float Margin Bug */
   
    display: inline;
    float: left; /* LTR */
    list-style-type: none;
    margin: 0;
    padding: 0;
	 font-size: 11px;
}
.hlist ul li {
	width: 54px;
}

.hlist ul li.last {
	width: 89px;
} 

.hlist ul li a,
.hlist ul li strong {
   background: transparent;
   display: block;
   margin: 0;
   text-decoration: none;
	color:#FFFFFF;
	font-weight:bold;
	text-decoration:none;
	line-height: 30px;
	text-align: center;
}

.hlist ul li a:hover,
.hlist ul li.active a:hover,
.hlist ul li.active strong:hover {
    background: #F8B500;
    color: #FFF;
    text-decoration: none;
}

.hlist ul li.active {
    
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
    
    background: transparent;
}


.hlist ul li.active a:focus,
.hlist ul li.active a:active,
.hlist ul li.active strong {
    background: transparent;
    color: #F8B500;
    text-decoration: none;
}

/** end of @media */

}