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 */
pre,form,body,html,div,p,blockquote,fieldset,input {	margin:0; 	padding:0;	}


/* avoid long lines destroying page design */
pre, code { overflow: auto; }

/* make paragraph consistent */
p { margin-bottom: 0.45em; }

/* 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; font-weight: bold; }

/* 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; }
