1) There's a lot of useless strong tags: you need to remove most of them (leave just one opening/closing pair around each name).
2) Turn these two:
<table style="width:557px;height:703px;" border="0">
<table style="width:389px;height:471px;" border="0">
to just:
<table>
3) These are wrong:
<h2 style="text-align:left;"><span style="color:#666699;font-family:Arial, Helvetica, sans-serif;">HEADING HERE</span></h2>
First, left alignment is the default so the first style is useless. Second, span tags are used for characters or words inside a block, not for the whole block. If you had to modify the h2 in the Text editor, you'd add the rules in the h2 tag itself:
<h2 style="color:#666699;font-family:Arial, Helvetica, sans-serif;">HEADING HERE</h2>
But you have the Custom Design upgrade, so you should write plain h2 tags and modify them in the CSS editor instead.
4) After you make these corrections, just make sure there's a paragraph break (blank line) before each name or linked name.