I have torn the source code apart from Googles results and have found many areas you can customize to replace and take out items so you can custmize the look to match your site.
<?php
$url = "http://www.google.com/search?q=".$_POST["keyword"]."%20site:ronfrederick.com";
$lines = implode('',file($url));
// Modify background colors of table cells
$lines = str_replace("008000","FFD700",$lines);
$lines = str_replace(" bgcolor=#e5ecf9","",$lines);
$lines = str_replace(" bgcolor=#3366cc","",$lines);
$lines = str_replace(" bgColor=#ffffff","",$lines);
// Replace classes with classes added to your style sheet
$lines = str_replace("class=j","class=Google",$lines);
$lines = str_replace("class=fl","class=Google_Links",$lines);
// Cancel out class
$lines = str_replace(" class=k","",$lines);
// Cancel out the font tags that are controlling the font sizes
$lines = str_replace("<font size=-1>","",$lines);
$lines = str_replace("</font>","",$lines);
// The following are the standard styles of the site cancelled out
$lines = str_replace(".f,.fl:link{color:#6f6f6f}","",$lines);
$lines = str_replace("a:link,.w,a.w:link,.w a:link{color:#00c}","",$lines);
$lines = str_replace("a:visited,.fl:visited{color:#551a8b}","",$lines);
$lines = str_replace("a:active,.fl:active{color:#f00}","",$lines);
// Replace googles logo with a pixel image
$lines = str_replace("/images/logo_sm.gif","Site_Images/pixel.gif",$lines);
echo $lines;
?>