html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}

article,
aside,
figure,
header,
footer,
nav,
img,
section,
details,
summary,
main {
	display: block;
}

[v-cloak] {
	display: none;
}

a {
	color: inherit;
}

a:link,
a:visited {
	text-decoration: none;
}

a:hover,
a:active {
	text-decoration: underline;
}

h1 {
	font-size: 1.4em;
	font-weight: bold;
	line-height: 2;
	text-transform: uppercase;
	text-align: center;
	color: #fff35c;
}

p {
	margin: 0 0 20px;
	font-size: 1.2em;
	line-height: 1.5;
}

form {
	margin: 0 0 20px;
}

button[type = "button"] {
	padding: 10px 20px;
	border-radius: 5px;
	border: 0;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	background-color: red;
}
button[type = "button"]:hover {
	color: black;
	background-color: #ff7840;
	cursor: pointer;
}

input[type = "text"] {
	width: 100px;
	padding: 5px 10px;
	border: 1px solid #000;
	background-color: #eee;
}
input[type = "text"]:focus {
	border-color: #f00;
	background-color: #fff;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th {
	padding: 10px;
	border: 1px solid #fff;
	font-family: 'Courier New', Courier, monospace;
	font-weight: bold;
	text-align: center;
	color: #fff;
	background-color: #000;
}
th:last-child {
	border-right: none;
}

td {
	padding: 10px;
	border: 1px solid #fff;
	font-family: 'Courier New', Courier, monospace;
	font-weight: bold;
}
td:last-child {
	border-right: none;
}

tbody > tr {
	background-color: darkgray;
}
tbody > tr:hover {
	background-color: yellow;
}

html {
	overflow-y: scroll; /* force a vertical scrollbar to prevent a jumpy page */
	overflow-wrap: break-word;
	font-size: 100%; /* This means 16px by default */
}

body {
	width: 100%;
	min-width: 320px;
	font-family: arial, sans-serif;
	background-color: #efefef;
}

header {
	width: 100%;
	padding: 10px;
	background-color: #000;
}

main {
	min-height: 500px;
	padding: 10px;
}
@media only all and (min-width: 800px) {
	main {
		padding: 20px;
	}
}
@media only all and (min-width: 1200px) {
	main {
		padding: 20px 40px;
	}
}

footer {
	padding: 10px;
	text-align: center;
	color: #fff;
	background-color: #000;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

.clear-floats:before,
.clear-floats:after {
	display: block;
	height: 0;
	overflow: hidden;
	visibility: hidden;
	content: "\0020";
}

.clear-floats:after {
	clear: both;
}

.clear-floats {
	zoom: 1;
}  

.hilight {
	font-weight: bold;
	color: #fff35c;
}

.small-text {
	font-size: 85% !important;
}

.right-align {
	text-align: right !important;
}

.center-align {
	text-align: center !important;
}