section {
    margin: 50px auto;
    padding: 0 20px;
}

label.error {
    color: red;
}

label > span {
    color: red;
}

input[type=text],
input[type=email],
input[type=date],
input[type=number],
input[type=tel],
textarea,
select {
    box-sizing: border-box;
    display: block;
    width: 190px;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-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;
}

input.double {
    width: 400px;
}

input.triple {
    width: 610px;
}

input.full, textarea.full {
    max-width: 820px;
    width: 820px;
}

input.half, select.half {
    width: 85px;
}

input[type=radio] {
    margin-left: 10px;
}

textarea {
    width: 100%;
    max-width: 700px;
    min-height: 60px;
}

input.small {
    width: 100px;
}

input.wide {
    width: 380px;
}

input[type=submit] {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: #898989;
    border-color: #999999;
    color: #fff;
}

input[type=submit]:hover {
    background-color: #666;
}

input[type=submit]:active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}

label {
    font-size: 14px;
}

.field-left {
    margin-bottom: 20px;
    margin-right: 20px;
    float: left;
}

.form-footer {
    margin: 20px 0;
    clear: both;
}

label.checkbox {
    margin-bottom: 10px;
    display: block;
}

td {
    padding: 5px;
}

td:first-child {
    padding-left: 0;
}

td:last-child {
    padding-right: 0;
}

td b {
    line-height: 34px;
}

td label {
    line-height: 34px;
}

.rating {
    float: left;
    width: 200px;
    margin: 10px 0;
}

.rating select {
    width: 180px;
}