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

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: #005999; /*hsl(205, 100%, 30%);*/

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

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%, 100%);
	font-size: 16px;
	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;
}

img {
	border-none;
}

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

table {
	border-collapse: collapse;
}

td {
	vertical-align: top;
}

svg {
	pointer-events: none;
}

.text {
	font-size: 16px;
}

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;*/
}
