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

body {
	height: 100%;

	background-color: #f5f5f5; /*for ancient browsers that can't handle CSS3*/
	background-color: hsl(0, 0%, 96%);

	overflow-y: auto;
	
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: -moz-none;
	-ms-user-select: none;
	user-select: none;
	
	-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: #000000;
	color: hsl(0, 0%, 0%);
	font-size: 15pt;
	font-style: normal;
	font-weight: normal;
	line-height: 100%;
	margin: 0px;
	padding: 0px;
}

body.phoneView, .phoneView p, .phoneView div, .phoneView td, .phoneView li, .phoneView textarea, .phoneView input {
	font-size: 13pt;
}

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

p, div, table, tr, td, ul, li, textarea, input {
	color: hsl(0, 0%, 0%);
}

p {
	text-align: left;
}

span {
	text-align: left;
}

div {
	text-align: left;
	box-sizing: border-box;
}

img {
	box-sizing: border-box;
}

table {
	border-collapse: collapse;
}

td {
	vertical-align: top;
}

a, a:hover, a:active {
	color: hsl(190, 100%, 35%);
	text-decoration: none;
	outline: none;
}

a:hover {
	color: hsl(190, 100%, 35%);
	border-bottom: solid 1px hsl(190, 100%, 45%);
}

a:active {
	color: hsl(190, 100%, 35%);
	border-bottom: solid 1px hsl(190, 100%, 45%);
}

.mouseInput a:hover {
	text-decoration: underline;
}

.mouseInput a.noHL:hover {
	background: none;
	text-decoration: none;
}

.block {
	display: block;
}

ul {
	margin: 12px 8px 12px 24px;
}

li {
	line-height: 100%;
	margin-top: 10px;
}

li:first-child {
	margin-top: 0px;
}
