.checkbox2 {
    position: relative;
    float: left;
    font-family:Verdana;
    font-size: 17px;
    color: rgb(0,0,0);
    border: 1px solid rgba(0,0,0,.4);
    border-top-color: rgba(0,0,0,.3);
    border-radius: 2px;
    background: linear-gradient(rgb(255,255,255), rgb(240,240,240));
    display: inline-block;
    padding: 14px 12px 14px 10px;
    margin: 0px 0px 0px 0px;
    border-radius: 3px;
    cursor: pointer;
}

input[type="checkbox"] {
    background: url(../images/checkbox1.png); /* Переключатель выключен */
    height: 20px; /* Высота картинки */
    width: 20px; /* Ширина картинки */
    -webkit-appearance: none; /* Прячем чекбокс */
    cursor: pointer; /* Курсор в виде руки */
    margin: 0px 10px -3px 0px;
}
input[type="checkbox"]:checked {
    background: url(../images/checkbox3.png); /* Переключатель включен */
}







