/* Center the main navigation menu */
.WA_navMenu,
.menuInner {
    text-align: center !important;
}

/* Make inline nav items respect the centering */
.WA_navMenu ul,
.menuInner ul {
    display: inline-block !important;
    text-align: center !important;
}

/* Ensure individual items don't force alignment left */
.WA_navMenu li,
.menuInner li {
    float: none !important;
    display: inline-block !important;
}
/* Centered accent line under the nav */
//.WA_navMenu:after, 
{
    content: "";
    display: block;
    width: 75vw;        /* length of line */
    height: 2px;         /* thickness */
    background-color: #cccccc;
    margin: 10px auto 0; /* top spacing + auto-centering */
}