body {
        font-size: small;
        font-family: Tahoma,Geneva,sans-serif;
        color: orange;
	background-color: black;
        scrollbar-track-color: black;
        scrollbar-arrow-color: orange;
}
/*      Links unvisited links                                                   */
a.link:link {
        color: white;
        background: transparent;
}

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

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

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

/*      Unvisited links                                                         */
a:link {
        color: white;
        background: black;
}

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

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