you need to vertically align the text in you table cells with the top of the cell, so:
find the following rule in your style sheet (in the head of the page)-
body,td,th {}
and add vertical-align:top; to the end of that rule like:
HTML Code:
body,td,th {
color: #333333;
font-family: "Courier New", Courier, mono;
font-size: 12px;
font-style: normal;
margin-top: 1px;
padding-top: 1px;
margin-right: 1px;
margin-bottom: 1px;
margin-left: 1px;
padding-right: 1px;
padding-bottom: 1px;
padding-left: 1px;
vertical-align:top;
}