﻿html, body {
    height: 100%;
}

.chkBoxList tr {
    height: 24px;
}

.chkBoxList td {
    width: 225px; /* or percent value: 25% */
}

.radio-item {
    display:block;
    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: 18px;
            height: 18px;
            border-radius: 9px;
            border: 1px solid #004c97;
            background-color: white;
        }

    .radio-item input[type=radio]:checked + label:after {
        border-radius: 11px;
        width: 10px;
        height: 10px;
        position: absolute;
        top: 5px;
        left: 10px;
        content: " ";
        color: #004c97;
        display: block;
        background: DarkOrange; /*#66FF33*/
    }


