/* pseudo-class selectors */
a:link {color: blue;}
a:visited {color: black;} /* any link that's been visited */
a:hover {background: #C0C0C0;}
a:active {color: yellow;}
/* :focus - something has input focus */
/* :active - currently active i.e. being clicked on... */
input:focus {background: silver;}
