Search your template_css.css for the following:
a
{
border-bottom-width: 1px;
border-bottom-style: dotted;
border-bottom-color: -moz-use-text-color;
color: #006da3;
text-decoration: none;
}
a:hover, a:active, a:focus (line 69)
{
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: -moz-use-text-color;
color: #cc0000;
text-decoration: none;
}
a:hover, a:active, a:focus (line 69)
{
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: -moz-use-text-color;
color: #cc0000;
text-decoration: none;
}
And change it to this
a
{
border-bottom-width: 1px;
border-bottom-style: none;
border-bottom-color: -moz-use-text-color;
color: #006da3;
text-decoration: none;
}
a:hover, a:active, a:focus (line 69)
{
border-bottom-width: 1px;
border-bottom-style: none;
border-bottom-color: -moz-use-text-color;
color: #cc0000;
text-decoration: none;
}
a:hover, a:active, a:focus (line 69)
{
border-bottom-width: 1px;
border-bottom-style: none;
border-bottom-color: -moz-use-text-color;
color: #cc0000;
text-decoration: none;
}
BTW your link does not work.