body {
	font-size: 75%; /* For IE */
}

html>body {
	font-size: 12px; /* IE can’t read this */
}

/* default fonts */
body {
	font-family: Arial, Helvetica, sans-serif;
}

/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with 
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html, p, blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
h1,h2,h3,h4,h5,h6,pre,form,body,html,div,p,blockquote,fieldset,input {
	margin:0;
	padding:0;
}

/* consistent headlines accross browsers */
h1 {font-size:2em;}  		/* displayed at 24px */
h2 {font-size:1.5em;}  		/* displayed at 18px */
h3 {font-size:1.25em;}  	/* displayed at 15px */
h4 {
	font-size:14px;
	color: #000000;
}  		/* displayed at 12px */

/* avoid browser default inconsistent heading font-sizes and pre/code too */
h5,h6,pre,code {
	font-size: 16px;
	color: #333333;
} /* displayed at 12px */

/* avoid long lines destroying page design */
pre, code { overflow: auto; }

/* make paragraph consistent */
plinks{
	font-size:1.08em;
	margin-bottom:0.5em;
	line-height:1.25em;
	color:#666666;
}
plinks a{
	font-size:1.08em;
	margin-bottom:0.5em;
	line-height:1.25em;
	color:#666666;
}
plinks a.active{
	font-size:1.08em;
	margin-bottom:0.5em;
	line-height:1.25em;
	color:#666666;
}
plinks a.hover{
	font-size:1.08em;
	margin-bottom:0.5em;
	line-height:1.25em;
	color:#666666;
}
plinks a.link{
	font-size:1.08em;
	margin-bottom:0.5em;
	line-height:1.25em;
	color:#666666;
}

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img {	border:none; }

/* link underlines tend to make hypertext less readable, 
   because underlines obscure the shapes of the lower halves of words */
:link,:visited { text-decoration: none; }

/* make blockquote consistent */
blockquote {
	margin: 0 3em 1em;
	padding: 0;
	font-style: italic;
}

/* make bullet points consistent (for use as bullet points [not semantic markup]) */
ul, ol {
	margin: 0 1.5em 1em 3em;
	padding: 0;
}

/* make pre-formatted text consistent */
pre {
	margin: 0 3em 1em;
	padding: 0;
}

/* avoid double shrinkage of nested elements */
li li, li p, td p, blockquote p { font-size: 1em; padding-bottom: 0; }	

/* de-italicize address */
address { font-style: normal; }

