There's an error in your CSS.
Line 18 of your CSS should close the declaration
Code:
p {
font-size: 90%;
color: #333333;
{
#navigation a {
color: #3399cc;
text-decoration: none;
}
Should be:
Code:
p {
font-size: 90%;
color: #333333;
}
#navigation a {
color: #3399cc;
text-decoration: none;
}
do you see the difference between the two?