The 67.5% in the body becomes the "1em" base, so ftrText was working from that.
You have
Code:
.ftrText {
color: #7d1416;
font-family: Arial, Helvetica, Sans-serif;
font-size: 11px;
}
.ftrText a:link {
font-size: 11px;
font-family: Arial, Helvetica, Sans-serif;
color: #606060;
}
.ftrText a:visited {
font-size: 11px;
font-family: Arial, Helvetica, Sans-serif;
color: #606060;
}
.ftrText a:hover {
color: #000;
text-decoration: underline;
}
which works, but if you had 1.3em in each of those places, the .ftrText a:link font-size would build on the .ftrText font-size and effectively be about 1.7em.
Set the font size only in .ftrText and it will stay the same size.