html {
	margin: 0px;
	padding: 0px;
	height: 100%;
}

body {
	height: 100%;
	overflow-y: auto;
	
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: -moz-none;
	-ms-user-select: none;
	-khtml-user-select: none;
	user-select: none;
	
	pointer-events: none;
	
	background-color: hsl(0, 0%, 100%);

	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body, p, div, table, tr, td, ul, li, textarea, input {
	font-family: "StandardFontRegular", "Arial", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: hsl(0, 0%, 0%);
	font-size: 20px;
	letter-spacing: 0px;
	font-style: normal;
	font-weight: normal;
	line-height: 100%;
	margin: 0px;
	padding: 0px;
	pointer-events: none;
}

p, div, table, tr, td, ul {
	position: relative;
}

div, td {
	font-size: 0px;
}

div, p, img {
	box-sizing: border-box;
}

a, .standardView a:hover {
	color: hsl(203, 100%, 35%);
	text-decoration: none;
	pointer-events: auto;
}

table {
	border-collapse: collapse;
}

td {
	vertical-align: top;
}

svg {
	pointer-events: none;
}

div.debugPanel {
	position: fixed;
	z-index: 999;
	right: 0px;
	top: 0px;
	background-color: hsla(0, 0%, 0%, 0.85);
	padding: 10px;
}

div.debugPanel p {
	font-size: 12pt;
	line-height: 135%;
	color: hsl(135, 100%, 65%);
}

::-webkit-scrollbar { /* hide scrollbar in windows chrome */
	width: 0px;  /* remove scrollbar space */
	background: transparent;  /* optional: just make scrollbar invisible */
}

div { /* try to hide scrollbar in IE */
	-ms-overflow-style: none; /*-ms-autohiding-scrollbar;*/
}
