In the CSS, you have this:
/* This is the copyright links at the bottom of the page */
.copyright-links a:link, .copyright-links a:visited, .copyright-links a:active
{
color: #000000;
text-decoration: none;
}
.copyright-links a:hover
{
color: #000000;
text-decoration: underline;
}
Change to:/* This is the copyright links at the bottom of the page */
.copyright-links
{
color: #000000;
}
.copyright-links a:link, .copyright-links a:visited, .copyright-links a:active
{
color: #000000;
text-decoration: none;
}
.copyright-links a:hover
{
color: #000000;
text-decoration: underline;
}
The real hell is your life gone wrong.