/* This style sheet is based on an HTML 2.0 specification compliant model written by Todd Fahmer found in Eric A. Meyer's
   _Cascading_Style_Sheets:_The_Definitive_Guide_, Sebastopol, CA: O'Reilly & Associates, Inc., 2000.  400--401

Prepared by Frank P. Boimare III for his Geocities account on 2007-12-29
Revised by Frank P Boimare III for his Geocities account on 2008-06-16 */
   
BODY {
 margin: 1em;
 font-family: arial, helvetica, sans-serif; /* changed from Times New Roman FPB3 */
 line-height: 1.1;
 background: white;
 color: black; 
}

H1, H2, H3, H4, H5, H6, P, UL, OL, DIR, MENU, DIV, DT, DD, ADDRESS, BLOCKQUOTE, PRE, BR, HR { display: block }

B, STRONG, I, EM, CITE, VAR, TT, CODE, KBD, SAMP, IMG, SPAN { display: inline }

LI { display: list-item }

H1, H2, H3, H4 { margin-top: 1em; margin-bottom: 1em }
H5, H6 { margin-top: 1em }
H1 { text-align: center }
H1, H2, H3, H4, H5, H6 { font-weight: bold }
/* H3, H5 { font-style: italic } from original stylesheet -- made bold instead of italic FPB3 */
H1 { font-size: xx-large }
H2 { font-size: x-large }
H3 { font-size: large }

B, STRONG { font-weight: bolder }  /* relative to the parent */
I, CITE, EM, VAR, ADDRESS, BLOCKQUOTE { font-style: italic }
PRE, TT, CODE, KBD, SAMP { font-family: monospace }

PRE { white-space: pre }

ADDRESS { margin-left: 3em }
BLOCKQUOTE { margin-left: 3em; margin-right: 3em }

UL, DIR { list-style: circle }   /* Modified value from "disc" FPB3 */
/* OL { list-style: decimal; list-style: lower-alpha } */
MENU { margin: 0 }   /* tight formatting */
LI { margin-left: 3em }

DT { margin-bottom: 0; font-weight: bold }  /* added bold for data names FPB3 */
DD { margin-top: 0; margin-left: 3em }

HR {border-top: solid black }   /* 'border-bottom' could also have been used.  Modified to add color and width FPB3 */

A:link { color: blue }   /* unvisited links */
A:visited { color: purple }   /* visited links */
A:active { color: lime }   /* active links */

/* setting the anchor border around IMG elements requires contextual selectors */

A:link IMG { border: 2px solid blue }
A:visited IMG { border: 2px solid purple }
A:active IMG { border: 2px solid lime }
