jogi: Div Container zentrieren

Beitrag lesen

hallo erstmal!
ich habe das Problem, dass ich einen Div-Container komplett zentrieren will. Das einzige was ich aber hinbekomme ist, dass der Text zentriert wird. Ich habe gelesen, dass man es mit margin: 0px auto machen kann, aber auch das hilft bei mir nicht. Ich hoffe ihr könnt mir helfen.
Hier mein CSS-Code: (Es geht um den Bereich: #background)

/* CSS Document */

body {

text-align: left;
        background-color: #5f5d59;
}

a:link, a:visited, a:hover {
        color: #ffffff;
        text-decoration: none;
        font-family: Myriad Pro;
}

#background {
        float: left;
        padding: 0px;
        width: 800px;
        height: 640px;
        margin: 0px auto;
        background-color: black;
}

#main {
        position: fixed;
        float: left;
 padding: 0px;
 margin-left: 280px;
        margin-top: 148px;
 width: 409px;
 height: 297px;
        background: url(../images/main.jpg) no-repeat;
}

#navigation {
        position: fixed;
        float: left;
        padding: 0px;
        margin-left: -110px;
        margin-top: 100px;
        width: 100px;
}

#writing_down_under {
        position: fixed;
        float: left;
        padding: 0px;
        margin-left: 340px;
        margin-top: 255px;
        width: 192px;
        height: 42px;
        background: url(../images/writing_down_under.jpg) no-repeat;
}

#line_down {
        position: fixed;
        float: left;
        padding: 0px;
        margin-left: -477px;
        margin-top: -598px;
        width: 1px;
        height: 640px;
        background-color: #d98a0c;
}

Danke schonmal für die Hilfe!
gruß Johann