/* This is how a comment is indicated in css */
/*
The first tag below this commented section is the body
tag which sets the background color for the page.
The body tag in the HTML document will be ignored by
css capable browsers but picked up by browsers which
aren't css enabled and this should indicate colors which
are at least similar to those which appear here.

The first text defining css tag is "#w4" which
affects text in the three cell navigation table.

The second text related css tag is for the title which appears inside
of and near the top of the web page and it's identifier is "#ti".
Background-color is just that and "color:" sets the text color.

Next is the main text field on all my text pages which is defined by "#dp"
and it establishes a central field of another color, specifically #fafaff which
is very nearly, but not quite, white.

The next css tag is "#d1" which is identical to "#dp" with one exception;
it doesn't change the background color of the central field.
*/

body { background-color:#7987d5; color:#000066; padding:0; margin:0; border-width:0;}

#w4 {color:#000066; font-size:90%; font-weight:normal; text-align:center;}

#ti {color:#000066; font-size:160%; font-weight:bold; text-align:center; margin:1px 4% 1px 4%; background-color:#7987d5;}

#dp {color:#000066; background-color:#fafaff; font-size:110%; font-weight:normal; text-align:left; margin: 1% 5% 1% 5%; padding:3%;}

#d1 {color:#000066; font-size:110%; font-weight:normal; text-align:left; margin: 1% 5% 1% 5%; padding:3%;}

#w4 {color:#000066; font-size:90%; font-weight:normal; text-align:center;}

a:link {color: #4b4bff; text-decoration: none; }
a:active {color: #212b61; text-decoration: underline; }
a:visited {color: #d755ff; text-decoration: none; }
a:hover {color: #ee0719; text-decoration: none; }
