*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

select,
input{
	width: 272px;
}

input:focus,
select:focus{
	border-color: #408602;
	border-width: 2px;
}

select.err,
input.err{
	border-color: #E60000;
}

.field{
	margin-top: 31px;
	clear: both;
	float: left;
}

.field-label{
	float: left;
	width: 100%;
	color: #4A4D4E;
	margin-bottom: 12px;
	font-weight: 600;
}

.field-label-red
{
	color: #ff0000;
}

.field-value-inline,
.field-value-multiline,
.field-value{
	/* Removed display block from here. See below */
    width: 272px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.field-value
{
	height: 34px;
	display: block;
} 
.field-value-inline
{
	height: 34px;
	display: inline-block;
	float: left;
} 
.field-value-multiline
{
	height: 102px;
	display: block;
}

/*Calendar Icon*/
.calendar-icon{
	margin-left: 6px;
	margin-top: 6px;
}


.input-validation{
	display: block;
	color: #E60000;
	font-size: 13px;
	margin-top: 6px;
    float: left; /* New */
    width: 100%; /* New */
}

/* Submit/Next button - NEW*/
input[type="submit"]{
	border: 1px solid #ccc;
	min-width: 150px;
    padding: 12px;
    cursor: pointer;
	color: #4A4D4E;
	border-radius: 3px;
}

input[type="submit"]:hover{
	border: 1px solid #4A4D4E;
}

input[type="submit"]:active{
	background: #eee;
}



/* Checkbox style - there is quite a bit - NEW*/
/* Base for label styling */
.checkbox-label{
	line-height: 24px;
	height: 24px;
}

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left:0; top: 2px;
  width: 17px; height: 17px;
  border: 1px solid #ccc;
  background: #f8f8f8;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.3)
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: "\2713";
  position: absolute;
  top: 0; left: 4px;
  font-size: 14px;
  color: #f8f8f8;
  
  transition: all .2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
[type="checkbox"]:checked + label:before {
	background: #408602;
	box-shadow: none;
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
[type="checkbox"]:disabled + label {
  color: #aaa;
}


/* hover style just for information */
label:hover:before {
  border: 1px solid #4A4D4E!important;
}