.bmenu {
margin: 0px 0px 0px 200px;	/* sets the bottom menu at 200 pixels from the left */
position: relative;
float: left;
font-size: 14px;
line-height: 16px;
font-weight: 500;
letter-spacing: .6px;
width: 600px;               /* sets the width of the bottom menu container */
border: 0px solid red;      /* to see the bottom menu container, set this value to 1px */
}

.bmenu ul{
margin: 0;
padding: 0;
float: left;
}

.bmenu ul li {
display: inline;        /* causes the <li></li> values to line up horizontally */
}

.bmenu ul li a{
float: left;
color: black;
padding: 8px 12px 4px 12px;     /* sets the spacing around the menu item */
border-width: 0px 1px 1px 1px;  /* zero value in the 1st spot because the top border is supplied by the bottom border of the header */
border-color: black;
border-style: solid;
background-color: #ffffff;  
text-decoration: none;
}

.bmenu ul li a:visited{
color: purple;
}

.bmenu ul li a:hover{
color: black;
background-color: #AAB9EE;
background-color: #65a8da;
}
