/*
default link styles
*/
/* set all links to have no-underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #18507C; 
   font-family: "Arial";
}

a:visited {
   text-decoration: none;
   background-color: inherit;
   color: #18507C;                /* a different color can be used for visited links */
   font-family: "Arial";
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #C3D4DF;
   color: #385C72;
   font-family: "Arial";
}

p {font-family: Arial; } 

td {font-family: Arial; } 

font.small{font-size:8pt; font-family:verdana, Arial, Helvetica, sans-serif;}

