﻿@charset "UTF-8";
/* CSS Document */

body {
   font: 14px/1.4 Verdana, Arial, Helvetica, sans-serif;
   margin: 0;
   padding: 0;
   background-color: #FFF;
   color: #000;
}

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 {
   color: #414958;
   text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:visited {
   color: #4E5869;
   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;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.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. */
   background: #FFF;
}

   .container h1 {
      font-size: 1.7em;
      color: #E17009;
   }

/* ~~ 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 {
   background: #E5E5E5;
   width: 100%;
}

#menubar {
   width: 100%;
   height: 37px;
   float: inherit;
   background: #6F8DB3;
}

/* ~~ 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;
   background: #E5E5E5; /* E5E5E5   ede9de */
   height: 100px;
   overflow: auto;
   overflow-x: hidden;
}

   .sidebar h3 {
      font-size: 17px;
   }

   .sidebar li {
      font-size: 12px;
   }

.sidebar2 {
   float: left;
   padding: 10px 0;
   width: 40%; /* tied to content2 */
   background: #ede9de;
   height: 800px;
   overflow: auto;
   overflow-x: hidden;
}

.content {
   padding: 10px 10px 10px 20px;
   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;
      background: #6F8DB3;
      height: 33px;
   }

   ul.dropdown a:hover {
      color: #E17009;
   }

   ul.dropdown a:active {
      color: #ffa500;
   }

   ul.dropdown li a {
      display: block;
      padding: 7px 8px;
      border-right: 1px solid #FFF;
      color: #FFF;
      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 {
      background: #495B7B;
      color: black;
      position: relative;
   }

      ul.dropdown li.hover a {
         color: #E17009;
      }


   /* 
	LEVEL TWO
*/
   ul.dropdown ul {
      width: 250px;
      visibility: hidden;
      position: absolute;
      top: 100%;
      left: 0;
   }

      ul.dropdown ul li {
         font-weight: normal;
         background: #495B7B;
         color: #000;
         border-bottom: 1px solid #ccc;
         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_OLD {
   padding: 10px 0px 10px 0px;
   background: #495B7B;
   color: #FFF;
   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 */
}

.footer {
   background: #495B7B;
   color: #FFF;
   position: fixed;
   bottom: 0px;
   padding: 10px 0px 10px 0px;
   width: 100%;
   clear: both;
}


/* ~~ 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;
}

#topnav {
}

#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;
   spacing: 0px;
}

div.justcenter1 {
   margin-left: auto;
   margin-right: auto;
}

.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;
   }


.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;
      border: 0px solid #223959; /*98bf21   093261  black*/
      padding: 10px;
      border-collapse: collapse;
   }

      .tblfmt2 th.ctr, td.ctr {
         text-align: center;
      }


.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 {
      background-color: #223959;
      color: white;
      font-size: 1.1em;
      text-align: center;
      border: 1px solid #223959;
      padding: 5px 7px 4px 7px;
      border-collapse: collapse;
      font-weight: bold;
   }

   .tblfmt1 th {
      font-size: 1em;
      text-align: left;
      padding-top: 5px;
      padding-bottom: 4px;
      background-color: #6F8DB3; /* 223959 */
      border: 1px solid #6F8DB3;
      color: #ffffff;
      border-collapse: collapse;
   }

   .tblfmt1 td /* 223959 , .tblfmt1 th */ {
      font-size: 1em;
      border: 1px solid #E5E5E5; /*98bf21   093261  black*/
      padding: 4px 7px 4px 7px;
      border-collapse: collapse;
   }



   .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;
      background-color: #6B5603;
   }

   .tblfmt1 td.ctrspan {
      font-size: 1.2em;
      text-align: center;
      background-color: #223959;
      color: #ffffff;
      font-weight: bold;
      /*width:1000px;*/
   }

   .tblfmt1 td.ctr {
      text-align: center;
   }


   .tblfmt1 td.ctrred {
      text-align: center;
      background-color: blue;
      font-weight: bold;
   }

   .tblfmt1 td.hdrctr {
      text-align: center;
      font-weight: bold;
   }

   .tblfmt1 td.rht1 {
      text-align: right;
      background-color: #E5E5E5;
   }


   .tblfmt1 td.rht2 {
      text-align: right;
      background-color: #E5E5E5;
      width: 90px;
   }

   .tblfmt1 td.leftform {
      background-color: #E5E5E5;
      text-align: right;
      padding-right: 8px;
      font-weight: bold;
   }

   .tblfmt1 td.leftformbig {
      background-color: #E5E5E5;
      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;
      background-color: #E5E5E5;
   }


   .tblfmt1 td.hdrlft {
      text-align: left;
      font-weight: bold;
   }

   .tblfmt1 td.lftfrm {
      text-align: right;
      background-color: #E5E5E5; /* #808A29  E5E5E5  FFC */
      font-weight: bold;
      /* width:50%; */
      font-size: 1.0em;
      padding-right: 8px;
      padding-left: 30px;
   }

   .tblfmt1 td.lftfrm2 {
      text-align: right; /*  For larger input...like login */
      font-weight: normal;
      font-size: 1.6em;
      padding-right: 8px;
      padding-left: 20px;
      padding-top: 12px;
      padding-bottom: 12px;
   }

   .tblfmt1 tr.hiderow {
      display: none;
      background-color: #ede9de;
   }



   .tblfmt1 tr.alt td {
      color: #000000;
      background-color: #E5E5E5; /* #808A29  E5E5E5 FFC */
   }

   .tblfmt1 tr.altred td {
      color: #000000;
      background-color: #FFAEAE; /* #808A29  E5E5E5 */
   }

   .tblfmt1 tr.altwhite td {
      color: #000000;
      background-color: #FFFFFF; /* #808A29  EAF2D3 */
      /* width:325px; */
   }



   .tblfmt1 tr.alttotal td {
      color: #000000;
      background-color: #E5E5E5; /* #808A29  EAF2D3 */
      font-weight: bold;
   }

   .tblfmt1 tr.hlght td {
      color: #000000;
      padding: 0px 0px 0px 0px;
      background-color: green; /* #808A29  EAF2D3 */
      height: 7px;
   }

   .tblfmt1 tr.sub1 td {
      padding-top: 15px;
      padding-bottom: 14px;
      text-align: center;
   }

   .tblfmt1 a {
      text-decoration: none;
      color: #223959;
      font-weight: bold;
   }

      .tblfmt1 a:hover {
         text-decoration: underline;
         color: #000;
      }

      .tblfmt1 a:visited {
         text-decoration: none;
         color: #223959;
      }

table {
   border-collapse: collapse;
   margin-left: auto;
   margin-right: auto;
}

table, td, th {
   border: 1px solid black;
}

input {
   font-size: 1.2em;
}

   input.infmt1 {
      font-size: 1.0em;
      margin-right: 10px;
      padding: 4px;
   }

   input.infmt2 {
      padding: 8px;
      font-size: 1.6em;
      margin-right: 10px;
   }


textarea {
   font-size: 1.2em;
}

   textarea.txfmt1 {
      font-size: 1.0em;
      margin-right: 20px;
      width: 600px;
      height: 75px;
   }

   textarea.txfmt2 {
      font-size: 1.0em;
      margin-right: 20px;
      width: 600px;
      height: 150px;
   }

textarea {
   font-size: 1.2em;
}



.tblfmtrcb {
   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;
}

   .tblfmtrcb td, .tblfmtrcb th {
      padding: 0px;
      border-spacing: 0;
      border-collapse: collapse;
      border: 0px hidden black;
      font-size: 14px;
   }



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;
   }



div.tabdata1 {
   margin: 20px;
   padding: 20px;
   text-align: left;
   background: #ffffff;
   color: #000;
}

div.frmfeedback1 {
   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;
   text-align: right;
}

.msgfeedback {
   font-size: 16px;
   font-weight: bold;
}

/* ==========  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;
   color: #E6E6E6;
}

   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;
      color: #000;
   }

   button.rounded:hover {
      background-position: 100% -30px;
   }

      button.rounded:hover span {
         background-position: 0% -30px;
         color: #FFFFFF;
      }

   button::-moz-focus-inner {
      border: none;
   }

/* ==========  Additional Button Area - Imageless Button =================== */
.button1 {
   -moz-box-shadow: inset 0px 1px 0px 0px #bbdaf7;
   -webkit-box-shadow: inset 0px 1px 0px 0px #6D8AB1;
   box-shadow: inset 0px 1px 0px 0px #bbdaf7;
   background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #6D8BB7), color-stop(1, #6D8AB1) );
   background: -moz-linear-gradient( center top, #6D8BB7 5%, #6D8AB1 100% );
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6D8BB7', endColorstr='#6D8AB1');
   background-color: #6D8BB7;
   -moz-border-radius: 6px;
   -webkit-border-radius: 6px;
   border-radius: 6px;
   border: 1px solid #6D8AB1;
   display: inline-block;
   color: #EBECF1;
   font-family: Arial;
   font-size: 15px;
   letter-spacing: .1em;
   padding: 6px 24px;
   text-decoration: none;
   text-shadow: 1px 1px 0px #528ecc;
   opacity: 1.0;
   filter: alpha(opacity=100);
   /* For IE8 and earlier */
}

   .button1:link, button1:visited, button1:active {
      color: #ffffff;
      text-decoration: none;
      text-shadow: 1px 1px 0px #528ecc;
      text-align: center; /* JAF added */
   }

   .button1:hover {
      background-color: #6D8AB1;
      color: #ffffff;
      background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #6D8AB1), color-stop(1, #6D8BB7) );
      background: -moz-linear-gradient( center top, #6D8AB1 5%, #6D8BB7 100% );
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6D8AB1', endColorstr='#6D8BB7');
   }

.button:active {
   position: relative;
   top: 1px;
   color: #ffffff;
}

.button1::-moz-focus-inner {
   border: none;
   color: #ffffff;
}
/* ==========  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 {
         background: #333;
         color: #fff;
         padding: 0.5em;
      }

         ul#menu li a:hover {
            background: #000;
         }

      ul#menu li ul li a {
         background: #6F8DB3;
         color: #FFF;
         padding-left: 20px;
      }

         ul#menu li ul li a:hover {
            background: #495B7B;
            border-left: 5px #FFF solid;
            padding-left: 15px;
            color: #FFF;
         }
/* ========== 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;
   border: 10px solid #cbd293;
   background-color: white;
   z-index: 1002;
   overflow: auto;
}

.white_content1 {
   display: none;
   position: absolute;
   top: 25%;
   left: 25%;
   width: 50%;
   height: 50%;
   padding: 16px;
   border: 10px solid #cbd293;
   background-color: white;
   z-index: 1002;
   overflow: auto;
}

/* ========== ASP.NET Modal Pop Up =================== */
.overlay1 {
   width: 100%;
   height: 100%;
   background-color: #000;
   opacity: 0.2;
   cursor: wait;
   z-index: 1001;
   position: absolute;
   left: 0px;
   top: 0px;
}

/* For Telerik RadGrid Caption Add Icon  */
.tblheadericon {
   height: 15px;
   width: 15px;
   float: right;
   /*vertical-align:middle;*/
}
