Here's the code, I basically want the site to get centered. Right now: http://mjstew.net/site.html
Anyone know what I need to do to center it? Seems like it would be simple? 
THIS CSS FIXED - NEW PROBLEM, SCROLL DOWN
Code:
<html>
<head>
<title>Matt Stewart -- Photographer & Musician</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<!-- All Source Code © Matt Stewart 2006 -->
<style type="text/css">
<!--
div.mjstew {
margin:auto;
position:absolute;
left:0px;
top:0px;
width:794px;
height:600px;
}
div.mjstew-logo {
position:absolute;
left:301px;
top:0px;
width:193px;
height:52px;
}
div.title {
position:absolute;
left:242px;
top:76px;
width:300px;
height:29px;
}
div.id1 {
position:absolute;
left:0px;
top:113px;
width:794px;
height:107px;
}
div.id2 {
position:absolute;
left:0px;
top:220px;
width:794px;
height:94px;
}
div.id3 {
position:absolute;
left:1px;
top:314px;
width:793px;
height:99px;
}
div.links {
position:absolute;
left:0px;
top:413px;
width:170px;
height:22px;
}
div.about {
position:absolute;
left:40px;
top:435px;
width:130px;
height:52px;
}
div.photography {
position:absolute;
left:301px;
top:435px;
width:201px;
height:52px;
}
div.music {
position:absolute;
left:622px;
top:435px;
width:121px;
height:52px;
}
div.copyright {
position:absolute;
left:220px;
top:582px;
width:348px;
height:18px;
}
-->
</style>
</head>
<body style="background-color:#FFFFFF; margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px;"
<!-- Slices -->
<div class="mjstew">
<div class="mjstew-logo">
<div align="center"><img src="images/mjstew_logo.jpg" width="193" height="52" alt="mjstew.net">
</div>
</div>
<div class="title">
<img src="images/title.jpg" width="300" height="29" alt="Photographer & Musician">
</div>
<div class="id1">
<img src="images/1.jpg" width="794" height="107" alt="">
</div>
<div class="id2">
<img src="images/2.jpg" width="794" height="94" alt="">
</div>
<div class="id3">
<img src="images/3.jpg" width="793" height="99" alt="">
</div>
<div class="links">
<img src="images/links.jpg" width="170" height="22" alt="">
</div>
<div class="about">
<a href="http://mjstew.net">
<img src="images/about.gif" width="130" height="52" border="0" alt="About - Links Not Working."></a>
</div>
<div class="photography">
<a href="http://mjstew.net">
<img src="images/photography.gif" width="201" height="52" border="0" alt="Photography - Links Not Working."></a>
</div>
<div class="music">
<a href="http://mjstew.net">
<img src="images/music.gif" width="121" height="52" border="0" alt="Music - Links Not Working."></a>
</div>
<div class="copyright">
<img src="images/copyright.jpg" width="348" height="18" alt="All Content Copyright Matt Stewart © 2006 -- ALL RIGHTS RESERVED.">
</div>
</div>
</body>
</html>
THIS CSS FIXED - NEW PROBLEM, SCROLL DOWN