Hello All:

I am trying to get the links on my site at http://www.emrcontractor.com/newsite to adhear to the following in my css

Code:
.menu, a.menu:link, a:active {
    font-family:ariel, verdana, sans-serif;
    font-size:10px;
    color:#ffffff;
    text-decoration:none;
}

.menu, a.menu:link, a:hover {
    font-family:ariel, verdana, sans-serif;
    font-size:10px;
    color:#ffffff;
    text-decoration:underline;
}
However, the class menu as stated below does not seem to want to work.

Code:
<a class="menu" href="index.php">Home</a>&nbsp;|&nbsp;<a class="menu" href="about.php">About us</a>&nbsp;|&nbsp;<a href="resources.php">Resources</a>&nbsp;|&nbsp;<a href="contactus.php">Contact Us</a>
Am I typing this out wrong in my css or my menu?

Thanks for any help or advice with this,

Paul