

/*--  Style Classes  --*/
.mark   {
            font-weight: bold;
            color:  Red;
           }


/*--  Text Styles  --*/
P        {font-family: serif; 
            font-size: 12pt;  
            font-weight: normal; 
            text-indent: 2em;
            color: Navy;
           }
TT      {font-family: monospace; 
              font-size: 12pt; 
              font-weight: normal; 
              color: Black;
             }
CODE  {font-family: monospace; 
              font-size: 10pt; 
              font-weight: normal; 
              color: Black;
             }
PRE     {font-family: monospace; 
              font-size: 9pt; 
              font-weight: normal; 
              color: Black;
             }
DT      {font-family: arial; 
            font-size: 12pt; 
            font-weight: bold; 
            color: Navy;
            }
DD      {font-family: serif; 
             font-size: 12pt; 
             font-weight: normal; 
             color: Navy;
            }
UL        {font-family: serif; 
              font-size: 12pt; 
              font-weight: normal; 
              color: Navy;
              list-style-type:  square;
             }
UL UL  {font-family: serif; 
              font-size: 12pt; 
              font-weight: normal; 
              color: Navy;
              list-style-type:  disc;
             }
UL UL UL  {font-family: serif; 
              font-size: 12pt; 
              font-weight: normal; 
              color: Navy;
              list-style-type:  circle;
             }
OL        {font-family: serif; 
              font-size: 12pt; 
              font-weight: normal; 
              color: Navy;
             }
DL        {font-family: serif; 
              font-size: 12pt; 
              font-weight: normal; 
              color: Navy;
             }
BLOCKQUOTE  {font-family: serif;
               font-size:  14pt;
               font-weight:  normal;
               font-style: italic;
               color: Crimson;
              }


/*--  Heading Styles  --*/
H1       {font-family: arial; 
             font-size: 24pt; 
             color: Red;
             text-align: center;
             border-style: inset;
             border-color: Red;
             }
H2      {font-family: arial; 
            font-size: 20pt; 
            color: MediumBlue;
            text-align: center;
            border-style: inset;
            border-color: MediumBlue;
           }
H3      {font-family: arial; 
            font-size: 18pt; 
            color: MediumBlue;
            text-align: center;
            border-style: inset;
            border-color: MediumBlue;
           }
H4      {font-family: arial; 
            font-size: 16pt; 
            font-weight: bold;
            border-style: inset;
            border-color: black;
           }
H5      {font-family: arial; 
            font-size: 14pt; 
            font-weight: bold;
            border-style: inset;
            border-color: black;
           }
H6      {font-family: arial; 
            font-size: 11pt; 
            font-weight: bold;
            border-style: inset;
            border-color: black;
           }


/*--  Link Styles  --*/
a:link        {color: FireBrick;}
a:visited    {color: Purple;}
a:active    {color: LightCoral;}
a:hover     {color: LightCoral; 
                 text-decoration:blink;}


