/*05_nav.css*/
nav#nav_nav {
    background-color:var(--05_nav_nav_bgColor);
	border-right: 2px solid var(--06_layout_main_border_color);
	border-left: 2px solid var(--06_layout_main_border_color);
	border-bottom-left-radius:10px;
}

ol#nav_desktop_ol {
    list-style: none;
	position:sticky;
	 top:100px;
	 padding-left:15px;
	 padding-right:10px;
}

ol#nav_handy_ol {
	display:none;
}

div.nav_li_div_cls {
	display: inline-block;
    align-items: center;
	margin-top:20px;
	color:rgb(var(--00_root_color_grundfarbe));	
	vertical-align:bottom;
	white-space: nowrap;
}

a.nav_li_div_a_cls {
	display: inline-block;
    cursor:pointer;
    text-decoration: none;
	padding-right:7px;
	margin-bottom:4px;
}

li.subnav_li_cls {

    align-items: center;
    width: 100%;
    margin-left: -30px;
	padding-top:20px;
}

div.subnav_li_div_cls {
    box-sizing: border-box;
    white-space: nowrap;/*kein Umbruch*/
    margin-left: 0;
	font-style:italic;
}

.nav_li_div_aktiv_cls {
    border-bottom-color:var(--05_nav_border_bottom_color);
	color:rgb(var(--00_root_color_kontrast_dark));
	border-bottom:3px solid var(--04_header_banner_bgColor);
}

.nav_li_div_passiv_cls {
	color:rgb(var(--00_root_color_grundfarbe));	
	border-bottom:3px solid transparent;
}

.subnav_li_div_aktiv_cls {
	color:rgb(var(--00_root_color_kontrast_dark));
	color:red;
}

.subnav_li_div_passiv_cls {
	color:rgb(var(--00_root_color_grundfarbe));
}


@media (max-width: 1199px) and (min-width: 769px){
	


}

