/**
 * "Yet Another Multicolumn Layout" - YAML CSS Framework
 *
 * (en) Horizontal list navigation "hlist"
 * (de) Horizontale Navigationsliste "hlist"
 *
 * @copyright       Copyright 2005-2012, Dirk Jesse
 * @license         CC-BY 2.0 (http://creativecommons.org/licenses/by/2.0/),
 *                  YAML-CDL (http://www.yaml.de/license.html)
 * @link            http://www.yaml.de
 * @package         yaml
 * @version         v4.0.2
 * @revision        $Revision: 743 $
 * @lastmodified    $Date: 2012-10-23 23:01:14 +0200 (Di, 23 Okt 2012) $
 */

@media all {

	.ym-hlist {
		/* (en) containing floats in IE */
		/* (de) Einfassen der Floats im IE */
		width:100%;
		overflow:hidden;
		/* (en|de) Bugfix:IE - collapsing horizontal margins */
		position:relative;
		line-height:1em;
		background: transparent;
	}

	.ym-hlist ul {
		margin:0;
		padding: 0;
		/* (en|de) Bugfix:IE - Doubled Float Margin Bug */
		display:inline;
		float:left; /* LTR */
	}

	.ym-hlist ul li {
		/* (en|de) Bugfix:IE - Doubled Float Margin Bug */
		display:inline;
		float:left; /* LTR */
		font-size:1.0em;
		list-style-type:none;
		margin: 0;
		padding:0;
		line-height: 58px;
		height: 58px;
	}

	.ym-hlist ul li a,
	.ym-hlist ul li strong {
		background:transparent;
		color:#000;
		display:block;
		font-size:16px;
		padding: 0;
		font-weight:normal;
		text-decoration:none;
		width:auto;
		text-transform:uppercase;
		padding:0 8px 0 12px;
		border-right: 1px solid #CCCCCC;
	}

	.ym-hlist ul li a:focus,
	.ym-hlist ul li a:hover,
	.ym-hlist ul li a:active,
	.ym-hlist ul.seknav li a:focus,
    .ym-hlist ul.seknav li a:hover,
    .ym-hlist ul.seknav li a:active  {
		color: #e30613;
		text-decoration:none;
		outline: 0 none;
	}

	.ym-hlist ul li.active {
		color: #e30613;
	}

	.ym-hlist ul li.active-trail strong,
	.ym-hlist ul li.active-trail a{
		background:transparent;
		color:#e30613;
		text-decoration:none;
	}


    /* subnav ------------------------------------------- */

   .ym-hlist ul.seknav{
       font-family:Arial;
       float: right;

   }

   .ym-hlist ul.seknav li {
        line-height: 1em;
        height: auto;
   }

   .ym-hlist ul.seknav li a {
        border-right: 1px solid #CCCCCC;
        color: #676767;
        display: inline;
        padding: 0 3px;
        font-size:12px;
        color: #676767;
        text-transform: none;
   }

   .ym-hlist ul.seknav li.first a,
   .ym-hlist ul li.first a {
        padding-left: 0;
   }
   .ym-hlist ul.seknav li.last a,
   .ym-hlist ul li.last a {
        border-right: none;
   }

	/* search form -------------------------------------- */
	.ym-searchform {
		display: inline;
	}

    #search-block-form input.form-text {
        background: url("../../images/sprite-search-shadow.png") no-repeat scroll 0 0 transparent;
        border: medium none;
        color: #999999;
        font-size: 12px;
        font-style: italic;
        height: 19px;
        line-height: 12px;
        padding: 1px 2px 1px 20px;
        width: 191px;
    }
    .ym-searchform .form-actions{display:none;}
    #search-form .form-submit {
        float: right;
        margin-right: 0;
        margin-top: 12px;
        width: 10em;
    }
}