
Make It Disappear
<style type="text/css">
.footer_links { display: none; }
</style>

Borders
To put a border around the footer links:
<style type="text/css">
.footer_links {
display: block;
border: 1px solid red;
}
</style>
[ More Border Styles ]

The Grey Line
To get rid of the grey rule above the footer links:
<style type="text/css">
hr { display: none; }
</style>

Background
To set a background color for the footer links:
<style type="text/css">
.footer_links {
display: block;
background: red;
}
</style>
Or a background image:
<style type="text/css">
.footer_links {
display: block;
background: url('http://www.PATH TO YOUR IMAGE.gif');
}
</style>
More on
[ Backgrounds ]

Text Styles
To change the plain (none linked) text bit:
<style type="text/css">
.footer_links { color: red; }
</style>
To change the links (and hover links separately):
<style type="text/css">
.footer_links a:link, .footer_links a:visited {
color: red;
background: navy;
font-size: 8pt;
}
.footer_links a:hover {
color: orange;
background: green;
font-size: 8pt;
}
</style>
More
[ Text Styles ]