The issues was that I was using styles like the following:
background-image: url("../images/logo.png")repeat-x;
but while debugging on Internet Explorer, I found that the style is not existing within the css class (not being served to Internet Explorer). To fix it, you have switch to the following
background-image: url(../images3/Center.png);
background-repeat: repeat-x;
it took from me time, to find the problem, world of css :D