The layout and general feel of the page are great but I have the same problem with 800x600, This is so neatly trimmed off the page many users might not even notice that it is gone.
The CSS file is HUGE! A lot of the advantage to using CSS is its inheritable traits. Your CSS file defines a lot of duplicate features. For example:
Code:
input.search {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000000;
width: 90px;
}
select.search {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000000;
width: 90px;
}
Both of these definitions are identical, I would roll them into a single definition.
The front page files the W3C validation with
294 errors! Many of them look to be from using a plain & instead of & in the URLs.
I love the fact that the site is content heavy but I agree that it should be spread out a bit.
NV