/*put in style tag, between body tags, and define styles for all types of links (don't include"a:" here, so we can handle non-html
type links) */
/* These definitions are in a certain order to be more friendly across many browsers*/

:link, :visited { text-decoration: none; color: #FFFFFF; }<!-- ? -->
:link:focus, :visited:focus { color: #CC00FF }<!-- ? -->
:link { color: #FF0000; }<!-- this is color(red) of the raw unvisited link -->
:visited { color: #FFFF00; }<!-- this is the colo (yellow) you see after you visited the link -->
:link:hover, :visited:hover { text-decoration: underline; color: #0000FF;
}<!-- this is the color (bright blue) you see on rollover of either of the above -->
:link:active, :visited:active { color: #FFFFFF; text-decoration: none: none;
}<!-- this is the color (white) you see after just having visited a link -->

