/* Font Properties */

	.banner		{ margin-top:0em; color:#000000; font-size:1.7em; font-family:sans-serif; font-weight:800; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	.banner2	{ margin-top:0em; color:#CCCCCC; font-size:1.7em; font-family:sans-serif; font-weight:800; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	.hdln 		{ margin-top:0em; color:#000000; font-size:1.5em; font-family:sans-serif; font-weight:800; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	.subhead	{ margin-top:0em; color:#000000; font-size:1.3em; font-family:sans-serif; font-weight:800; font-style:oblique;letter-spacing:0em; text-indent:0cm  }
	.intro		{ margin-top:0em; color:#000000; font-size:1em;   font-family:serif; 	  font-weight:400; font-style:normal; letter-spacing:0em; text-indent:.5cm }
	.bodytext	{ margin-top:0em; color:#000000; font-size:1em;   font-family:serif; 	  font-weight:400; font-style:normal; letter-spacing:0em; text-indent:.5cm }
	.sm			{ margin-top:0em; color:#000000; font-size:.7em;  font-family:sans-serif; font-weight:400; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	.micro		{ margin-top:0em; color:#000000; font-size:.5em;  font-family:sans-serif; font-weight:400; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	.mid		{ margin-top:0em; color:#000000; font-size:.9em;  font-family:serif; 	  font-weight:400; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	.mid2		{ margin-top:0em; color:#000000; font-size:.8em;  font-family:sans-serif; font-weight:400; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	.byline		{ margin-top:0em; color:#000000; font-size:.9em;  font-family:monospace;  font-weight:400; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	.sidebar	{ margin-top:0em; color:#FFFFFF; font-size:.8em;  font-family:sans-serif; font-weight:400; font-style:normal; letter-spacing:0em; text-indent:0cm  }
	.red		{ margin-top:0em; color:#FF0000; font-size:1.1em; font-family:sans-serif; font-weight:400; 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:xem; 				where 'x' is replaced by a number (can be decimal, can not be negative) controls 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)
		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' 
	*/
