/* Cascading Style Sheet complies with CSS 1.0 Standard. Written 9/21/01. (c)2001 Old Dominion University Mace & Crown */

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~GENERAL~CSS~NOTES~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

	Netscape 4.5 browsers do not support inheritance, so each text type must be its own entity.

	Netscape Browsers only support one class of links, and ignore sub-classes */

	Fonts appear smaller on a Mac monitor than a PC

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


/* Document and Link Properties */

	BODY		{ BGCOLOR:#FFFFFF }

	A:link		{ color:#000066; text-decoration:underline }  /* Navy blue underline, gray nonunderline hover */

	A:visited	{ color:#000000; text-decoration:underline }
		
	A:hover 	{ color:#666666; text-decoration:none }

	/*((((((((((((((((((((((((((((((((((((((Link Properties and Notes)))))))))))))))))))))))))))))))))))))))
	(())
	(())	'text-decoration' values: none,underline,overline,line-through,blink
	(())
	(())	!!!! Order is imperative with links. "hover" properties MUST come last 
	(())
	((((((((((((((((((((((((((((((((((((((((((((((((((((())))))))))))))))))))))))))))))))))))))))))))))))*/
	

/* Font Properties */

	P.bigger	{ margin-top:0em; color:#000000; font-size:22pt; font-family:sans-serif; font-weight:800; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	P.hdln 		{ margin-top:0em; color:#000000; font-size:16pt; font-family:sans-serif; font-weight:800; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	P.hdln2		{ margin-top:0em; color:#000000; font-size:22pt; font-family:sans-serif; font-weight:800; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	P.intro		{ margin-top:0em; color:#000000; font-size:12pt; font-family:serif; 	 font-weight:400; font-style:normal; letter-spacing:0em; text-indent:.5cm }
	P.bodytext	{ margin-top:0em; color:#000000; font-size:12pt; font-family:serif; 	 font-weight:400; font-style:normal; letter-spacing:0em; text-indent:.5cm }
	P.timedate	{ margin-top:0em; color:#000000; font-size:8pt;  font-family:sans-serif; font-weight:800; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	P.sections	{ margin-top:0em; color:#000000; font-size:11pt; font-family:sans-serif; font-weight:400; font-style:normal; letter-spacing:0em; text-indent:0cm; font-variant:small-caps }
	P.fp		{ margin-top:0em; color:#000000; font-size:8pt;  font-family:sans-serif; font-weight:400; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	P.sm		{ margin-top:0em; color:#000000; font-size:9pt;  font-family:sans-serif; font-weight:400; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	P.micro		{ margin-top:0em; color:#000000; font-size:6pt;  font-family:sans-serif; font-weight:400; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	P.mid		{ margin-top:0em; color:#000000; font-size:12pt; font-family:serif; 	 font-weight:400; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	P.mid2		{ margin-top:0em; color:#000000; font-size:9pt;  font-family:sans-serif; font-weight:400; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	P.byline	{ margin-top:0em; color:#000000; font-size:10pt; font-family:monospace;  font-weight:400; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	P.sidebar	{ margin-top:0em; color:#FFFFFF; font-size:9pt;  font-family:sans-serif; font-weight:400; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	P.colored	{ margin-top:0em; color:#FF0000; font-size:13pt; font-family:sans-serif; font-weight:400; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	P.lilred	{ margin-top:0em; color:#FF0000; font-size:11pt; font-family:sans-serif; font-weight:800; font-style:normal; letter-spacing:0em; text-indent:0cm  }


	/* 	
		margin-top:xem; 			where 'x' is replaced by a number (can be decimal, can be negative) controls the space between paragraphs -- Netscape requires a </P> tag for this to work, and IE renders a carriage return with the closing of a paragraph, so it's a Catch-22
		color:#000000; 				specifies the color of the text in a common hex value. Can also use color names, such as 'red' or 'black'
		font-size:24pt; 			size of font on screen. Can also specify x% (that is 200% would be twice as large as the default size the user has selected in their browser), or xpx (size in pixels, where the initial 'x' is replaced by a number)
		font-family:family-name; 	font face as displayed on the monitor. Values: 'serif' (that's Times Romanesque), 'sans-serif' (that's Arialesque), 'monospace' (that's like Courier), or actual font name. Using an actual font name is riskiest; if specific font is not present, the browser will substitite with 'serif'
		font-weight:800;			specifies the boldness of the type. Scale goes from 300 (light) to 800 (bold) and 400 is normal weight
		font-style:normal;			values are 'normal' and 'oblique' (oblique is fancy for italics)
		letter-spacing:.5em;		a value of '1em' is normal. Specifies how far apart the letters are from one another. The smaller the value, the tighter the words. Netscape renders letters much tighter than IE, so be careful
		text-indent:0cm;			this allows you to create normal flowing paragraphs when combined with a 'margin-top:0em' 
	*/
