/*  **NOTES:
    1. The "margin-top" and margin-bottom" attributes below prevent blank lines from being inserted above and below the tag.
    2. The "padding-top" and padding-bottom" attributes are also used to support prevention of blank lines from being inserted above and below the tag.
    3. The "font-family" attribute contents specify the order in which fonts are to be used.
    4. The "<P>" tag is the "default" tag for text in the body of a page
*/
  UL {margin-top:0px; margin-bottom:0px; padding-top: 0px; padding-bottom: 0px;}
  OL {margin-top:0px; margin-bottom:0px; padding-top: 0px; padding-bottom: 0px;}
  LI {list-style-position: outside; margin-left:20px; }
  H1 {font-size: 45; font-weight: bold; color: navy; font-family: Times, serif; margin-top: -10px; padding-top: 0px; margin-bottom: -15px; padding-bottom: 0px;}
  H2 {font-size: 36; font-weight: bold; color: navy; font-family: Times, serif; margin-top: 0px; padding-top: 0px; margin-bottom: -10px; padding-bottom: 0px;} 
  H3 {font-size: 24; font-weight: bold; color: navy; font-family: Times, serif; margin-top: 0px; padding-top: 0px; margin-bottom: 0px; padding-bottom: 0px;} 
  H4 {font-size: 20; font-weight: bold; color: navy; font-family: Times, serif; margin-top: 0px; padding-top: 0px; margin-bottom: 0px; padding-bottom: 0px;} 
  H5 {font-size: 16; font-weight: normal; color: navy; font-family: Times, serif; margin-top: 0px; padding-top: 0px; margin-bottom: 0px; padding-bottom: 0px;} 
  H6 {font-size: 14; font-weight: bold; font-style: italic; color: navy; font-family: Times, serif; margin-top: 0px; padding-top: 0px; margin-bottom: 0px; padding-bottom: 0px;} 
  /*P {font-size: 16; font-weight: bold; font-style: normal; color: navy; font-family: Times, serif; margin-top: 10px; padding-top: 0px; margin-bottom: 0px; padding-bottom: 0px;} */
  P {font-size: 16; font-weight: normal; font-style: normal; color: navy; font-family: Times, serif; margin-top: 10px; padding-top: 0px; margin-bottom: 0px; padding-bottom: 0px;} */
	/* body td { font-size: 16; font-weight: bold; font-style: normal; color: navy; font-family: Times, serif; } */
	body { font-size: 16; font-weight: normal; font-style: normal; color: navy; font-family: Times, serif; }
	table { font-size: 16; font-weight: normal; font-style: normal; color: navy; font-family: Times, serif; }
	td { font-size: 16; font-weight: normal; font-style: normal; color: navy; font-family: Times, serif; }

/*  **NOTES:
    1. The followin code for "table" eliminates all spacing between tables, table rows and table cells.
    2. The "*border-collapse: expression...." line is a work around for Internet Explorer. 
    3. This style eliminates spacing between tables, rows and cells which have a background color and no border.
    4. The following code DOES NOT eliminate space if applied to <div> tag
*/
table
{
		border-collapse: collapse;
		*border-collapse: expression('separate', cellSpacing = '0px');
		border-spacing: 0px;
    margin: 0px;
    padding: 0px;
}
  A:link {text-decoration: underline ; color: #000080 ; font-weight: none}
  A:visited  {text-decoration: underline ; color: #DC143C; font-weight: none}
  A:active {text-decoration: underline ; color:black ; font-weight: none}
  A:hover {text-decoration: underline ; color: #006600 ; font-weight: none}
