/* CSS FOR FAMILY LINKS */

/* css for Underlined only Links */
.ulLinks (
A:link {text-decoration: none}
A:visited {text-decoration: none}
A:active {text-decoration: none}
A:hover {text-decoration: underline; color: red;}


/* css for Nav Links */
.navLinks a:link {
font: 14px Arial, Verdana, sans-serif;
font-weight: bold;
color: blue;
text-decoration: none;
}
.navLinks a:visited {
font: 14px Arial, Verdana, sans-serif;
font-weight: bold;
color: blue;
text-decoration: none;
}
.navLinks a:hover, .topNavLinks a:active {
font: 14px 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;
}
