body {background-image:  url(file:///C|/Users/Kelley/Desktop/style/images/back.jpg); background-repeat:no-repeat;}

a:link {font-family: Arial; color: #df7833; text-decoration: none;font-weight: bold;}
a:visited {font-family: Arial; color: #df7833; text-decoration: none;font-weight: bold;}
a:hover {font-family: Arial; color: #7d540e; text-decoration: none;font-weight: bold;}
a:active {font-family: Arial; color: #7d540e; text-decoration: none;font-weight: bold;}


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> 
.title1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: 7d540e;
}
.title1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: 7d540e;
}
.bodytext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: 6b6453;
}
.footer1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: 7d540e;
}
.footer2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: df7833;
}
