/********************************************************************************** 
  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 */
  font-size:1em;
}

body {
  margin:0; padding:0;
}

ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,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 {
text-decoration:none;
color:#660066
}

:visited {
text-decoration:none;
color:#660066 
}

:active {
text-decoration:none;
color:#CC0000
}

/*-------------------------------------------------------------------------------
 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 */
}

h1, h2, h3, h4, h5, h6, h7 { /* georgia is a better x-browser font: georgia, "new century schoolbook", times, serif */
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 1px;
  margin-bottom: 1px;
  font-weight: normal;
}

h1 {
 font-size: 2em;
 font-variant: small-caps;
 text-align:center;
}

/* h2 a törzscímek*/
h2 {
	font-size: 1.4em;
	font-weight: bolder;
	text-align:center;
	color:#660066;
}

/* h3 a modul- és menüpontok */
h3 {
	font-size: 1.0em;
}

/* h4 a kiemelt törzsszöveg */
h4 {
  font-size: 1.1em;
  font-style: bold;
  text-align:justify;
}

/* h5 a kép és képaláírás*/
h5 {
  font-size: 0.9em;
  font-style: italic;
  font-weight: bolder;
  text-align:center;
}

/* h6 a törzsszöveg */
h6 {
  font-size: 1.1em;
  text-align:justify;
  margin-top: 5px;
  margin-bottom: 5px;
  list-style-type:circle;
  list-style:circle;
  list-style-position:inside;
  list-style-image:url(list.jpg)
}