/* ######### Thick Underline Menu CSS ######### */
    
.underlinemenu{
font-weight: bold;
font-size: 16px;
width: 100%;
}

.underlinemenu ul{
padding: 6px 0 4px 0; /*6px should equal top padding of "ul li a" below, 7px should equal bottom padding + bottom border of "ul li a" below*/
margin: 0;
text-align: left; //set value to "left", "center", or "right"*/
/* overflow: hidden; */
}

.underlinemenu ul li{
display: inline;
float: left;  /* forum help */
margin-bottom: 0.75em;  /* change if need; forum help */
}

.underlinemenu ul li a{
color: #494949;
padding: 6px 3px 4px 3px; /*top padding is 6px, bottom padding is 4px*/
margin-right: 20px;
text-decoration: none;
white-space: nowrap;  /* forum help */
/* border-bottom: 3px solid gray; bottom border is 3px */
}

.underlinemenu ul li a:hover, .underlinemenu ul li a.selected{
border-bottom-color: black;
}