/*
   based on http://meyerweb.com/eric/tools/css/reset/
   v2.0b1 | 201101
   Modified by OKIA
*/

html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
a, abbr, acronym, address, big, cite, code, img,
dl, dt, dd, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	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;
}
/* => Form elements */
label, input, button, select, textarea {
	margin: 0;
	vertical-align: middle;
}
button, label[for], input, textarea, select { 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;
}
input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
  cursor: not-allowed;
  background-color: #eeeeee;
}
input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"][readonly], input[type="checkbox"][readonly] {
  background-color: transparent;
}
/* Floating cols */
.col { float: left }
.colr { float: right!important }

/* helpers */

.offscreen, .hidden {
	left: -1000em;
	position: absolute;
}
.offscreen.show-on-tablet {
	position: relative;
	left: auto;
}
.hidden {
	visibility: hidden;
}
.ohidden {
	opacity: 0;
}
.none {
	display: none!important;
}

/* => ClearFix */
.clear:before, .clear:after {
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}
.clear:after { clear: both; }
.clear { zoom: 1; }