@charset "utf-8";

/* CSS Document */
#kopf_klein {
    display: none;
}

.small-logo img {
    float: left;
    display: block;
    height: 29px;
    width: auto;
}

.top_symbole {
    float: right;
    cursor: pointer;
    padding-right: 5px;
}

.top_symbole img {
    width: 32px;
    height: auto;
}

#wk_anzahl,
#wk_k_anzahl {}

.css_res_menue,
.css_k_menue {
    margin-top: -30px;
    font-size: 10px;
    margin-left: 7px;
    font-weight: bold;
}

.css_res_menue {
    display: none;
}

.css_k_menue {
    color: var(--vg_menue);
}

nav .menu_left {
    display: block;
    float: left;
    height: 20px;
    width: 200px;
}

.toggle,
#nav_wg,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
    background-color: var(--hg_menue);
    background: -webkit-gradient(linear, left top, left bottom, from(var(--hg_menue_verlauf)), to(var(--hg_menue)));
    background: -moz-linear-gradient(top, var(--hg_menue_verlauf), var(--hg_menue));
    background: linear-gradient(to top, var(--hg_menue_verlauf), var(--hg_menue));
    background-repeat: no-repeat;
}

nav .top_symbole {
    float: right;
    margin-top: 10px;
    margin-right: 10px;
}

#logo {
    display: block;
    padding: 0 30px;
    float: left;
    font-size: 20px;
    line-height: 60px;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */
nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
 nav ul menu
 {
	 
 }
 
nav ul {
    float: left;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
	
    margin: 0px;
    display: inline-block;
    float: left;
    background-color: var(--hg_menue);
    background: -webkit-gradient(linear, left top, left bottom, from(var(--hg_menue_verlauf)), to(var(--hg_menue)));
    background: -moz-linear-gradient(top, var(--hg_menue_verlauf), var(--hg_menue));
    background: linear-gradient(to top, var(--hg_menue_verlauf), var(--hg_menue));
    background-repeat: no-repeat;
}

/* Styling the links */
nav a {
    display: block;
    padding: 14px 20px;
    color: var(--vg_menue);
    text-decoration: none;
}

nav ul li ul li a {
    border-bottom: 1px solid var(--vg_menue_rahmen);
    padding: 8px 20px;
    background: var(--hg_menue);
}

nav ul li ul li:hover {
    background: var(--hg_hover_menue);
    /*	background: -webkit-gradient(linear, left top, left bottom, from(var(--hg_menue)), to(var(--hg_menue_verlauf)));
    background: -moz-linear-gradient(top, var(--hg_menue), var(--hg_menue_verlauf));
    background: linear-gradient(to top, var(--hg_menue), var(--hg_menue_verlauf));*/
    background-repeat: no-repeat;
}

/* Background color change on Hover */
nav a:hover {
    background: var(--hg_hover_menue);
    /*background: -webkit-gradient(linear, left top, left bottom, from(var(--hg_menue)), to(var(--hg_menue_verlauf)));
    background: -moz-linear-gradient(top, var(--hg_menue), var(--hg_menue_verlauf));
    background: linear-gradient(to top, var(--hg_menue), var(--hg_menue_verlauf));*/
    background-repeat: no-repeat;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 45px;
}

/* Display Dropdowns on Hover */
nav ul li:hover>ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
    z-index: 2000;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}

/* Change ' +' in order to change the Dropdown symbol */
li>a:after {
    content: ' \25BE';
}

li>a:only-child:after {
    content: '';
}

/* Media Queries
--------------------------------------------- */