/*
 *	simple-reset.css
 *	Author: Tyson Willey
 *	Date: 8/26/2009
 *	Description:
 *		Simple CSS Reset to bring it all back to reality.  Includes 
 *		clear-fix and text-replace class descriptions.
 */
 
html, body, ul, ol, dl, li, dt, dd, div, p, blockquote, hr, span, a, img, button, h1, h2, h3, h4, h5, h6
{
	background: none;
	border: none;
	font-size: 12px;
	font-weight: normal;
	list-style: none;
	margin: 0;
	outline: none;
	padding: 0;
	text-decoration: none;
	text-indent: 0;
}

.clear-fix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
	width: 0;
}

.text-replace {
	display: block;
	overflow: hidden;
	text-indent: -9999px;
}
