Inspiring design, great job.
Your code could be cleaner. You CSS could be more efficient.
Ex:
Code:
A.elink:link {
FONT-SIZE: 100%;
COLOR: #194487;
FONT-FAMILY: Verdana, Tahoma, Arial, ms sans serif;
TEXT-DECORATION: underline;
}
A.elink:visited {
COLOR: #BBBDD0;
FONT-FAMILY: Verdana, Tahoma, Arial, ms sans serif;
TEXT-DECORATION: underline;
}
A.elink:active {
COLOR: #0000cc;
FONT-FAMILY: Verdana, Tahoma, Arial, ms sans serif;
TEXT-DECORATION: underline;
}
A.elink:hover {
COLOR: #0000cc;
FONT-FAMILY: Verdana, Tahoma, Arial, ms sans serif;
TEXT-DECORATION: underline;
}
Could be written as
Code:
A.elink
{
font-family: Verdana, Tahoma, Arial, ms sans serif;
text-decoration: underline;
font-size: 100%
color:#194487;
}
A.elink:active, A.elink:hover {color: #0000cc;}
A.elink:visited {color: #bbbdd0;}
And for offering web design having a DocType and validating code would benefit you.
Accessibility could be greatly improved by adding a jump to content link hidden with your code and being able to increase font-size (using ems for example). Firefox can manually override text settings but IE doesn't.
Usability may be improved by providing a sitemap (usually located at the bottom of the page) and you ought to consider having a Terms of Use Agreement and a Privacy Policy.