@charset "UTF-8";
/* CSS Document */
/* unvisited link */
a:link {
    color: grey;
}

/* visited link */
a:visited {
    color: grey;
}

/* mouse over link */
a:hover {
    color: yellow;
}

/* selected link */
a:active {
    color: grey;
}
