<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Customize the nav-justified links to be fill the entire space of the .navbar */

.nav-justified {
    background-color: #a50034;
}
    .nav-justified &gt; li &gt; a {
        margin-bottom: 0;
        /*font-weight: bold;*/
        color: white;
        text-align: center;
        background-color: var(--aeg-red-color); /* Old browsers */
        /*background-image: -webkit-gradient(linear, left top, left bottom, from(#a50034), to(#a50034));*/
        background-repeat: repeat-x; /* Repeat the gradient */
        border-bottom: none; /* 1px solid #d5d5d5; */
    }
.nav-justified &gt; .active &gt; a,
.nav-justified &gt; .active &gt; a:hover,
.nav-justified &gt; .active &gt; a:focus {
  background-color: #a00418;
  background-image: none; 
}
.nav-justified &gt; li:first-child &gt; a {  
}
.nav-justified &gt; li:last-child &gt; a {
  border-bottom: 0;
}

@media (min-width: 768px) {
  .nav-justified {
    /*max-height: 52px;*/
  }
    .nav-justified &gt; li &gt; a {
        border-right: 1px solid #ffffff;
        border-left: none;
    }

        .nav-justified &gt; li &gt; a:hover {
            background-color: #a00418;
            border-bottom: none;
        }

 .nav-justified &gt; li:first-child &gt; a {
    border-left: 0;    
  }
 .nav-justified &gt; li:last-child &gt; a {
    border-right: 0;
  }
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
  /* Remove the padding we set earlier */
  .masthead,
  .marketing,
  .footer {
    padding-right: 0;
    padding-left: 0;
  }
}</pre></body></html>