*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	transition: all 0.8s;
}

body
{
	font-size: 100%;
}

h1
{
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	font-size: 1.7em;
	text-align: center;
	margin: 0em 0em 1.3em 0em;
	color: #d76425;
}

h2
{
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	font-size: 1.1em;
	font-weight: 400;
	text-align: left;
	margin: 0em 0em 1em 0em;
	color: #d76425;
}

h4
{
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	font-size: 0.8em;
	font-weight: 300;
	text-align: center;
	margin: 0em 0em 0.8em 0em;
	color: #888888;
}

a
{
	color: #d76425;
}

a:hover
{
	color: #ab501e;
}

input[type="email"], input[type="password"], input[type="text"]
{
	width: 100%;
	/*display: block;*/
	font-family: 'Lato', sans-serif !important;
	font-size: 0.75em;
	font-weight: 300;
	margin: 1em auto;
	padding: 1em 0em;
	border: none;
	color: #888888 !important;
	background-color: #fff;
	border-bottom: 2px solid #d76425;
}

input:focus
{
	border-bottom: 2px solid #ab501e;
}

button
{
	width: 33.3%;
	display: block;
	font-family: 'Lato', sans-serif !important;
	font-size: 1em;
	font-weight: 400;
	text-transform: uppercase;
	margin: auto;
	padding: 0.7em 0.4em;
	cursor: pointer;
	background-color: #fff;
	border: none;
	background-color: #d76425;
	color: #fff;
}

button:hover
{
	background-color: #ab501e;
}

input[type="checkbox"]
{
	margin-right: 0.5em;
}

.column
{
	width: 33.3%;
	padding: 1em;
	float: left;
}

.columnCenter
{
	width: 33.3%;
	padding: 1em;
	display: block;
	margin: auto;
}

.columnCenter button
{
	width: 100%;
}

.checkBox
{
	width: 33.3%;
	padding: 0em 1em;
	max-width: 350px;
	display: block;
	font-family: 'Lato', sans-serif !important;
	font-size: 0.75em;
	font-weight: 300;
	clear: both;
	margin: 0em auto 2.3em auto;
	color: #888888;
}

.fullPage
{
	width: 100%;
	position: relative;
}

.verticalWrapper
{
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}

.horizontalWrapper
{
	max-width: 1000px;
	display: block;
	margin: auto;
	padding: 1em;
}

.fixedBar
{
	width: 100%;
	position: fixed;
}

#logout
{
	width: 100px;
	position: fixed;
	right: 0px;
	top: 0px;
	cursor: pointer;
	z-index: 100000;
}

.position
{
	width: 102px;
	position: absolute;
	left: 50%;
	margin-left: -51px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 0;
}

.circle
{
	width: 14px;
	height: 14px;
	border-radius: 7px;
	background-color: #888888;
	margin: 0px 10px;
	float: left;
}

.circle.active
{
	background-color: #d76425;
	transform: scale(1.6);
}