form.cnt {
  width: 100%;
}
div.uform , div.input_form , div.result_form {
  background-color: #f6f6f6;
  padding: 10px 10px 2px 10px;
}
div.form_section_title {
  font-size: 20px;
  margin-top: 10px;
  padding: 5px 5px;
}
div.form_label {
  margin-top: 5px;
}

div.checkbox_field_cell , div.radiobox_field_cell {
  margin-bottom: 10px;
}
/****************************************************************/
input#np {
  width: calc(30% - 20px);
  margin-right: 5px;
}
input#city {
  width: calc(70% - 35px);
}
input, select, textarea {
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 0px;
  margin-bottom: 10px;
  padding: 8px;
  width: calc(100% - 16px);
}
input:focus, select:focus, textarea:focus {
  outline: none;
}
select {
  padding-right: 25px;
  width: auto;
}
/****************************************************************/
label.checkbox_option , label.radiobox_option {
  background-color: #fff;
  display: block;
  position: relative;
  padding: 5px;
  padding-left: 35px;
  margin-bottom: 1px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 200px;
}

/* hide default checkbox */
label.checkbox_option input , label.radiobox_option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* add custom checkbox */
span.checkbox_remark , span.radiobox_remark {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  background-color: #ccc;
}

/* mouseover effect */
label.checkbox_option:hover input ~ span.checkbox_remark ,
label.radiobox_option:hover input ~ span.radiobox_remark {
  background-color: #ddd;
}

/* checked style */
label.checkbox_option input:checked ~ span.checkbox_remark {
  background-color: #8b5;
}
label.radiobox_option input:checked ~ span.radiobox_remark {
  background-color: #444;
}

/* create span.checkbox_remark (hidden when not checked) */
span.checkbox_remark:after , span.radiobox_remark:after {
  content: "";
  position: absolute;
  display: none;
}

/* show thespan.checkbox_remark when checked */
label.checkbox_option input:checked ~ span.checkbox_remark:after ,
label.radiobox_option input:checked ~ span.radiobox_remark:after {
  display: block;
}

/* style for span.checkbox_remark */
label.checkbox_option span.checkbox_remark:after ,
label.radiobox_option span.radiobox_remark:after {
  left: 6px;
  top: 3px;
  width: 5px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
} 
/****************************************************************/
div.form_action_buttons input {
  margin-bottom: 0px;
  padding: 5px;
  padding-left: 25px;
}
/****************************************************************/
div.input_form input ,
div.result_form input {
  text-align: right;
}

div.input_form input ,
div.input_form select ,
div.result_form input {
  font-size: 16px;
  color: #666;
}

div.input_form .smaller_form_field select {
  width: 100%;
}
div.input_form .form_label ,
div.result_form .form_label {
  padding-bottom: 4px;
  padding-left: 1px;
}

div.form_three_columns_line {
  display: none;
}
div.three_columns_sublabel {
  font-size: 14px;
  display: table-cell;
  width: 50%;
}
div.form_three_columns_result_line {
  display: table;
  width: 100%;
}
div.form_three_columns_result_line .smaller_form_field {
  display: table-cell;
  width: 50%;
}
div.form_three_columns_result_line .smaller_form_field input {
  margin-bottom: 2px;
}
div.form_three_columns_result_line_label {
  font-weight: bolder;
  margin-bottom: 5px;
}

@media all and (min-width: 630px) {
  div.input_form , div.result_form {
    display: table;
    padding: 0px;
    width: 100%;
  }

  div.input_form .form_line ,
  div.result_form .form_line ,
  div.form_three_columns_line {
    display: table-row;
  }

  div.input_form .form_label , div.input_form .form_field ,
  div.result_form .form_label , div.result_form .form_field ,
  div.input_form .smaller_form_field ,
  div.result_form .smaller_form_field ,
  div.form_three_columns_result_line_label {
    display: table-cell;
    border-top: 1px solid #fff;
    padding: 5px 5px 5px 5px;
  }

  div.input_form .form_label ,
  div.result_form .form_label {
    padding-right: 20px;
  }
  div.input_form .form_field ,
  div.result_form .form_field {
    width: 340px;
  }
  div.input_form .smaller_form_field ,
  div.result_form .smaller_form_field {
    width: 150px;
  }

  div.input_form .form_field input,
  div.input_form .form_field select,
  div.result_form .form_field input,
  div.input_form .smaller_form_field input,
  div.result_form .smaller_form_field input {
    margin-bottom: 0px;
  }

  div.form_three_columns_result_line {
    display: table-cell;
    width: auto;
  }

  div.form_three_columns_result_line_label {
    font-weight: normal;
  }

  div.three_columns_sublabel {
    display: none;
  }
}

/****************************************************************/
div.search_form {
  display: inline-block;
  padding: 5px 5px 0px 0px;
}
form.search {
  display: inline-block;
  margin-left: 5px;
}
form.search input {
  margin-top: 4px;
  margin-bottom: 2px;
  padding: 4px;
}
input.search_submit_button {
  display: none;
}
input.search_input {
  border: 1px solid #bbb;
  width: 140px;
  outline: none;
}
input.search_button {
  border: 1px solid #bbb;
}
input.search_input_focus {
  border: 1px solid #f00;
}
@media all and (max-width: 935px) {
  input.search_input {
    width: 120px;
  }
}
input.search_button , input.search_button_focus {
  background: url(../img/search_button.png) no-repeat center #fff;
  background-color: #ddd;
  width: 25px;
  margin-left: -6px;
  margin-right: 5px;
}

/****************************************************************/
div.fupl_pending_file_handling {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  padding: 8px;
}

/** EOF */
