.menucontainer {
    display:flex;
    align-items:flex-start;
    flex-direction: column;
    position:relative;
    z-index:850;
}

.menutitle{
    font-family: "Tahoma";
    font-weight: bold;
    background-color: transparent;
    font-style:normal;
    font-size: 14px;    
    text-shadow: 1px 1px 2px #000;
    color: #eee;
    height:24px;
    padding-top:0px;
    padding-left:6px;
    padding-right:6px;
    margin-right:2px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    outline:none;
    z-index:850;
    border-radius:3px;
}

.menutitle:hover{
    background-color: #333;
}

.menutitleopen{
    font-family: "Tahoma";
    font-weight: bold;
    background-color: #333;
    font-style:normal;
    font-size: 14px;    
    text-shadow: 1px 1px 2px #000;
    color: #eee;
    height:24px;
    padding-top:0px;
    padding-left:6px;
    padding-right:6px;
    margin-right:2px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    outline:none;
    z-index:850;
    border-radius:3px;
}

.menucontent {
    display:none;
    flex-direction:column;
    align-items:flex-start;
    position:absolute;
    top:100%;
    box-sizing: border-box;
    z-index:inherit;
    background-color: #eee; 
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);  
    white-space: nowrap;  
    border-radius:3px;    
    z-index:996; 
}


.submenucontent {
    display:none;
    position:absolute;
    background-color: #eee;
    left:95%;
    flex-direction:column;
    align-items:flex-start;
    white-space:nowrap;
    box-sizing: border-box;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);  
    z-index:995;
}

.menuoption {
    display:flex;
    height:20px;    
    user-select:none;
    align-items:flex-start;
    width:100%;
    z-index: 992;    
    padding: 2px 10px 0px 5px;
    box-sizing: border-box;
    text-decoration: none;    
    white-space: nowrap; 
    color: black; 
    cursor: default;
    border-radius:3px; 
}


.menuoption:hover {
    background-color: #ccc;
}

.menuoption:active {
    background-color: #999;
}
.menuoptiondisabled {
    display:flex;
    height:20px;    
    user-select:none;
    align-items:flex-start;
    width:100%;   
    z-index: inherit;    
    padding: 2px 5px 0px 5px;
    box-sizing: border-box;
    border-radius:3px;
    text-decoration: none;    
    white-space: nowrap;      
    background-color: #eee !important;
    color: #999 !important;
    cursor: default !important;
}

.menudivider {
    position:relative;
    display:flex; 
    width:100%;  
    height:11px; 
    user-select:none;
    z-index: 992;    
    border: 5px solid #eee;
    box-sizing:border-box;
    background: #ccc; 
    cursor: default; 
}