I need a bit of CSS help

My CSS skills are creaky, and my Google-fu is weak.

Here’s the HTML in my index page:

<h1 class="forumtitle">
<a href="http://www.fairhousing.com/board/index.php">
fairhousing.com housing forum
</a>
</h1>

Here’s the CSS for that class (I added the last line, the color spec):

 
h1.forumtitle
{
 line-height: 45px;
 font-size: 1.8em;
 font-family: Geneva, verdana, sans-serif;
 margin: 0;
 padding: 0;
 float: left;
 color: #EEEEEE;
}

The color is not displaying as #EEEEEE because at the top of the stylesheet is this, which is making the color #334466:

/* Normal, standard links. */
a:link, a:visited
{
 color: #346;
 text-decoration: none;
}
a:hover
{
 text-decoration: underline;
 cursor: pointer;
}

So I need to change h1.forumtitle section be #EEEEEE. I can’t figure out the syntax to do that, given that it’s also a link.

Thanks for any help you can offer.

EDIT: Never mind - I figured it out.

h1.forumtitle a:link, a:visited

Haha, I’m glad you couldn’t delete it because I’m taking a class in this stuff now and that will COME IN HANDY!