﻿

input[type=checkbox] {
    /*display: none;*/
    left: -99999px;
    position: absolute;
    *display: inline;
    line-height: 21px;
    height: 21px;
    min-height: 15px;
    background: none;
}

input[type="checkbox"] + label {
    /*font-size: 13px;*/
    margin-right: 15px;
    text-indent: -23px;
    margin-left: 23px;
    display: inline-block;
    white-space: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

    input[type="checkbox"] + label:before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 21px;
        margin: -1px 10px 0 0;
        vertical-align: middle;
        background: url(../images/checkbox-sprite.png) left top no-repeat;
        background-position: 0 0;
        cursor: pointer;
    }

input[type="checkbox"]:checked + label:before {
    background: url(../images/checkbox-sprite.png) left top no-repeat;
    background-position: 0 -21px;
    content: ".";
    text-indent: -9999px;
    overflow: hidden;
}

input[type="checkbox"].checked + label:before {
    background: url(../images/checkbox-sprite.png) left top no-repeat;
    background-position: 0 -21px;
    content: ".";
    text-indent: -9999px;
    overflow: hidden;
}

input[type="radio"]:checked + label,
input[type="checkbox"]:checked + label {
    /*font-weight: bold;
    color: #6e6464;*/
}

input[type="checkbox"].checked + label {
    /*font-weight: bold;
    color: #6e6464;*/
}

input[type="checkbox"] + label:hover {
    text-decoration: underline;
    cursor: pointer;
}
