/*
The use of point size cause problems when screen size changes as MS defines point sizes as pixels.  Pixels obviously change the size of the print.  Percent is no better than than the default +1, +2 etc.  Only inches and centameters are constant regardless of screen resolution! So use Font Attributes in HTML to change sizes!!!
*/

/*PS	Inches
8	 .111		 56%
9	 .125		 64%
10	 .139		 71%
11	 .153		 78%
12	 .167 		100%	<--- default
14	 .194		117%
16	 .222		133%
18	 .250		150%
20	 .278		167%
22	 .306		183%
24	 .333		200%
26	 .361		217%
28	 .389		233%
36	 .500		300%
48	 .750		400%
72	1.000		500%
*/


/* HEADLINES */
H1 {font: bold 150% "comic sans MS", arial, helvetica, san-serif} /* 18 pt */
H2 {font: bold 133% "comic sans MS", arial, helvetica, san-serif}	/* 16 pt */
H3 {font: bold 133% "comic sans MS", arial, helvetica, san-serif}	/* 16 pt */
H4 {font: bold 117% "comic sans MS", arial, helvetica, san-serif}	/* 14 pt */
H5 {font: bold 100% "comic sans MS", arial, helvetica, san-serif}	/* 14 pt */
H6 {font: bold  94% "comic sans MS", arial, helvetica, san-serif}	/* 14 pt */
/* The TD is needed because Netscape does not inherit properly from other tags! */
TD, P, U {font: normal 100% "comic sans MS", arial, helvetica, san-serif}
 

/* Yellow HiLite stuff here! */
.HiLite 
 {background:#ffff99;color: #000000}

.aLittleBigger
 {font: bold 133% "comic sans MS", arial, helvetica, san-serif}

/* LIST STUFF HERE */

div.warning {
	BACKGROUND: none transparent;
  	COLOR: #F4720B;
  font: italic 117% arial, helvetica, sanserif;
  font-weight: bold;
  text-decoration: blink
}

div.copyright {
  font: italic 64% arial, helvetica, sanserif;
  font-weight: bold
}

/* ANCHOR STUFF HERE!   NOTE THAT HOVER ONLY WORKS IN EXPLORER! */
/*Yellow -- Unvisited link */
A:link {
  FONT-FAMILY: "comic sans MS", arial, helvetica, san-serif; 
  BACKGROUND: none transparent scroll repeat 0% 0%; 
  COLOR: #7F0000; 
  TEXT-DECORATION: underline
}
/*Backgroun color -- Mouse Down -- does not yet work */

/*Netscape uses alink color from page BODY attribute */
A:active {
  FONT-FAMILY: "comic sans MS", arial, helvetica, san-serif;
  BACKGROUND: none transparent scroll repeat 0% 0%; 
  COLOR: #FF8C00; 
  TEXT-DECORATION: none
}
/*Tan -- Previously visited */
A:visited {
	BACKGROUND: none transparent;
  FONT-FAMILY: "comic sans MS", arial, helvetica, san-serif;
  BACKGROUND: none transparent scroll repeat 0% 0%; 
  COLOR: #666666; 
  TEXT-DECORATION: underline
}
/* Orange -- mouse over link. A:hover is only implimented in IE */
A:hover {
  FONT-FAMILY: "comic sans MS", arial, helvetica, san-serif;
	BACKGROUND: none transparent;
  COLOR: #FF0000;   
  text-decoration: underline
}
