@media screen { 
             /* ======================================
                Horizontale Navigation - Erste Ebene Kap. 8.5.3
                ====================================== */
	#header .mod_navigation {
		/*SUBMENU: FONTEINSTELLUNG HIER*/
		width: 100%;
		margin: 16px 0px 0px 0px; /*NAVIGATION AUSRICHTUNG*/
		font-family: Arial, Helvetica, sans-serif;
		font-stretch: condensed;
		font-weight: bold;
		background-color: transparent;
		font-size: 10.5pt;
	}
	#header .mod_navigation ul {
		float: left;
		width: 1000px; /* NAVIBREITE IM WRAPPER */
		margin: 0;
	}
	#header .mod_navigation li {
		float: left;
		list-style-type: none;
	}
	#header .mod_navigation li.first {
		border-left: none; /* Trennstrich am Anfang */
	}
	#header .mod_navigation a,#header .mod_navigation span {
		display: block;
		text-decoration: none; /* LINKS OHNE UNTERSTREICHUNG*/
		color: #000;
	}
	/* #header .mod_navigation .active,#header .mod_navigation .trail {
		color: #98200d;
	} */
	#header .mod_navigation .active {
        color: #98200d;
    }
	
	#header .level_2 a:hover,#header .mod_navigation a:focus {
		color: #ffffff; /* DROPDOWN TEXTFARBE*/
		background-color: #fff;
	}
	/* ======================================
   Horizontale Navigation - Dropdown - Kap. 8.5.5
   ====================================== */
	/* Listenelemente zweite Ebene untereinander */
	#header .level_2 li {
		clear: both;
		border: none;
		margin-left: 0px;
		width: 139px;
	}
	/* Zweite Ebene ausblenden */
	#header .level_2 {
		position: absolute;
		left: -9999px;
		top: -9999px;
		overflow: hidden;
		display: inline;
		width: 0;
		height: 0;
		z-index: 10; /* "nach vorne", über den Inhaltsbereich */
	}
	/* Zweite Ebene bei MouseOver einblenden */
	#header li:hover .level_2 {
		left: auto;
		top: auto;
		margin-top: -10px;
		margin-left: 0px;
		/* 0 = richtige ausrichtung [linker rand] des dropdowns */
		overflow: hidden;
		display: block;
		width: 116px;
		height: auto;
		border-bottom: 1px solid #2D5B85;
		z-index: 10;
		background-color: #fff;
		-moz-box-shadow: 3px 3px 5px #888;
		-webkit-box-shadow: 3px 3px 5px #888;
		box-shadow: 3px 3px 5px #888;
	}
	/* Patches: hasLayout für IE6 */
	* html .mod_navigation ul,* html .mod_navigation a,* html .mod_navigation span
		{
		height: 1px;
	}
	
	.graphicalnavigation .ropic
	{
		display:none;
	}
	
	.graphicalnavigation li:hover .ropic
	{
		display:block;
	}
	
	.graphicalnavigation li:hover .nopic
	{
		display:none;
	}
	
	.graphicalnavigation li:hover li .ropic
	{
		display:none;
	}
	
	.graphicalnavigation li:hover li .nopic
	{
		display:block;
	}
	
	.graphicalnavigation li:hover li:hover .nopic
	{
		display:none;
	}
	
	.graphicalnavigation li:hover li:hover .ropic
	{
		display:block;
	}
}