/*stylesheet for links*/


/*set link colours*/
A:link.buttons {color: teal; text-decoration: none;}
A:link.basenav {color: gray; text-decoration: none;}
A:link.normal {color: red; text-decoration: underline;}

/*active link colours*/
A:active.buttons {color: blue; text-decoration: none;}
A:active.basenav {color: gray; text-decoration: none;}
A:active.normal {color: red; text-decoration: underline;}

/*visited link colours*/
A:visited.buttons {color: lime; text-decoration: none;}
A:visited.basenav {color: gray; text-decoration: none;}
A:visited.normal {color: red; text-decoration: underline;}

/*mouse hover colours*/
A:hover.buttons {color: green; text-decoration: none;}
A:hover.basenav {color: #CCCCCC; text-decoration: none;}
A:hover.normal {color: #CCFFFF; text-decoration: none;}

