input[type=radio] {
    display: none;
}
input[type=radio] + label {
    background: url('/images/rad.png') no-repeat 0px 1px;
}
input[type=radio]:checked + label {
    background: url('/images/rad_ch.png') no-repeat 0px 1px;
}
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label {
    background: url('/images/ch.png') no-repeat 0px 1px;
}
input[type=checkbox]:checked + label {
    background: url('/images/ch_ch.png') no-repeat 0px 1px;
}