Looking at your source code you have this:
<style type="text/css">
body {
background-color: #000000 ;
background-image:url();
background-position:center center;
background-attachment:fixed;
font: .8em/1.3em verdana,arial,helvetica,sans-serif;
}
#info {
width: 0px;
overflow: auto;
}
#flashcontent {
border: solid 0px #000;
width: 575px;
height: 350px;
float: center;
margin: 0px 0px;
}
.style1 {color: #990000}
</style>
in you homepage code.
You need to add :
width:980px;
margin:0 auto;
to the body {} part. So it should read:
<style type="text/css">
body {
background-color: #000000 ;
background-image:url();
background-position:center center;
background-attachment:fixed;
font: .8em/1.3em verdana,arial,helvetica,sans-serif;
width:980px;
margin:0 auto;
}
#info {
width: 0px;
overflow: auto;
}
#flashcontent {
border: solid 0px #000;
width: 575px;
height: 350px;
float: center;
margin: 0px 0px;
}
.style1 {color: #990000}
</style>