﻿body {
   /*background-color: blue;*/
}

#mdlid .panel-group .panel-body {
    border: 0px solid red;
    line-height: 23px;
}

#mdlid .panel-group .panel-body div{
    margin-bottom: 5px;
}

/*Case Compensation Maximums*/
.case_compensation_maximums table td, .case_compensation_maximums table th {
    padding: 2px;
}


.mediaDiv{
    margin-top: -30px;
}
.mediaDiv h3 {
    margin-top: 20px;
}

.mediaDiv ul li{
    margin-bottom: 10px;
}

.interpreterInfo{
    padding-left: 0;
}
.interpreterInfo .panel:first-child {
    margin-top: -10px;
    border: 0px solid red;
}
    .interpreterInfo .panel h3 {
        text-decoration: underline !important;
        cursor: pointer;
    }

.interpreterInfo li{
    margin-bottom: 20PX;
}

/*OnlineForms.aspx.cs
 *Pages.aspx.cs
*/
div.civil_code_desc {
    font-weight: bold;
    color: blue;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
    margin-top: 20px;
}

div.case_procedures{
    font-family: 'Times New Roman';
    font-size: 13pt;
}
    div.case_procedures p {
        text-align: justify;
    }
div.case_procedures ul{
    list-style: none;
}
    div.case_procedures ul li {
        line-height: 20px;
        margin-bottom: 10px;
    }
        div.case_procedures ol li div {
            margin-bottom: 10px;
        }

div.judge_importantInfo {
    font-family: 'Times New Roman';
    font-size: 14px;
}

    div.judge_importantInfo p {
        text-align: justify;
    }
/*Combination of number and alph for ordered items*/
ol.nested {
    margin-bottom: 0;
    counter-reset: item;
}

    ol.nested li {
        display: block;
        position: relative;
    }

        ol.nested li:before {
            content: counters(item, "", decimal) ".";
            counter-increment: item;
            position: absolute;
            margin-right: 100%;
            right: 10px;
        }

.nested .nested {
    counter-reset: subitem;
}

    .nested .nested li:before {
        content: counter(item) "" counter(subitem, lower-alpha) ".";
        counter-increment: subitem;
    }
        /*end*/