This is what i got (though i have to say theres probably a simpler way to do it, which someone will probably post. I dont use CSS on tables very often).
Code:
<html>
<head>
<style type="text/css">
table.one { border:0; width:123px; }
td.top { border-top:2px solid #98012e; }
td.bottom { border-bottom:2px solid #98012e; }
td.left { border-left:2px solid #98012e; }
td.right { border-right:2px solid #98012e; }
</style>
</head>
<body>
<table class="one" cellpadding="0" cellspacing="0">
<tr>
<td><img src="farestab.gif" alt="farestab" title="farestab" /></td>
</tr>
<tr>
<td class="top left">help</td>
<td class="top left">why</td>
<td class="top left right">isn't</td>
</tr>
<tr>
<td class="top left">this</td>
<td class="top left">working</td>
<td class="top left right">properly</td>
</tr>
<tr>
<td class="top bottom left">you</td>
<td class="top bottom left"> </td>
<td class="top bottom left right"> </td>
</tr>
</table>
</body>
</html>