/*---------------------------------------------------------

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

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


/*
Initialize CSS
---------------------------------------------- */

/* Neutralize styling: */
html, body,
fieldset, form,
dd, dt, li,
td, th  {
	margin: 0;
	padding: 0;
}

/* Elements with a vertical margin: */
h1, h2, h3, h4, h5, h6, p, pre,
blockquote, dl, address {
	margin: 1em 0;
	padding: 0;
}

ul, ol {
	margin-bottom: 1em;
	margin-top: 1em;
}

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

/* Miscellaneous conveniences: */
ul { list-style: disc; }

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; }


* html .clear { overflow: hidden; }
*+html .clear { overflow: hidden; }


/*
Clearing Method
---------------------------------------------- */
.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
* html>body .clearfix {
	display: inline-block; 
	width: 100%;
}

* html .clearfix {
	/* Hides from IE-mac \*/
	height: 1%;
	/* End hide from IE-mac */
}



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

	/* tidy these up */
	.replace * {
		background-repeat: no-repeat;
		background-position: left top;
		background-color:transparent;

		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;
}
