Not a problem. Glad to help.

You also have about 3 more parse errors that need fixed for your css to validate.

1. Find and remove the # from this block of code:

Code:
#navCatTabs ul li a {
    color: #none;
    }
2. Find and remove (or add a value like "repeat-x", "repeat-y", or "no-repeat") the background-repeat:; from this block of code:

Code:
#logoWrapper{
    background-image:url(../images/);
    background-repeat:;
    background-color: #a9cf54;
    height:200px;
    width:850px;
    }
3. Find and fix the "no repeat" (should have a hyphen, looking like "no-repeat") in this block of code (first block in the stylesheet):

Code:
body {
    margin: 0;
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 62.5%;
    color: #000000;
    background-image:url(../images/logotest.png);
    background-repeat: no repeat;(should be: background-repeat: no-repeat;)
    background-color: #43727f;
    }
Once you get those fixed, you should have valid css!

Hope this helps.