html, body, div {
	box-sizing: border-box;
	-moz-box-sizing: border-box;	
}
 
body {
	font-family: Palatino, Garamond, Times New Roman, serif;
	text-align: center;
	font-size: 76%;
}
 
/* This breaks the menu.  And it is already the default in most (all?) browsers anyway.
div {
	position: relative;
}*/

/* The following is from Sane CSS Typography: 
   http://www.thenoodleincident.com/tutorials/typography/ */
h1 {
	font-style: italic;
	font-size: 2.0em;
	font-weight: bold;
	margin-top: 0em;
	margin-bottom: 0.4em;
}
h2 {
	font-size: 1.6em;
	font-style: italic;
	margin: 1.5em 0em 0em 0em;
	font-weight: bold;
}
h3 {
	margin: 1em 0em 0.3em 0em;
	font-size: 1.3em;
	font-style: italic;
	font-weight: bold;
}
h4 {
	font-size: 1.1em;
	margin: 0.2em 0em 0.2em 0em;
	font-weight: bold;
}
h5 {
	font-size: 1.0em;
	margin: 0.2em 0em 0.2em 0em;
	font-weight: bold;
}
h6 {
	font-size: 0.8em;
	margin: 0.2em 0em 0.2em 0em;
	font-weight: bold;
}
p {	
	font-size: 1.2em;
	line-height: 1.1em;
	margin: 0.3em 0em 0.9em 0em;
}
li, td {	
	font-size: 1.2em;	
	line-height: 1.1em;
}
a, a:visited {
	text-decoration: none;
}
a:hover, a:active {	
	text-decoration: none;
}
a.selectedPage {
	font-weight: bold;
}

 
/* This clearing trick always works, though it does require that you add 
the following (including the existence of the 1x1 transparent cleardot.gif) 
whenever you want to clear the floats:
<div class="clear"><img src="Images/cleardot.gif" width="1" height="1" /></div>
*/
div.clear
{
	clear: both;
	height: 0px;
	width: 0px;
	margin: 0px;
	padding: 0px;
}
 
/* this is a clearing trick that might work cross browser without HTML markup 
Apply this to the container holding the floated elements */
.clearfix:after 
{
	display:block;
	height:0;
	clear:both;
	visibility:hidden;
	voice-family: "\"}\""; 
	voice-family:inherit;
	content: "."; /* this is the line we need to hide from IE6, so we undo it in the holly hack below */
}
 
.clearfix {display:inline-block;}
/* Hide from IE Mac \*/
.clearfix {display:block;}
* html div.clearfix {height: 1%; content: "";}
/* End hide from IE-mac */

