/* style.css created 20060607 - JV */
/* CSS properties take precedence over HTML attributes.
If both are specified, HTML attributes will be displayed
in browsers without CSS support but won't have any effect
in browsers with CSS support. */

/* change background color black to hexidecimal black #000000 throughout, 20060617 - JV */

/* Body text is silver against a black background */
body {background-color: #000000;
        font-family: "Verdana", Times, serif;
        font-size: 14px;
        line-height: 24px;
        color: #bfbfbf}

/* Line seperator - color teal */
HR {background: #000000;
        color: #00394a}

/* Un-visited link - 'orange' color:#ffbb00, 20060607 - JV */
A:link {background: #000000;
        color: #ffbb00;
        text-decoration: none}

/* Visited link 'orange' color:#ffaa00, 20060607 - JV */
A:visited {background: #000000;
        color: #ffaa00;
        text-decoration: none}

/* Hovered link 'light yellow' color:#eeee99, 20060607 - JV */
A:hover {background: #000000;
        color: #eeee99;
        text-decoration: none}

/* Active link - 'orange' color:#ffaa00, 20060607 - JV */
A:active {background: #000000;
        color: #ffaa00;
        text-decoration: none}

A:plain {text-decoration: none}


/* end of CSS */