/**
 * harmonize.css
 *
 * One of the more frustrating aspects of working with CSS is failing to consider
 * the default styles that browsers apply by default.
 *
 * This file resets everything. Be sure to include as the first stylehseet.
 *
 * This file was originally based on something that I found off of Google and
 * have long since lost the credit for. But someonoe out there deserves to be
 * blessed.
 *
 * @author Nicholas Piasecki <npiasecki@shepherdmed.com>
 *
 */

/* Set a standard base font */
html, body, td {
	background-color: white;
	color: black;
	font: normal 76% Helvetica, Arial, sans-serif;
}

/* Reset inconsistent padding and margin values to a standard default */
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, li, dd, dt, img,
blockquote, q, table, thead, tbody, tfoot, caption, th, tr, td, a, form,
input, textarea, fieldset, pre {
	margin: 0; 
	padding: 0;
}

/* Create some standard heading sizes */
h1, h2, h3, h4, h5 {
  font-weight: bold;
}

h1 { font-size: 2em; margin: 1.5em 0 0.5em 0; }
h2 { font-size: 1.75em; margin: 1.20em 0 0.5em 0; }
h3 { font-size: 1.1em; margin: 1.20em 0 0.5em 0; }
h4 { font-size: 1.1em; margin: 1.20em 0 0.5em 0; }
h5 { font-size: 1.1em; margin: 1.20em 0 0.5em 0; }
h6 { font-size: 1em; margin: 1.20em 0 0.5em 0; }

/* Set standard link colors */
a {

}

a:link {
	color: blue;
}

a:hover {
	color: green;
}

a:active {
	color: red;
}

a:visited {
	color: purple;
}

a img, :link img, :visited img {
	border: none
}

p {
	margin-bottom: 0.5em;
}

/* Kill those irritating table borders.
   Due to lagging IE standards, there's no way to kill its default
   cellspacing in CSS. */
table {
	border-collapse: collapse;
}

/* Remove automatic top/bottom margins on nested lists */
ul ul, ul ol, ul dir, ul menu, ul dl,
ol ul, ol ol, ol dir, ol menu, ol dl,
dir ul, dir ol, dir dir, dir menu, dir dl,
menu ul, menu ol, menu dir, menu menu, menu dl,
dl ul, dl ol, dl dir, dl menu, dl dl {
	margin-top: 0; 
	margin-bottom: 0;
}

/* Harmonize list bullet type */
ul, dl {
	list-style-type: square;
	margin-left: 1em;
}

ol {
	list-style-type: decimal;
}

li {
	margin-left: 1em;
}

