I see your page it says end debt now. And on top of it, it looks like blogger..which is about the time I realized what the problem was.
You're mirroring a blogger site - it's not as simple as just pulling the code and putting it up on your site. All the paths on images/css/links are absolute meaning that it's relative to the directory structure. You're images are set as:
/www.blogger.com/img/icon18_email.gif
You probably want it to be
http:///www.blogger.com/img/icon18_email.gif,
. Add http in front, clean up the html code change relative links to absolute paths like http://[url].110mb.com/images/[image.gif] or make it relative to wherever you're hosting the images/css/html.
It's an html problem, not a server problem. Hope that helps.