Styling Admin comments in WP 3.1.3

Why not use:

if ( user_can( $comment->user_id, 'administrator' ) ) {
     // current comment is from an administrator;
     // do something
}

As for putting the admin comments at the top of the comment list, you would have to modify the comment query itself.