/* undohtml.css */
/* (CC) 2004 Tantek Celik.  Some Rights Reserved. */
/* http://creativecommons.org/ licenses/by/2.0 */
/* This style sheet is licensed under a Creative Commons License. */
/* Purpose: undo some of the default styling of common (X)HTML browsers */
/* avoid browser default inconsistent heading font-sizes */
h1, h2, h4, h4, h5, h6 { 
	font-size:1.1em;
}
/* 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, h4, h4, h5, h6, pre, form, body, html, p, blockquote, fieldset, input, ul {
	margin:0; padding:0 
}


body {
	margin:0;
	padding:10px 0;	
}

h1, h2, h4, h4, h5, h6, p, li {
  font:normal 70% Verdana, Arial, Helvetica, sans-serif;
  color:#000;
  padding-bottom:10px;  
}

h1 {
  font:bold 100% Verdana, Arial, Helvetica, sans-serif;
}

h2 {
  font:bold 90% Verdana, Arial, Helvetica, sans-serif;
}

h3 {
  font:bold 80% Verdana, Arial, Helvetica, sans-serif;
  margin-bottom:0;
}

p, li { 
  font:normal 80% Verdana, Arial, Helvetica, sans-serif;
  color:#000;
  line-height: 1.2em;
}

blockquote, ul {
	margin:0 0 10px 25px;
	float:none;
}

img {
	border:none;
}

a:link, a:visited, a:active, a:hover {
	text-decoration:none;
	color:#085497;
}

a:hover {
	text-decoration:underline;
	color:#085497;
}

#header {
	width:700px;
	margin:0 auto;
	padding:10px;
	text-align:center;
}

#main {
	width:700px;
	margin:0 auto;
	padding:10px;
	border:1px solid #dedede;
}