a:link {    /* unvisited link */
    color: #0000ff;
    text-decoration: none;
}
	a:visited {    /* visited link */
    color: maroon;

}
	a:hover {    /* mouse over link */
    color: #BF0060;
    text-decoration: underline;
}
	a:active {    /* active link */
    color: red;
}

A.class1 {color:red;}
A.class1:link {text-decoration: none; color: #40ff00;}
A.class1:visited {text-decoration: none; color: white;}
A.class1:hover {text-decoration: underline; color: #00ffff;}
A.class1:active {text-decoration: none; color: white;}

a, a:active, a:focus, 
button, button:focus, button:active, 
.btn, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn.active.focus {outline: none; outline: 0;}

A.class2 {color:#9d9d9d;}
A.class2:link {text-decoration: none; color: #9d9d9d;}
A.class2:visited {text-decoration: none; color: #9d9d9d;}
A.class2:hover {text-decoration: underline; color: #fff;}
A.class2:active {text-decoration: none; color: #C9C9C9;}


input::-moz-focus-inner {
    border: 0;
}
