/* pseudo-class 
- nb. keep order of declarations, ie. link, visited, hover, active 
- colours : 
grey/brown #996633  olive #999933  orange #FF9900  
teal #336666  slate blue #006699
*/

a:link    {color: #006699;  text-decoration : none;}
a:visited {color: #006699;  text-decoration : none;}
a:hover   {color: blue;   text-decoration : none;}
a:active  {color: purple;  text-decoration : none;  }

/* Rest of CSS */
body
{
color: gray;
font-weight : normal;
}

/* Other font properties 
  background : white;
  color : red;
  font-weight : normal;
  padding: 0 3mm 0 3mm;
  text-decoration : none;
*/