.underlinemenu{
font-weight: bold;
width: 100%;
}

.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: center; /*set value to "left", "center", or "right"*/
font-size: 2em;;
}

.underlinemenu ul li {
display: inline;
}

.underlinemenu ul li a {
color: #494949;
padding: 6px 3px 4px 3px; /*top padding is 6px, bottom padding is 4px*/
margin-right: 20px; /*spacing between each menu link*/
text-decoration: none;
border-bottom: 3px solid gray; /*bottom border is 3px*/
}

#Active {
	border-bottom: 3px solid #84C3FF; /*bottom border is 3px and darkgreen when the page we are looking at, is the menu item */
}

.underlinemenu ul li a:hover, .underlinemenu ul li a.selected {
border-bottom-color: gray;
color: white;
background-color: #84C3FF;
}

.urbangreymenu {
/*width: 190px; /*width of menu*/
width: 90%; /*width of menu*/
}

.urbangreymenu .headerbar{
font: bold 13px arial;
color: #84C3FF;
background: gray; /*last 2 values are the x and y coordinates of bullet image*/
margin-bottom: 0; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 7px 0 7px 31px; /*31px is left indentation of header text*/
}

.urbangreymenu ul {
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 0; /*bottom spacing between each UL and rest of content*/
font-weight: bold;

}

.urbangreymenu ul ul {
list-style-type: none;
margin: 0px;
padding: 0px;
text-indent: 10px;
font-weight: lighter;
}

.urbangreymenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.urbangreymenu ul li a{
font: normal 12px;
color: black;
background: #E9E9E9;
display: block;
padding: 5px 0;
line-height: 17px;
padding-left: 8px; /*link text is indented 8px*/
text-decoration: none;
}

.urbangreymenu ul li a:visited{
color: black;
}

.urbangreymenu ul li a:hover{ /*hover state CSS*/
color: white;
background: lightgreen;
}