﻿.navwrap {
    border-bottom: 1px solid #eae6e7;
}
    .navwrap .navcontent {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        overflow: hidden;
        width: 1200px;
        margin-right: auto;
        margin-left: auto;
    }
    .navwrap .nav-left {
        flex: 0 0 260px;
    }
    .navwrap .sitelogo img {
        height: 70px;
    }

.navwrap .nav-right {
    flex-grow:1;
}

.menuitems {
    width:100%;
    position: relative;
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 16px;
}
.menutext {
    padding:5px 0px;
}
.menuitem {
    position: relative;
    padding: 0px 10px;
    margin-right: 10px;
    border-bottom: 2px solid #ffffff;
}
    .menuitem.canclick {
        background-color: inherit;
    }
    .menuitem.canclick:hover {
        background-color: inherit;
    }
.menuitem:last-child {
    margin-right: 0px;
}
    .menuitem.canclick:not(.active):hover {
        background-color: transparent;
        border-bottom: 2px solid #ab1c22;
    }
    .menuitem.active::after {
        position: absolute;
        content: "▲";
        bottom: -7px;
        left: 41%;
        font-size: 12px;
        transform: scale(.8);
        color: #ab1c22;
    }

.menuchilditems {
    position: relative;
    width: 100%;
}
.menuchildwrap {
    width: 700px;
    position: absolute;
    left: 6px;
    top: 34px;
    display: none;
    flex-direction: row;
    justify-content: flex-start;
}

    .menuchildwrap .menuchild {
        margin-right: 3px;
        padding: 3px 5px 3px 5px;
        font-size: 12px;
        color: #666666;
    }

.menuitem.showchild .menuchildwrap {
    display: flex;
}
#menu-7-child{
    left: -110px;
}
