At end of your code HEAD part use something like:
Code:
<style type=text/css>
A:link { color: #396D84; font-weight: normal; text-decoration: underline }
</style>
And if you want to alter more colors like when the link has been visited...:
Code:
<style type=text/css>
A:link { color: #396D84; font-weight: normal; text-decoration: underline }
A:visited { color: #396D84; font-weight: normal; text-decoration: underline }
A:active { color: #86B82D; text-decoration: underline }
A:hover { color: #86B82D; font-weight: normal; text-decoration: underline }
</style>