@charset "utf-8";

input[type="checkbox"] {
    display:none;
}

input[type="checkbox"] + label {
    color:#f2f2f2;
}

input[type="checkbox"] + label span {
    display:inline-block;
    width: 20px;
    height: 20px;
    margin: -2px 10px 0 0;
    vertical-align:middle;
    background: url('../images/check-off.png') no-repeat;
    cursor:pointer;
    position: absolute;
    left: 0;
    top: 4px;
}

input[type="checkbox"]:checked + label span {
    background:url('../images/check-on.png') 0 top no-repeat;
}