/*			global.css

for: Stable Strategies and Others by Eileen Gunn
www.eileengunn.com


This CSS file has two functions:

1) reset all tags to zero margins, padding, etc. in order to put all browsers in the same square one.  I find that doing this makes it much easier to code pages that look the same in different browsers.

	NOTE: I have annulled each instance of "font-size: 1em;" for this website.

2) set characteristics that I want to affect all the pages in this website.

*/


/*=============================
reset all elements
=============================*/
/* Elements */

/* Fonts - change 'sans-serif' to your preferred font */
ADDRESS, BLOCKQUOTE, BODY, CAPTION, CENTER, DD, DIR, DIV, DL, DT, FORM, H1, H2, H3, H4, H5, H6, MENU, OL, P, TD, TH, UL {font-size: 1em}

/* Real styles */

A {cursor: pointer}

A:link {
background: transparent;
text-decoration: none}

A:visited {
background: transparent;
text-decoration: none}

A:active {
background: transparent;
text-decoration: none}

ADDRESS
{
	margin: 0em 0% 0em 0%;
	font: italic 1em/1 Verdana;
}

BIG {font-size: 1em}

BLOCKQUOTE {margin: 0em 0% 0em 0%;
line-height: 1}

BODY
{
	margin: 0em 0% 0em 0%;
	font: 1em/1 Verdana;
	background: white;
}

BUTTON {cursor: auto}

CAPTION {margin: 0em 0% 0em 0%;
line-height: 1}

CODE {font-size: 1em;}

DIV {margin: 0em 0% 0em 0%;
line-height: 1}

DD {margin: 0em 0% 0em 0%;
line-height: 1}

DL {margin: 0em 0% 0em 0%}

DT {margin: 0em 0% 0em 0%;
line-height: 1}

H1 {margin: 0em 0% 0em 0%;
font: 1em/1 serif}

H2 {margin: 0em 0% 0em 0%;
font: 1em/1 serif}

H3 {margin: 0em 0% 0em 0%;
font: 1em/1 serif}

H4 {margin: 0em 0% 0em 0%;
font: 1em/1 serif}

H5 {margin: 0em 0% 0em 0%;
font: 1em/1 serif}

H6 {margin: 0em 0% 0em 0%;
font: 1em/1 serif}

HR {margin: 0em 0% 0em 0%}

HTML {margin: 0;
background: white}

INPUT {cursor: auto}

KBD {font: 1em monospace}

P {margin: 0em 0% 0em 0%;
line-height: 1}

PRE {margin: 0em 0% 0em 0%;
font: 1em/1 monospace}

SAMP {font: 1em monospace}

SMALL {font-size: 1em}

SUB {font-size: 1em}

SUP {font-size: 1em}

TD {line-height: 1}

TEXTAREA {cursor: text}

TH {font: bold 1em/1 Verdana;}

TT {font: 1em monospace}


/*=============================
global
=============================*/
*
{
	font-family: Verdana, Arial;
}
body, h1, h2, h3, h4, h5, h6
{
	font-family: Verdana, Arial;
	margin: 0px;
	padding: 0px;
}

/* The pagewrapper div contains all the content on each page.  I've optimized it for an 800px-wide window.  On wider screens, it will center the contents in a column. */
#pagewrapper
{
	position: relative;
	width: 0px;
	height: 0px;
/*
	margin-left: auto;
	margin-right: auto;
*/
}
#footer
{
	clear: both;
	padding-top: 3em;
	font-size: .9em;
}
