/*
Peace Corps

Removes default browser styling on many elements and creates
more general, cross-browser rules.
-----------------------------------------------*/

/*
Table of Contents
	- initialization
	- clearing
	- replacement
	- accessibility
-----------------------------------------------*/


/*
Initialization
-----------------------------------------------*/

/* Neutralize styling: Elements we want to clean out entirely: */
html, body,
fieldset, form,
dd, dt, li,
td, th  {
	margin: 0;
	padding: 0;
}

/* Neutralize styling: Elements with a vertical margin: */
h1, h2, h3, h4, h5, h6, p, pre,
blockquote, ul, ol, dl, address {
	padding: 0;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
}

/* Apply left margin: Only to the few elements that need it: */
blockquote {
	margin-left: 1em;
}

/* Miscellaneous conveniences: */
form label {
	cursor: pointer;
}

fieldset,
img {
	border: none;
}

input, select, textarea {
	font-size: 100%;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

address, caption, cite, code,
dfn, em, th, var {
	font-style: normal;
	font-weight: normal;
}

caption,
th {
	text-align: left;
}



/*
Clearing
-----------------------------------------------*/
.clear {
	overflow: hidden;
	/* hide from Mac IE 5 \*/
	overflow: auto;
	/* end hide from Mac IE 5 */
}



/*
Text Replacement
-----------------------------------------------*/
.replace {
	background-color:transparent;
	background-position: left top;
	background-repeat: no-repeat;
	display:block;
}

	/* tidy these up */
	.replace * {
		background-color:transparent;
		background-position: left top;
		background-repeat: no-repeat;
		display:block;
		text-indent: -10000px;
	}

		.replace a {
			text-indent:0;
		}

		.replace a span {
			text-indent:-10000px;
		}


/*
Accessibility
-----------------------------------------------*/
span.accesskey {
	text-decoration:none;
}

.accessibility {
	position: absolute;
	top: -999em;
	left: -999em;
}
