/* Minification failed. Returning unminified contents.
(3560,16): run-time error CSS1030: Expected identifier, found '.'
(3560,17): run-time error CSS1030: Expected identifier, found '.'
(3560,17): run-time error CSS1031: Expected selector, found '.'
(3560,17): run-time error CSS1025: Expected comma or open brace, found '.'
(3564,8): run-time error CSS1019: Unexpected token, found '@import'
(3564,16): run-time error CSS1019: Unexpected token, found 'url(http://fonts.googleapis.com/css?family=Oxygen:400,700)'
(3564,76): run-time error CSS1019: Unexpected token, found '@import'
(3564,84): run-time error CSS1019: Unexpected token, found 'url(http://fonts.googleapis.com/css?family=Racing+Sans+One)'
 */
@font-face {
    font-family: meriadprolight;    
    src: url('myriadprolight.otf') format('opentype');

}

@font-face {
    font-family: helvetica_italic;    
    src: url('HelveticaNeueLTStd-UltLtIt.otf') format('opentype');
}


@font-face {
  font-family: 'helvetica_normal';
  src: url('HelveticaNeueLTStd-Th.eot?#iefix') format('embedded-opentype'),  url('HelveticaNeueLTStd-Th.otf')  format('opentype'),
	     url('HelveticaNeueLTStd-Th.woff') format('woff'), url('HelveticaNeueLTStd-Th.ttf')  format('truetype'), url('HelveticaNeueLTStd-Th.svg#HelveticaNeueLTStd-Th') format('svg');
  font-weight: normal;
  font-style: normal;
}




@font-face {
  font-family: 'helvetica_compressed';
  src: url('HelveticaNeueLTStd-ThCn.eot?#iefix') format('embedded-opentype'),  url('HelveticaNeueLTStd-ThCn.ttf')  format('truetype');
  font-weight: normal;
  font-style: normal;
}



/*===============================================*/
/* START OF COLOR BLOCKS */
/*===============================================*/

/* ===== Base light styles you already have (kept here for clarity) ===== */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #f3f4f6; /* light gray page bg for the full-height centering */
}

.card {
    background: #ffffff;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: transform .2s ease-in-out, box-shadow .2s ease-in-out;
}

    .card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(0,0,0,.10);
    }

.form-label.fw-semibold {
    color: #111827;
}

.form-control.form-control-lg {
    padding: .9rem 1rem;
    border-radius: .75rem;
    border: 1px solid #e5e7eb;
    background: #fff;
}

    .form-control.form-control-lg:focus {
        border-color: #93c5fd;
        box-shadow: 0 0 0 .2rem rgba(59,130,246,.15);
    }

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border: none;
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
    }

/* ===== Dark mode (automatic) ===== */
@media (prefers-color-scheme: dark) {
    html, body {
        background: #0b1020; /* deep slate */
        color: #e5e7eb;
    }

    .card {
        background: #0f172a; /* slate-900 */
        box-shadow: 0 12px 30px rgba(0,0,0,.45);
    }

        .card:hover {
            box-shadow: 0 16px 40px rgba(0,0,0,.55);
        }

    .form-label.fw-semibold {
        color: #cbd5e1;
    }

    .form-control.form-control-lg {
        background: #0b1324; /* slightly darker than card */
        color: #e5e7eb;
        border-color: #243144; /* muted border */
    }

        .form-control.form-control-lg::placeholder {
            color: #6b7280;
        }

        .form-control.form-control-lg:focus {
            border-color: #60a5fa;
            box-shadow: 0 0 0 .2rem rgba(59,130,246,.25);
            background: #0b1324;
            color: #fff;
        }

    .form-check-label {
        color: #cbd5e1;
    }

    .form-check-input {
        background-color: #0b1324;
        border-color: #243144;
    }

        .form-check-input:checked {
            background-color: #2563eb;
            border-color: #2563eb;
        }

    .text-danger {
        color: #fca5a5 !important;
    }

    .btn-primary {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    }

        .btn-primary:hover {
            background: linear-gradient(135deg, #60a5fa, #1e40af);
        }
}

@media (prefers-color-scheme: dark) {
    .brand-logo.light {
        display: none;
    }

    .brand-logo.dark {
        display: inline;
    }
}

@media (prefers-color-scheme: light) {
    .brand-logo.dark {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .card, .btn-primary {
        transition: none;
    }
}





/*body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
*/
/*.card {
    background: #fff;
    border: none;
    transition: transform 0.2s ease-in-out;
}

    .card:hover {
        transform: translateY(-5px);
    }
*/
/*.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border: none;
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
    }
*/


h2 {
    font: 100 32px/32px Helvetica,Arial,sans-serif;
    color: #333;
}


h3 {
    color: #333;
    /*font            :100 24px/24px myriadprolight,futuralight,"Segoe UI",Arial,Sans-Serif ; commented by rgn:2015_12_13*/
    margin-bottom: 23px;
    line-height: 1.5em;
}

    /*aded by :rgn 2015_12_13*/
    h3:not(sublink) {
        font: 100 24px/24px myriadprolight,futuralight,"Segoe UI",Arial,Sans-Serif;
    }
    /*aded by :rgn 2015_12_13*/
    h3.sublink {
        font: 100 24px/24px oswaldlight,myriadprolight,futuralight,"Segoe UI",Arial,Sans-Serif;
    }


.color_blocks {
    min-height: 100%; /*original:620px*/
    /*background: url("../Images/app_bg3.jpg") no-repeat;*/
    /*background: #0A636B url("../Images/hero_v3.jpg") top center;*/

    background: url("../Images/hero_v3.jpg") top center;

    border-bottom: 5px solid #A0A0A0;
    height: 100%;
    margin-top: -31px;
    border: 1px solid red;
}



.container_16 {
    /*margin-top      :30px;*/
    height: 600px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 960px;
}




.color_blocks h1,
.color_blocks h2,
.color_blocks a {
    font-family: myriadprolight,robotolight,'Helvetica Neue',Helvetica,Arial,sans-serif;
    font-size: 1.2em;
    font-stretch: expanded;
}

    /*.front span{
    font-family: 'Futura (Light)','Matura MT Script Capitals''Helvetica Neue',Helvetica,Arial,sans-serif;
    font-size: 1.2em;
    font-stretch :expanded;
}*/

    .color_blocks a.flipper {
        height: 181px; /*orig-width:px*/
        min-width: 192px; /*orig-width:192px*/
        display: block;
    }


.color_blocks h1 {
    color: #FFF;
    font-size: 45px;
    font-weight: 700;
    line-height: normal;
    margin: 38px 0 0;
}


.color_blocks h2 {
    color: #FFF;
    font-size: 24px;
    font-weight: 300;
    line-height: normal;
    margin: 0 0 47px;
}


.color_blocks .blocks {
    height: 362px;
    margin-bottom: 20px;
}


.color_blocks .flip-container {
    float: left;
    height: 181px;
    width: 192px;
}


.color_blocks .front,
.color_blocks .back {
    border: 0;
    color: #FFF;
    height: 181px;
    padding: 0;
    width: 192px;
}


.color_blocks .front {
    opacity: .8;
}


    .color_blocks .front span {
        display: inline-block;
        height: 74px;
        margin-top: 58px;
    }


.color_blocks .back {
    font-size: 14px;
}


.color_blocks .back strong:first-child {
    margin-top: 49px;
}


.color_blocks .back strong {
    display: block;
    font-size: 21px;
    margin: 25px 0 12px;
}

.color_blocks .back span {
    opacity: .5;
}


.color_blocks .one .front,
.color_blocks .one .back {
    /*background-color: #706D3C;*/
    background-color: #7fba00;
    text-align: center;
}

.color_blocks .one span {
    /*background-position :-428px 0;*/
    width: auto;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.color_blocks .two .front,
.color_blocks .two .back {
    /*background-color: #E65527;*/
    background-color: #e60062;    
    text-align: center;
}



.color_blocks .two span {
    /*background-position :-347px 0;*/
    width: auto;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}


.color_blocks .three .front,
.color_blocks .three .back {
    background-color: #37A5B3;
    text-align: center;
}



.color_blocks .three span {
    /*background-position     :-338px -78px;*/
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}


.color_blocks .four .front,
.color_blocks .four .back {
    background-color: #363948;
    text-align: center;
}



.color_blocks .four span {
    /*background-position:-122px -78px;*/
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}


.color_blocks .five .front,
.color_blocks .five .back {
    /*background-color: #716F84;*/
    background-color: #000000;    
    text-align: center;
}



.color_blocks .five span {
    /*background-position     :-245px 0;*/
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}



.color_blocks .six .front,
.color_blocks .six .back {
    background-color: #D5BC3A;
    text-align: center;
}


.color_blocks .six span {
    /*background-position:-2px -78px;*/
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}



.color_blocks .seven .front,
.color_blocks .seven .back {
    background-color: #5EA07F;
    text-align: center;
}


.color_blocks .seven span {
    /*background-position :0 0;*/
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}



.color_blocks .eight .front,
.color_blocks .eight .back {
    background-color: #1D6285;
    text-align: center;
}


.color_blocks .eight span {
    /*background-position     :-270px -78px;*/
    margin-left: auto;
    margin-right: auto;
}


.color_blocks .sky .front,
.color_blocks .sky .back {
    background-color: #86B3BB;
    text-align: center;
}



.color_blocks .sky span {
    background-position: 0 -179px;
    width: 159px;
}

.color_blocks .tangerine .front,
.color_blocks .tangerine .back {
    background-color: #8d411f;
    text-align: center;
}



.color_blocks .tangerine span {
    /*background-position :0 -179px;*/
    width: 159px;
}


.color_blocks .aqua .front,
.color_blocks .aqua .back {
    /*background-color    :#ca42de;*/
    text-align: center;
}



.color_blocks .aqua span {
    /*background-position :0 -179px;*/
    width: 159px;
}


.color_blocks .marine .front,
.color_blocks .marine .back {
    /*background-color    :#38c3e2;*/
    text-align: center;
}



.color_blocks .marine span {
    /*background-position :0 -179px;*/
    width: 159px;
}



/*.color_blocks .blocks .black
{
    background-color    :#000;
    float               :left;
    height              :181px;
    text-align          :center;
    width               :192px;
}*/

/*.color_blocks .blocks .black span{    
    
    display     :inline-block;
    height      :51px;
    margin      :29px 0 25px;
    width       :113px
}*/


/*.color_blocks .front span{
    background  :url("../Images/nmhp_blocks.png") no-repeat;
    display     :inline-block;
    height      :74px;
    margin-top  :58px;
}*/

.color_blocks .front span {
    font-family: futuralight,myriadprolight,"Segoe UI",Calibri, Tahoma;
    font-size: 1.4em;
    font-weight: 200;
}


.color_blocks .blocks .black a {
    color: #000;
    float: none;
    font-size: 19px;
    height: auto;
    margin: 0;
    white-space: nowrap;
    width: 100px;
}



.color_blocks p {
    font-size: 13px;
    text-align: center;
}




    .color_blocks p a {
        color: #4C3E31;
    }



        .color_blocks p a span {
            /*background:url(../../images/home/nmhp_blocks.png) -508px -137px;*/
            display: block;
            height: 30px;
            margin: 4px auto 0;
            width: 30px;
        }


.flip-container {
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    /*margin                  :10px;*/
    /*box-shadow              :2px 2px 2px #999;*/
}



    .flip-container:hover .back {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }



    .flip-container:hover .front {
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }



.flip-container,
.front,
.back {
    width: 225px;
    height: 225px;
}


.flipper {
    -webkit-transition: .6s;
    -moz-transition: .6s;
    -ms-transition: .6s;
    transition: .6s;
    position: relative;
}


.front,
.back {
    -webkit-backface-visibility: hidden;
    -webkit-transition: .6s;
    -moz-backface-visibility: hidden;
    -moz-transition: .6s;
    -ms-backface-visibility: hidden;
    -ms-transition: .6s;
    backface-visibility: hidden;
    transition: .6s;
    position: absolute;
    left: 0;
    border: 1px solid #444;
}

.front {
    z-index: 2;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    background-color: #fff;
}

.back {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    background-color: #ddd;
}



/*===============================================*/
/* END OF COLOR BLOCKS */
/*===============================================*/



/*===============================================*/
/*  added by: WAS - November 11, 2015            */
/*  Additional Fonts                             */
/*===============================================*/

@font-face {
    font-family: roboto_light;    
    src: url('robotolight.ttf') format('truetype');
}


@font-face {
    font-family: roboto_medium;    
    src: url('robotomedium.ttf') format('truetype');

}


/*===============================================*/
/*  added by: WAS - December 23, 2015            */
/*  Additional Fonts                             */
/*===============================================*/




@font-face {
    font-family: 'oswald_light';
    src: url('oswaldlight-webfont.eot');
    src: url('oswaldlight-webfont.eot?#iefix') format('embedded-opentype'),
         url('oswaldlight-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: proxima_light;    
    src: url('proximanovalight.otf') format('opentype')
}



@font-face {
  font-family: 'CenturyGothic';
  src: url('CenturyGothic.eot?#iefix') format('embedded-opentype'),  url('CenturyGothic.woff') format('woff'), url('CenturyGothic.ttf')  format('truetype'), url('CenturyGothic.svg#CenturyGothic') format('svg');
  font-weight: normal;
  font-style: normal;
}




/*===============================================*/
/*  added by: WAS - November 8, 2015             */
/*  For TextBoxFor Editing Standards             */
/*===============================================*/
.integer_hundred, .integer_100 {
    text-align: center;
    min-width: 30px !Important;
    width: 30px !Important;
}

.integer_thousand, .integer_1000 {
    text-align: center !Important;
    min-width: 50px !Important;
    width: 50px !Important;

}

.integer_tenthousand, .integer_10000 {
    text-align: center !Important;
    min-width: 70px !Important;
    width: 70px !Important;
}

.integer_hundredthousand, .integer_100000 {
    text-align: right;
    min-width: 100px !Important;
    width: 100px !Important;
}


.decimal_hundred, .decimal_100 {
    text-align: right;
    min-width: 30px !Important;
    width: 50px !Important;
}

.decimal_fivehundred, .decimal_500 {
    text-align: right;
    min-width: 35px !Important;
    width: 55px !Important;
}

.decimal_thousand, .decimal_1000 {
    text-align: right;
    min-width: 50px !Important;
    width: 60px !Important;
}

.decimal_10000 {
    text-align: right;
    min-width: 85px !Important;
    width: 85px !Important;
}


.decimal_hundredthousand, .decimal_100000 {
    text-align: right;
    min-width: 95px !Important;
    width: 95px !Important;
}


.decimal_million, .decimal_1000000 {
    text-align: right;
    min-width: 100px !Important;
    width: 100px !Important;
}

.decimal_billion, .decimal_1000000000 {
    text-align: right;
    min-width: 125px !Important;
    width: 125px !Important;
}



.string_10 {
    text-align: left;
    min-width: 10px !Important;
    width: 20px !Important;
}

.string_20 {
    text-align: left;
    min-width: 40px !Important;
    width: 80px !Important;
}


.string_30 {
    text-align: left;
    min-width: 50px !Important;
    width: 100px !Important;
}

.string_40 {
    text-align: left;
    min-width: 125px !Important;
    width: 125px !Important;
}

.string_50 {
    text-align: left;
    min-width: 150px !Important;
    width: 150px !Important;
}

.string_60 {
    text-align: left;
    min-width: 175px !Important;
    width: 175px !Important;
}

.string_70 {
    text-align: left;
    min-width: 200px !Important;
    width: 200px !Important;
}

.string_80 {
    text-align: left;
    min-width: 225px !Important;
    width: 225px !Important;
}

.string_90 {
    text-align: left;
    min-width: 250px !Important;
    width: 250px !Important;
}

.string_100 {
    text-align: left;
    min-width: 275px !Important;
    width: 275px !Important;
}

.string_110 {
    text-align: left;
    min-width: 300px !Important;
    width: 300px !Important;
}

.string_120 {
    text-align: left;
    min-width: 325px !Important;
    width: 325px !Important;
}

.string_130 {
    text-align: left;
    min-width: 350px !Important;
    width: 350px !Important;
}

.string_140 {
    text-align: left;
    min-width: 375px !Important;
    width: 375px !Important;
}

.string_150 {
    text-align: left;
    min-width: 400px !Important;
    width: 400px !Important;
}

.string_160  {
    text-align: left;
    min-width: 425px !Important;
    width: 425px !Important;
}

.string_170  {
    text-align: left;
    min-width: 450px !Important;
    width: 450px !Important;
}

.string_180  {
    text-align: left;
    min-width: 475px !Important;
    width: 475px !Important;
}

.string_190  {
    text-align: left;
    min-width: 500px !Important;
    width: 500px !Important;
}

.string_200  {
    text-align: left;
    min-width: 525px !Important;
    width: 525px !Important;
}



.text_left {
    text-align: left !Important;
}

.text_right {
    text-align: right !important;
}

.text_center {
    text-align: center !important;  
}






.linkbutton {
    cursor: pointer;
    color: blue;
}

    .linkbutton:hover {
        text-decoration: underline;
    }

.ActionButtons {
    width: 70px;
}

.indexcontent {
    display: inline-block;
    width: 960px;
    margin-top: 60px;
    margin-left: 20px;
    overflow: auto;
}

.navSidebarClass {
    left: 0;
    top: 3px;
    width: 150px;
    display: inline-block;
    vertical-align: top;
}

.FormLabel {
    display: inline-block;
    width: 100px;
    text-align: right;
    vertical-align: middle;
}

.FormField {
    display: inline-block;
    vertical-align: middle;
}

.FormRow {
    width: 100%;
    display: inline-block;
    margin-top: 5px;
}

.hidden {
    display: none;
}

.FormField textarea {
    width: 200px;
    height: 100px;
}

/*===================================================================*/
/* added by: WAS - Sep. 8, 2015 - To have a universal padding for    */
/* buttons                                                           */
/*===================================================================*/

.button_std1 {
    padding: 2px 5px 2px 5px;
}


/*===================================================================*/
/* added by: WAS - Aug. 30, 2015 - This is for the background of the */
/* batch selector in IDS                                             */
/*===================================================================*/


label#for-batch {
        
    font-size: 18px;    
    font-family: Arial, Calibri;
    font-weight: 500;
    width: 225px;
    display: inline-block;
    color: #000;
    /*padding: 8px 7px;*/
    padding: 10px 0 4px 0;
    text-align: center;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 4%, rgba(0,0,0,0) 13%, rgba(0,0,0,0.6) 87%, rgba(0,0,0,0.65) 93%, rgba(0,0,0,0.65) 94%, rgba(0,0,0,0.65) 95%, rgba(0,0,0,0.65) 96%, rgba(0,0,0,0.65) 98%, rgba(0,0,0,0.65) 99%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(4%,rgba(0,0,0,0)), color-stop(13%,rgba(0,0,0,0)), color-stop(87%,rgba(0,0,0,0.6)), color-stop(93%,rgba(0,0,0,0.65)), color-stop(94%,rgba(0,0,0,0.65)), color-stop(95%,rgba(0,0,0,0.65)), color-stop(96%,rgba(0,0,0,0.65)), color-stop(98%,rgba(0,0,0,0.65)), color-stop(99%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 4%,rgba(0,0,0,0) 13%,rgba(0,0,0,0.6) 87%,rgba(0,0,0,0.65) 93%,rgba(0,0,0,0.65) 94%,rgba(0,0,0,0.65) 95%,rgba(0,0,0,0.65) 96%,rgba(0,0,0,0.65) 98%,rgba(0,0,0,0.65) 99%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(0,0,0,0) 4%,rgba(0,0,0,0) 13%,rgba(0,0,0,0.6) 87%,rgba(0,0,0,0.65) 93%,rgba(0,0,0,0.65) 94%,rgba(0,0,0,0.65) 95%,rgba(0,0,0,0.65) 96%,rgba(0,0,0,0.65) 98%,rgba(0,0,0,0.65) 99%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(0,0,0,0) 4%,rgba(0,0,0,0) 13%,rgba(0,0,0,0.6) 87%,rgba(0,0,0,0.65) 93%,rgba(0,0,0,0.65) 94%,rgba(0,0,0,0.65) 95%,rgba(0,0,0,0.65) 96%,rgba(0,0,0,0.65) 98%,rgba(0,0,0,0.65) 99%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 4%,rgba(0,0,0,0) 13%,rgba(0,0,0,0.6) 87%,rgba(0,0,0,0.65) 93%,rgba(0,0,0,0.65) 94%,rgba(0,0,0,0.65) 95%,rgba(0,0,0,0.65) 96%,rgba(0,0,0,0.65) 98%,rgba(0,0,0,0.65) 99%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */

}

select#batchNo {

    width: 225px;

}


/*==================================================================*/
/* added by: WAS - April 2, 2015 - For highlighting mouse over rows */
/* Must be used individually for each table grid in a web page      */
/* depending on the number of grids / partial views to be displayed */
/*==================================================================*/

.highlight_scroller1 {
    background-color: #BCFF11 !Important;        
    color: black !Important;

}


.highlight_row_table1 {
    background-color: #ffd800;
   
}

.highlight_row_table2 {
    background-color: #ffd800;
}

.highlight_row_table3 {
    background-color: #ffd800;
}

.highlight_row_table4 {
    background-color: #ffd800;
}

.highlight_row_table5 {
    background-color: #ffd800;
}

.highlight_row_table6 {
    background-color: #ffd800;
}

.highlight_row_table7 {
    /*used in cpx*/
    background-color: #ffd800;

}



/*==================================================================*/
/* added by: WAS - April 2, 2015 - For highlighting clicked rows */
/* Must be used individually for each table grid in a web page      */
/* depending on the number of grids / partial views to be displayed */
/*==================================================================*/


.highlight_clicked_row_table1 {
    background-color: #4cff00;
    /*background-color: #fff;*/
}

.highlight_clicked_row_table2 {
    background-color: #4cff00;
}

.highlight_clicked_row_table3 {
    background-color: #4cff00;
}

.highlight_clicked_row_table4 {
    background-color: #4cff00;
}

.highlight_clicked_row_table5 {
    background-color: #4cff00;
}


/*===============================================================   */
/* Row Highlight made by RGN - added by WAS into Site.CSS           */
/* Aug 8, 2015                                                      */
/*===============================================================   */

    .highlight {
        background-color: #00A097 !Important;
        color: white !Important;
    }

    .normal {
        background-color: #eee;
    }



/*===============================================================   */
/* Row Highlight made by WAS - added by WAS into Site.CSS           */
/* May 21, 2015 - Used for dynamic row highlighting
/*===============================================================   */

    .row_label1 {
        color: white;
        background-color: #0B710B;
    }



/*===============================================================*/
/* Table Grid CSS */
/*===============================================================*/

table#table-grid1-header th, table.table-grid1-header th {


    /*background-color: #B9C2D0;
    border: 1px solid #A0A0A0;
    font-family: roboto_medium;
    color: #333;*/

    /* New Table <th> color combination by WAS - 12/14/16 */
    background-color: #414e5a;
    border: 1px solid #fff;
    font-family: roboto_light;
    color: #fff;

    text-align: center;
    vertical-align: middle;

    
    height: 30px;
    min-height: 30px;
    white-space: nowrap;
    padding-left: 5px;
    padding-right: 5px;
    
    font-size: 11px;
    font-weight: 400;   

}




table.table-grid1-header tr td:first-child {
    border-left: none;
}




table.table-grid1-header tr td:last-child {
    border-right: none;
}




table#table-grid2-header th, table.table-grid2-header th {

    text-align: center;
    vertical-align: middle;

    border: 1px solid #ffffff;
    color: #fff;

    background: #f50000; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#f50000, #9b0000); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#f50000, #9b0000); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#f50000, #9b0000); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#f50000, #9b0000); /* Standard syntax (must be last) */
    height: 30px;
    min-height: 30px;
    font-size: 11px;
    white-space: nowrap;
    padding-left: 5px;
    padding-right: 5px;
    font-family: roboto_medium;
    font-weight: 400;

}


table.table-grid2-header tr td:first-child {
    border-left: none;
}




table.table-grid2-header tr td:last-child {
    border-right: none;
}


.odd {
        background-color: #F5F5F5;
}

.even {
        background-color: #fff;
}



table#table-grid1-header td, table.table-grid1-header td {

    border: 1px solid #DEDEDE;
    text-align: center;
    font-size: 11px;
    font-family: roboto_medium;
    white-space: nowrap;
    padding-left: 5px;
    padding-right: 5px;

}


table#table-form1-header td, table.table-form1-header td {

    border: 0px solid #DEDEDE;
    text-align: center;
    font-size: 11px;
    font-family: roboto_medium;
    white-space: nowrap;
    padding-left: 5px;
    padding-right: 5px;

}


table#table-form1-header td input, table.table-form1-header td input, table.table-form1-header td select{
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
}


table#table-form1-header td.td_label_yellow, table.table-form1-header td.td_label_yellow {

    white-space: nowrap;
    padding: 3px 5px;
    font-family: roboto_medium;
    font-size: 14px; 
    background-color: #ffd800; 
    color: #424242;
    border-radius: 10px;
}



table#table-form1-header td.td_label_aqua, table.table-form1-header td.td_label_aqua {

    white-space: nowrap;
    padding: 3px 5px;
    font-family: roboto_medium;
    font-size: 14px; 
    background-color: #2abfb1; 
    color: white;
    border-radius: 10px;
}



table#table-grid2-header td, table.table-grid2-header td {

    border: 1px solid #DEDEDE;
    text-align: center;
    font-size: 11px;
    font-family: roboto_medium;
    white-space: nowrap;
    padding-left: 5px;
    padding-right: 5px;

}






/*========================================================================================*/
/*  Main DIV Containers within the Main Index                                             */
/*========================================================================================*/

.index_div_container {

    height: auto;
    width: 1200px;
    /*border: 1px solid gray;*/
    border-radius: 5px;
    border: 1px solid #c1c1c1;
    background-color: #EEE;
    box-shadow: 5px 5px 5px #999;

}

/*=============================================================*/
/*  Table Grid DIV Container -- added by WAS                   */
/*=============================================================*/

.index_div_container2 {

        height: auto;
        width: 1200px;
        border: 1px solid #c1c1c1;
        border-radius: 5px;
        background-color: #EEE;
        box-shadow: 0px 4px 23px 5px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0,0,0,0.15);

}

/* == same with index_div_container2 == */
/* this is for proper naming correction */

.index_div_shadow1 {

        height: auto;
        width: 1200px;
        border: 1px solid #c1c1c1;
        border-radius: 5px;
        background-color: #EEE;
        box-shadow: 0px 4px 23px 5px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0,0,0,0.15);

}

/*=============================================================*/
/*  Table Grid DIV Container -- added by WAS                   */
/*=============================================================*/

.index_div_wo_shadow {

        height: auto;
        width: 1200px;
        border: 1px solid gray;
        background-color: #EEE;
}

/*=============================================================*/
/*  Table Grid DIV Container -- added by WAS                   */
/*=============================================================*/

.index_div_shadow {

        box-shadow: 5px 5px 5px #999;
}


/*=============================================================*/
/*  Table Grid DIV Container -- added by WAS                   */
/*=============================================================*/
    
div.table_grid_container {

    height: auto;
    overflow: auto;
    width: 1180px;
    background-color: #fff !Important;
    border: 1px solid #DEDEDE;

}


/*============================================================= */
/*  Loading Bar / Loading GIF / Progress Bar / Waiting Circle   */
/*  added by WAS                                                */
/*============================================================= */
/* Loader overlay (NOT bootstrap modal) */
.loading-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,.65) url('../Images/waiting_gif.gif') 50% 50% no-repeat;
}

    /* Optional: when loading */
    .loading-overlay.is-active {
        display: block;
    }

/* ✅ Dedicated loading overlay (safe with Bootstrap) */
#loadingOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(255,255,255,.7) url('/Images/waiting_gif.gif') center center no-repeat;
}

    #loadingOverlay.is-active {
        display: block;
    }

    body.loading {
        overflow: hidden;   
    }





/* Currently used CSS in the Solutions
----------------------------------------------------------*/

.rAlign {
    text-align: right;
}

.capitalize {
    text-transform: capitalize;
}

.title {
    font-size: 52px;
    font-weight: bold;
    padding-left: 20px;
}

#search {
    padding: 2px;
}

.fRight {
    float: right;
    padding-left: 10px;
    padding-right: 2px;
}

.fLeft {
    float: left;
}

.boder-bottom {
    border-bottom: 1px solid #E6E6E6;
    line-height: 2px;
}

.note, .note span {
    font-size: 7pt;
    color: #808080;
    text-align: left;
}

div.note {
    width: 100%;
    padding: 5px;
    text-align: center;
    color: red;
}

.clear {
    clear: both;
}


/* main layout
----------------------------------------------------------*/
html {
    /*background-color: #e2e2e2;*/ /*original color but will interfere when screen is ZOOM IN - replace with white background below*/
    background-color: #fff;
    margin: 0;
    padding: 0;
}

body {
    /*background-color: #fff;*/ /*temporary commented by WAS: will interfere with shadow effect*/

    color: #333;
    font-size: 11px;
    font-family: Arial, Verdana, Helvetica, Sans-Serif;
    margin: 0;
    padding: 0;
}

a {
    color: #333;
    outline: none;
    padding-left: 3px;
    padding-right: 3px;
    text-decoration: underline;
}

    a:link, a:visited, a:active, a:hover {
        color: #0000CC;
        text-decoration: none;
    }


header, footer, hgroup, nav, section {
    display: block;
}

mark {
    background-color: #a6dbed;
    padding-left: 5px;
    padding-right: 5px;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-fix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

h1, h2, h3,
h4, h5, h6 {
    color: #5b5b5b;
    margin-bottom: 0;
    padding-bottom: 0;
}

h3.label2 {

    font-size: 16px;
    margin: 0px;
    font-family: 'CenturyGothic';
    clear: both;
    border-bottom: 1px solid #b7b7b7;
    width: 100%;

}


h3.label3, h1.label {

    font-size: 16px;
    margin: 0px;
    font-family: 'CenturyGothic';
    clear: both;
    border-bottom: 1px solid #b7b7b7;
    width: 100%;

}



/*  ========================================    */
/*  Added by WAS - August 10, 2015              */
/*  ========================================    */

.h2_grid_label {

    /*font-family: meriadprolight;helvetica_compressed*/    
    font-family: CenturyGothic, 'Arial Narrow', Calibri;
    margin-left: 5px;
    margin-bottom: 10px;
    font-weight: normal;
    letter-spacing: -1px;
    

}

.h3_grid_label {

    font-family: roboto_light;
    margin-left: 10px;
    margin-bottom: 10px;
    margin-top: 0px;
    font-weight: normal;
    letter-spacing: -1px;
    
}




h2 {
    font-size: x-large;
    font-weight: normal;
}

h3 {
    font-size: 1.2em;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
}

h5 a:link, h5 a:visited, h5 a:active {
    padding: 0;
    text-decoration: none;
}


/* main layout
----------------------------------------------------------*/
.content-wrapper {
    margin: 0 auto;
    width: 90%;
    padding: 0px 60px;
}

#body {
    /* background-color: #efeeef;*/
    clear: both;
    position: relative;
    padding-bottom: 35px;
}

.linksContainerC, .linksContainerCYellow {
    margin: auto auto auto 8px;
    padding-top: 4px;
    width: 145px;
}

.main-content {
    /*background: url("../Images/accent.png") no-repeat;*/
    /*padding:30px 60px 0px 60px;*/
    min-height: 480px;
    min-width: 1100px;
    padding: 20px 0px 0px 0px;
}

.featured + .main-content {
    background: url("../Images/heroAccent.png") no-repeat;
}

header .content-wrapper {
    /*padding-top: 20px;*/
    padding-bottom: 10px;
}

footer {
    clear: both;
    background-color: #e2e2e2;
    font-size: .8em;
    height: 20px;
    text-align: center;
}


/* site title
----------------------------------------------------------*/
.site-title {
    color: #c8c8c8;
    font-family: Rockwell, Consolas, "Courier New", Courier, monospace;
    font-size: 2.3em;
    margin: 0;
}

    .site-title a, .site-title a:hover, .site-title a:active {
        background: none;
        color: #c8c8c8;
        outline: none;
        text-decoration: none;
    }


/* login
----------------------------------------------------------*/
#login {
    display: block;
    font-size: .85em;
    margin: 0 0 10px;
    text-align: right;
}

    #login a {
        background-color: #d3dce0;
        margin-left: 10px;
        margin-right: 3px;
        padding: 2px 3px;
        text-decoration: none;
    }

        #login a.username {
            background: none;
            margin: 0;
            padding: 0;
            text-decoration: underline;
        }

    #login ul {
        margin: 0;
    }

    #login li {
        display: inline;
        list-style: none;
    }


/*=================================================*/
/* menu
/*=================================================*/
ul#menu {
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 5px;
    padding: 0;
    text-align: right;
}

    ul#menu li {
        display: inline;
        list-style: none;
        padding-left: 15px;
    }

        ul#menu li a {
            background: none;
            color: #999;
            text-decoration: none;
        }

            ul#menu li a:hover {
                color: #333;
                text-decoration: none;
            }


/*=================================================*/
/* page elements
/*=================================================*/


/*=================================================*/
/* featured */
/*=================================================*/


.featured {
    background-color: #fff;
}

    .featured .content-wrapper {
        background-color: #7ac0da;
        background-image: -ms-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        background-image: -o-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #7ac0da), color-stop(1, #a4d4e6));
        background-image: -webkit-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        background-image: linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        color: #3e5667;
        padding: 20px 40px 30px 40px;
    }

    .featured hgroup.title h1, .featured hgroup.title h2 {
        color: #fff;
    }

    .featured p {
        font-size: 1.1em;
    }


/*=================================================*/
/* page titles */
/*=================================================*/

hgroup.title {
    margin-bottom: 10px;
}

    hgroup.title h1, hgroup.title h2 {
        display: inline;
    }

    hgroup.title h2 {
        font-weight: normal;
        margin-left: 3px;
    }



/*=================================================*/
/* features */
/*=================================================*/
section.feature {
    width: 300px;
    float: left;
    padding: 10px;
}


/*=================================================*/
/* ordered list */
/*=================================================*/
ol.round {
    list-style-type: none;
    padding-left: 0;
}

    ol.round li {
        margin: 25px 0;
        padding-left: 45px;
    }

        ol.round li.zero {
            background: url("../Images/orderedList0.png") no-repeat;
        }

        ol.round li.one {
            background: url("../Images/orderedList1.png") no-repeat;
        }

        ol.round li.two {
            background: url("../Images/orderedList2.png") no-repeat;
        }

        ol.round li.three {
            background: url("../Images/orderedList3.png") no-repeat;
        }

        ol.round li.four {
            background: url("../Images/orderedList4.png") no-repeat;
        }

        ol.round li.five {
            background: url("../Images/orderedList5.png") no-repeat;
        }

        ol.round li.six {
            background: url("../Images/orderedList6.png") no-repeat;
        }

        ol.round li.seven {
            background: url("../Images/orderedList7.png") no-repeat;
        }

        ol.round li.eight {
            background: url("../Images/orderedList8.png") no-repeat;
        }

        ol.round li.nine {
            background: url("../Images/orderedList9.png") no-repeat;
        }


/*=================================================*/
/* content */
/*=================================================*/
article {
    float: left;
    width: 70%;
}

aside {
    float: right;
    width: 25%;
}

    aside ul {
        list-style: none;
        padding: 0;
    }

        aside ul li {
            background: url("../Images/bullet.png") no-repeat 0 50%;
            padding: 2px 0 2px 20px;
        }


/*=================================================*/
/* login page */
/*=================================================*/
#loginForm {
    border-right: solid 2px #c8c8c8;
    float: left;
    width: 55%;
}

    #loginForm .validation-error {
        display: block;
        margin-left: 15px;
    }

    #loginForm .validation-summary-errors ul {
        margin: 0;
        padding: 0;
    }

    #loginForm .validation-summary-errors li {
        display: inline;
        list-style: none;
        margin: 0;
    }

    #loginForm input {
        width: 250px;
    }

    #loginForm input[type="checkbox"],
    #loginForm input[type="submit"],
    #loginForm input[type="button"],
    #loginForm button {
        width: auto;
    }

#socialLoginForm {
    margin-left: 40px;
    float: left;
    width: 40%;
}

    #socialLoginForm h2 {
        margin-bottom: 5px;
    }

#socialLoginList button {
    margin-bottom: 12px;
}

#logoutForm {
    display: inline;
}



/*=================================================*/
/* contact */
/*=================================================*/
.contact h3 {
    font-size: 1.2em;
}

.contact p {
    margin: 5px 0 0 10px;
}

.contact iframe {
    border: 1px solid #333;
    margin: 5px 0 0 10px;
}


/*=================================================*/
/* forms */
/*=================================================*/
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

    fieldset legend {
        display: none;
    }

    fieldset ol {
        padding: 0;
        list-style: none;
    }

        fieldset ol li {
            padding-bottom: 5px;
        }


label {
    /*font-weight: bold;    
    display: block;    
    margin-top: 5px;
    min-width: 155px;
    padding: 2px 10px 2px 0;*/
    font-size: 11px;
}

.green {
    color: green;
}

.image-wrapper {
    width: 140px;
    height: 140px;
    border: 1px solid #808080;
    margin: 1px 0px 0px 7px;
}

.image-here {
}

label.checkbox {
    display: inline;
}

.normall select {
    min-width: 20px;
}



input[type='file'], input[type="number"], input[type="text"], input[type="password"], fieldset input[type="text"], fieldset input[type="password"], select, fieldset select {

    border: 1px solid #DEDEDE;
    padding-right: 2px;

    color: #333333;
    font-size: 11px;
    font-family: roboto_medium, arial;
    min-height: 14px;

    
}





/*
input[type='file'], input[type="number"], input[type="text"], input[type="password"], input[type="button"], input[type="submit"], fieldset input[type="text"], fieldset input[type="password"], select, fieldset select {
    color: #333333;
    font-size: 11px;
    font-family: arial;
}
*/

    

    


fieldset textarea, textarea {
    font-size: 11px;
    height: 200px;
    min-width: 48%;
    text-align: left;
    font-family: Arial;
}

span {
    font-size: 11px;
}

fieldset input[type='text'], input[type='text'], input[type="number"], fieldset input[type='email'], input[type='email'], fieldset input[type='password'], input[type='password'] {
    min-width: 120px;
    padding-left: 3px;
    padding-right: 3px;
}


fieldset select, select {
    min-width: 140px;
}

input[type="checkbox"] {
    background: transparent;
    border: inherit;
    width: auto;
}


input[type="button"], 
input[type="submit"] {
    color: #333333;
    font-size: 11px;
    font-family: arial;


}


input[type="submit"],
input[type="button"],
button {
    /*background-color: #d3dce0;
        border: 1px solid #787878;
        cursor: pointer;
        font-size: 1.2em;
        font-weight: 600;
        padding: 7px;
        margin-right: 8px;
        width: auto;*/
    cursor: pointer;

    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 3px;
    padding-right: 3px;

    width: auto;
}

td input[type="submit"],
td input[type="button"],
td button {
    /*font-size: 1em;
        padding: 4px;
        margin-right: 4px;*/
    
}

/* info and errors */
.message-info {
    border: 1px solid;
    clear: both;
    padding: 10px 20px;
}

.message-error {
    clear: both;
    color: #e80c4d;
    font-size: 1.1em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.message-success {
    color: #7ac0da;
    font-size: 1.3em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

/*.error {
    color: #e80c4d;
}*/



/*=================================================*/
/* styles for validation helpers */
/*=================================================*/
.field-validation-error {
    color: #e80c4d;
    /*font-weight: bold;*/
    padding-left: 6px;
    display: block;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #e80c4d;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #e80c4d;
    //font-weight: bold;
    font-size: 1.1em;
}

.validation-summary-valid {
    display: none;
}



/*=================================================*/
/* tables
/*=================================================*/
.table-wrapper tr {
    line-height: 1.2em;
}

.table-wrapper.list {
    width: 100%;
    border: 1px solid #000;
}

    .table-wrapper.list th {
        padding: 5px;
        border-bottom: 1px solid #000;
    }

    .table-wrapper.list td {
        line-height: 1.2em;
        background: #fff;
        padding: 5px;
    }

table {
    border-spacing: 1px;
    border-collapse: collapse;
}

th {
    font-size: 1.1em;
    text-align: left;
    border: none 0px;
    padding-left: 0;
}

    th a {
        display: block;
        position: relative;
    }

        th a:link, th a:visited, th a:active, th a:hover {
            color: #333;
            font-weight: 600;
            text-decoration: none;
            padding: 0;
        }

        th a:hover {
            color: #000;
        }

    th.asc a, th.desc a {
        margin-right: .75em;
    }

        th.asc a:after, th.desc a:after {
            display: block;
            position: absolute;
            right: 0em;
            top: 0;
            font-size: 0.75em;
        }

        th.asc a:after {
            content: '▲';
        }

        th.desc a:after {
            content: '▼';
        }

td {
    /*padding: 0.25em 2em 0.25em 0em;*/
    border: 0 none;
    padding: 2px;
}

tr.pager td {
    padding: 0 0.25em 0 0;
}


/********************
*   Mobile Styles   *
********************/
@media only screen and (max-width: 850px) {


    /*=================================================*/
    /* header
    /*=================================================*/
    header .float-left,
    header .float-right {
        float: none;
    }


    /*=================================================*/
    /* logo */
    /*=================================================*/
    header .site-title {
        margin: 10px;
        text-align: center;
    }


    /*=================================================*/
    /* login */
    /*=================================================*/
    #login {
        font-size: .85em;
        margin: 0 0 12px;
        text-align: center;
    }

        #login ul {
            margin: 5px 0;
            padding: 0;
        }

        #login li {
            display: inline;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        #login a {
            background: none;
            color: #999;
            font-weight: 600;
            margin: 2px;
            padding: 0;
        }

            #login a:hover {
                color: #333;
            }


    /*=================================================*/
    /* menu */
    /*=================================================*/
    nav {
        margin-bottom: 5px;
    }

    ul#menu {
        margin: 0;
        padding: 0;
        text-align: center;
    }

        ul#menu li {
            margin: 0;
            padding: 0;
        }


    /*=================================================*/
    /* main layout
    /*=================================================*/
    .main-content,
    .featured + .main-content {
        background-position: 10px 0;
    }

    .content-wrapper {
        padding-right: 10px;
        padding-left: 10px;
    }

    .featured .content-wrapper {
        padding: 10px;
    }


    /*=================================================*/
    /* page content */
    /*=================================================*/
    article, aside {
        float: none;
        width: 100%;
    }


    /*=================================================*/
    /* ordered list */
    /*=================================================*/
    ol.round {
        list-style-type: none;
        padding-left: 0;
    }

        ol.round li {
            padding-left: 10px;
            margin: 25px 0;
        }

            ol.round li.zero,
            ol.round li.one,
            ol.round li.two,
            ol.round li.three,
            ol.round li.four,
            ol.round li.five,
            ol.round li.six,
            ol.round li.seven,
            ol.round li.eight,
            ol.round li.nine {
                background: none;
            }


    /*=================================================*/
    /* features */
    /*=================================================*/
    section.feature {
        float: none;
        padding: 10px;
        width: auto;
    }

        section.feature img {
            color: #999;
            content: attr(alt);
            font-size: 1.5em;
            font-weight: 600;
        }


    /*=================================================*/
    /* login page */
    /*=================================================*/
    #loginForm {
        border-right: none;
        float: none;
        width: auto;
    }

        #loginForm .validation-error {
            display: block;
            margin-left: 15px;
        }

    #socialLoginForm {
        margin-left: 0;
        float: none;
        width: auto;
    }



    /*=================================================*/
    /* footer
    /*=================================================*/
    footer .float-left,
    footer .float-right {
        float: none;
    }

    footer {
        text-align: center;
        height: auto;
        padding: 10px 0;
    }

        footer p {
            margin: 0;
        }
}

.tabHeader ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabHeader li {
    display: inline;
    float: left;
    margin: 0px;
    border-right: 1px solid #c8c8c8;
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    position: relative;
    top: 1px;
    font-weight: 600;
    padding: 5px 0px;
    background: url(../Images/bar.png) repeat-x 5px;
    text-align: center;
    min-width: 150px;

}

    /*.tabHeader li:first-child {
        border-left: 1px solid #888;
    }*/

    .tabHeader li a {
        padding: 0px 20px;
        color: #fff;
    }

        .tabHeader li a:hover {
            padding: 0px 20px;
            color: #fff;
        }


.tabHeader .selected a, .tabHeader .selected a:hover {
    color: #000;
}

.tabHeader .selected {
    padding-bottom: 5px;
    background: url(../Images/bar_gray_bk.png) 0px 6px repeat-x #eee;
    /*background: #EFEEEF;*/
}





.container {
    border: 1px solid #888;
    box-shadow: #c8c8c8 inset;
    clear: both;
    /*padding: 10px;*/
    margin-top: 30px;
    margin-bottom: 0px;
    margin-right: 0px;
    margin-left: 0px;
}

.gray-bg {
    background-color: #eee;
}

#navSidebar {
    left: 0;
    top: 3px;
    width: 150px;
    /*float:left;*/
}

#content {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 2px solid #FFFFFF;
    margin-top: -365px;
    overflow: auto;
    /*margin-top: -322px;*/
    padding: 8px;
    margin-left: 160px;
    height: 350px;
}

#content_main_master {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 2px solid #FFFFFF;
    margin-top: -445px;
    overflow: auto;
    /*margin-top: -322px;*/
    padding: 8px;
    margin-left: 160px;
    height: 450px;
}

#ids_master_content {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 2px solid #FFFFFF;
    margin-top: -500px;
    margin-left: 200px;
    overflow: auto;
    padding: 8px;
    height: 500px;
    width: 1000px;
}

.linksContainer h2, .linksContainerYellow h2 {
    color: #000000;
    font-size: 16px;
    /*font-size: 13px;*/
    font-weight: bold;
    margin: 8px 0;
    padding: 0;
}

.linksContainer li.selected {
    /*border: 1px solid #000; -- Commented by WAS - Aug. 8, 2015*/
    border: 1px solid #FFD000;
    background-color: rgb(255, 236, 0);
}





.sidebarBottomr {
    border-bottom: 1px solid #F0F0F0;
    height: 4px;
    margin: 0;
    padding: 0;
    width: auto;
}

.zebra {
    border: 0 none;
    padding: 0;
    width: 100%;
    font-size: 11px;
}

.marginL-min {
    margin-left: 130px;
}

.zebra th {
    vertical-align: top;
    background-color: #eee;
    font-size: 11px;
    padding: 5px 5px 5px 5px;
}


/*=================================================*/
/*------- NGM CSS ------- November 11, 2014 -------*/
/*=================================================*/



th.ids_table_headers {
    border: 1px solid #A6A6A6;
    background-color: #136583;
    color: #FFFFFF;
}


/*=================================================*/
/*-------------------------------------------------*/
/*=================================================*/


.zebra td {
    padding: 0px 7px 0px 7px;
    font-size: 11px;
}

.zebracopy {
    border: 0 none;
    padding: 0;
    width: 100%;
    font-size: 11px;
}

    .zebracopy th {
        vertical-align: top;
        background-color: #E7E7E7;
        font-size: 11px;
        padding: 10px 5px 10px 5px;
    }

    .zebracopy tr.odd {
        background-color: #F5F5F5;
    }

    .zebracopy td {
        padding: 0px 7px 0px 7px;
        font-size: 11px;
        vertical-align: middle;
        -moz-border-bottom-colors: none;
        -moz-border-left-colors: none;
        -moz-border-right-colors: none;
        -moz-border-top-colors: none;
        /*border-color: #E6E6E6;*/
        border: 1px solid #E6E6E6;
        /*border-width: 0 0 1px;*/
        /*padding: 5px;*/
        padding-top: 5px;
        padding-bottom: 5px;
        text-align: left;
    }

.editor-field {
    line-height: 30px;
}

.display-label, .display-field {
    line-height: 30px;
    float: left;
}

.display-label {
    margin-right: 4px;
}

.display-label {
    clear: both;
}


.zebra td {
    vertical-align: middle;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #E6E6E6;
    border-image: none;
    border-style: none none solid;
    border-width: 0 0 1px;
    /*padding: 5px;*/
    padding-top: 1px;
    padding-bottom: 1px;
    text-align: left;
    height: 15px;
}

.zebra tr.odd {
    background-color: #F5F5F5;
}


.zebra tr.white {
    background-color: #fff;
}

.zebra tr.gray {
    background-color: #e1e1e1;
}



.linksSidebar li {
    line-height: 20px;
}

.pagination li {
    display: inline;
    float: left;
    padding: 1px;
    border: 1px solid #c8c8c8;
}

.search-wrapper {
    float: left;
    padding: 10px 10px 0px 10px;
}

    .search-wrapper p {
        margin: 0;
    }


/*------------------------------------------------------------------*/
/* added by WAS 12/28/2016 for paging and searching standardization */
/*------------------------------------------------------------------*/

table.page_search_table {
    margin: 10px 0px;
}


.search_criteria {    
    padding: 1px; 
    min-width: 100px; 
    width: 110px;
}

.search_field {    
    min-width: 120px; 
    width: 120px;
}

.page_to_go {
    min-width: 30px !Important; 
    width: 30px !Important; 
    text-align: center !Important;
}


/*---------------------------------------------------------*/



.mt10 {
    margin-top: 20px;
}

.pagination-container {
    float: left;
    vertical-align: middle;
    max-height: 20px;
}

.pagination-wrapper {
    padding: 10px 10px 0px 10px;
    float: right;
}

.pagination li a {
    color: #000;
    text-decoration: none;
    font-family: Arial;
    font-size: 10px;    
}

.pagination li.active {
    /*background: #c8c8c8;*/

    /*background: #e80c4d; 
    border: 1px solid #e80c4d;*/

    background: #414e5a; /* replaced by WAS: 12/14/16*/
    border: 1px solid #414e5a;    

}

/* added by WAS: 12/14/16 */
.pagination li.active a {
    color: #fff;
}



/*=================================================*/
/*   Flash Message */
/*=================================================*/
.flash {
    -webkit-border-radius: .25em;
    -moz-border-radius: .25em;
    border-radius: .25em;
    -webkit-box-shadow: .125em .125em .125em #cfcfcf;
    -moz-box-shadow: .125em .125em .125em #cfcfcf;
    box-shadow: .125em .125em .125em #cfcfcf;
    margin: 20px auto 0;
    padding: 10px;
    width: 89%;
}



.error {
    border-top: 1px solid #f7d0d0;
    border-bottom: 1px solid #c87676;
    background: #e80c4d;
    color: #fff;    
    font-size: 14px;
/*
    background-color: #f3c7c7;
    background: -webkit-gradient(linear, left top, left bottom, from(#f3c7c7), to(#eea2a2));
    background: -moz-linear-gradient(top, #f3c7c7, #eea2a2);
    background: linear-gradient(top, #f3c7c7, #eea2a2);
*/
    /*color: #d12f19;*/
    /*color: #000;*/
}

/*.error {
    color: #e80c4d;
}*/

.success {
    border-top: 1px solid #fefbcd;
    border-bottom: 1px solid #e6e837;
    background: #009415;
    color: #fff;
    font-size: 14px;

/*
    background-color: #62C462;
    background: -webkit-gradient(linear, left top, left bottom, from(#62C462), to(#51A351));
    background: -moz-linear-gradient(top, #62C462, #51A351);
    background: linear-gradient(top, #62C462, #51A351);
*/
    /*color: #FFF;*/


}

.notice {
    border-top: 1px solid #fefbcd;
    border-bottom: 1px solid #e6e837;
    background-color: #feffb1;
    background: -webkit-gradient(linear, left top, left bottom, from(#feffb1), to(#f0f17f));
    background: -moz-linear-gradient(top, #feffb1, #f0f17f);
    background: linear-gradient(top, #feffb1, #f0f17f);
    color: #817134;
}

.top-entry table {
    font-size: 11px;
}

    .top-entry table td {
        line-height: 25px;
        vertical-align: top;
    }

.top-entry {
    width: 100%;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
}

    .top-entry .first {
        width: 40%;
        padding: 5px;
    }

    .top-entry .second {
        width: 57%;
        padding: 5px;
        border-left: solid 1px #E6E6E6;
    }

.table-entry {
    width: 100%;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    line-height: 20px;
    font-size: 11px;
}

.table-center label, .table-center a {
    line-height: 20px;
}

.table-center .first {
    width: 40%;
    padding: 5px;
}

.table-center .second {
    width: 40%;
    padding: 5px;
    border-left: solid 1px #E6E6E6;
}

.table-center .third {
    width: 38%;
    padding: 5px;
}

.table-center .forth {
    width: 38%;
    padding: 5px;
    border-left: solid 1px #E6E6E6;
}

.monitoring {
    padding: 5px;
    text-align: left;
    background: #f8f8f8;
    border: 1px solid #e2e2e2;
    margin-top: 25px;
    min-width: 160px;
}

    .monitoring span {
        line-height: 20px;
    }

.table-footer {
    width: 100%;
    border-top: 1px solid #E6E6E6;
    text-align: center;
}

    .table-footer td {
        width: 33%;
        line-height: 20px;
        font-size: 11px;
        vertical-align: top;
        padding-top: 20px;
    }

.bar {
    min-width: 150px;
    font-weight: bold;
    background: url('/Images/bar.png') repeat-x 2px;
    color: #fff;
    height: 15px;
    padding: 6px;
    font-size: 13px;
}

input[type=checkbox].css-checkbox {
    display: none;
}

    input[type=checkbox].css-checkbox + label.css-label {
        padding-left: 24px;
        height: 18px;
        display: inline-block;
        line-height: 18px;
        background-repeat: no-repeat;
        background-position: 0 0;
        font-size: 13px;
        vertical-align: middle;
        cursor: pointer;
    }

    input[type=checkbox].css-checkbox:checked + label.css-label {
        background-position: 0 -18px;
    }

label.css-label {
    background-image: url('/Images/checkbox.png');
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

table.proccessCheckList td {
    padding: 10px;
}

table.ctf {
}

    table.ctf th {
        /*background : url(../Images/bar_gray.png) repeat-x;*/
        padding: 5px;
        font-weight: normal;
        font-size: 12px;
    }

    table.ctf td {
        background-color: #fff;
        border: solid #E6E6E6 1px;
    }

.ctf-wrapper {
    overflow-y: scroll;
    width: 510px;
    overflow-x: hidden;
    height: 150px;
    border: 1px solid #c8c8c8;
    background-color: #E6E6E6;
}

.header-black th {
    background-color: #136583;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    border: 1px solid #A6A6A6;
    vertical-align: middle;
}

.no-padding th {
    padding: 2px;
}

.twhite th {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    text-align: center;
}

.twhite td {
    border: 1px solid #000;
    overflow-y: scroll;
}



/*===============================================================*/
/*Used in QAR Application - Added by: RGN                        */
/*===============================================================*/
.qar_upper_div fieldset {
    padding-top: 20px;
}

.qar_upper_div td[rowspan] {
    vertical-align: top;
    text-align: left;
}

.qar_upper_div tr td {
    padding: 0px 10px 0px 10px;
}

#wrapper_index_inner_content_right_div {
    border: 1px solid gray;
    margin-top: 20px;
    min-height: 400px; /*same with class:main-content*/
    padding: 20px 0px 20px 20px;
    /*margin-left       : 200px;*/
    /*width: 00px;*/
    /*min-width         : 900px;*/ /* adjusted, class:main-content min-width: 1100px*/
    /*float             : left;*/
}

.main-content2 {
    border: 1px solid orange;
    min-height: 480px;
    padding: 20px 0px 0px 0px;
    position: relative;
    /*padding-left      : 10px;*/
    /*min-width         : 1100px;*/
}

.featured + .main-content2 {
    background: url("../Images/heroAccent.png") no-repeat;
}

#tbl_analytics_report_options tr td, #tbl_failure_report_options tr td {
    padding: 10px 20px 10px 20px;
}

#tbl_analytics_report_options tr td label {
    color: white;
    font-weight: bold;
}

.qar_required label {
    color: #f00;
    font-size: 11px;
    font-weight: bold;
    padding: 5px 10px 5px 10px;
}

.qar_label {
    font-weight: bold;
    padding: 5px 5px 5px 5px;
    white-space: nowrap;
}

.qar_report_header_label h2 {
    color: #ff6a00;
    font-weight: bold;
}


.qar_input_figures, .qar_numeric_input, .numeric_input, .input_figures{
    min-width: 20px !important;
}


.tbl_qar_analytics_param tr td {
    padding: 10px 5px 10px 5px;
}


 .cpx_numeric_input{
    min-width: 10px !important;
    text-align:right;
}
 
/*=================end for QAR app style========================*/



/*===============================================================*/
/*CPX App Side Bar - Added by RGN                                */
/*===============================================================*/
.linksContainer2 li.selected {
    background-color: #EEEEEE;
}

.linksContainer2 ul li {
    padding-top: 20px;
    margin-left: 15px;
    /*border-bottom      : .5px solid gray;*/
}

    .linksContainer2 ul li a {
        color: inherit;
        color: #ff6a00;
        text-decoration: none;
        font-size: 12px;
    }

        .linksContainer2 ul li a :hover {
            color: inherit;
            cursor: pointer;
            /*color:aquamarine;*/
        }


    .linksContainer2 ul li ul li {
        color: gray;
        font-size: 12px;
        /*border-bottom      : .5px solid gray;*/
        margin-left: 30px;
    }

.major-lnk {
    font-size: 12px;
    color: gray;
    font-weight: bold;
}

.linksContainerC2, .linksContainerCYellow2 {
    margin: auto auto auto 8px;
    padding-top: 4px;
    /*width: 145px;*/
    /*border:1px solid brown;*/
}



#side_bar_left_div {
    /*left: 0;    
    top: 3px;
    width: 150px;
    float:left;   
    min-height: 400px;*/ /*same with class:main-content*/
    /*border:1px solid yellow;*/
}
/*=================end for side bar styles========================*/


/*===============================================================*/
/* left and right borderless table - Added by RGN  5/23/2015     */
/*===============================================================*/
.table-grid4-header th {
    border-bottom: 2px solid gray;
    border-top: 2px solid gray;
    background-color: #7aa1de;
    text-align: center;
    vertical-align: middle;
    /*color               : #271212;*/
    color: #fff;
    height: 30px;
    min-height: 30px;
    font-size: 12px;
    padding-left: 10px;
}

.table-grid4-header td {
    border-bottom: 1px solid #4e95f4;
    border-top: 1px solid #4e95f4;
    text-align: center;
    font-size: 12px;
    height: 15px;
    font-family: Tahoma;
    padding-left: 10px;
}


.table-grid4-header td, th {
    white-space: nowrap;
    padding-left: 5px;
    padding-right: 5px;
}

.table-grid4-header tr td {
    height: 15px;
    padding:5px 10px 5px 10px;
}

.table-grid4-header {
    width: 900px;
}

/*===================end of Borderless table ====================*/


/*===============================================================*/
/* Tab Header used by CPX App - Added by RGN  5/23/2015          */
/*===============================================================*/
.tabHeader2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabHeader2 li {
    display: inline;
    float: left;
    margin: 0px;
    border-right: 1px solid #c8c8c8;
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    position: relative;
    top: 1px;
    font-weight: 600;
    padding: 5px 0px;
    background: url(../Images/bar.png) repeat-x 5px;
    text-align: center;
    min-width: 150px;
}

    .tabHeader2 li:first-child {
        border-left: 1px solid #888;
    }

    .tabHeader2 li a {
        color: #fff;
    }

        .tabHeader2 li a:hover {
            color: #fff;
        }

.tabHeader2 .selected a, .tabHeader2 .selected a:hover {
    color: #000;
}

.tabHeader2 .selected {
    padding-bottom: 5px;
    background: url(../Images/bar_gray_bk.png) 0px 6px repeat-x #eee;
}

.tabHeader2 li.noselect {
    background: #e6e6e6;
    text-decoration: none;
}

    .tabHeader2 li.noselect a, .noselect, .list a.noselect {
        color: #888;
    }
/*=================== endof Tab Header 2 ===============*/

.navSidebar {
    left: 0;
    top: 3px;
    width: 150px;
    float: left;
    height: 100%;
}

.wrapper_index_right_div {
    /*same with id:content*/
    background: none repeat scroll 0 0 #FFFFFF;
    border: 2px solid #FFFFFF;
    /*margin-top: -365px;*/
    /*overflow: auto;*/
    padding: 8px;
    margin-left: 230px;
    /*height: 600px;*/
}


/*===============================================================*/
/* Added by RGN  06/13/2015                                      */
/* design for div within parial view html page                   */
/* same with #content  in site.css                               */
/*===============================================================*/

.partial_content {
    background          : none repeat scroll 0 0 #FFFFFF;
    border              : 2px solid #FFFFFF;
    /*height: 600px;*/
    margin-left         : 200px;
    /*margin-top          : -365px;*/
    overflow            : auto;
    /*overflow: hidden !important;*/
    padding             : 8px;
}

.table_content {
    border-radius: 5px;
    border: 1px solid gray;
    /*width: 800px;*/
    width: 900px;
    height: 350px;
    overflow: auto;
    background-color: #eee;
}

.table_content2 {
    border-radius: 5px;
    border: 1px solid gray;
    /*width: 800px;*/
    width: 550px;
    height: 350px;
    overflow: auto;
    background-color: #eee;
}

.header_bar {
    background-color: #8f8b8b;
    border: 1px solid #8f8b8b;
    min-height: 3px;
    min-width:1200px;
}

.bar2 {
    font-weight     :bold;
    color           :#8f8b8b;
}


.stripe_table_row_odd {
    background-color: #dae5f4;        
}

.stripe_table_row_even {
    background-color: #eee;        
}


/* ADDED BY RGN - Nov 6, 2015*/

.date, #Date_Detected {
    font-size       :11px;
    min-width       :206px;
}

.dropdown, 
#Program_ID, 
#Line_ID, 
#Assy_Type_ID, 
#Variant_ID,
#Process_ID, 
#Variant_ID, 
#Failure_ID, 
#Cause_ID, 
#Time_Detected, 
#Operation, 
#Rework_Item, 
#Scrap_Item, 
#Build_Phase  {
         padding: 2px 0px;
}


#operation-error-msg,
#rework-item-error-msg,
#scrap-item-error-msg,
#build-phase-error-msg,
#serialno-error-msg {
    display :none;
    color   :#e80c4d;
}

/* --- Bootstrap 5 modal safety overrides --- */
.modal {
    z-index: 1055 !important;
}

.modal-backdrop {
    z-index: 1050 !important;
}

.modal-dialog {
    pointer-events: auto !important;
}

.modal-content {
    pointer-events: auto !important;
}

.modal.show {
    display: block !important;
}

/* FIX: our custom CSS is disabling clicks inside Bootstrap modal */
#attDecisionModal,
#attDecisionModal .modal-dialog,
#attDecisionModal .modal-content {
    pointer-events: auto !important;
}

#backgroundPopup {
    z-index:1;
    position: fixed;
    display:none;
    height:100%;
    width:100%;
    background:#000000;
    top:0px;
    left:0px;
}


#toPopup{
    font-family: "lucida grande",tahoma,verdana,arial,sans-serif;
    background: none repeat scroll 0 0 #FFFFFF;
    border: 5px solid #ccc;
    border-radius: 3px 3px 3px 3px;
    color: #333333;
    display: none;
    font-size: 11px;
    width: 390px;
    z-index: 2;
}

.toPopup {
    font-family: "lucida grande",tahoma,verdana,arial,sans-serif;
    background: none repeat scroll 0 0 #FFFFFF;
    border: 5px solid #ccc;
    border-radius: 3px 3px 3px 3px;
    color: #333333;
    display: none;
    font-size: 11px;
    z-index: 2;
}

div.loader {
    background: url("../Images/loading.gif") no-repeat scroll 0 0 transparent;
    height: 32px;
    width: 32px;
    display: none;
    z-index: 9999;
    top: 40%;
    left: 50%;
    position: absolute;
    margin-left: -10px;
}

div.b-close {
    background: url("../Images/closebox.png") no-repeat scroll 0 0 transparent;
    cursor: pointer;
    height: 30px;
    position: absolute;
    right: -20px;
    top: -18px;
    width: 30px;
}

span.ecs_tooltip {
    background: none repeat scroll 0 0 #000000;
    border-radius: 2px 2px 2px 2px;
    color: #FFFFFF;
    display: none;
    font-size: 11px;
    height: 16px;
    opacity: 0.7;
    padding: 4px 3px 2px 5px;
    position: absolute;
    right: -62px;
    text-align: center;
    top: -51px;
    width: 93px;
}

span.arrow {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #000000;
    display: block;
    height: 1px;
    left: 40px;
    position: relative;
    top: 3px;
    width: 1px;
}

div#popup_content {
    margin: 4px 7px;
    /* remove this comment if you want scroll bar
    overflow-y:scroll;
    height:200px
    */
}

Pick from file...

@charset

UTF-8; @import url(http://fonts.googleapis.com/css?family=Oxygen:400,700); @import url(http://fonts.googleapis.com/css?family=Racing+Sans+One);
/* Style Index * /

#0 Reset
#1 Layout Structure
#2 Main header
#3 Main menu
#4 Content styling
#5 Comments
#6 Photo gallery
#7 Portfolio gallery
#8 Sidebar styling
#9 Footer


/* #0 Reset */
@font-face {
    font-family: helvetica_normal;
    src: url('../fonticons/helvetica_normal.svg#helvetica_normal') format('svg');
    src: url('../fonticons/helvetica_normal.eot?#iefix') format('embedded-opentype'), url('../fonticons/helvetica_normal.svg#helvetica_normal') format('svg'), url('../fonticons/helvetica_normal.woff') format('woff'), url('../fonticons/helvetica_normal.ttf') format('truetype');
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
}

.wrapper {
    margin: 0 auto;
    position: relative;
}

ul, li, ol {
    margin: 0;
    padding: 0;
}

/* #2 Header */

.header {
    background: url(../images/header-bg.jpg) repeat-x top center;
    height: 165px;
    position: relative;
}

    .header .header-banner {
        display: block;
        position: absolute;
        right: 0px;
        top: 40px;
    }

    .header h1 {
        font-size: 37px;
        display: inline-block;
        position: relative;
        vertical-align: middle;
    }

        .header h1:not(.with-logo-bg) a {
            color: rgba(255,255,255,0.2);
            margin-left: 22px;
        }

    .header p.descr-text-header {
        width: 200px;
        margin: 20px auto 0px auto;
        color: #828282;
        font-size: 10px;
        line-height: 16px;
        text-align: center;
        padding-right: 0px;
    }

        .header p.descr-text-header a {
            color: #828282;
            font-weight: bold;
            font-size: 11px;
            display: block;
        }

    .header h1.with-logo-bg {
        background-repeat: no-repeat;
        overflow: hidden;
        font-size: 10px;
    }

        .header h1.with-logo-bg a {
            color: transparent;
            display: inline-block;
            position: relative;
            width: 100%;
            height: 100%;
        }

.vertical-middle {
    display: table-cell;
    vertical-align: middle;
    height: 165px;
    width: 260px;
}

.header .left-side-header {
    display: table;
    float: left;
    width: 260px;
    vertical-align: middle;
    height: 165px;
}

/* #3 Menu */

.menu {
    height: 44px;
    /*background-color:#b51b14;*/
    /*background-image: url(../Images/bar.png);*/
    /*background-image:url(../Images/menu-top-bg.png);*/
    /*background-repeat: repeat-x;*/
    background: #fff;
    background-position: top center;
    border-bottom: 1px #d4cfcf solid;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.1);
    text-transform: capitalize;
    position: relative;
    z-index: 999;
}



    .menu .right-menu-side {
        top: 0px;
        right: 0px;
        position: absolute;
    }

.menu-search {
    display: block;
    margin-top: 7px;
    position: relative;
}

    .menu-search input[type=text] {
        background: rgba(255,255,255,0.8);
        border: 0px;
        padding: 7px 14px;
        font-size: 11px;
        color: #3a3a3a;
        /*text-shadow: 0px 1px 0px rgba(255,255,255,0.4);*/
        text-shadow: none;
        width: 120px;
        box-shadow: 0px 1px 1px rgba(0,0,0,0.5), inset 0px 1px 1px #ccc;
        -moz-border-radius: 15px;
        border-radius: 15px;
        -moz-transition: all 0.1s;
        -webkit-transition: all 0.1s;
        -o-transition: all 0.1s;
    }

        .menu-search input[type=text]:focus {
            background: #fff;
            width: 150px;
        }

    .menu-search input::-webkit-input-placeholder {
        color: #3a3a3a;
    }

    .menu-search input:-moz-placeholder {
        color: #3a3a3a;
    }

    .menu-search input::-moz-placeholder {
        color: #3a3a3a;
    }

    .menu-search input:-ms-input-placeholder {
        color: #3a3a3a;
    }

    .menu-search input[type=submit] {
        font-family: helvetica_normal;
        font-size: 18px;
        background: transparent;
        border: 0px;
        padding: 5px 0px;
        color: #3a3a3a;
        text-shadow: 0px 1px 0px #fbf7f7;
        width: 33px;
        cursor: pointer;
        position: absolute;
        z-index: 5;
        top: 0px;
        right: 0px;
        text-align: center;
        font-weight: normal;
        font-size: 13px;
        line-height: 20px;
    }

.menu ul.ul-main-menu {
    display: inline-block;
    width: 100%;
    height: 44px;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(0,0,0,0.15);
}

    .menu ul.ul-main-menu li {
        display: block;
        float: left;
        position: relative;
        z-index: 3;
        top: 0px;
    }

    .menu ul.ul-main-menu > li > a {
        /*border-right: 1px solid rgba(255,255,255,0.1);*/
        border-left: 1px solid rgba(0,0,0,0.15);
    }

    .menu ul.ul-main-menu li a {
        display: block;
        padding: 13px 18px 10px 18px;
        /*background: transparent;*/
        color: #828282;
        /*text-shadow: none;*/
        /*text-shadow: 0px 0px 0px #232323;*/
        /*font-weight: bold;*/
        /*font-weight: 100;*/
        font-size: 18px;
        font-family: helvetica_normal;
        -moz-transition: border-bottom 0.2s;
        -webkit-transition: border-bottom 0.2s;
        -o-transition: border-bottom 0.2s;
    }

    .menu, .menu ul, .menu ul.ul-main-menu > li {
        box-shadow: inset 0px 1px 0px rgba(255,255,255,0.09);
    }

        .menu ul.ul-main-menu li a span {
            padding-right: 14px;
            position: relative;
            display: block;
        }

        .menu ul.ul-main-menu > li:hover > a span {
            display: inline-block;
            padding-bottom: 1px;
        }

        .menu ul.ul-main-menu > li li a span:after {
            content: '\E75E';
        }

        .menu ul.ul-main-menu li a span:after {
            display: block;
            content: '\E75C';
            font-family: helvetica_normal;
            font-size: 18px;
            position: absolute;
            top: 1px;
            right: 0px;
            font-size: 10px;
        }

        .menu ul.ul-main-menu .selected, ul.menu li.selected {
            /*color: #fff;
            text-shadow: 0px 1px 0px #232323;*/
            /*background-color: #fff;
            background: rgba(0,0,0,0.1);*/
            /*border-right: 1px solid #fff;
            border-left: 1px solid #fff;*/
            position: relative;
            z-index: 11;
        }

        .menu ul.ul-main-menu > li:hover {
            /*margin-right: -1px;*/
            z-index: 4;
        }

            .menu ul.ul-main-menu > li:hover > a, ul.menu > li:hover > a {
                /*color: #fff;
                text-shadow: 0px 1px 0px #232323;*/
                background-color: rgba(255,255,255,0.09);
                background: rgba(0,0,0,0.1);                
                /*border-right: 1px solid #fff;
                border-left: 1px solid #fff;*/
                position: relative;
                z-index: 11;
            }

        .menu ul.ul-main-menu li ul {
            position: absolute;
            display: none;
            top: 45px;
            left: -1px;
            width: 250px;
            z-index: 10;
            /* -moz-box-shadow: 0 5px 10px #ccc;
    -webkit-box-shadow: 0 5px 10px #ccc;
    box-shadow: 0 5px 10px #ccc;*/
            box-shadow: 0px 3px 0px rgba(0,0,0,0.2);
            -moz-box-shadow: 0px 3px 0px rgba(0,0,0,0.2);
            -webkit-box-shadow: 0px 3px 0px rgba(0,0,0,0.2);
            background: #ab0000;
        }

        .menu ul.ul-main-menu li:hover > ul {
            display: block;
        }


        .menu ul.ul-main-menu li ul li {
            display: block;
            width: 100%;
            float: none;
        }

            .menu ul.ul-main-menu li ul li > a {
                color: #fff;
                text-shadow: 0px 1px 0px #232323;
                position: relative;
                background: rgba(0,0,0,0.1);
            }

            .menu ul.ul-main-menu li ul li:hover > a {
                background: rgba(0,0,0,0.24);
            }

            .menu ul.ul-main-menu li ul li:after {
                display: block;
                position: absolute;
                content: '';
                width: 220px;
                height: 0px;
                background: transparent;
                bottom: -1px;
                left: 15px;
                border-top: 1px dotted rgba(255,255,255,0.2);
                border-bottom: 1px dotted rgba(0,0,0,0.2);
            }

            .menu ul.ul-main-menu li ul li:last-child:after, .menu ul.ul-main-menu li ul li.last-child:after {
                display: none;
            }

            .menu ul.ul-main-menu li ul li ul {
                left: 300px;
                top: 0px;
            }

                .menu ul.ul-main-menu li ul li ul li > a {
                    background: rgba(0,0,0,0.24);
                }

                .menu ul.ul-main-menu li ul li ul li:hover > a {
                    background: rgba(0,0,0,0.34);
                }

                .menu ul.ul-main-menu li ul li ul li:after {
                    border-top: 1px dotted rgba(255,255,255,0.2);
                    border-bottom: 1px dotted rgba(0,0,0,0.2);
                }


/* Secondary */

.secondary-menu {
    height: 32px;
    background-image: url(../images/menu-secondary-bg.png);
    background-repeat: repeat-x;
    background-position: top center;
    background-color: #f0f0f0;
    box-shadow: 0px 4px 5px rgba(0,0,0,0.1);
    text-transform: uppercase;
}

    .secondary-menu ul.ul-secondary-menu {
        display: inline-block;
        width: auto;
        height: 31px;
        border-right: 1px solid rgba(0,0,0,0.12);
        border-left: 1px solid rgba(255,255,255,0.3);
    }

        .secondary-menu ul.ul-secondary-menu li {
            display: block;
            float: left;
            position: relative;
            z-index: 2;
        }

            .secondary-menu ul.ul-secondary-menu li a {
                display: block;
                padding: 10px 18px 10px 18px;
                background: transparent;
                color: #4b4b4b;
                text-shadow: 0px 1px 0px rgba(255,255,255,0.7);
                border-right: 1px solid rgba(255,255,255,0.3);
                border-left: 1px solid rgba(0,0,0,0.12);
                font-weight: bold;
                font-size: 10px;
                -moz-transition: border-bottom 0.2s;
                -webkit-transition: border-bottom 0.2s;
                -o-transition: border-bottom 0.2s;
            }

            .secondary-menu ul.ul-secondary-menu li:hover {
                border-right: 1px solid rgba(255,255,255,0.5);
                margin-right: -1px;
                z-index: 3;
            }

                .secondary-menu ul.ul-secondary-menu li:hover a {
                    /*color:#f5cac8;
	text-shadow:0px 1px 0px #4d0808;*/
                    background: rgba(0,0,0,0.1);
                    border-right: 1px solid rgba(0,0,0,0.1);
                    border-left: 1px solid rgba(0,0,0,0.1);
                }

/* Reset */
/* Main elements: main menu, footer line, slider active bull background colors */
.footer .footline, .menu, .menu ul, .menu ul.ul-main-menu > li, .gallery-slider-navigation li.active > a {
}

    .menu ul.ul-main-menu li a span:after {
        display: block;
        content: '\E75C';
        font-family: helvetica_normal;
        position: absolute;
        top: 1px;
        right: 0px;
        /*font-size: 10px;*/
        font-size: 18px;
    }

    .menu ul.ul-main-menu > li li a span:after {
        content: '\E75E';
    }

@media print {

    header, footer, .tabHeader, #Print { 
        display:none;
    }

    table {
        font-size:09px;
    }

    input[type='checkbox'] {
        /* Double-sized Checkboxes */
        -ms-transform: scale(1); /* IE */
        -moz-transform: scale(1); /* FF */
        -webkit-transform: scale(1); /* Safari and Chrome */
        -o-transform: scale(1); /* Opera */
        padding: 0px;
        margin: 0px;
    }

    
    span.rightme {
        width: 70%;
        float: right;        
        
    }

    span.rightcenter {
        width: 60%;
        float: right;
    }

    span.rightlast {
        width: 60%;
        float: right;
        
    }

    table td {
        font-size:8px;
        vertical-align: top;
    }

    label, span {
        font-size:8px;
    }

    img.imgs {   
        width:130px;
        height:130px;
    }
}

