html,body {
	width:100%;
	height:100%;
	padding: 0;
	margin: 0;
}

body {
	font-family: Lato;
	padding-top:50px;
}

.form-field {
	overflow: auto;
	position: relative;
}

.form-margin {
	margin-top:10px;
}

.form-error {
	background-color: #ff0066;
	position: absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	border-radius:4px;
	color: white;
	display:none;
	text-align: center;
	cursor: pointer;
}

.form-error.shown {
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.hidn {
	display: none;
}

.top-buffer { margin-top:20px; }

nav.navbar-fixed-top {
	border-bottom:solid 1px #ddd;
	background-color: white;
}