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