﻿.section
{
    display: block;
    margin-bottom: 15px;
    margin-top: 15px;
}

    .section.collapsed .group
    {
        display: none;
    }

    .section .legend
    {
        position: relative;
        padding: 15px;
        margin-bottom: 15px;
        background: #f2f2f2;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

        .section .legend .tip
        {
            position: absolute;
            display: block;
            right: 15px;
            top: 16px;
            font-size: 80%;
            padding-right: 10px;
            background: url(/images/icon-fieldset-collapse.png) right center no-repeat;
        }

    .section.collapsed .legend .tip
    {
        background-image: url(/images/icon-fieldset-expand.png);
    }

    .section .legend:hover
    {
        background: #e5e7e9;
    }

.field
{
    margin: 0 0 12px 0;
}

.field .aspLabel {
    padding-top: 3px !important;
    margin-right: 20px !important;
    line-height: 18px !important;
    float: left !important;
    width: 130px !important;
    text-align: right !important;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}


.group .field input[type="checkbox"]
{
    margin-top: 8px;
    margin-right: 6px;
}

.field .sublabel
{
    font-size: 80%;
    padding-left: 150px;
    margin-top: 6px;
    color: #999999;
}

label,
input,
select,
textarea
{
    font-family: 'Source Sans Pro', arial, sans-serif;
    font-weight: normal;
    line-height: normal;
}

label
{
    padding-top: 3px;
    margin-right: 20px;
    line-height: 18px;
    float: left;
    width: 130px;
    text-align: right;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.label-nofloat label
{
    float: none;
    width: auto;
    padding-left: 6px;
}


.checkbox,
.radio
{
    position: relative;
    padding-left: 20px;
}

    .checkbox input[type="checkbox"],
    .radio input[type="radio"]
    {
        position: absolute;
        left: 0;
        top: 0;
    }

    .checkbox label
    {
        margin: 0;
        float: none;
        width: auto;
        text-align: left;
    }

.cke label
{
    float: none;
}

form .input
{
    margin-left: 150px;
}

input[type=checkbox], input[type=radio]
{
    cursor: pointer;
}

input,
select,
textarea,
.uneditable-input
{
    display: inline-block;
    width: 250px;
    height: 18px;
    padding: 4px;
    font-size: 13px;
    line-height: 18px;
    color: #808080;
    border: 1px solid #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

select
{
    padding: initial;
}

input[type=checkbox], input[type=radio]
{
    width: auto;
    height: auto;
    padding: 0;
    margin: 3px 0;
    *margin-top: 0;
    /* IE6-7 */
    line-height: normal;
    border: none;
}

input[type=file]
{
    background-color: #ffffff;
    padding: initial;
    border: initial;
    line-height: initial;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

input[type=button], input[type=reset], input[type=submit]
{
    width: auto;
    height: auto;
}

select, input[type=file]
{
    height: 27px;
    *height: auto;
    line-height: 27px;
    *margin-top: 4px;
    /* For IE7, add top margin to align select with labels */
}

    select[multiple]
    {
        height: inherit;
        background-color: #ffffff;
    }

textarea
{
    width: 500px;
    height: auto;
}

.uneditable-input
{
    background-color: #ffffff;
    display: block;
    border-color: #eee;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
    cursor: not-allowed;
}

:-moz-placeholder
{
    color: #bfbfbf;
}

::-webkit-input-placeholder
{
    color: #bfbfbf;
}

input, textarea
{
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

    input:focus, textarea:focus
    {
        outline: 0;
        border-color: rgba(82, 168, 236, 0.8);
        -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
        -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
    }

    input[type=file]:focus, input[type=checkbox]:focus, select:focus
    {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        outline: none;
    }

    .input-mini,
    input.mini,
    textarea.mini,
    select.mini
    {
        width: 60px;
    }

    .input-small,
    input.small,
    textarea.small,
    select.small
    {
        width: 90px;
    }

    .input-medium,
    input.medium,
    textarea.medium,
    select.medium
    {
        width: 150px;
    }

    .input-large,
    input.large,
    textarea.large,
    select.large
    {
        width: 210px;
    }

    .input-xlarge,
    input.xlarge,
    textarea.xlarge,
    select.xlarge
    {
        width: 270px;
    }

    .input-xxlarge,
    input.xxlarge,
    textarea.xxlarge,
    select.xxlarge
    {
        width: 530px;
    }

    textarea.xxlarge
    {
        overflow-y: auto;
    }

    input[disabled],
    select[disabled],
    textarea[disabled],
    input[readonly],
    select[readonly],
    textarea[readonly]
    {
        background-color: #f5f5f5;
        border-color: #ddd;
        cursor: not-allowed;
    }

.actions
{
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 17px 20px 18px 150px;
}

    .actions.bottom
    {
        text-align: right;
        margin-bottom: 0;
        padding: 0;
    }

    .actions .secondary-action
    {
        float: right;
    }

        .actions .secondary-action a
        {
            line-height: 30px;
        }

            .actions .secondary-action a:hover
            {
                text-decoration: underline;
            }

    .actions.top
    {
        padding: 17px 0 18px 0;
        text-align: right;
    }

        .actions.top.left
        {
            text-align: left;
        }

        .actions.top .tip
        {
            float: left;
            margin-top: 6px;
            font-size: 110%;
            font-weight: bold;
        }

        .actions.top select
        {
            margin-right: 5px;
            width: auto;
        }

.inputs-list
{
    margin: 0 0 5px;
    padding: 5px 0 0 0;
    float: left;
    list-style: inside none;
}

    .inputs-list li
    {
        display: block;
        padding: 0;
        width: 100%;
    }

    .inputs-list label
    {
        display: block;
        float: none;
        width: auto;
        padding: 0;
        line-height: 18px;
        text-align: left;
        white-space: normal;
    }

        .inputs-list label strong
        {
            color: #808080;
        }

        .inputs-list label small
        {
            font-size: 11px;
            font-weight: normal;
        }

    .inputs-list .inputs-list
    {
        margin-left: 25px;
        margin-bottom: 10px;
        padding-top: 0;
    }

    .inputs-list li + li
    {
        padding-top: 2px;
    }

    .inputs-list input[type=radio], .inputs-list input[type=checkbox]
    {
        margin-bottom: 0;
        margin-right: 6px;
        float: left;
    }

.form-stacked
{
    padding-left: 20px;
}

    .form-stacked fieldset
    {
        padding-top: 9px;
    }

    .form-stacked legend
    {
        padding-left: 0;
    }

    .form-stacked label
    {
        display: block;
        float: none;
        width: auto;
        font-weight: bold;
        text-align: left;
        line-height: 20px;
        padding-top: 0;
    }

    .form-stacked .clearfix
    {
        margin-bottom: 9px;
    }

        .form-stacked .clearfix div.input
        {
            margin-left: 0;
        }

    .form-stacked .inputs-list
    {
        margin-bottom: 0;
    }

        .form-stacked .inputs-list li
        {
            padding-top: 0;
        }

            .form-stacked .inputs-list li label
            {
                font-weight: normal;
                padding-top: 0;
            }

    .form-stacked div.clearfix.error
    {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
        margin-top: 0;
        margin-left: -10px;
    }

    .form-stacked .actions
    {
        margin-left: -20px;
        padding-left: 20px;
    }

.trPager
{
    border: none;
}

    .trPager td,
    .trPager th
    {
        padding: 10px 0 0;
    }

    .trPager table
    {
        width: auto;
    }

    .trPager tr
    {
        border: none;
    }

    .trPager a,
    .trPager span
    {
        display: block;
        min-width: 14px;
        height: 30px;
        padding: 0 8px;
        line-height: 30px;
        border: 1px solid #999999;
        margin-right: 4px;
        text-align: center;
        color: #555F68;
    }

    .trPager span
    {
        border-color: #124F73;
        background: #124F73;
        color: #ffffff;
        font-weight: bold;
    }

    .trPager a:hover
    {
        background-color: #efefef;
    }

.chart
{
    float: left;
    width: 33%;
}

    .chart .label
    {
        text-align: center;
        line-height: normal;
        font-size: 140%;
    }

.key
{
    margin: 10px 0 20px;
    padding: 20px 0;
    text-align: center;
    background: #eeeeee;
}

    .key .item
    {
        margin: 0 20px;
    }

        .key .item .color
        {
            display: inline-block;
            width: 14px;
            height: 14px;
            margin-right: 7px;
            vertical-align: -2px;
        }


/* BUTTONS */

.btn.red, .alert-message.red, .btn.red:hover, .alert-message.red:hover, .btn.yellow, .alert-message.yellow, .btn.yellow:hover, .alert-message.yellow:hover, .btn.green, .alert-message.green, .btn.green:hover, .alert-message.green:hover, .btn.info, .alert-message.info, .btn.info:hover, .alert-message.info:hover
{
    color: white;
}

.btn .close, .alert-message .close
{
    font-family: 'Source Sans Pro', arial, sans-serif;
    line-height: 18px;
}

.btn.red,
.alert-message.red
{
    background-color: #c43c35;
    background-repeat: repeat-x;
    background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
    background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
    background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
    background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
    background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
    background-image: linear-gradient(top, #ee5f5b, #c43c35);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    border-color: #c43c35 #c43c35 #882a25;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.btn.green, .alert-message.green
{
    background-color: #57a957;
    background-repeat: repeat-x;
    background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
    background-image: -moz-linear-gradient(top, #62c462, #57a957);
    background-image: -ms-linear-gradient(top, #62c462, #57a957);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
    background-image: -webkit-linear-gradient(top, #62c462, #57a957);
    background-image: -o-linear-gradient(top, #62c462, #57a957);
    background-image: linear-gradient(top, #62c462, #57a957);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    border-color: #57a957 #57a957 #3d773d;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.btn.yellow, .alert-message.yellow
{
    background-color: #dfda7d;
    background-repeat: repeat-x;
    background-image: -khtml-gradient(linear, left top, left bottom, from(#fefaba), to(#dfda7d));
    background-image: -moz-linear-gradient(top, #fefaba, #dfda7d);
    background-image: -ms-linear-gradient(top, #fefaba, #dfda7d);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fefaba), color-stop(100%, #dfda7d));
    background-image: -webkit-linear-gradient(top, #fefaba, #dfda7d);
    background-image: -o-linear-gradient(top, #fefaba, #dfda7d);
    background-image: linear-gradient(top, #fefaba, #dfda7d);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefaba', endColorstr='#dfda7d', GradientType=0);
    text-shadow: 0 1px 0 rgba(255,255,255,0.5);
    border-color: #dfda7d #dfda7d #3d773d;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: #575424;
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.btn.yellow:hover, .alert-message.yellow:hover{
    color: #575424;
}

.btn.info, .alert-message.info
{
    background-color: #339bb9;
    background-repeat: repeat-x;
    background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
    background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
    background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
    background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
    background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
    background-image: linear-gradient(top, #5bc0de, #339bb9);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    border-color: #339bb9 #339bb9 #22697d;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.btn
{
    cursor: pointer;
    display: inline-block;
    background-color: #e6e6e6;
    background-repeat: no-repeat;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
    background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
    background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
    background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
    background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
    padding: 4px 12px 5px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    margin-right: 5px;
    color: #333;
    font-size: 13px;
    line-height: normal;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -webkit-transition: 0.1s linear all;
    -moz-transition: 0.1s linear all;
    -ms-transition: 0.1s linear all;
    -o-transition: 0.1s linear all;
    transition: 0.1s linear all;
}

    .btn.left
    {
        float: left;
    }

    .btn:hover
    {
        background-position: 0 -15px;
        color: #333;
        text-decoration: none;
    }

    .btn:focus
    {
        outline: 1px dotted #666;
    }

    .btn.primary
    {
        color: #ffffff;
        background-color: #0064cd;
        background-repeat: repeat-x;
        background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
        background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
        background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
        background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
        background-image: -o-linear-gradient(top, #049cdb, #0064cd);
        background-image: linear-gradient(top, #049cdb, #0064cd);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
        border-color: #0064cd #0064cd #003f81;
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    }

    .btn.active, .btn :active
    {
        -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
        -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .btn.disabled
    {
        cursor: default;
        background-image: none;
        filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
        filter: alpha(opacity=65);
        -khtml-opacity: 0.65;
        -moz-opacity: 0.65;
        opacity: 0.65;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .btn[disabled]
    {
        cursor: default;
        background-image: none;
        filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
        filter: alpha(opacity=65);
        -khtml-opacity: 0.65;
        -moz-opacity: 0.65;
        opacity: 0.65;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

:root .alert-message, :root .btn
{
    -moz-border-radius: 0 \0;
    -webkit-border-radius: 0 \0;
    border-radius: 0 \0;
}

button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner
{
    padding: 0;
    border: 0;
}

.close
{
    float: right;
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    line-height: 13.5px;
    text-shadow: 0 1px 0 #ffffff;
    filter: alpha(opacity=25);
    -khtml-opacity: 0.25;
    -moz-opacity: 0.25;
    opacity: 0.25;
}

    .close:hover
    {
        color: #000000;
        text-decoration: none;
        filter: alpha(opacity=40);
        -khtml-opacity: 0.4;
        -moz-opacity: 0.4;
        opacity: 0.4;
    }

.dateTrigger
{
    background: url(/images/calendarIcon.png);
    border: medium none;
    height: 21px;
    margin: 0 2px;
    width: 21px;
}
