when you say 'not correctly' specifically in what way?
For the time being I wouldn't aim anything at html5, so if you want to define a character set I'd go for:
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
The wonderful theme park resort of "<html land.. should probably be "<html lang.."
As mentioned before the 'not correctly' bit is probably just munged up css sticking stuff in the wrong place. I'm currently using XP and FF/Chrome and can't see the contact link as it's gone onto the next line (and since the text is white with no background, can't be seen, unless hoverred over). I suspect there's also something in there that 1 px too large on the vertical, possibly due to padding/borders but am too lazy to check thoroughily
I plonked a whole bunch of stuff in your layout.css (most of which might be unneccessary or incorrect, if this works on your browser then cut out changes until you find the bits you're after) and made something that seems a bit better in my browser using this:
CODE
* {
margin:0;
padding:0;
}
header {
width:1024px;
height:232px;
margin-left:auto;
margin-right:auto;
background:url(../images/Logo.jpg) top center no-repeat;
background-color:#FFF;
}
nav {
width:1024px;
margin-left:auto;
margin-right:auto;
width:1024px;
height:33px;
background-image:url(../images/nav_bg.png);
background-repeat:repeat-x;
}
#nav_center {
}
nav ul {
list-style:none;
}
nav a {
display:inline;
float:left;
margin-right:3%;
text-decoration:none;
color:#FFF;
font-family:Tahoma, Geneva, sans-serif;
font-weight:bold;
padding:.5% 2% .5% 1%;
}
nav a:hover {
background-image:url(../images/nav_fg.png);
height:22px;
}
/* WRAPPER */
#wrapper {
width:1024px;
height:100%;
margin-left:auto;
margin-right:auto;
border-left:1px solid black;
border-right:1px solid black;
}
#content {
width:700px;
height:600px;
margin-left:auto;
margin-right:auto;
background-color:#CCC;
font-family:Tahoma, Geneva, sans-serif;
text-align:center;
}
#right_side {
width:304;
height:100%;
float:right;
}