/* ラジオボタン */

.checkbox input[type="checkbox"] {
  margin: 0 -26px 0 0;
  padding: 0;
  border: 0;
  width: 26px;
  height: 26px;
  vertical-align: middle;
}
.checkbox label {
  padding: 7px 0 5px 32px;
  display: inline-block;
  /display:inline;
  /zoom:1;
  min-height: 14px;
  height: auto !important;
  height: 14px;
  vertical-align: middle;
  background: url(../images/checkbox_out.png) no-repeat 0 50%;
  cursor: pointer;
	margin-right: 10px;
}
.checkbox label:hover,
.checkbox label:focus {
  background: url(../images/checkbox_ov.png) no-repeat 0 50%;
}
.checkbox input:checked+label {
  background: url(../images/checkbox_ed.png) no-repeat 0 50%;
}
.checkbox input:checked+label:hover,
.checkbox input:checked+label:focus {
  background: url(../images/checkbox_ed_ov.png) no-repeat 0 50%;
}

.checkbox label.ed{
    background: url(../images/checkbox_ed.png) no-repeat scroll 0 50%;
}

.checkbox label.ov{
    background: url(../images/checkbox_ov.png) no-repeat scroll 0 50%;
}

.checkbox label.ed_ov {
    background: url(../images/checkbox_ed_ov.png) no-repeat scroll 0 50%;
}