body{
	background-image: url(images/bg.png);
	background-repeat: repeat-x;
	background-color: #1a1a1a;
	margin: 0;
    text-align: center;
    font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana;
}
#header{
	background-image: url(images/logo.png);
	background-repeat: no-repeat;
	width: 427px;
	height: 72px;
	margin: 0 auto;
}

.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"*/
}

.underlinemenu ul li{
display: inline;
}

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

}

.underlinemenu ul li a:hover, .underlinemenu ul li a.selected{
border-bottom-color: black;
color: #ff00f0;
border-bottom: 3px solid #ffffff; /*bottom border is 3px*/
}

