/*stylesheet for links*/


/*set link colours*/
A:link.buttons {color: black; text-decoration: none;}
A:link.buttons2 {color: white; text-decoration: none;}
A:link.normal {color: green; text-decoration: underline;}

/*active link colours*/
A:active.buttons {color: black; text-decoration: none;}
A:active.buttons2 {color: white; text-decoration: none;}
A:active.normal {color: aqua; text-decoration: none;}

/*visited link colours*/
A:visited.buttons {color: black; text-decoration: none;}
A:visited.buttons2 {color: white; text-decoration: none;}
A:visited.normal {color: fuchsia; text-decoration: none;}

/*mouse hover colours*/
A:hover.buttons {color: gray; text-decoration: none;}
A:hover.buttons2 {color: gray; text-decoration: none;}
A:hover.normal {color: red; text-decoration: none;}

