
P {	  /* Styles for paragraphs i.e.; <P> Lorem ipsum </P>   */ 
        color: black; /* Sets the color of the font */ 
        background: transparent;
        font-size: 9pt; /* Points (such as 8pt) is possible, but always use % */
        text-align: left; /* alignment left, right, center, justify */
        font-family: "verdana", "arial"; /* Fonts in quotes */
   } 
   
   
P.head { /* header tag i.e.; <P class="head"> Lorem ipsum </P>  */ 
        color: #1C0C81; /* Sets the color of the font */ 
        background: transparent;
        font-size: 10pt; /* Points (such as 8pt) is possible, but always use % */
        font-weight: bold;
        text-align: left; /* alignment left, right, center, justify */
        font-family: "verdana", "arial"; /* Fonts in quotes */
   } 


P.copy { /* copy right tag i.e.; <P class="copy"> Lorem ipsum </P>  */ 
        color: black; /* Sets the color of the font */ 
        background: transparent;
        font-size: 6pt; /* Points (such as 8pt) is possible, but always use % */
        text-align: left; /* alignment left, right, center, justify */
        font-family: "verdana", "arial"; /* Fonts in quotes */
   }
   
.body {	/* used in bulleted lists i.e.; <SPAN class="body"> Lorem ipsum </span> */
        color: black; /* Sets the color of the font */ 
        background: transparent;
        font-size: 9pt; /* Points (such as 8pt) is possible, but always use % */
        text-align: left; /* alignment left, right, center, justify */
        font-family: "verdana", "arial"; /* Fonts in quotes */
   }
   
.right {  /* used on back to top tags i.e.; <P class="right"><a href="#top">Back to Top</A></P> */
        color: black; /* Sets the color of the font */ 
        background: transparent;
        font-size: 9pt; /* Points (such as 8pt) is possible, but always use % */
        text-align: right; /* alignment left, right, center, justify */
        font-family: "verdana", "arial"; /* Fonts in quotes */
   }
   

   
/* colors for each link i.e.; <a href="x.html"> Lorem ipsum </A>*/
A:link        {text-decoration: none; font-weight: normal; color: #1C0C81; background-color: transparent; font: 9pt "verdana", "arial";}
A:visited     {text-decoration: none; font-weight: normal; color: #1C0C81; background-color: transparent; font: 9pt "verdana", "arial";}
A:HOVER       {text-decoration: none; font-weight: normal; color: #000033; background-color: transparent;  font: 9pt "verdana", "arial";}

/* for 'back to top' i.e.; <P class="right"><a href="#top">Back to Top</A></P> */
A.topLink:link        {text-decoration: none; font-weight: bold; color: #1C0C81; background-color: transparent; font: 10pt "verdana", "arial";}
A.topLink:visited     {text-decoration: none; font-weight: bold; color: #1C0C81; background-color: transparent; font: 10pt "verdana", "arial";}
A.topLink:HOVER       {text-decoration: none; font-weight: bold; color: #000033; background-color: transparent;  font: 10pt "verdana", "arial";}

/* all the rest of the navigation 'where you are not currently' i.e.; <a href="x.html" class="nav"> Lorem ipsum </A>  */
A.nav:link        {text-decoration: none; font-weight: bold; color: #000033; background-color: transparent; font-size: 10pt; font-family: "verdana", "arial";}
A.nav:visited     {text-decoration: none; font-weight: bold; color: #000033; background-color: transparent; font-size: 10pt; font-family: "verdana", "arial";}
A.nav:HOVER       {text-decoration: none; font-weight: bold; color: #1C0C81; background-color: transparent; font-size: 10pt; font-family: "verdana", "arial";}

/* current page  i.e.; <a href="x.html" class="navCurrent"> Lorem ipsum </A>  */
A.navCurrent:link        {text-decoration: none; font-weight: bold; color: #1C0C81; background-color: transparent; font-size: 10pt; font-family: "verdana", "arial";}
A.navCurrent:visited     {text-decoration: none; font-weight: bold; color: #1C0C81; background-color: transparent; font-size: 10pt; font-family: "verdana", "arial";}
A.navCurrent:HOVER       {text-decoration: none; font-weight: bold; color: #1C0C81; background-color: transparent; font-size: 10pt; font-family: "verdana", "arial";}