/*
Presents hyperlinks as non-underlined, black text, until
you mouse-over, then they're underlined.  Good for use in a table
of contents; makes the printout of the document look nicer too.

Example use:
<a href="http://yahoo.com" class="toc">Yahoo</a>

In FrontPage, select the hyperlink to modify, then do
Ctrl-K - Style... - and select 'toc' in the Style drop-down.
*/

a:link.toc    { text-decoration: none; color: #000000 }
a:active.toc  { text-decoration: underline; }
a:visited.toc { font-size: 10pt; text-decoration: none; color: #000000 }
a:hover.toc   { text-decoration: underline; }