.checkbox-container {
    float:left;
    padding-right:18px;
}
.last-checkbox-container {
    padding-bottom:24px;
    float:none;
}
label {
	font-weight:normal;
	line-height:22px;
}
input[type=checkbox] {
    display:none;
}
input[type=checkbox] + label:before {
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	vertical-align: middle;
	margin-right: 8px;
	background-color: #e4e4e4;
	border: 2px solid #929292;
	border-radius: 0;
}
input[type=checkbox]:checked + label:before {
    content: "\2714";
	color: #929292;
	text-align: center;
	line-height: 11px;
	font-size: 10px;
}