.menu {
    list-style: none;
    margin-top: 12px;
    color: white;
    position: relative;
    display: inline-table;
}
.menu:after {
    content: '';
    clear: both;
    display: block;
}
.menu ul {
    display: none;
    position: absolute;
    padding: 0;
    top: 100%;
}
.menu ul li {
    list-style: none;
    float: none;
    position: relative;
    z-index: 99999;
}
.menu li {
    border-right: white solid thin;
    font-family: lato, sans-serif;
    font-weight: 400;
    font-size: 13px;
    padding-top: 8px;
    padding-bottom: 6px;
    float: left;
    padding: 7px 15px;
}
.menu li:last-child {
    border-right: none;
}
.menu li a {
    display: block;
}
.menu li:hover > ul {
    display: block;
}
.menu li:hover > ul li {
    background: #F6323E;
}
.menuBar {
    background: #F6323E;
    box-shadow: 0px 3px 10px #AAAAAA;
    height: auto;
}