/* Start of CMSMS style sheet 'Homepage &lt;a&gt;' */
/*
default link styles
*/
/* set all links to have underline and bluish color */
a{
text-decoration: underline;

/* 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: none; 
   color: #fff; 
}



/* remove underline on hover and change color */
a:hover {
      text-decoration: none;   color: #fff;
}

/* End of 'Homepage &lt;a&gt;' */

