* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
body {
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	overflow: auto;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
html,
body {
	margin: 0;
	padding: 0;
	line-height: 1;
	overflow: hidden;
	overflow-y: auto;
}
use {
    pointer-events: none; /* IE FIX - unable to click until refresh */
}
img {
	pointer-events: none;
	-o-object-fit: contain;
	object-fit: contain;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto; /* IE FIX - streched */
}
h1,
h2,
h3,
h4,
h5,
h6,
span,
p,
ul,
li {
	margin: 0;
	padding: 0;
}
li {
	list-style: none;
}
button {
	outline: 0;
	border: 0;
	background: transparent;
}

/* ****** */
/* ****** */
/* LAYOUT */
/* ****** */
/* ****** */

.full{
	width: 100%;
	height: 100%;
}

.half{
	width: 50%;
	height: 50%;
}

.full_half{
	width: 100%;
	height: 50%;
}

.half_full{
	width: 50%;
	height: 100%;
}

.oneThird{
	width: 33.33333%;
	height: 33.33333%;
}

.full_oneThird{
	width: 100%;
	height: 33.33333%;
}

.oneThird_full{
	width: 33.33333%;
	height: 100%;
}

.half_oneThird{
	width: 50%;
	height: 33.33333%;
}

.oneThird_half{
	width: 33.33333%;
	height: 50%;
}

.aQuarter{
	width: 25%;
	height: 25%;
}

.full_aQuarter{
	width: 100%;
	height: 25%;
}

.aQuarter_full{
	width: 25%;
	height: 100%;
}

.half_aQuarter{
	width: 50%;
	height: 25%;
}

.aQuarter_half{
	width: 25%;
	height: 50%;
}

.oneThird_aQuarter{
	width: 33.33333%;
	height: 25%;
}

.aQuarter_oneThird{
	width: 25%;
	height: 33.33333%;
}