/* 
   based on http://meyerweb.com/eric/tools/css/reset/ 
*/

html, body, object, iframe, h1, h2, h3, h4, h5, h6, p, a, 
address, cite, img, dl, dt, dd, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, audio, video, sup {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
body {
	line-height: 1;
	-webkit-text-size-adjust:100%;
	-webkit-font-smoothing: antialiased;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

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

sup {
	position: relative;
	top: -5px;
	font-size: 10px;
}

/* => Form elements */

label, input, button, select, textarea {
	margin: 0;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
button, label[for], input { cursor: pointer; outline: none; }
input[type="text"] { cursor: text; }
button::-moz-focus-inner, input::-moz-focus-inner {
	padding: 0;
	border: 0;
}
button, input[type="button"], input[type="reset"], input[type="submit"] {
	-webkit-appearance: button;
}
input[type="search"] {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}
/* Floating cols */
.col { float: left }
.colr { float: right }

/* helpers */

.offscreen, .hidden {
	left: -1000em;
	position: absolute;
}
.hidden {
	visibility: hidden;
}
.none {
	display: none;
}

/* => ClearFix */
.clear:before, .clear:after {
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}
.clear:after { clear: both; }
.clear { zoom: 1; }
