@CHARSET "UTF-8";
/**
 *     MENU BAR
 */
div.nav-bar {
    background: #dfdfdf;
    margin-bottom: 5px;
    cursor: default;
    line-height: 12px;

}
span.loggedas {
    display: block;
    float: right;
    margin-right: 5px;
    margin-top: 7px;
}
nav ul, nav ol {
    margin: 0;
}
nav ul.navigator {
}
nav ul ul {
    display: none;
}
nav ul ul {
   /* background: #5f6975; */
    background: #dfdfdf;
    border-radius: 0px;
    padding: 0;
    position: absolute;
    top: 100%;
}
nav ul li:hover > ul {
    display: block;
}
nav ul {
    background: #dfdfdf;
    padding: 0 5px;
    border-radius: 5px;
    list-style: none;
    position: relative;
    display: inline-table;
}
nav ul:after {
    content: "";
    clear: both;
    display: block;
}
nav ul li {
    float: left;
}
nav ul li:hover {
    background: #4b545f;
}
nav ul li:hover > a {
    cursor: default;
    color: #fff; 
}

nav ul li a {
    cursor: default;
    display: block;
    padding: 5px 8px;
    color: #757575;
    text-decoration: none;
}
nav ul ul li {
    float: none;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #cfcfcf;
    border-left: 1px solid #efefef;
    border-right: 1px solid #cfcfcf;
    position: relative;
}
nav ul ul li a {
    cursor: default;
    padding: 5px 8px;
    color: #757575;

/*    color: #fff; */
}
nav ul ul li a:hover {
    background: #4b545f;
    color: #ffffff;
}
nav ul ul ul {
    position: absolute;
    left: 100%;
    top:0;
}
