﻿html, body
{
    height: 100%;
}

.chkBoxList tr
{
    height: 24px;
}

.chkBoxList td
{
    width: 225px; /* or percent value: 25% */
}

.radio-item
{
    display: inline;
    position: relative;
    padding: 0 6px;
    margin: 10px 0 0;
}

.radio-item input[type='radio']
{
    display: none;
}

.radio-item label
{
    color: #666;
    font-weight: normal;
}

.radio-item label:before
{
    content: " ";
    display: inline-block;
    position: relative;
    top: 1px;
    margin: 0 5px 0 0;
    width: 20px;
    height: 11px;
    border-radius: 11px;
    border: 1px solid #004c97;
    background-color: transparent;
}

    .radio-item input[type=radio]:checked + label:after {
        border-radius: 11px;
        width: 12px;
        height: 6px;
        position: absolute;
        top: 6px;
        left: 10px;
        content: " ";
        display: block;
        background: DarkOrange; /*#66FF33*/
    }
