@charset "utf-8";
/* Name: base.css */
/* Author: David McElroy */
/* Description: Base style sheet. Fixes font size issues and removes margin and padding from all elements. */

/* The base font size (0.75em) is applied to an id called page. This should surround all content. */
*
{
    margin: 0;
    padding: 0;
}

body
{
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-size: 100%;
	line-height:1.125em;
	background-color: #fff;
	color: #000;
}

input, select, textarea
{
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-size: 100%;
	line-height:1.125em;
}

#page
{
	font-size: 0.75em;
}

p
{
    display: block;
	margin: 1em 0;
}

h1
{
    display:block;
    font-weight:bold;
	font-size:2em;
	line-height:1.125em;
	margin: 0.85em 0;
}

h2
{
    display:block;
    font-weight:bold;
    font-size: 1.5em;
	line-height:1.25em;
	margin: 1em 0;
}

h3
{
    display:block;
    font-weight:bold;
    font-size: 1.25em;
	line-height:1.3em;
	margin: 1.35em 0;
}

h4
{
    display:block;
    font-weight:bold;
    font-size: 1em;
	line-height:1.25em;
	margin: 1.75em 0;
}

h5
{
    display:block;
    font-weight:bold;
    font-size: 0.917em; 
	line-height:1.2em;
	margin: 2em 0;
}

h6
{
    display:block;
    font-weight:bold;
    font-size: 0.75em;
    line-height:1.3em;
	margin: 2.4em 0;
}

ul
{
    display: block;
    list-style-type: square;
    margin: 1em 0;
    padding-left: 40px;

}

ol
{
    display: block;
    list-style-type: decimal;
    margin: 1em 0;
    padding-left: 40px;

}

/* Links */

a:link
{
	color: #00f;
}
a:visited
{
	color: #800080;
}

a:visited:hover
{
}

a:hover
{
}

a:active
{
    color: #e00;
}


