#container-header {
    background-color: #003526 !important;
}

#container-header a.logo-v2 {
    display: table;
    margin: 0 auto;
    padding: 20px 0 10px;
    height: 100px;
    width: 184px;
}

#container-header a.logo-v2 img { max-width: 100%; }

.menu-v2 {
    list-style: none;
    display: table;
    margin: 0 auto;
    padding: 0;
}

.menu-v2::after {
    clear: both;
    content: '';
    display: table;
}

.menu-v2 > li {
    float: left;
    margin: 0 1px;
}

.menu-v2 > li.has-children,
.menu-v2 li.has-grandchildren {
    position: relative;
}
.menu-v2 > li.has-children .children {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(170,170,170);
    background: linear-gradient(0deg, rgb(170, 170, 170) 0%, rgb(255, 255, 255) 100%);
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-v2 li.has-grandchildren .grandchildren {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(170,170,170);
    background: linear-gradient(0deg, rgb(170, 170, 170) 0%, rgb(255, 255, 255) 100%);
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-v2 > li.has-children:hover .children {
    display: block;
    top: 33px;
    border-radius: 4px;
    border: 1px solid #4CA547;
}
.menu-v2 li.has-grandchildren:hover .grandchildren {
    display: block;
    list-style: none;
    left: -158px;
    top: 6px;
    border-radius: 4px;
    border: 1px solid #4CA547;
}

.menu-v2 > li.has-children:hover .children > li {
    min-width: 130px;
    padding: 3px 5px;
}
.menu-v2 li.has-grandchildren:hover .grandchildren > li {
    min-width: 150px;
    padding: 3px 5px;
}

.menu-v2 > li.has-children .children > li > a,
.menu-v2 li.has-grandchildren .grandchildren > li > a {
    text-decoration: none;
    font-weight: 700;
}

.menu-v2 > li.has-children .children > li > a:hover,
.menu-v2 li.has-grandchildren .grandchildren > li > a:hover {
    text-decoration: underline;
}

.menu-v2 > li > a {
    background: rgb(170,170,170);
    background: linear-gradient(0deg, rgba(170,170,170,1) 0%, rgba(255,255,255,1) 100%);
    display: block;
    padding: 8px 10px;
    font-weight: 700;
    text-decoration: none;
    color: #003526;
    border: 1px solid #444;
    overflow: hidden;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.menu-v2 > li:hover > a {
    border: 1px solid #4CA547;
    color: #4CA547;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}