/* this css makes it possible to have an absolute div with height: 100% */
html {
	position: relative;
	width: 100%;
	height: 100%;
}
body {
	position: relative;
	float: left;
	width: 100%;
}
#the-others {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1001;
	pointer-events: none;
	overflow: hidden;
}
#the-others .cursor {
	position: absolute;
	width: 15px;
	height: 22px;
	background: url('../img/pointer.png') no-repeat -4px 0;
	will-change: transform;
	-o-will-change: transform;
	-ms-will-change: transform;
	-moz-will-change: transform;
	-webkit-will-change: transform;
}
