/* CSS FOR Crypto-Buster LINKS */
/* css for HEADING Links */
.headLinks a:link, a:visited {
/* font: 12px Arial, Verdana, sans-serif; */
font-weight: bold;
color: white;
text-decoration: none;
}
.headLinks a:hover, a:active{
font-weight: bold;
color: lightgray;
text-decoration: none;
}
/* css for TOP NAV Links */
.topNavLinks a:link, a:visited {
font: 12px Arial, Verdana, sans-serif;
font-weight: bold;
text-decoration: none;
color: white;
}
.topNavLinks a:hover, a:active {
font: 12px Arial, Verdana, sans-serif;
font-weight: bold;
text-decoration: none;
color: red;
}
/* css for Activities Nav Links */
.actNavLinks a:link {
font: 16px Arial, Verdana, sans-serif;
font-weight: bold;
color: blue;
}
.actNavLinks a:visited {
font: 16px Arial, Verdana, sans-serif;
font-weight: bold;
color: blue;
}
.actNavLinks a:hover, .bottomLinks a:active {
font: 16px Arial, Verdana, sans-serif;
font-weight: bold;
text-decoration: none;
color: grey;
}
/* Note: that the 'a:hover' must be placed after the 'a:link' and 'a:visited' rules, since*/
/* otherwise the cascading rules will hide the 'color' property of the 'a:hover' rule. */
/* ???? Similarly, if 'a:active' is placed after 'a:hover', the active color will */
/* apply when the user both activates and hovers over the 'a' element.????? */


