﻿@charset "UTF-8";
/* CSS Document */

body {
    font: 12px/18px Verdana, Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
    margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
    padding-right: 15px;
    padding-left: 15px;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
    border: none;
}

.paddimg { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
    border: none;
    padding-top: 3px;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
    text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:visited {
    text-decoration: underline;
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: none;
}

.container {
    width: 100%;
    min-width: 960px; /* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
    height: 100%;
}

    .container h1 {
        font-size: 1.7em;
    }

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
    width: 100%;
    clear: both;
}

#menubar {
    width: 100%;
    height: 37px;
    float: inherit;
}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar {
    float: left;
    padding: 10px 0;
    min-height: 400px;
    width: 20%;
    overflow: auto; /* JAF added these to fix sidebar div*/
    overflow-x: hidden;
    /*width:100%;  2/1/2013...took out inline 20% so i could change it programmatically later...left here */
}

#sidebar .arrow {
    left: -20px; /* Change to left: 2px; if you want the panel to display on the right side. */
}

#sidebar .arrow {
    font: normal 400 25px/25px 'Acme', Helvetica, Arial, sans-serif; /* Acme font is required for .arrow */
    color: #fff; /* Arrow color */
    width: 16px;
    height: 25px;
    display: block;
    position: absolute;
    top: 200px;
    cursor: default;
}

#sidebar:click .arrow {
    transform: rotate(-180deg) translate(6px,-3px);
    -moz-transform: rotate(-180deg) translate(6px,-3px);
    -webkit-transform: rotate(-180deg) translate(-24px,-3px);
}

.sidebar h3 {
    font-size: 17px;
}

.sidebar li {
    font-size: 12px;
}

.sidebar2 {
    float: left;
    padding: 10px 0;
    width: 40%; /* tied to content2 */
    height: 800px;
    overflow: auto;
    overflow-x: hidden;
}

.content {
    padding: 10px 10px;
    overflow: auto;
    overflow-x: hidden;
}

.content2 {
    padding: 10px 0;
    width: 60%;
    float: left;
    height: 2000px;
    overflow: auto;
    overflow-x: hidden;
}

.fullcontent {
    padding: 10px 0;
    width: 100%;
    float: left;
    height: 800px;
    overflow: auto;
    overflow-x: hidden;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
    padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
/* 
	LEVEL ONE
*/
ul.dropdown {
    position: relative;
    float: right;
    z-index: 100;
}

    ul.dropdown li {
        font-weight: bold;
        float: left;
        zoom: 1;
        height: 37px;
    }

        ul.dropdown li a {
            display: block;
            padding: 10px 8px;
            text-decoration: none;
        }

        ul.dropdown li:last-child a {
            border-right: none;
        }
        /* Doesn't work in IE */
        ul.dropdown li.hover,
        ul.dropdown li:hover {
            color: black;
            position: relative;
        }
    /* 
	LEVEL TWO
*/
    ul.dropdown ul {
        width: 250px;
        visibility: hidden;
        position: absolute;
        top: 100%;
        left: 0;
    }

        ul.dropdown ul li {
            font-weight: normal;
            float: none;
        }
            /* IE 6 & 7 Needs Inline Block */
            ul.dropdown ul li a {
                border-right: none;
                width: 100%;
                display: inline-block;
            }
        /* 
	LEVEL THREE
*/
        ul.dropdown ul ul {
            left: 100%;
            top: 0;
        }

    ul.dropdown li:hover > ul {
        visibility: visible;
    }
/* ~~ The footer ~~ */
.footer {
    padding: 11px 10px;
    position: relative; /* this gives IE6 hasLayout to properly clear */
    clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
    /* ~~ miscellaneous float/clear classes ~~ */
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-right: 8px;
}

.center { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
    width: 100%;
    margin: auto 0;
}

.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
    clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
}

#toptitle {
    position: absolute;
    width: 100%; /* auto  463px;  */
    height: 30px;
    z-index: 1;
    left: 0px; /* auto  485px;  */
    top: 25px;
    font-weight: bold;
    font-size: 1.5em;
    text-align: center; /* i added this */
}

td, th {
    padding: 2px;
}

.tblfmt2 {
    font-family: Arial, Helvetica, sans-serif;
    /*width:95%;*/
    border-collapse: collapse;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    border: 0px;
}

    .tblfmt2 td, .tblfmt2 th {
        font-size: 1em;
        padding: 10px;
        border-collapse: collapse;
    }

.tblfmt1 {
    font-family: Arial, Helvetica, sans-serif;
    /*width:95%;*/
    border-collapse: collapse;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

tblfmt1 caption {
    font-size: 1.1em;
    text-align: center;
    padding: 5px 7px 4px 7px;
    border-collapse: collapse;
    font-weight: bold;
}

.tblfmt1 td, .tblfmt1 th {
    font-size: 1em;
    padding: 3px 6px 3px 6px; /*4px 7px 4px 7px */
    border-collapse: collapse;
}

.tblfmt1 th {
    font-size: 1.1em;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 4px;
}

    .tblfmt1 th.lft {
        text-align: left;
    }

    .tblfmt1 th.ctr {
        text-align: center;
    }

    .tblfmt1 th.ctrbig {
        text-align: center;
        font-size: 1.5em;
    }

    .tblfmt1 th.subctrbig {
        text-align: center;
        font-size: 1.5em;
    }

.tblfmt1 td.ctrspan {
    font-size: 1.2em;
    text-align: center;
    font-weight: bold;
    /*width:1000px;*/
}

.tblfmt1 td.ctr {
    text-align: center;
}

.tblfmt1 td.ctrred {
    text-align: center;
    font-weight: bold;
}

.tblfmt1 td.hdrctr {
    text-align: center;
    font-weight: bold;
}

.tblfmt1 td.rht1 {
    text-align: right;
}

.tblfmt1 td.rht2 {
    text-align: right;
    width: 90px;
}

.tblfmt1 td.leftform {
    text-align: right;
    padding-right: 8px;
    font-weight: bold;
}

.tblfmt1 td.leftformbig {
    text-align: right;
    padding: 8px 10px 8px 10px;
    font-size: 1.5em;
    font-weight: bold;
}

.tblfmt1 td.rht {
    text-align: right;
}

.tblfmt1 td.rht250 {
    text-align: right;
    width: 250px;
}

.tblfmt1 td.rht200 {
    text-align: right;
    width: 200px;
}

.tblfmt1 td.lft {
    text-align: left;
}

.tblfmt1 td.lft475 {
    text-align: left;
    width: 475px;
}

.tblfmt1 td.lft415 {
    text-align: left;
    width: 415px;
}

.tblfmt1 td.lftgreen {
    text-align: left;
    color: green;
}

.tblfmt1 td.hdrlft {
    text-align: left;
    font-weight: bold;
}

.tblfmt1 td.lftfrm {
    text-align: right;
    font-weight: bold;
    /* width:50%; */
    font-size: 1.0em;
    padding-right: 8px;
    padding-left: 30px;
}

.tblfmt1 tr.hiderow {
    display: none;
}

.tblfmt1 tr.alttotal td {
    font-weight: bold;
}

.tblfmt1 tr.hlght td {
    padding: 0px 0px 0px 0px;
    height: 7px;
}

.tblfmt1 tr.sub1 td {
    padding-top: 15px;
    padding-bottom: 14px;
    text-align: center;
}

.tblfmt1 a {
    text-decoration: none;
    font-weight: bold;
}

    .tblfmt1 a:hover {
        text-decoration: underline;
    }

    .tblfmt1 a:visited {
        text-decoration: none;
    }

table {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
}

input {
    font-size: 1.2em;
}

    input.infmt1 {
        font-size: 1.0em;
        margin-right: 10px;
        padding: 4px;
    }

textarea {
    font-size: 1.2em;
}

    textarea.txfmt1 {
        font-size: 1.0em;
        margin-right: 10px;
        width: 600px;
        height: 75px;
    }

    textarea.txfmt2 {
        font-size: 1.0em;
        margin-right: 20px;
        width: 600px;
        height: 150px;
    }

select {
    font-size: 1.2em;
    padding: 4px;
}

p {
    font-size: 1em;
}

    p.logonmsg {
        color: red;
        font-size: 1.2em;
        font-weight: bold;
        padding-top: 20px;
        padding-bottom: 5px;
        text-align: center;
    }

    p.frmfeedback {
        text-align: center;
        font-size: 1.1em;
        font-weight: bold;
    }

frmerrormsg {
    color: red;
}
/* Footer Text*/
ul.footer1 {
    list-style: none; /* this removes the list marker */
    margin: 0px;
}

    ul.footer1 li {
        margin: 0px;
    }

ul.ctr1 {
    list-style: none; /* this removes the list marker */
    margin: 0px;
    text-align: center;
}

.tblfooter {
    border: 0px;
    font-family: Arial, Helvetica, sans-serif;
    width: 90%;
    border-collapse: collapse;
    padding: 0;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
}

    .tblfooter td, .tblfooter th {
        font-weight: 500;
        font-size: 1em;
        border: 0px;
        padding: 0px 0px 0px 0px;
        margin: 0px 0px 0px 0px;
        border-collapse: collapse;
    }

        .tblfooter td.ctr {
            text-align: center;
            width: 34%;
        }

        .tblfooter td.rht {
            text-align: right;
            width: 33%;
        }

        .tblfooter td.lft {
            text-align: left;
            width: 33%;
        }

div.topctrdiv {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
}

div.justcenter {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

div.dcenter {
    margin: 20px 0px 10px 0px; /* top right bottom left  */
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
}

div.contenttext {
    text-align: left;
    padding: 5px 25px 5px 25px; /* top right bottom left  */
    font-size: 1.1em;
}

div.pbmsg {
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
}

.logo {
    float: left;
}

div.holdtable {
    margin-left: 10;
    margin-right: 10;
    padding-left: 100;
}

.errtxt {
    color: red;
    font-size: 1.0em;
}

.hidediv {
    /*   visibility:hidden;     will take up space */
    display: none; /* will not take up any space  */
    z-index: 10;
}

.helpimg {
    width: 20px;
}

.helpimg1 {
    width: 15px;
}

.popupdiv {
    /*   visibility:hidden;     will take up space */
    display: none; /* will not take up any space  */
    position: absolute;
    left: 500px;
    width: 500px;
    padding: 15px;
    background: #E5E5E5; /*  ede9de */
    border: 1px solid #000000;
    /* font: normal 12px Arial, Helvetica, sans-serif; */
    color: #000;
    z-index: 1003;
}

.popupdivres {
    display: none; /* will not take up any space  */
    position: absolute;
    left: 500px;
    width: 675;
    padding: 15px;
    background: #E5E5E5;
    border: 1px solid #000000;
    /* font: normal 12px Arial, Helvetica, sans-serif; */
    color: #000;
    z-index: 10;
}

.popuptxtdiv {
    display: none; /* will not take up any space  */
    position: absolute;
    /*width:500px; */
    margin: 0px;
    padding: 15px;
    background: #ffc;
    border: 1px solid #ccc;
    color: #000;
    z-index: 1003;
}

.texteditor {
    width: 100%;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 25px 50px 20px; /* top right bottom left */
    background: #ffc;
    border: 1px solid #ccc;
    /* font: normal 12px Arial, Helvetica, sans-serif; */
    color: #000;
    z-index: 10;
}

.col_h1left {
    width: 40%;
    float: left;
}

.col_button {
    width: 60%;
    float: left;
    border: 0px;
}
/* ==========  Button Area =================== */
/*
button {
border: 0 none;
cursor: pointer;
font-weight: bold;
padding: 0 15px 0 0;
text-align: center;
height: 30px;
line-height: 30px;
width: auto;
}

button.rounded {
background: transparent url( /Images/AI/ButBlueGrayRight.png ) no-repeat scroll right top; 
clear: left;
font-size: 0.8em;
}

button span {
display: block;
padding: 0 0 0 15px;
position: relative;
white-space: nowrap;
height: 30px;
line-height: 30px;
}

button.rounded span {
background: transparent url( /Images/AI/ButBlueGrayLeft.png ) no-repeat scroll left top;
}

button.rounded:hover {
background-position: 100% -30px;

}

button.rounded:hover span {
	background-position: 0% -30px;
}

button::-moz-focus-inner {
border: none;
}
*/
/* ==========  Additional Button Area - Imageless Button =================== */
.button1 {
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    display: inline-block;
    font-family: Arial;
    font-size: 15px;
    letter-spacing: .1em;
    padding: 6px 24px;
    text-decoration: none;
    opacity: 1.0;
    filter: alpha(opacity=100);
    /* For IE8 and earlier */
}

    .button1:link, button1:visited, button1:active {
        text-decoration: none;
    }

.button:active {
    position: relative;
    top: 1px;
}

.button1::-moz-focus-inner {
    border: none;
}
/* ==========  Accordian Menu =================== */

ul#menu, ul#menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    ul#menu a {
        display: block;
        text-decoration: none;
    }

    ul#menu li {
        margin-top: 1px;
    }

        ul#menu li a {
            padding: 0.5em;
        }

            ul#menu li a:hover {
            }

        ul#menu li ul li a {
            padding-left: 20px;
        }

            ul#menu li ul li a:hover {
                padding-left: 15px;
            }
/* ========== Banners =================== */

.sidebanner {
    padding-top: 15px;
    margin: 10px;
}

.hor_banner {
    margin: 0 auto;
    width: 728px;
    padding: 10px 0 10px 0;
}
/* ========== Pop Up =================== */
.black_overlay {
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .50;
    filter: alpha(opacity=50);
}

.white_content {
    display: none;
    position: fixed;
    top: 5%;
    left: 50px;
    margin: auto;
    width: 1000px;
    height: 1120px;
    padding: 16px;
    z-index: 1002;
    overflow: auto;
}

.white_content1 {
    display: none;
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    padding: 16px;
    z-index: 1002;
    overflow: auto;
}

/* ========== ASP.NET Modal Pop Up =================== */
.overlay1 {
    width: 100%;
    height: 100%;
    opacity: 0.2;
    cursor: wait;
    z-index: 1001;
    position: absolute;
    left: 0px;
    top: 0px;
}
/**************** Menu Slider Styles ******************/

/*****ANIMATONS (optional)*****/

#menu, #menu .arrow, #menu nav a {
    transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

/*****END ANIMATONS*****/


/*****PANEL*****/
#menu {
    width: 180px;
    padding: 15px;
    position: fixed;
    z-index: 100000;
    box-shadow: 4px 0 10px rgba(0,0,0,0.25);
    -moz-box-shadow: 4px 0 10px rgba(0,0,0,0.25);
    -webkit-box-shadow: 4px 0 10px rgba(0,0,0,0.25);
}

#menu {
    right: 0; /* Change to right: 0; if you want the panel to display on the right side. */
}

    #menu:hover, #menu:focus {
        right: 0 !important; /* Change to right: 0 !important; if you want the panel to display on the right side. */
    }

    #menu .arrow {
        left: -20px; /* Change to left: 2px; if you want the panel to display on the right side. */
    }

    #menu .arrow {
        font: normal 400 25px/25px 'Acme', Helvetica, Arial, sans-serif; /* Acme font is required for .arrow */
        color: #fff; /* Arrow color */
        width: 16px;
        height: 25px;
        display: block;
        position: absolute;
        top: 50px;
        cursor: default;
    }

    #menu:hover .arrow {
        transform: rotate(-180deg) translate(6px,-3px);
        -moz-transform: rotate(-180deg) translate(6px,-3px);
        -webkit-transform: rotate(-180deg) translate(-24px,-3px);
    }

    #menu nav {
        position: relative;
        top: 75px;
    }

        #menu nav a {
            padding: 10px 5px;
            display: block;
            clear: both;
            font: bold 13px/18px 'Open Sans', Helvetica, Arial, sans-serif;
            text-decoration: none;
        }


/*****END PANEL*****/

/* For Telerik RadGrid Caption Add Icon  */
.tblheadericon {
    height: 15px;
    width: 15px;
    float: right;
}



.tblfmt3 {
    font-family: Arial, Helvetica, sans-serif;
    border-spacing: 0;
    border-collapse: collapse;
    border: 0px hidden black;
    padding: 0;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
}

    .tblfmt3 td, .tblfmt3 th {
        padding: 0px;
        border-collapse: collapse;
        border: 0px hidden black;
        vertical-align: top;
    }

.msgfeedback {
    font-size: 16px;
    font-weight: bold;
}

