http://google.com/ - is a normal link.
http://google.com/ - is a 'postlink' class.

I looked in the stylesheet, and the lines I specified are not, I repeat, are not in it. Put this in there:

Code:
.postbody { font-size : 12px;} /* FIND THIS */
a.postlink:link	{ text-decoration: none; color : #151516 }
a.postlink:visited { text-decoration: none; color : #151516; }
a.postlink:hover { text-decoration: underline; color : #595A5B;}

/* ADD THIS: */
postbody > a:link {  color: #151516 ; }
postbody > a:hover {  color: #595A5B; }
postbody > a:visited {  color: #151516 ; }
postbody > a:active {  color: #595A5B; }
Explanation:

"postbody >" means 'find the element "postbody" and then the subelement specified'. Thus all normal links within the "postbody" element would change to the "postlink" style. Try it, trust me. If you don't believe me, then I'll quote the CSS source for you, it AIN'T in there.