/********************************************************************************** 
  lpf.css -- Level the Playing Field. Majorly modified form of "undohtml.css" (C) 
  2004 by Tantek Celik. Some Rights Reserved. His style sheet is licensed 
  under a Creative Commons License. see http://creativecommons.org/licenses/by/2.0

*-------------------------------------------------------------------------------
  Modifications made by Paul Pomeroy, July 2005.

  Whatever isn't Tantek's, consider it free for the taking but as I have no idea
	what your requirments may be and no control over how you use the following, all 
	risks are assumed by you. Okay?  
*-------------------------------------------------------------------------------

  Purpose: undo some of the default styling of common (X)HTML browsers 
  so all browers can start from the same settings (or as close as possible)
 **********************************************************************************/

* {
	font-size: 1em;
}

body {
	margin:0; padding:0;
}

h1,h2,h3,h4,h5,h6,pre,form,body,html,blockquote,fieldset,input {
	margin: 0;
}

ul,ol {
	margin-top: 0;
}

p {
	margin: 8px 2px;
}

/*-------------------------------------------------------------------------------
 no list-markers by default, since lists are used more often for semantics 
 --------------------------------------------------------------------------------*/

/*
ul,ol {
	list-style: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;
}

/*-------------------------------------------------------------------------------
 try getting rid of blue linked borders. 
 --------------------------------------------------------------------------------*/

a, a:link, a:visited, a:hover, a:focus, a:active {
	border:none;
}

a img,:link img,:visited img {
	border:none;
}

/*-------------------------------------------------------------------------------*
 ********************************************************************************* 
  Now set up the default fonts and font sizes ...

  We'll start with a size of 12px (1em = 12px)
	
 ********************************************************************************* 
 *-------------------------------------------------------------------------------*/

body {
	font-family: verdana, arial, sans-serif;
	font-size: 75%; /* assumes a 14-16px default size */
	line-height:137%;
}

/*-------------------------------------------------------------------------------
 ... Let IE use percentage for base font size so it can still zoom text. 
     everyone else we'll give a pixel value to ...
 --------------------------------------------------------------------------------*/

html>body {
	font-size: 12px; /* For everyone except IE ... */
}

p {
	font-size: 1.0em; /* ~12px */
}