in your lib-common.php, in COM_printPageNavigation(), find all 4 lines that look like this:
Text Formatted Code
$retval .= '<a href="' ............ '</a> ';
change them to look like:
Text Formatted Code
$retval .= '<a class="pagenavlink" href="' ............ '</a> ';
Then, just add the pagenavlink class to your style.css file like so:
Text Formatted Code
.pagenavlink
{
color: #FF0000;
}