﻿@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

/* HORIZONTALE HAUPTNAVIGATION - WAAGRECHTES MENUE */
{
  .hlist {
    /* (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: #ffffff;
    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;
	margin-left: 15px;
    padding: 0;
  }

  .hlist 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;
	min-width: 8em;
	height: 2em;
	margin: 0px;
	margin-right: 0.6em;
	padding: 0px;
	/*padding-top: 2px;*/
  }

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

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

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

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

/* NAVIGATION IN LINKER SPALTE */
ul.navi {
	margin: 0 0 1em 0;
	padding: 0px;
}

li.navi-1 {
	margin: 0px;
	padding: 0px;
    list-style-type: none;
}

li.navi-spacer {
	margin: 0px;
	padding: 0px;
    list-style-type: none;
	line-height:0.5em;
}  

li.navi-2 {
	margin: 0px;
	padding: 0px;
	padding-left: 15px;
    list-style-type: none;
} 
  
li.navi-3 {
	margin: 0px;
	padding: 0px;
	padding-left: 30px;
    list-style-type: none;
}

a.navi-no {
	color: #000000;
	font-weight: normal;
	text-decoration:none;
}
a:link.navi-no {
	color: #000000;
	font-weight: normal;
	text-decoration:none;
}
a:visited.navi-no {
	color: #000000;
	font-weight: normal;
	text-decoration:none;
}
a:hover.navi-no {
	color: #888888;
	font-weight: normal;
	text-decoration:none;
}
a:active.navi-no {
	color: #888888;
	font-weight: normal;
	text-decoration:none;
}

a:focus.navi-cur {
	color: #888888;
	font-weight: bold;
	text-decoration:none;
}
a:link.navi-cur {
	color: #000000;
	font-weight: bold;
	text-decoration:none;
}
a:visited.navi-cur {
	color: #000000;
	font-weight: bold;
	text-decoration:none;
}
a:hover.navi-cur {
	color: #888888;
	font-weight: bold;
	text-decoration:none;
}
a:active.navi-cur {
	color: #888888;
	font-weight: bold;
	text-decoration:none;
}
a:focus.navi-cur {
	color: #888888;
	font-weight: bold;
	text-decoration:none;
}

/* Breadcrumb */
.breadcrumb ul {
	display: inline;
	margin: 0px;
	padding: 0px;
}

.breadcrumb ul li {
	display: inline;
	margin: 0px;
	padding: 0px;
    list-style-type: none;
}

/* Footer */
#footer ul {
	display: inline;
	margin: 0px;
	padding: 0px;
}

#footer ul li {
	display: inline;
	margin: 0px;
	padding: 0px;
    list-style-type: none;
}

