timonator: fixed div zentieren

Beitrag lesen

Hallöchen an alle :)

Ich habe folgendes Problem:
Ich habe eine website mit fixiertem header erstellt und diesen zentriert.
So weit so gut, aber sobald die breite des Browsers so ca. 1000 Pixel unterschreitet, ist nix mehr mit zentriert.
Siehe: http://weescout.bplaced.net

  
#header {  
	position: fixed;  
	width: 600px;  
	height: 40px;  
	top: 0px;  
	background-color: #6FF;  
	border-bottom-width: 1px;  
	border-bottom-style: solid;  
	border-bottom-color: #000;  
	z-index: 1;  
	left: 50%;  
	margin-left: -300px;  
}  
  
#contend {  
	width: 580px;  
	top: 40px;  
	z-index: 2;  
	padding-top: 40px;  
	padding-right: 10px;  
	padding-left: 10px;  
	z-index: 0;  
	margin-right: auto;  
	margin-left: auto;  
}  
  
#footer {  
	position: fixed;  
	height: 40px;  
	width: 600px;  
	bottom: 0px;  
	background-color: #FFF;  
	border-top-width: 1px;  
	border-top-style: solid;  
	border-top-color: #000;  
	z-index: 1;  
	left: 50%;  
	margin-left: -300px;  
}  

Hat jemand eine Idee wie ich das Problem lösen kann ? Ist das überhaupt möglich ?
Frames oder Tabellen werde ich auf keinen Fall nutzen, eher werfe ich das ganze Layout über den Haufen und überlege mir was anderes !