/************************************************************************

	RE-USABLE CORE CSS-FRAMEWORK 
	============================
	
	Resets and formats basic HTML elements, providing a blank canvas to 
	build CSS styles on
	
	Author:		Tom Harman		[www.fakefrench.com]

	Listing Order:
	==============

	1 - Reset Universal Styles
	2 - Tools
	
************************************************************************/

/***********************************************************************
	1 - RESET UNIVERSAL STYLES
************************************************************************/

html, body, h1, h2, h3, h4, h5, h6, ol, ul, li, dl, dt, dd, form, fieldset, input, select, textarea, div, p, img, table, th, td, object, pre, blockquote, address { 
	margin: 0; 
	padding: 0;
	font-size: 100%;
}

address, abbr { 
	font-style: normal 
}

body, a {
	color: #000;
}

body {
	background-color: #fff;
	font-size: 62.5%;
}

a { 
	text-decoration: none;
}

a:hover { 
	text-decoration: underline; 
}

dt	{ 
	font-weight: bold; 
}

ul { 
	list-style: none;
}

blockquote {
	margin-left: 1em;
}

img {
	border: none;
	display: block;
}

table {
	border: none;
}

/***********************************************************************
	2 - TOOLS
************************************************************************/

.clearer {
	clear: both;
	height: 1px;
	margin: 0;
	padding: 0;
	font-size: 1px;
	line-height: 1px;
}

.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 */
}

.accessibility {
	position: absolute;
	text-indent: -999em;
	left: -999em;
	top: -999em;
}
