
.HeaderMenuDiv {
    position: absolute;
    top:75px;
    right:30px;

    width:1200px;
    height:24px;

    z-index: 1500;
    text-align: right;
}

.MenuElement {
    position: relative;
    display: inline-block;
    font-family: 'Titillium Web', sans-serif;
    cursor: pointer;
    /*color:white;*/
    color: #72809d;
    color: #44bee4;
    font-weight: 600;
    margin-left: 20px;
    font-size: 14px;
    /*border:1px solid red;*/
}

.MenuElement:hover {
    color:#103372;
}

.MenuElementSubMenu {
    text-align: left;
    position: absolute;
    display: none;
    color:#44bee4;
    padding:7px;
    border: 1px solid #72809d;
    background-color: #ffffff;
}

.MenuElement:hover > .MenuElementSubMenu {
    display: block;
}

.SubMenuElement {
    white-space: nowrap;
}

.SubMenuElement:hover {
    color:#44bee4;
    color:#103372;
}