/* Stylings for canvas drawing test */
body.preventSelection {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.hidden {
	display: none;
}

#gameCanvas {
	width: 640px;
	height: 480px;
	border: 50px solid #555555;
	touch-action: none;
	cursor: crosshair;
	cursor: url(draw.cur),auto;
}

#anchorDiv {
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 1px;
	visibility: hidden;
}

#maskingDiv {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	cursor: url(draw.cur),auto;
}
