﻿@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: 343 $
 * @lastmodified    $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $
 */

@media all


 /* TOUCH VERTIKALE HAUPTNAVIGATION - VERTIKALES (NAVIGATIONS-) MENUE */
{
  .verlist {
    /* (en) containing floats in IE */
    /* (de) Einfassen der Floats im IE */
    width: 100%;
    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: #fdf4e7;
    line-height: 0;
  }

  .verlist 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;
	margin-left: 15px;
    padding: 0;
  }

  .verlist ul li {
    /* (en|de) Bugfix: IE - Doubled Float Margin Bug */
    display: inline;
    float: left; /* LTR */
    /* font-size: 108%; */
    font-size: 101%;
    line-height: 1em;
    list-style-type: none;
	width: 16em;
	height: 2em;
	margin: 0px;
	margin-right: 0.6em;
	padding: 0px;
	/*padding-top: 2px;*/
  }

 .verlist a,
 .verlist ul li span  {
    background: transparent;
    color: #ffffff;
	background-color: #3399cc;
    display: block;
    font-size: 133%;
    font-weight: bold;
    margin: 0;
	padding: 0;
    text-decoration: none;
    width: auto;
	height: 133%;
	vertical-align:absmiddle;
	line-height: 2em; /* Workaround fuer falsch/nicht interpretierte vertical-align Angabe */
	text-align: center;
  }

  .verlist ul li a:focus,
  .verlist ul li a:hover,
  .verlist ul li a:active  
	.verlist ul li span:focus,
  .verlist ul li span:hover,
  .verlist ul li span:active { background: #f1a149; color: #ffffff; text-decoration: none; }

  .verlist ul li.active a 
  .verlist ul li.active span {
    /* (en) Repeat the main color from the image */
    /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
    background-color: #f1a149;
	color: #ffffff;
    text-decoration: none;
  }

  .verlist ul li.active a:focus,
  .verlist ul li.active a:hover,
  .verlist ul li.active a:active
	.verlist ul li.active span:focus,
  .verlist ul li.active span:hover,
  .verlist ul li.active span:active { background: #3399cc; color: #ffffff; text-decoration: none; }
}

