/*
	STANDARD STYLESHEET
	-------------------
	
Written 28th March 2003 by Algy Taylor

This stylesheet is an attempt to form a standardised stylesheet for all of
my webpages to include as a basis for further specification.
Any information stored in this stylesheet can be overwritten easily by
creating a new stylesheet (for example "extra.css") and adding a variation
on a command or a completely new one -
***************************************************************************
   THERE IS NO REASON TO EDIT THIS FILE IF YOU DO NOT WISH TO CHANGE THE
   STANDARD SETTINGS!!!
***************************************************************************
*/

/*
	EXISTING COMMANDS THAT ARE EDITED
*/

/* body is changed to automatically specify a white background, black text,
arial font family at size 10, no borders and no padding */
BODY {
	background: #FFFFDD;
	font-family: Arial, Helvetica, sans-serif;
	text-align: justify;
	font-size: 12pt;
	color: #000000;
	border-top: 0;
	border-bottom: 0;
	border-left: 0;
	border-right: 0;
	border-width: 0;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	}

/* links are always shown as the same colour (blue) unless they are active,
in which case they are highlighted in dark green, or turn red if the mouse
hovers over them, and underline is removed. */
A {
	text-decoration: none;
	}
A:link {
	color: #000000;
	}
A:visited {
	color: #000000;
	}
A:active {
	color: #00BB00;
	}
A:hover {
	color: #FF0000;
	}

H1 {
	font-size: 25pt;
	color: blue;
	}
H2 {
	font-size: 16pt;
	font-family: Arial, Helvetica, sans-serif;
	}
H3 {
	font-size: 12pt;
	font-family: Arial, Helvetica, sans-serif;
	}
H4 {
	font-size: 12pt;
	font-family: Arial, Helvetica, sans-serif;
	}
H5 {
	font-size: 10pt;
	font-family: Arial, Helvetica, sans-serif;
	}
H6 {
	font-size: 8pt;
	font-family: Arial, Helvetica, sans-serif;
	}

TABLE {
	margin: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	}

TD {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	}	

/*
	Define basic classes
*/

.note {
	font-size: 8pt;
}