/**
 * HTML RESET
 */

	body, form, ol, ul, dl, li, dt, dd, td, th ,tr, h1, h2, h3, h4, h5, h6, p, pre, blockquote, address, fieldset, section, article, header, footer, nav, aside, hgroup, nav {
		margin: 0;
		padding: 0;
	}
	
	ol, ul {
		list-style: none;
	}
	
	img, fieldset {
		border: 0;
	}
	
	input, select, textarea {
		font-size: 100%;
		vertical-align: middle;
	}
	
	table { 
		border-collapse: collapse;
		border-spacing: 0;
		empty-cells: show;
	}
	
	th {
		text-align: left;
	}
	
	a:focus {
		overflow: hidden;
	}
	
	html, body{
		width: 100%;
	}


/**
 * CLEARFIX
 */

	.clearfix:after {
		content: ".";
		display: block;
		height: 0;
		clear: both;
		visibility: hidden;
	}
	
	html[xmlns] .clearfix { /* IE7 */
		display: block;
	}
	
	* html .clearfix { /* IE6 */
		height: 1%;
	}
	 
/**
 * HTML5 DISPLAY FIX
 */
 
	section, article, header, footer, nav, aside, hgroup, nav {
		display: block;
	}
 