wp-admin/wp-admin.css is missing a closing ;
#wphead h1 {
font-size: 2.5em;
font-weight: normal;
letter-spacing: -.05em;
margin: 0;
font-family: Georgia, "Times New Roman", Times, serif
}
ought to be :
#wphead h1 {
font-size: 2.5em;
font-weight: normal;
letter-spacing: -.05em;
margin: 0;
font-family: Georgia, "Times New Roman", Times, serif;
}
Thought I would point that out. its added to trac, as well.