/*******************************************************************************
 * common.css
 *
 * Shared CSS for the application
 *
 */
/******************************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/
	v2.0 | 20110126
	License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/******************************************************************************/
body {
	/*	width: 320px; */
	min-height: 100%;
	background-color: #fff;
	font-family: helvetica, arial, sans-serif;
	font-size: .625rem !important;
	color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	padding: .3rem .4rem .4rem;
	font-weight: bold;
}

h1 {
	padding-left: .14rem;
	font-size: 1.6rem;
}

h2 {
	padding-left: .18rem;
	font-size: 1.5rem;
}

h3 {
	padding-left: .3rem;
	font-size: 1.4rem;
}

h4 {
	font-size: 1.3rem;
}

h5 {}

h6 {}

p {
	padding: .3rem .4rem .4rem;
	font-size: 1.3rem;
	line-height: 1.4rem;
}

/******************************************************************************/
body>div {
	/* width: 90%;
	max-width: 96rem;
	min-width: 32rem;
	margin: 1rem auto;
	padding: .6rem 1rem 1rem;
	background-color: #fff; */
}

/******************************************************************************/
.hide {
	display: none;
}

.offscreen {
	position: absolute;
	left: -9999rem;
}

/******************************************************************************/

div.main {}

.site-logo {
	position: absolute;
	top: 45%;
	transform: translateY(-45%);
	/* margin-left: auto;
	margin-right: auto; */
	width: 100%;
	text-align: center;
}

.site-logo p {
	font-size: .75rem;
}

/******************************************************************************/

/*
REM table
http://www.welcomebrand.co.uk/downloads/rem-table.html
http://www.standardista.com/px-to-rem-conversion-if-root-font-size-is-16px/


4	.25
5	.312
6	.375
6.5	.406
7	.437
7.5	.468
8	.5
8.5	.531
9	.562
9.5 .594

10	.625
11	.6875
12	.75		font-size: 12px; font-size: .75rem
13	.8125	font-size: 13px; font-size: .8125rem
14	.875	font-size: 14px; font-size: .875rem
15	.9375	font-size: 15px; font-size: .9375rem
16	1		font-size: 16px; font-size: 1rem
18	1.125	font-size: 18px; font-size: 1.125rem
20	1.25	font-size: 20px; font-size: 1.25rem
22	1.375	font-size: 22px; font-size: 1.375rem
24	1.5		font-size: 24px; font-size: 1.5rem
26	1.625	font-size: 26px; font-size: 1.625rem
28	1.75	font-size: 28px; font-size: 1.75rem
30	1.875	font-size: 30px; font-size: 1.875rem
32	2		font-size: 32px; font-size: 2rem
36	2.25
40	2.5
48	3
56	3.5
60	3.75
64	4
*/