Upon a
quick inspection, you have used <div id="nav_font"> multiple times. IDs are to be used for a single instance on the page, CLASSes are for repeated instances.
So try that first. Change all instances of id="nav_font" to class="nav_font", and then attached CSS appropriately from #nav_font to .nav_font
It's a start. You may want to also look at the other problems with validation. There are many.