i see this using ie.7, the position of your arrow scroll bar is out off position (same thing with your music button):

To fix it you can use:
Code:
<!--[if IE]>
According to the conditional comment this is Internet Explorer<br />
<![endif]-->
or
Code:
<!--[if IE 7]>
According to the conditional comment this is Internet Explorer 7<br />
<![endif]-->
one more thing, i saw in your css, you are using
Code:
#container {
margin-left: 27%;
margin-top: -8px;
may be the % thing will make the IE goes wrong. Use the "px" ore safe i think.
good luck
Bookmarks