/* - - - - - - - - - - - - - - - - - - - - - - - - - -

	TOC

	- Tags
	- Consistent font sizes
	- Font face
	- Layout
	- Menu
	- Other styling

 - - - - - - - - - - - - - - - - - - - - - - - - - - */

/* Tags */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - */

h1 		{ font-size: 3em; }

table 	{ margin: 1em auto }

td 		{ padding: .2em .5em }


/* Font face */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - */

body, div, p, th, td, li, dd {
    /* redundant selectors to help NS4 remember */
    font-family:  Helvetica, Verdana, Lucida, Arial, sans-serif;
}

/* Colours */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - */

body {
	background: white;
	color: black;
}
a {
	color: black;
}

/* Layout */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - */

html, body {
	height: 100%;
	text-align: left;
}

#hd h1 {
	padding: .8em 0;
}

a#BACK {
	font-size: 1.2em;
	font-weight: bold;
	letter-spacing: .1em;
	position: absolute;
	top: 0em;
	right: 100%;
	text-decoration: none;
}
a#BACK:hover { 
	letter-spacing: 1em; 
	font-weight: bold;
}

/* Footer */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - */

/* Keep footer at bottom, see: www.alistapart.com/articles/footers/ */
html, body {
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
}
#doc {
	position: relative;
	min-height: 100%;
}
#bd {
	padding-bottom: 2em;	/* Height of footer */
}
#ft {
	position: absolute;
	bottom: 0;
}


/* Menu */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - */

#MENU {
	display: block;
	width: 100%;
}

#MENU ul {
	list-style: none;
	margin: 0; padding: 0;
}

#MENU li {
	float: left;
	margin: 0; padding: 0;
	margin-right: 1em;
}

#MENU a {
	display: block;
	width: 100%;
	text-decoration: none;
	padding: 2%;
}
