/********************************************************************************** 
  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)
 **********************************************************************************/

* {
  position:static; /* IE5/Mac likes this, doesn't like ...:relative;. */
/* hide from IE5/Mac */ 
/* \*/ 
  /*position:relative; /* rumored to help with some IE problems (other than IE5/Mac. */
/* */
  text-align:left; /* IE sometimes decides to center stuff for the heck of it */
}

body {
  margin:0; padding:0;
  font-size:1em;
}

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

/*-------------------------------------------------------------------------------
 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; color:black; }
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, Helvetica, sans-serif;
  font-size: 75%; /* assumes a 14-16px default size */
  line-height:137%;
  height:100%;
}
html {
	height:100%;
}

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

caption {
	margin:10px 0 0 0;
}

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

h1, h2, h3, h4, h5, h6 { /* georgia is a better x-browser font */
  font-family: Verdana, Arial, Helvetica, sans-serif;
  margin-top: 4px;
  margin-bottom: 5px;
  font-weight: normal;
}

h1 {
 font-size: 2em;
 font-variant: small-caps;
 text-align:center;
}

h2 {
	font-size: 1.5em;
	font-variant: small-caps;
	/*font-weight: bolder;
  text-align:center;*/
  padding:10px 0 0 0 ;
}

h3 {
	font-size: 1.3em;
	font-variant: small-caps;
	/*font-weight: bolder;*/
}

h4, caption {
  font-size: 1.1em;
	font-variant: small-caps;
}

h5 {
  font-size: 0.9em;
  font-style: italic;
}

h6 {
  font-size: 0.9em;
	font-weight: bold;
}
