@charset "utf-8";


ul#nav_global
{
	position: absolute;
	left: 20px;
	top: 50px;
	z-index: 75;
}
	ul#nav_global li.main
	{
		float: left;
	}
		ul#nav_global li.main a.main
		{
			text-transform: uppercase;
			font-size: 1.2em;
			line-height: 2em;
			display: block;
			height: 39px;
			padding: 0px 15px 0px 15px;
		}
		/* aktiv */
		ul#nav_global li.active a.main
		{
			background: #A0BDDC;
			color: #1C4B84;
			border-bottom: 1px solid #4C7AAC;
		}	
	
	
	/* Ebene 1 */
	ul#nav_global li.main ul.sub
	{
		position: absolute;
		top: 40px;
		width: 180px;
		background: #A0BDDC;
	}
	
	ul#nav_global li.main ul.sub li.sub a
	{
		display: block;
		font-size: 1em;
		font-weight: bold;
		text-transform: uppercase;
		color: #024181;
		padding: 10px 10px 10px 15px;
		margin: 0px;
		border-bottom: 1px solid #4C7AAC;
	}
	ul#nav_global li.main ul.sub li.sub a:hover,
	ul#nav_global li.main ul.sub li.sub.active a
	{
		background: #c4d6e9;
	}
	
	
	/* Ebene 2 */
	ul#nav_global ul.sub2
	{
		position: absolute;
		top: 0px;
		left: 180px;
		width: 200px;
		background: #c4d6e9;
		padding: 20px;
	}
	ul#nav_global li.sub2
	{
		float: left;
		width: 200px;
		padding: 0px 0px 20px 0px;
		margin: 0px 10px 0px 0px;
	}
	ul#nav_global li.sub2 a
	{
		background: #024181 !important;
		padding: 5px 10px !important;
		color: #fff !important;
		border-bottom: 1px solid #4C7AAC;
	}
		ul#nav_global li.sub.big ul.sub2
		{
			width: 631px;
			padding: 20px 10px 20px 20px;
		}
	
	/* Ebene 3 */
	ul#nav_global li.sub3 a
	{
		text-transform: none !important;
		padding: 3px 0px 3px 10px !important;
		font-weight: normal !important;
		background: none !important;
		color: #2c5888 !important;
		border-bottom: 1px solid #8daed1 !important;
	}
	ul#nav_global li.sub3 a:hover
	{
		color: #000 !important;
	}

	
	/* Ebene 1 und 2 ausblenden */
	ul#nav_global li.main ul.sub,
	ul#nav_global li.main ul.sub2
	{		
		display: none;
	}
	
	/* Ebene 1 einblenden */
	ul#nav_global li.active ul.sub
	{
		display: block;
	}
	
	/* Ebene 2 einblenden */
	ul#nav_global li.sub.active ul.sub2
	{
		display: block;
	}
	
	
	li.clear
	{
		clear: both;
		width: 1px;
		height: 1px;
	}
	
	
	ul#nav_global ul.sub a.last
	{
		border-bottom: 0 !important;
	}
	
	
	
	
