#menubar-market {
    background: #001E6E;
    color: #7FA0B5;
    height: 48px;
    font-family: arial;
    margin: 0 auto; /* Center the nav container horizontally */
    min-width: max-content;
}

#menubar-market ul {
    width: 1024px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: center;
    display: flex;
    justify-content: space-evenly; /* Evenly space out the li elements */    
}

#menubar-market ul li {
    flex: 1;
    margin: 0;
    padding: 0;
    text-align: center;
    white-space: nowrap;
}

#menubar-market a {
    display: block;
    padding: 15px 8px;
    font-size: 12pt;
    font-weight: 600;
}

#menubar-market a:link, #menubar-market a:visited, #menubar-market a:active {
    display: block;
    color: #fff;
    text-decoration: none;
}

#menubar-market a:hover {
    color: #001e6e;
    background: #fff;
    text-decoration: underline;
    text-decoration: none;
}

#menubar-market a.active {
}

#menubar-market strong a {
    color: #fff;
    font-weight: bold;
}
