.underlinemenu{
font-weight: bold;
float: left;
width: 500px;
margin-left: -50px;
margin-top: 20px;
}

.underlinemenu ul{
padding: 6px 0 7px 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"*/
}

.underlinemenu ul li{
display: inline;
}

.underlinemenu ul li a{
color: gray;
font-weight:bold;
padding: 6px 5px 4px 5px; /*top padding is 6px, bottom padding is 4px*/
margin-right: 4px; /*spacing between each menu link*/
text-decoration: none;
border-bottom: 3px solid gray; /*bottom border is 3px*/
//border-top: 3px solid gray; /*bottom border is 3px*/
}

.underlinemenu ul li a:hover
{
//color: #101010;
border-bottom-color: #FEA132;
//border-top-color: #FEA132;
}

.underlinemenu ul li a.selected{
color: #FEA132;
border-bottom-color: gray;
//border-top-color: gray;
}
