/**
 * "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.1
 * @revision        $Revision: 724 $
 * @lastmodified    $Date: 2012-03-03 11:45:41 +0100 (Sa, 03 Mrz 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;
		margin: 0;
		padding:0;

	}

	.ym-hlist ul {
		/* (en|de) Bugfix:IE - Doubled Float Margin Bug */
		display:inline;
		float:left; /* LTR */
		line-height: 1em;
    margin: 0;
		padding:0;
	}

	.ym-hlist ul li {
		/* (en|de) Bugfix:IE - Doubled Float Margin Bug */
		display:inline;
		float:left; /* LTR */
		font-size:1em;
		line-height:1em;
		list-style-type:none;
	}

	.ym-hlist ul li a,
	.ym-hlist ul li strong {
		display:block;
		font-size:1em;
		line-height: 2em;
		padding: 0;
		font-weight:normal;
		text-decoration:none;
		width:auto;
	}

	.ym-hlist ul li a:focus,
	.ym-hlist ul li a:hover,
	.ym-hlist ul li a:active  {
		text-decoration:none;
		outline: 0 none;
	}

	.ym-hlist ul li.active {

	}

	.ym-hlist ul li.active strong,
	.ym-hlist ul li.active a:focus,
	.ym-hlist ul li.active a:hover,
	.ym-hlist ul li.active a:active {
		text-decoration:none;
	}


	/* search form -------------------------------------- */
	.ym-searchform {
		float:right;
		display: inline;
		position:relative;
	}

	.ym-searchform .ym-searchfield {
		color:rgb(195,195,195);
		background-color:rgb(115,115,115);
		line-height: 1.714em;
		height: 1.714em;
		margin:6px -3px 6px 0;
		padding: 0 0.25em 0 1em;
		width: 11em;
		outline: none;
		font-size:1em;
		float:left;
		color:white !important;

		-webkit-border-radius:0.286em;
		-moz-border-radius:0.286em;
		border-radius:0.286em;
		border:none;
	}

	.ym-searchform .ym-searchbutton {
		color:rgb(195,195,195);
		background-color:rgb(115,115,115);
		cursor: pointer;
		display: inline-block;
		font-size: 1em;
		line-height: 1.714em;
		padding: 0.15em;
		border: none;
		text-shadow: 0 1px 1px rgba(0,0,0,.5);
		margin:6px 0;
		-webkit-border-radius:0.286em;
		-moz-border-radius:0.286em;
		border-radius: 0 0.286em 0.286em 0;
	}
.ym-searchform .ym-searchbutton:hover,
.ym-searchform .ym-searchbutton:active {
		background-color:rgb(45,45,45);
	}
	.ym-searchform .ym-searchlabel {
		width:33px;
		height:22px;
		color:rgb(195,195,195);
		position:absolute;
		top:38px;
		right:0;
		
		-webkit-border-radius:0.286em;
		-moz-border-radius:0.286em;
		border-radius:0 0 0.286em 0.286em;

	}
}