﻿#BEmain-menu {
    width: 100%;
    height: 40px;
/*    z-index: 99;
    position: relative;*/
    margin-bottom: 6px
}

.BEnav-bar {
    vertical-align: middle;
    padding-top: 4px;
    height: 40px;
    width: inherit;
    position: absolute;
    border-bottom: solid;
    border-bottom-width: thin;
    border-bottom-color: gray;
    border-top: solid;
    border-top-width: thin;
    border-top-color: gray;
    -webkit-box-sizing: initial;
    -moz-box-sizing: initial;
    box-sizing: initial
}

    .BEnav-bar li {
        padding: 2px 10px;
        vertical-align: middle;
        text-decoration: none;
        height: auto;
        width: auto;
        float: left;
        text-align: left;
        list-style: none;
        margin: 0;
        position:relative;
        z-index:1000;        
    }

    .BEnav-bar a {
        text-decoration: none;
        color: #4285F4;
        display: block
    }

    .BEnav-bar li:hover, a:hover {
        background-color: ghostwhite;
        border-radius: 2px
    }

    .BEnav-bar li ul {
        display: none;
        height: auto;
        width: 130px;
        margin: 0;
        padding: 0
    }

    .BEnav-bar li:hover ul {
        display: block
    }

.navbar li ul li {
    background-color: white;
    border-radius: 2px
}

    .navbar li ul li a {
        border-left: 1px solid #1f5065;
        border-right: 1px solid #1f5065;
        border-top: 1px solid #74a3b7;
        border-bottom: 1px solid #1f5065
    }

        .navbar li ul li a:hover {
            background-color: black
        }

.menuitem {
    padding-left: 20px
}

#menu_wrap {
    position: relative;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    padding-right: 0px;
    width: 489px;
    height: 40px;
    list-style-type: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,.2);
    box-shadow: 0 1px 3px rgba(0,0,0,.2)
}

.menuitem a {
    border-bottom-color: gray;
    border: solid;
    border-width: 1px
}

.menuSet {
    font-size: 16px;
    font-weight: 500;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #dcdcdc;
    padding: 5px 1px;
    text-shadow: 1px 1px 0px #ffffff;
    -moz-box-shadow: inset 1px 1px 0px 0px #ffffff;
    -webkit-box-shadow: inset 1px 1px 0px 0px #ffffff;
    box-shadow: inset 1px 1px 0px 0px #ffffff;
    font-weight: normal;
    text-decoration: none;
    text-align: left;
    vertical-align: middle;
    cursor: pointer;
    background: -webkit-linear-gradient(90deg,#fbfbfb 5%,#ffffff 100%);
    background: -moz-linear-gradient(90deg,#fbfbfb 5%,#ffffff 100%);
    background: -ms-linear-gradient(90deg,#fbfbfb 5%,#ffffff 100%);
    background: linear-gradient(180deg,#ffffff 5%,#fbfbfb 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#fbfbfb ');
    color: maroon;
    display: inline-block;
    width: calc(100% - 4px);
    margin-left: 2px;
    padding-left: 5px;
    white-space: nowrap;
    position: relative;
    transition: all 0.2s ease-in-out;
}

    .menuSet:hover, .menuSet.selected {
        background: #FFF1F1;
        color: black;
        border: 1px solid #ddd;
        border-radius: 3px 0px 0px 3px;
        border-color: #800000;
    }

    .menuSet a {
        text-decoration: none;
        color: maroon
    }
    /*    .menuSet a:visited {
        color: maroon
    }*/

    .menuSet:active {
        position: relative;
        top: 1px;
        font-weight: 900
    }

    .menuSet:focus {
        background: #FFF1F1;
        color: black;
        border: 1px solid #ddd;
        border-radius: 3px;
        border-color: #800000;
        font-weight: 900
    }

/*.menuSet {
    display: block;
    padding: 10px 15px;
    margin: 5px 0;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease;
}

    .menuSet::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 0;
        background: #007bff;
        transition: width 0.3s ease;
    }

    .menuSet:hover {
        color: #007bff;
    }

        .menuSet:hover::after {
            width: 100%;
        }*/