I checked your site with Firebug, and it seems that your .ListDate style is overridden by a default span style. That's the code of the first entry of the "This Week at Andy's" module:
<td class="ListDate">
<span id="dnn_ctr367_Events_EventList_lstEvents_ctl02_lblEventBegin">4/3/2008 5:00 PM</span>
</td>
In your /Portals/_default/Skins/andys/skin.css, there's this style definition in line 36:
div, span, p, td, th, li, input, textarea
{
....
font-size:12px;
....
}
So the font size definition for the inner span overrides the definition for the outer td. Try the following:
td.ListDate span
{
font-size: 7pt;
}
If THAT doesn't help, make it
font-size: 7pt !important;