﻿/* DEFAULTS
----------------------------------------------------------*/
/* ↓↓ 只保留：導覽選單（Menu1）相關的 CSS / JS
其餘（bootstrap-select / DropDownList / 標題顏色等）完全移除，不做任何內容更改 */

/* 主導覽選單-純黑底樣式 */
.navbar-inverse,
.navbar-dark,
.navbar.bg-dark {
    background-color: #000 !important;
    border: none;
    margin-bottom: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
}

/* Menu 控件樣式 */
#Menu1 {
    background-color: #000;
    padding: 0;
    margin: 0;
}

    #Menu1 > ul,
    ul.navbar-nav {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }

        /* 主導覽選單項橫向排列-縮小行距 */
        #Menu1 > ul > li,
        ul.navbar-nav > li.nav-item {
            display: inline-block !important;
            position: relative !important;
        }

            /* 主導覽選單連結樣式-加大字體  padding: 2px -->原本10px我縮短行距 */
            #Menu1 > ul > li > a,
            ul.navbar-nav > li.nav-item > a.nav-link {
                color: #fff !important;
                padding: 2px 16px !important;
                display: block !important;
                text-decoration: none !important;
                background: transparent !important;
                border: none !important;
                font-size: 16px !important;
                font-weight: 500 !important;
                transition: background-color 0.2s ease;
            }

                /* Hover 深灰色 (#333) */
                #Menu1 > ul > li > a:hover,
                ul.navbar-nav > li.nav-item > a.nav-link:hover {
                    background-color: #333 !important;
                    color: #fff !important;
                    text-decoration: none !important;
                }

    /* 移除向下箭頭/caret（僅外觀，不影響點擊開合） */
    #Menu1 .caret,
    #Menu1 .dropdown-toggle::after {
        display: none !important;
    }

    /* 下拉式選單樣式-兩列垂直排列
   注意：不再用 display:none!important 控制，交給 Bootstrap 的 .show */
    #Menu1 ul ul,
    ul.navbar-nav > li.nav-item > ul.dropdown-menu {
        /* display: none !important;  <-- 移除：避免蓋掉 Bootstrap 的 .show */
        position: absolute !important;
        background: #fff !important;
        border: 1px solid #ddd !important;
        border-radius: .25rem !important;
        box-shadow: 0 6px 12px rgba(0,0,0,.175) !important;
        min-width: 600px !important;
        max-width: 800px !important;
        padding: 2px !important;
        z-index: 1000 !important;
        left: 0 !important;
        top: 100% !important;
        column-count: 1 !important; /* 改成 1 列，讓選項垂直排列*/
        column-gap: 10px !important;
    }

        /* 讓 Bootstrap 的 dropdown-menu.show 能正常顯示（保險）
   若你的其他 CSS 有干擾，這條可確保點擊後會出現 */
        #Menu1 ul ul.show,
        ul.navbar-nav > li.nav-item > ul.dropdown-menu.show {
            display: block !important;
        }
        /* Hover 顯示下拉式選單（移除：改點擊） */
        /*
#Menu1 > ul > li:hover > ul,
ul.navbar-nav > li.nav-item.dropdown:hover > ul.dropdown-menu {
    display: block !important;
}
*/
        /* 下拉式選單 - 無底線 */
        #Menu1 ul ul > li,
        ul.navbar-nav > li.nav-item > ul.dropdown-menu > li {
            display: block !important;
            width: 100% !important;
            break-inside: avoid !important;
            margin-bottom: 4px !important;
            border-bottom: none !important;
        }

            #Menu1 ul ul > li > a,
            ul.navbar-nav > li.nav-item > ul.dropdown-menu > li > a {
                display: block !important;
                padding: 4px 12px !important; /* 改成 4px menu裡的行高*/
                color: #333 !important;
                background: transparent !important;
                text-decoration: none !important;
                font-size: 20px !important;  /* menu裡的字大小*/
                line-height: 1.2 !important;
                border: none !important;
                border-bottom: none !important;
                border-radius: 3px !important;
                transition: all 0.2s ease;
            }
                /* 下拉式選單 Hover - 淺灰色背景 */
                #Menu1 ul ul > li > a:hover,
                ul.navbar-nav > li.nav-item > ul.dropdown-menu > li > a:hover {
                    background: #e9ecef !important;
                    color: #000 !important;
                    text-decoration: none !important;
                }
        /* 確保所有連結都無底線 */
        #Menu1 a,
        #Menu1 a:hover,
        #Menu1 a:focus,
        #Menu1 a:active {
            text-decoration: none !important;
            border-bottom: none !important;
        }
        /* ↑↑ 只保留：導覽選單（Menu1）相關的 CSS / JS*/
        /* ↓↓（bootstrap-select / DropDownList / 標題顏色等）完全移除，不做任何內容更改 */
        /*.bootstrap-select {
    width: 100% !important;
    min-width: 100%;
}

 讓選取/未選取文字以 Bootstrap v3 的單行呈現（避免斷行造成高度不一致） 
.bootstrap-select > .dropdown-toggle {
    width: 100% !important;
    white-space: nowrap;
}

    .bootstrap-select .filter-option-inner-inner,
    .bootstrap-select > .dropdown-toggle .filter-option {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

 下拉選單至少與控制項同寬
.bootstrap-select .dropdown-menu {
    min-width: 100%;
}
*/
        /* ========== selectpicker 自動寬度調整樣式 ========== */
        .bootstrap-select {
            width: auto !important;
            min-width: 80px;
            max-width: 500px;
        }

            .bootstrap-select > .dropdown-toggle {
                width: 100% !important;
                padding-right: 30px !important;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .bootstrap-select .filter-option-inner-inner {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            /* 確保下拉選單不會太窄 */
            .bootstrap-select .dropdown-menu {
                min-width: 100%;
            }
            /* 搜尋框樣式調整 */
            .bootstrap-select .bs-searchbox input {
                width: 100% !important;
            }
            /* bootstrap-select：箭頭固定到最右側 */
            .bootstrap-select > .dropdown-toggle {
                position: relative;
                padding-right: 2.25rem; /* 右側預留給箭頭，視需要可調大/小 */
            }

                .bootstrap-select > .dropdown-toggle::after {
                    position: absolute;
                    right: .75rem; /* 距離右邊的間距 */
                    top: 50%;
                    transform: translateY(-50%);
                    margin-left: 0; /* 避免跟文字擠在一起 */
                }
                /* 避免文字跟箭頭重疊（長文字時） */
                .bootstrap-select > .dropdown-toggle .filter-option {
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }
        /* ========== selectpicker 自動寬度調整樣式結束 ========== */
        /* 只把 filestyle 的按鈕做成更醒目 --橘色系 
.bootstrap-filestyle .group-span-filestyle .btn {
    background-color: #ff8f00;
    border-color: #ff8f00;
    color: #fff;
}

    .bootstrap-filestyle .group-span-filestyle .btn:hover {
        filter: brightness(0.95);
    } */
        /* filestyle「請選擇檔案」按鈕：白底樣式 */
        .bootstrap-filestyle .group-span-filestyle .btn,
        .bootstrap-filestyle .input-group-append .btn,
        .bootstrap-filestyle .input-group-btn .btn {
            background-color: #fff !important;
            border-color: #cfd4da !important; /* 灰色邊框，可自行調整 */
            color: #212529 !important; /* 文字深色 */
            box-shadow: 0 2px 6px rgba(0,0,0,.08);
        }
            /* hover：淡灰底，提升可點擊感 */
            .bootstrap-filestyle .group-span-filestyle .btn:hover,
            .bootstrap-filestyle .input-group-append .btn:hover,
            .bootstrap-filestyle .input-group-btn .btn:hover {
                background-color: #f8f9fa !important;
                border-color: #bfc5cc !important;
            }
            /* focus：鍵盤/點擊焦點框 */
            .bootstrap-filestyle .group-span-filestyle .btn:focus,
            .bootstrap-filestyle .input-group-append .btn:focus,
            .bootstrap-filestyle .input-group-btn .btn:focus {
                box-shadow: 0 0 0 .2rem rgba(0,123,255,.20) !important;
                outline: 0 !important;
            }

        body {
            background: #b6b7bc;
            /*font-family : "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;*/
            font-family: "微軟正黑體", "Microsoft JhengHei", Arial !important;
            font-size: 14pt;
            color: #888;
            margin: 0px;
            padding: 0px;
        }


        a:link, a:visited {
            color: #034af3;
        }

        a:hover {
            color: #1d60ff;
            text-decoration: none;
        }

        a:active {
            color: #034af3;
        }

        p {
            margin-bottom: 10px;
            line-height: 1.6em;
        }
        /* HEADINGS   
----------------------------------------------------------

h1, h2, h3, h4, h5, h6
{
    font-size: 1.5em;
    color: #666666;
    font-variant: small-caps;
    text-transform: none;
    font-weight: 200;
    margin-bottom: 0px;
}

h1
{
    font-size: 1.6em;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

h2
{
    font-size: 1.5em;
    font-weight: 600;
}

h3
{
    font-size: 1.2em;
}

h4
{
    font-size: 1.1em;
}

h5, h6
{
    font-size: 1em;
}
*/
        /* this rule styles <h1> and <h3> tags that are the 
first child of the left and right table columns */
        .rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2 {
            margin-top: 0px;
        }
        /* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/

        .page {
            width: 100%;
            background-color: #fff;
            margin: 10px auto 0px auto;
            border: 1px solid #496077;
        }

        .header {
            position: relative;
            margin: 0px;
            padding: 0px;
            background: #4b6c9e;
            width: 100%;
        }

            .header h1 {
                font-weight: 700;
                margin: 0px;
                padding: 0px 0px 0px 20px;
                color: #f9f9f9;
                border: none;
                line-height: 2em;
                font-size: 2em;
            }

        .main {
            padding: 0px 12px;
            margin: 12px 8px 8px 8px;
            min-height: 420px;
        }

        .leftCol {
            padding: 6px 0px;
            margin: 12px 8px 8px 8px;
            width: 200px;
            min-height: 200px;
        }

        .footer {
            color: #4e5766;
            padding: 8px 0px 0px 0px;
            margin: 0px auto;
            text-align: center;
            line-height: normal;
        }
        /* TAB MENU   
----------------------------------------------------------*/

        div.hideSkiplink {
            background-color: #3a4f63;
            width: 100%;
        }

        div.menu {
            padding: 4px 0px 4px 8px;
        }

            div.menu ul {
                list-style: none;
                margin: 0px;
                padding: 0px;
                width: auto;
            }

                div.menu ul li a, div.menu ul li a:visited {
                    background-color: #465c71;
                    border: 1px #4e667d solid;
                    color: #dde4ec;
                    display: block;
                    line-height: 1.35em;
                    padding: 4px 20px;
                    text-decoration: none;
                    white-space: nowrap;
                }

                    div.menu ul li a:hover {
                        background-color: #bfcbd6;
                        color: #465c71;
                        text-decoration: none;
                    }

                    div.menu ul li a:active {
                        background-color: #465c71;
                        color: #cfdbe6;
                        text-decoration: none;
                    }
        /* FORM ELEMENTS   
----------------------------------------------------------*/

        fieldset {
            margin: 1em 0px;
            padding: 1em;
            border: 1px solid #ccc;
        }

            fieldset p {
                margin: 2px 12px 10px 10px;
            }

            fieldset.login label, fieldset.register label, fieldset.changePassword label {
                display: block;
            }

            fieldset label.inline {
                display: inline;
            }

        legend {
            font-size: 1.1em;
            font-weight: 600;
            padding: 2px 4px 8px 4px;
        }

        input.textEntry {
            width: 320px;
            border: 1px solid #ccc;
        }

        input.passwordEntry {
            width: 320px;
            border: 1px solid #ccc;
        }

        div.accountInfo {
            width: 42%;
        }
        /* MISC  
----------------------------------------------------------*/

        .clear {
            clear: both;
        }

        .title {
            display: block;
            float: left;
            text-align: center;
            width: auto;
        }

        .loginDisplay {
            font-size: 1.1em;
            display: block;
            text-align: right;
            padding: 10px;
            color: White;
        }

            .loginDisplay a:link {
                color: white;
            }

            .loginDisplay a:visited {
                color: white;
            }

            .loginDisplay a:hover {
                color: white;
            }

        .failureNotification {
            font-size: 1.2em;
            color: Red;
        }
        /* Control
----------------------------------------------------------*/
        .button {
            border-top: 1px solid #96d1f8;
            background: #65a9d7;
            background: -webkit-gradient(linear, left top, left bottom, from(#3e779d), to(#65a9d7));
            background: -webkit-linear-gradient(top, #3e779d, #65a9d7);
            background: -moz-linear-gradient(top, #3e779d, #65a9d7);
            background: -ms-linear-gradient(top, #3e779d, #65a9d7);
            background: -o-linear-gradient(top, #3e779d, #65a9d7);
            padding: 10.5px 21px;
            -webkit-border-radius: 9px;
            -moz-border-radius: 9px;
            border-radius: 9px;
            -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
            -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
            box-shadow: rgba(0,0,0,1) 0 1px 0;
            text-shadow: rgba(0,0,0,.4) 0 1px 0;
            color: white;
            font-size: 12pt;
            font-family: Arial;
            text-decoration: none;
            vertical-align: middle;
        }

            .button:hover {
                border-top-color: #28597a;
                background: #28597a;
                color: #ccc;
            }

            .button:active {
                border-top-color: #1281e3;
                background: #1281e3;
            }

        .bold {
            font-weight: bold;
        }

        .submitButton {
            text-align: right;
            padding-right: 10px;
        }

        .numberLabel {
            text-align: right;
        }

        .numberText {
            ime-mode: disabled;
            text-align: right;
        }

        .green_label {
            width: 400px;
            height: 300px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border-radius: 10px;
            background-color: #A9F5BC;
            color: black;
            text-align: center;
            vertical-align: central;
        }

        .orange_label {
            width: 400px;
            height: 300px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border-radius: 10px;
            background-color: #F8E0E6;
            color: black;
            text-align: center;
        }

        .pink_label {
            width: 600px;
            height: 300px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border-radius: 10px;
            background-color: #F8E0E6;
            color: black;
            text-align: left;
            padding: 20px;
        }

        .violet_label {
            width: 400px;
            height: 300px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border-radius: 10px;
            background-color: #EE82EE;
            color: black;
            text-align: center;
            vertical-align: central;
        }

        .blue_border {
            width: 400px;
            height: 300px;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
            border: 5px solid #2970FF;
            text-align: center;
        }

        .hid {
            display: none;
        }

        .SmallFont {
            font-size: 8pt;
        }
        /* Gridview 
----------------------------------------------------------*/
        .PagerCss TD A:hover {
            WIDTH: 20px;
            COLOR: black
        }

        .PagerCss TD A:active {
            WIDTH: 20px;
            COLOR: black
        }

        .PagerCss TD A:link {
            WIDTH: 20px;
            COLOR: black
        }

        .PagerCss TD A:visited {
            WIDTH: 20px;
            COLOR: black
        }

        .PagerCss TD SPAN {
            FONT-WEIGHT: bold;
            FONT-SIZE: 15px;
            WIDTH: 20px;
            COLOR: red
        }


        #container {
            width: 920px;
            margin: 10px auto;
        }

        .mGrid A:link {
            COLOR: #ffffff;
            text-decoration: none
        }

        .mGrid A:visited {
            COLOR: #ffffff;
            text-decoration: none
        }

        .mGrid A:active {
            COLOR: #ffffff;
            text-decoration: none
        }

        .mGrid A:hover {
            COLOR: #33CCFF;
            text-decoration: underline;
        }

        .mGrid {
            width: 100%;
            background-color: #fff;
            margin: 5px 0 10px 0;
            border: solid 1px #525252;
            border-collapse: collapse;
        }

            .mGrid td {
                padding: 2px;
                border: solid 1px #c1c1c1;
                color: #000000;
            }

            .mGrid th {
                padding: 4px 2px;
                color: #ffffff;
                background: #424242 url(../Images/grd_head.png) repeat-x top;
                border-left: solid 1px #525252;
                font-size: 11pt;
            }

            .mGrid .alt {
                background: #fcfcfc url(../Images/grd_alt.png) repeat-x top;
            }

            .mGrid .pgr {
                background: #424242 url(../Images/grd_pgr.png) repeat-x top;
                height: 26px
            }

                .mGrid .pgr table {
                    margin: 5px 0;
                }

                .mGrid .pgr td {
                    border-width: 0;
                    padding: 0 6px;
                    border-left: solid 1px #666;
                    font-weight: bold;
                    color: #fff;
                    line-height: 12px;
                }

                .mGrid .pgr a {
                    color: #666;
                    text-decoration: none;
                }

                    .mGrid .pgr a:hover {
                        color: #33CCFF;
                        text-decoration: none;
                        font-size: 12pt
                    }

        th A:link {
            COLOR: #000000;
            text-decoration: none
        }

        th A:visited {
            COLOR: #000000;
            text-decoration: none
        }

        th A:active {
            COLOR: #000000;
            text-decoration: none
        }

        th A:hover {
            COLOR: #33CCFF;
            text-decoration: underline;
        }


        .th {
            padding: 4px 2px;
            color: #ffffff;
            background: #424242 url(../Images/grd_head.png) repeat-x top;
            border-left: solid 1px #525252;
            font-size: 11pt;
        }

        .TextIndicator_TextBox1_Strength1 {
            background-color: red;
            color: White;
            font-family: Arial;
            padding: 2px 3px 2px 3px;
            font-weight: bold;
        }

        .TextIndicator_TextBox1_Strength2 {
            background-color: #E63F00;
            color: white;
            font-family: Arial;
            padding: 2px 3px 2px 3px;
            font-weight: bold;
        }

        .TextIndicator_TextBox1_Strength3 {
            background-color: yellow;
            color: black;
            font-family: Arial;
            padding: 2px 3px 2px 3px;
            font-weight: bold;
        }

        .TextIndicator_TextBox1_Strength4 {
            background-color: green;
            color: white;
            font-family: Arial;
            padding: 2px 3px 2px 3px;
            font-weight: bold;
        }

        .TextIndicator_TextBox1_Strength5 {
            background-color: blue;
            color: white;
            font-family: Arial;
            padding: 2px 3px 2px 3px;
            font-weight: bold;
        }

        .radio {
            border-bottom: none;
            border-left: none;
            border-right: none;
            border-top: none;
        }

        .blue_btn {
            font-size: 16px;
            font-family: Arial;
            font-weight: normal;
            -moz-border-radius: 8px;
            -webkit-border-radius: 8px;
            border-radius: 8px;
            border: 1px solid #337fed;
            padding: 9px 18px;
            text-decoration: none;
            background: -webkit-gradient( linear, left top, left bottom, color-stop(5%, #3d94f6), color-stop(100%, #1e62d0) );
            background: -moz-linear-gradient( center top, #3d94f6 5%, #1e62d0 100% );
            background: -ms-linear-gradient( top, #3d94f6 5%, #1e62d0 100% );
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3d94f6', endColorstr='#1e62d0');
            background-color: #3d94f6;
            color: #ffffff;
            display: inline-block;
            text-shadow: 1px 1px 0px #1570cd;
            -webkit-box-shadow: inset 1px 1px 0px 0px #97c4fe;
            -moz-box-shadow: inset 1px 1px 0px 0px #97c4fe;
            box-shadow: inset 1px 1px 0px 0px #97c4fe;
            cursor: hand;
        }

            .blue_btn:hover {
                background: -webkit-gradient( linear, left top, left bottom, color-stop(5%, #1e62d0), color-stop(100%, #3d94f6) );
                background: -moz-linear-gradient( center top, #1e62d0 5%, #3d94f6 100% );
                background: -ms-linear-gradient( top, #1e62d0 5%, #3d94f6 100% );
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e62d0', endColorstr='#3d94f6');
                background-color: #1e62d0;
            }

            .blue_btn:active {
                position: relative;
                top: 1px;
            }

        .light_blue_btn {
            font-size: 16px;
            font-family: Arial;
            font-weight: normal;
            -moz-border-radius: 8px;
            -webkit-border-radius: 8px;
            border-radius: 8px;
            border: 1px solid #469df5;
            padding: 9px 18px;
            text-decoration: none;
            background: -webkit-gradient( linear, left top, left bottom, color-stop(5%, #79bbff), color-stop(100%, #4197ee) );
            background: -moz-linear-gradient( center top, #79bbff 5%, #4197ee 100% );
            background: -ms-linear-gradient( top, #79bbff 5%, #4197ee 100% );
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#79bbff', endColorstr='#4197ee');
            background-color: #79bbff;
            color: #ffffff;
            display: inline-block;
            text-shadow: 1px 1px 0px #287ace;
            -webkit-box-shadow: inset 1px 1px 0px 0px #cae3fc;
            -moz-box-shadow: inset 1px 1px 0px 0px #cae3fc;
            box-shadow: inset 1px 1px 0px 0px #cae3fc;
        }

            .light_blue_btn:hover {
                background: -webkit-gradient( linear, left top, left bottom, color-stop(5%, #4197ee), color-stop(100%, #79bbff) );
                background: -moz-linear-gradient( center top, #4197ee 5%, #79bbff 100% );
                background: -ms-linear-gradient( top, #4197ee 5%, #79bbff 100% );
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4197ee', endColorstr='#79bbff');
                background-color: #4197ee;
            }

            .light_blue_btn:active {
                position: relative;
                top: 1px;
            }

        .green_btn {
            font-size: 16px;
            font-family: Arial;
            font-weight: normal;
            -moz-border-radius: 8px;
            -webkit-border-radius: 8px;
            border-radius: 8px;
            border: 1px solid #74b807;
            padding: 9px 18px;
            text-decoration: none;
            background: -moz-linear-gradient( center top, #89c403 5%, #77a809 100% );
            background: -ms-linear-gradient( top, #89c403 5%, #77a809 100% );
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#89c403', endColorstr='#77a809');
            background: -webkit-gradient( linear, left top, left bottom, color-stop(5%, #89c403), color-stop(100%, #77a809) );
            background-color: #89c403;
            color: #ffffff;
            display: inline-block;
            text-shadow: 1px 1px 0px #528009;
            -webkit-box-shadow: inset 1px 1px 0px 0px #a4e271;
            -moz-box-shadow: inset 1px 1px 0px 0px #a4e271;
            box-shadow: inset 1px 1px 0px 0px #a4e271;
            cursor: hand;
        }

            .green_btn:hover {
                background: -moz-linear-gradient( center top, #77a809 5%, #89c403 100% );
                background: -ms-linear-gradient( top, #77a809 5%, #89c403 100% );
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#77a809', endColorstr='#89c403');
                background: -webkit-gradient( linear, left top, left bottom, color-stop(5%, #77a809), color-stop(100%, #89c403) );
                background-color: #77a809;
            }

            .green_btn:active {
                position: relative;
                top: 1px;
            }

        .orange_button {
            -moz-box-shadow: inset 0px 1px 0px 0px #fce2c1;
            -webkit-box-shadow: inset 0px 1px 0px 0px #fce2c1;
            box-shadow: inset 0px 1px 0px 0px #fce2c1;
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc477', endColorstr='#fb9e25');
            background-color: #ffc477;
            -webkit-border-top-left-radius: 6px;
            -moz-border-radius-topleft: 6px;
            border-top-left-radius: 6px;
            -webkit-border-top-right-radius: 6px;
            -moz-border-radius-topright: 6px;
            border-top-right-radius: 6px;
            -webkit-border-bottom-right-radius: 6px;
            -moz-border-radius-bottomright: 6px;
            border-bottom-right-radius: 6px;
            -webkit-border-bottom-left-radius: 6px;
            -moz-border-radius-bottomleft: 6px;
            border-bottom-left-radius: 6px;
            text-indent: 0;
            border: 1px solid #eeb44f;
            display: inline-block;
            color: #ffffff;
            font-family: Arial;
            font-size: 15px;
            font-weight: bold;
            font-style: normal;
            line-height: 35px;
            text-decoration: none;
            text-align: center;
            text-shadow: 1px 1px 0px #cc9f52;
        }

            .orange_button:hover {
                background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fb9e25), color-stop(1, #ffc477) );
                background: -moz-linear-gradient( center top, #fb9e25 5%, #ffc477 100% );
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fb9e25', endColorstr='#ffc477');
                background-color: #fb9e25;
            }

            .orange_button:active {
                position: relative;
                top: 1px;
            }

        .green_button {
            -moz-box-shadow: inset 0px 1px 0px 0px #c1ed9c;
            -webkit-box-shadow: inset 0px 1px 0px 0px #c1ed9c;
            box-shadow: inset 0px 1px 0px 0px #c1ed9c;
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dce2c', endColorstr='#8cb82b');
            background-color: #9dce2c;
            -webkit-border-top-left-radius: 6px;
            -moz-border-radius-topleft: 6px;
            border-top-left-radius: 6px;
            -webkit-border-top-right-radius: 6px;
            -moz-border-radius-topright: 6px;
            border-top-right-radius: 6px;
            -webkit-border-bottom-right-radius: 6px;
            -moz-border-radius-bottomright: 6px;
            border-bottom-right-radius: 6px;
            -webkit-border-bottom-left-radius: 6px;
            -moz-border-radius-bottomleft: 6px;
            border-bottom-left-radius: 6px;
            text-indent: 0;
            border: 1px solid #83c41a;
            display: inline-block;
            color: #ffffff;
            font-family: Arial;
            font-size: 15px;
            font-weight: bold;
            font-style: normal;
            line-height: 35px;
            text-decoration: none;
            text-align: center;
            text-shadow: 1px 1px 0px #689324;
        }

            .green_button:hover {
                background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #8cb82b), color-stop(1, #9dce2c) );
                background: -moz-linear-gradient( center top, #8cb82b 5%, #9dce2c 100% );
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cb82b', endColorstr='#9dce2c');
                background-color: #8cb82b;
            }

            .green_button:active {
                position: relative;
                top: 1px;
            }
        /* This button was generated using CSSButtonGenerator.com */
        /* This css button was generated by css-button-generator.com */

        .MismatchAreaSumHintBlock {
            border-style: solid;
            border-color: red;
            border-width: 2px;
            padding: 10px;
        }

        .CustomValidator {
            color: red;
            font-family: verdana;
            font-size: 10pt;
            margin-left: 165px;
            display: block;
        }

        span.CustomValidator {
            color: red;
            font-family: verdana;
            margin-left: 165px;
            display: block;
        }

        span.CustomValidatorBelow {
            color: red;
            font-family: verdana;
            margin-left: 260px;
            display: block;
            margin-top: -20px;
        }

        .MismatchAreaSumHintBlock {
            border-style: solid;
            border-color: red;
            border-width: 2px;
            padding: 10px;
        }

        .PartialRender {
            padding-left: 10px;
            font-size: 10pt;
        }

        .UpdProgress {
            width: 100%;
            font-size: 18px;
            text-align: center;
        }

        .custom_validator_count {
            color: red;
            display: block;
            text-align: center;
        }


        .leftText {
            float: left;
        }      