﻿/****** ESTILO PARA O CHECKBOX ************/

.checkbox {
    float:left;
    position: absolute;
}

.checkbox input[type="checkbox"]{
    display:none;
}

.checkbox input[type="checkbox"] + label
{
    background: url('/gax2condutores/images/sprite-16x16-checkbox.png');
    background-position: 0 0;
    height: 16px;
    width: 16px;
    display:inline-block;
    padding: 0 0 0 0px;
}

.checkbox input[type="checkbox"] + label:hover
{
    background-position: 0 16px;
}

.checkbox input[type="checkbox"]:checked + label
{
    background: url('/gax2condutores/images/sprite-16x16-checkbox.png');
    background-position: -16px 0;
    height: 16px;
    width: 16px;
    display:inline-block;
    padding: 0 0 0 0px;
}

.checkbox label{
    min-height: 0 !important;
}

.checkbox input[type="checkbox"]:checked + label:hover
{
    background-position: -16px 16px;
}

.checkbox span {
	font-size: 13px;
	margin-left: 5px;
    vertical-align: top;
    line-height: 18px;
}