html {
	height: 100%;
}

body {
	background-color: rgb(220,220,220);
	min-height: 100%;
	width: 100%;
}

.fill-height {
	height: 100vh;
}

.content {
	padding: 4rem 4rem;
	background: white;
}

.container {
	background: white;
	max-width: 1300px;
}

h1, h2, h3, h4 {
	margin-bottom: 2rem;
}

form label {
	display: block;
}

form label span {
	display: inline-block;
	width: 25%;
}

.form-control {
	width: 75%;
	display: inline-block;
}

.btn-primary {
	background: rgb(0, 200, 200);
	border-color: rgb(0, 200, 200);
}

.btn-primary:hover {
	background: #FFFFFF;
	color: rgb(0, 200, 200);
	border-color: rgb(0, 200, 200);
}

.btn-success {
    background-color: #57a900;
    background-image: -moz-linear-gradient(top, #70d900, #57a900);
    background-image: -ms-linear-gradient(top, #70d900, #57a900);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#70d900), to(#57a900));
    background-image: -webkit-linear-gradient(top, #70d900, #57a900);
    background-image: -o-linear-gradient(top, #70d900, #57a900);
    background-image: linear-gradient(top, #70d900, #57a900);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#70d900', endColorstr='#57a900', GradientType=0);
}

.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
    background-color: #57a900;
}

div.container a.navbar-brand > img {
    display: inline;
    margin-right: 4px;
    margin-top: -2px;
}

input[type=checkbox] {
	margin-right: 1rem;
}

fieldset.form-control {
	width: 100%;
	margin-bottom: 1rem;
}
