Because Facebook loads its stylesheets dynamically (via a JS call), they'll always end up the last declared styles on the page - as such, you cant override any styles declared in their stylesheets unless you add them to the elements directly. Your stylesheet will work for styles which are not already declared in the facebook stylesheet, but will not override any declarations which are included.
Instead, you need to force your style declarations to take precedence using !important:
.fan_box .connections_grid .grid_item a:link {color: #D90000 !important; }
.fan_box .connections_grid .grid_item a:active {color: #D90000 !important; }
.fan_box .connections_grid .grid_item a:visited {color: #D90000 !important; }
.fan_box .connections_grid .grid_item a:hover {color: #D90000 !important; }