body {background-image:  url(landfillBackground.jpg); background-repeat:repeat;}

a:link {font-family: Arial; color: #3875d2; text-decoration: none;}
a:visited {font-family: Arial; color: #3875d2; text-decoration: none;}
a:hover {font-family: Arial; color: #999999; text-decoration: none;}
a:active {font-family: Arial; color: #999999; text-decoration: none;}


a.class {color: black;}

<STYLE TYPE="text/css">
a.dog:link { color: blue; text-decoration: none }
a.dog:active { color: red; text-decoration: none }
a.dog:visited { color: blue; text-decoration: none }
a.dog:hover { color: green; text-decoration: underline }

a.tree:link { color: green; text-decoration: none }
a.tree:active { color: yellow; text-decoration: none }
a.tree:visited { color: red; text-decoration: none }
a.tree:hover { color: orange; text-decoration: underline }
</STYLE> 

Notice how I have the two sections separated, one listed as dog and the other as tree. That sets up two classes. I can now call on those classes using the CLASS attribute in the anchor tag. Like so:

<a href="zonk.html" class="tree">One Scheme</a>
<a href="zonk.html" class="dog">Another Scheme</a> 
.btmrightwords {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: 3875d2;
}
.btmrighttext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: 3875d2;
}
.bodytext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: 676767;
}
.footer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #FFFFFF;
}
.titles {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: 3064d2;
}
