Ah, I see. Download it anyway.
Right. I downloaded all your stuff. The problem lies here:
#bottom {
width: 750px;
height: 5px;
background-image: url(images/bottom.png);
background-repeat: no-repeat;
#position: relative;
#top: 10px;
clear: both;
}
You use /* and */ in CSS for comments:
#bottom {
width: 750px;
height: 5px;
background-image: url(images/bottom.png);
background-repeat: no-repeat;
/* position: relative; */
/* top: 10px; */
clear: both;
}