Tim: Box unter Box

Beitrag lesen

Hallo zusammen,
Ich will unter eine gesamte box (wrapper) eine weitere kleine box einfügen für einen counter. so soll es aussehen: http://timconzelmann.de/1.jpg

allerdings sieht das nur im IE so aus. Firefox und Opera interpretieren das garnicht bzw so: http://timconzelmann.de/2.jpg

die css datei ist wie folgt, die ganze obere box:
         #wrapper
 {
  width: 720px;
  height: 535px;
  background-color: #F0F0F0;
  border-width:1px;
  border-style:solid;
  margin-top: 5px;
  margin-right: auto;
  margin-bottom: 5px;
  margin-left: auto;
 }

die untere für den counter:
         #bottom
 {
  margin:auto;
  width: 720px;
  text-align: right;
  background-color: #transparent;
 }

Wo liegt der Fehler?