josef heim: div positionierung im IE

hi!
ich zentriere ein div. mein div hat einen bestimmten hintergrund, so auch der body des dokumentes. beide backgrounds sind gleich breit und zentriert. sie sollten nun eigentlich genau übereinander liegen. wenn ich jetzt aber die fenstergrösse des IE langsam verändere, schiebt sich das div manchmal 1 pix links vom background des bodys. im FF (ist ja klar) funktionert alles ordentlich.

an was kann das liegen ?

vielen dank im voraus

code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
<!--
body {
background-image: url(bg1.gif);
background-repeat: repeat-y;
background-position: center;
margin: 0px;
padding: 0px;
}
div {
background-image: url(bg2.gif);
background-repeat: repeat-y;
background-position: center;
padding: 0px;
height: 100px;
width: 200px;
margin-top: 0px;
margin-right: auto;
margin-bottom: 0px;
margin-left: auto;
}
-->
</style>
</head>
<body>
<div></div>
</body>
</html>