@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
{ 
 .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: url("/images/common_images/hlist.png") repeat-x center right;
    color:#ffffff;
    line-height: 0;
	border-top:1px solid #072453;
	border-bottom:1px solid #072453;
  }

  .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 0 0 50px; /* LTR */
    padding: 0;
    border-right: 1px #fff solid;
  }

  .hlist ul li {
    border-left: 1px #fff solid;
    /* (en|de) Bugfix: IE - Doubled Float Margin Bug */
    display: inline;
    float: left; /* LTR */
    font-size: 13px;
    line-height: 1em;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  .hlist ul li a,
  .hlist ul li strong {
    background: transparent;
    color: #ffffff;
    display: block;
    font-size: 1em;
    margin: 0;
    padding: 0.5em 1em 0.5em 1em;
    text-decoration: none;
    width: auto;
	font-weight:bold;
  }
  .hlist ul li a:visited{color: #ffffff;}
  .hlist ul li a:focus,
  .hlist ul li a:hover,
  .hlist ul li a:active  { 
  	background: url("/images/common_images/hlist-active.png") repeat-x center right;
   	color:#fff; 
	text-decoration: none; }
  
   .hlist ul li.active {
    background: url("/images/common_images/hlist-active.png") repeat-x center right;
	}
	.hlist ul li.active a{
    background: url("/images/common_images/hlist-active.png") repeat-x center right;
	color:#fff;
	}
	
		/*--------------------------------Header navigation tab----------------------------------------*/
	.nav_tab{
		display:inline;
		float:left;
		line-height:0;
		overflow:hidden;
		position:relative;
		width:940px;
	}
	.nav_tab ul{
		margin:0 auto;
		height:39px;
		border-bottom:1px solid #CCCCCC;
	} 
	.nav_tab li {
		float:left;
		padding:0.7em;
		display:inline;
		font-weight:bold;
		text-align:center;
		vertical-align:middle;
		width:113px;
		font-size:1em;
		margin:0;
	}
	.nav_tab li a {
		text-decoration: none;
		font-weight: bold;
		color:#0B6E97; /* For the regular tab */
	}
	
	.nav_tab li:hover {
		background: url(/images/common_images/nav_active.png) no-repeat; /*For the hover tab */
	}
	.nav_tab li.active{
		z-index:10;
		background: url(/images/common_images/nav_active.png) no-repeat; /* For the active tab */
	}
}