/*
 *	Style sheet for TSUNAMI web pages.
 *	We set a preferred sans-serif font for all text and headings.
 *
 *  The BODY style should be inherited for paragraphs as well but
 *  doesn't seem to work with netscape v4.05 so we the properties for
 *  all other elements as well.
 */

		
BODY {
		font-family: helvetica, arial, verdana, sans-serif;
	}
	
	/*  List all tags we want to use the default style */
P, A:link, A:active, A:visited, A:name, TD, DD, DT, BLOCKQUOTE, UL, OL, LI, I, B {
	font-family: helvetica, arial, verdana, sans-serif;
	}
	
	/*  Headings use same font but change colour */
H1, H2, H3, H4, H5, H6 {
	font-family: helvetica, arial, verdana, sans-serif;
	color: "660000";
	}

