html, body{
	margin: 0;
	padding: 0;
}
body{
	background-color: white;
	color: #12446C;
	font-size: 11px;
}


form{
	padding-bottom: 20px;
}

h2{
	font-size: 16px;
	text-transform: uppercase;
}
h3{
	font-size: 14px;
}

.alert-error {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}
.alert {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
}


.row{
	margin-left: 0;
	margin-right: 0;
}
label + input[type="text"],
label + textarea,
select{
	display: block;
	width: 100%;
	color: #555;
	vertical-align: middle;
	background-color: #fff;
	background-image: none;
	border: 1px solid #999999;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	
	height: 30px;
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
}


label + textarea{
	height: auto;
}

.error.required,
.help-block.error{
	color: #a94442;
}
.error.required + input,
.error.required + textarea,
.error.required + select{
	border-color: #a94442;
}

.btn.btn-default{
	background-color: #479946;
	color: white;
	border-radius: 0;
	border: none;
	padding-left: 30px;
	padding-right: 30px;
}