/* unvisited link */
a:link {
    color: #AAFFFF;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: #AAFFFF;
	 text-decoration: none;
}

/* mouse over link */
a:hover {
    color: #FFFFFF;
    text-decoration: none;
}

/* selected link */
a:active {
    color: #FFFFFF;
    text-decoration: none;
} 

