html, body {
	margin: 0px;
	padding: 0px;
	width: 100%;
	font-family: Lato, Helvetica, Arial, sans-serif;
	background: #f2f2f2;
	color: #515151;
	position: relative;
	display: table;
	min-height: 100vh;
}

* {
	box-sizing: border-box;
	outline: none;
}

a {
	text-decoration: none;
	color: #038fd4;
}
a:hover {
	color: #029ae5;
}

[tabindex], a, img {
	-webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */  
}

.left {
	float: left !important;
}
.right {
	float: right !important;
}