/* css for changing link colors  */

a:link {
    color: #5cf5ee;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: 	#677cfb;
    background-color: transparent;
    text-decoration: underline;
}

a:hover {
    color: magenta;
    background-color: transparent;
    text-decoration: underline;
}

a:active {
    color: yellow;
    background-color: transparent;
    text-decoration: underline;
}
