Try taking:
Code:
#navcontainer ul{
list-style-type: none;
text-align: center;
}
And make it this:
Code:
#navcontainer ul{
list-style-type: none;
}
Also make sure there is not any other CSS code affecting the ul, or li.
EDIT:
Or it could be:
Code:
#navcontainer ul li{
display: block;
float: left;
text-align: center;
padding: 0;
margin: 0;
}
Try removing the display:block;
Not sure if you should be defining it on a li.