Hi,
Havn't had time to llok at your page but your definitions above are not as I think you meant them.
Take this code for example.
Code:
.menu a:link, a:visited, a:active { text-decoration: none; color:#D5E5F5; font-weight: bold; }
You are defining the styles for your menus a:link state and then you are redefining all anchors that are visted and active.
What I think you meant to do is define all three states for menu as follows.
Code:
.menu a:link, .menu a:visited, .menu a:active { text-decoration: none; color:#D5E5F5; font-weight: bold; }
You have made the same mistake in all your definitions above and are constantly redefining a:visited and active. I assume you have made the same mistakes in your page so fix them first and if you still have problems I'll take a look at the actual page.
Paul
Bookmarks