thomas: Probleme beim div in IE udn Firefox

Beitrag lesen

Hallo Forum,
ich habe:
1. das Problem, dass ich gerne den Div-Construct mittig im Browserfenster haben möchte  und

2. Im Firefox sticht der Cont3 weiter nach rechts heraus als er sollte, warum?
Ich hoffe Ihr könnt mir helfen.

Grüße
thomas
mein Quelltext:
<html>
<head>
<style type="text/css">
<!--
BODY {
FONT-SIZE: 10px;
FONT-FAMILY: Verdana, Arial, serif;
font-weight: bold;
BACKGROUND-COLOR: #d7f2d1;
color: #666666;
}
#cont1
{
margin-top: 25px;
width: 800px;
height: 150px;
border: 1px #CCCCCC solid;
BACKGROUND-COLOR: #FFFFFF;
}
#cont2
{
 float: left;
 width: 150px;
 height: 650px;
 margin-top: 5px;
 border: 1px #CCCCCC solid;
 BACKGROUND-COLOR: #FFFFFF;
}
#cont3
{
 float: left;
 width: 650px;
 height: 650px;
 margin-top: 5px;
 border: 1px #CCCCCC solid;
 BACKGROUND-COLOR: #FFFFFF;
}
//-->
</style>
</head>
<body>
<div id="cont1">Banner</div>
<div id="cont2">Navigation</div>
<div id="cont3">Hauptteil</div>
</body>
</html>