body {
        font-size: small;
        font-family: Comic Sans MS,Comic,sans-serif;
	font-color: red;
        background-color: green;
        scrollbar-track-color: green;
        scrollbar-arrow-color: red;
}
/*      Links unvisited links                                                   */
a.link:link {
        color: red;
        background: green;
}

/*      Links active links (not widely supported)                               */
a.link:active {
        color: green;
        background: red;
}

/*      Links when hovered over (MSIE only)                                     */
a.link:hover {
        color: green;
        background: red;
}

a.link:visited {
	color: red;
	background: green;
}

a:visited {
        color: red;
        background: green;
}


/*      Unvisited links                                                         */
a:link {
        color: red;
        background: green;
}

/*      Active links (not widely supported)                                     */
a:active {
        color: green;
        background: red;
}

/*      Links when hovered over (MSIE only)                                     */
a:hover {
        color: green;
        background: red;
}

