in css i see this rule
#flash-holder embed{z-index:10; position:absolute;left:524px;top:0px;width:431px;h eight:362px;}
almost all divs in div container id=splash positioned absolutely, the rule i copied above tells browser to position embed tag absolutely rather than div it is in, not sure why it has been done this way, and what i see happening in IE8 the flash embed is positioned correctly on the right and then duplicated on the left because div id=flash-holder is positioned there by default and was intended to be sort of 'invisible' - it looks like a buggy behavior on IE part
i would try instead of
#flash-holder embed{z-index:10; position:absolute;left:524px;top:0px;width:431px;h eight:362px;}
use
#flash-holder {z-index:10; position:absolute;left:524px;top:0px;width:431px;h eight:362px;}
to see what happens,
make sure to check all possible browsers. cannot say it is the solution, may need more tweaking...
|