I figured out how to change the link colors in a post. My only remaining issue is how do I change the link colors when a list (ul, ol) is used in a post. At the moment, all the link colors in lists is the same as the text.
To change the links in posts colors, I used the following custom CSS:
.post a {color:#05A9C5;}
.post a:visited {color:#05A9C5;}
.post a:hover {text-decoration:underline;}
If you have a better method, please share.