You have this on that page:
HTML Code:
<span class="member_username"><span style="color:#0046ad;">Jason Svoboda</span></span>
You should use a class for the username, instead of a style.
This:
HTML Code:
<span class="usergroup6">
Instead of this:
HTML Code:
<span style="color:#0046ad;">
Then you add to additional.css:
HTML Code:
.usergroup6 {color: #0046ad;}
And also add this for the profile pages:
HTML Code:
#member_content #sidebar_container .usergroup6 {color: white;}
See if something like that works.