/* 
Created by:
	Jade Faist
	Kinesis
	http://kinesisinc.com
*/

/* ====================================================== Resets */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, 
address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, 
caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; }
html, body { height: 100%; }
ul { list-style: square inside; }
ol { list-style: decimal inside; }
a { outline: none; text-decoration: none; }
a img { border: none; }
img { vertical-align: middle; }
table { border-collapse: collapse; }
html { font-size: 62.5%; }

/* global box-sizing */
*,
*:after,
*:before {
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

/* ====================================================== Utility classes */
.float_left, .alignleft { float: left; }
.float_right, .alignright { float: right; }
.aligncenter {
	display:block;
	margin:0 auto;
}
html .clear {
	display: block;
}
* html .clear {
	height: 1%;
}
.clear:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.clear {
	display: inline-block;
}
.screen-reader-text {
	position: absolute;
	left: -9000px;
}
.hide {
	display: none;
}