﻿body {
}
/* Copyright © 2019-2025 Bob Torello www.btorello.com*/
/* System wide global styles            */
/* Last Modified: 12/04/2025 

/*  
  10/29/25  Cleanup of GenData for TABLE  
  12/04/25  Added #region's re-ordered styles
                 Created --SmallWidth/Medium vars

  removed TblData
  need to add GridData
  
  @import url("another-stylesheet.css");


  https://css-tricks.com/taming-the-cascade-with-bem-and-modern-css-selectors/
  look into
  :is() selector  https://css-tricks.com/almanac/selectors/i/is/
  :has()  (parent selector)
*/

:root {
  /* cannot use var() in Media queries */
  --MediumWidth: 581px; /* medium  was 781 */
  --SmallWidth: 480px;
  /* Need mobile settings */
}

html {
  font-family: open-sans-1, open-sans-2, sans-serif;
  /*font-family: verdana,arial,helvetica;
	   font-family: 'Segoe UI', 'Lucida Grande','Ubuntu',sans-serif;
  */
  font-size: 16px;
  text-size-adjust: none; /* for mobile ? */
}

body {
  font-size: 0.88em; /* .63*/
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  color: black;
  text-size-adjust: none; /* for mobile ? */
  xbackground-color: yellow;
}

/* #region InputStyling */
input, select, textarea, button,
.LikeInput,
.CEText {
  /*    CEText for contenteditable */
  color: inherit;
  font-family: inherit;
  font-size: 1.0em;
  /* Pretty Input*/
  background-color: white;
  border: 1px solid #CCC;
  padding: 0.12em 0.25em; /* Top,bottom,right, left shorthand*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none; /* remove chrome focus box */
}

.LikeInput {
  display: inline-block;
}

/* Round button corners */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

label.checkbox-label input[type=checkbox], /* http://stackoverflow.com/questions/15230820/vertical-align-checkbox-label */
label.checkbox-label input[type=radio],
label input[type=checkbox],
label input[type=radio] {
  position: relative;
  vertical-align: middle;
  bottom: 1px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: grey;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: grey;
}

::-ms-input-placeholder { /* Microsoft Edge NAYBE */
  color: gray;
}


button:disabled,
input[type=button]:disabled,
input[type=submit]:disabled {
  color: lightgray;
}


/* -- Disabled Styles  ----- Note: appears checkbox/radio background cannot be changed*/
input:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):disabled, /*items stop not change color*/
input[readonly],
textarea:disabled,
textarea[readonly],
select:disabled {
  /*background-color: lightblue;  REMOVED 12/6/19*/
  color: black !important;
}

/* this hides disabled select options on some browsers*/
select option[disabled] {
  display: none;
}

select[disabled] {
  opacity: 1.0; /* make darker*/
  -webkit-appearance: none; /* hides down arrow*/
  -moz-appearance: none;
  /*  text-indent: 0.01px;
  text-overflow: '';    */
}

.DisabledInput .HideIfFormDisabled {
  display: none;
}

/* #endregion InputStyling */

/* #region Misc Styles */
.NoScreen {
  display: none;
}

.HideMe {
  display: none !important;
}

img { /* This is to align img and text, may need to review for all images TODO*/
  vertical-align: middle;
}

.nbr {
  text-align: right;
}

.money {
  text-align: right;
}

  .money:before {
    content: '$';
  }

/* https://stackoverflow.com/questions/2913236/html-text-input-field-with-currency-symbol 
  https://coderwall.com/p/7vatvw/css-hack-for-ie10-ie11-and-webkit-browsers
*/
input.Currency {
  /*background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='16px' width='85px'><text x='2' y='13' fill='black' font-size='12' font-family='arial'>$</text></svg>");*/
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='16px' ><text x='2' y='15' fill='black' font-size='1em' font-family='inherit'>$</text></svg>");
  background-repeat: no-repeat;
  padding-left: 12px;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}


input.Percent {
  /*xbackground-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='50px' width='120px'><text x='0' y='15' fill='black' font-size='20'>%</text></svg>");*/
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='16px'><text x='94%' y='15' fill='black' font-size='.9em'  font-family='sans-serif' >%</text></svg>");
  background-repeat: no-repeat;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}


.cntr {
  text-align: center;
}

.VAT {
  vertical-align: top;
}

.Different {
  font-style: italic;
}


.HideIfEmpty:empty {
  display: none;
}

.FakeHide {
  height: 0;
  margin: 0;
  padding: 0;
  /*
  position: absolute;
  top: -9999px;
*/
}

.NoWrap {
  white-space: nowrap;
}

.clear {
  clear: both;
}

a, a:hover, a:visited {
  color: black;
}

.roll, .rollBlue {
  text-decoration: none;
  cursor: pointer;
}

  .roll:hover {
    text-decoration: underline;
  }

  .rollBlue:hover {
    background-color: lightblue;
    text-decoration: none;
  }

.lnk {
  text-decoration: underline;
  cursor: pointer;
}

.link {
  cursor: pointer;
}

.Notlnk {
  cursor: default;
}

.Deleted {
  text-decoration: line-through;
}

.FlagAdmin { /* Used to indicate SysAdmin function*/
  background-color: chartreuse;
}

.TopSticky {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: white;
}

.GoImg { /* used to link/go to page/somewhere */
  background-image: url("/images/PREVIEW.png");
  height: 15px;
  width: 16px;
  min-width: 16px;
  background-repeat: no-repeat;
  cursor: pointer;
}


.force-select-all {
  user-select: all; /* Someday, Not IE/Edge */
}

.NoSelect,
.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.Indent {
  /* smaller value for MenuPage */
  padding-left: 16px;
}

.NO-CLICK {
  /* disable all mouse events on subElements */
  pointer-events: none;
}

/* Does not change input, would also requires backend transformation */
.ToUpper {
  text-transform: uppercase;
}

.ToCaps {
  text-transform: capitalize;
}

/*	Styles used to differientiate rows		NavTables handled velow */
.greenbar {
  background-color: #e2e3e1;
}

.lightgreenbar {
  background-color: #EFF7FF;
}


table {
  border-spacing: 0; /* override default cellspacing*/
}


/* #endregion Misc Styles */

/* #region Calendar Styles*/
input.tbdt { /* see ConfigDateInput() in util.js   NOTE WAS tbDt  was 6 1/8/22*/
  width: 7.0em;
}

img.SVCCal {
  /* also used for green arrow icon*/
  vertical-align: top;
  border: 0;
  cursor: pointer;
  /*margin-top:0;*/
  position: relative;
  /*top: 1px;*/
  /* 7/12/22 changed to put img within input, added js to set parent elt to nowrap */
  left: -19px;
  top: 4px;
}


table#fc {
  border-radius: 10px;
}

  table#fc tr:first-child td:first-child {
    border-top-left-radius: 4px;
  }

  table#fc tr:first-child td:last-child {
    border-top-right-radius: 4px;
  }

  table#fc tr:last-child td:first-child {
    border-bottom-left-radius: 4px;
  }

  table#fc tr:last-child td:last-child {
    border-bottom-right-radius: 4px;
  }

/* for lstDateChange()*/
#trDate.Date-Range .HideIfDateList {
  display: none;
}
/* #endregion Calendar Styles*/

/* #region bQuery Section */
.bQ-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
  border: 1px solid #c5c5c5;
  background: #ffffff;
  color: #333333;
  z-index: 10001; /* BOBT  maybe use front class*/
  min-width: 300px;
  min-height: 300px;
}

.bQ-autocomplete {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
  xbackground-color: red;
}

  .bQ-autocomplete > li {
    margin: 0;
    cursor: pointer;
    /* support: IE10, see #8844 */
    list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
    position: relative;
    padding: 3px 1em 3px .4em;
  }

    .bQ-autocomplete > li:hover {
      border: 1px solid #cccccc;
      background: #ededed;
      font-weight: normal;
      color: #2b2b2b;
    }

/* #endregion bQuery Section */

/* #region HrText */
div.HrText {
  /*text-indent: 30px;*/
  height: 2px;
  background-image: url("/images/hr.png");
  margin-top: 1.0em;
  margin-bottom: 1.0em;
  /*background-color: gray;*/
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}

  div.HrText > span {
    background-color: white; /* must match page/site background color */
    position: relative;
    left: 30px;
    top: -0.5em;
  }

    div.HrText > span:nth-child(2) {
      left: 50px;
    }

  /*    div.HrText button {
      padding-right:12px; weird, may be due to relative position
    }  */

  div .HrText.wob > span {
    background-color: black; /* must match page/site background color */
  }
/* #endregion HrText */



/* #region Validation */
.ReqFlag {
  color: red;
}

body:not(.DisabledInput) .ReqFld::after,
body:not(.DisabledInput) .ReqFld:after /* for IE8 */ {
  color: red;
  content: "*";
}

.ReqError {
  background-color: yellow !important;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}

input.ReqError:focus,
select.ReqError:focus {
  background-color: white !important;
}

input.ReqError:not(:focus),
select.ReqError:not(:focus) {
  /*background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='16px' ><text x='2' y='15' fill='red' font-size='.9em' font-weight='bold' font-style='italic' font-family='sans-serif' >Required</text></svg>");*/
  /*  changed to brackets xxbackground-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' height='16px' %3e%3ctext x='2' y='15' fill='red' font-size='.9em' font-weight='bold' font-style='italic' font-family='sans-serif' %3eRequired%3c/text%3e%3c/svg%3e");*/
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='16px' ><text x='2' y='15' fill='red' font-size='.9em' font-weight='bold' font-style='italic' font-family='sans-serif' >Required</text></svg>");
  background-repeat: no-repeat;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}

  input.ReqError:not(:focus)::placeholder {
    color: transparent; /* hide pacehlder when display 'Required' */
  }


/* replaced with above background image 1/27/22 */
.XXXReqError .ReqItem:after,
.XXXReqError.ReqItem:after {
  content: " Required Item";
  color: red;
  font-style: italic;
  /*white-space: nowrap; Removed so calendar icon does not wrap */
}
/* #endregion Validation */

/* #region Page Styles  */

.PageInfo /* used for top of page instructions, use div */ {
  font-style: italic;
  font-size: .9em;
  padding-left: 10px;
  padding-top: 3px;
  padding-bottom: 5px;
}

.CellInfo /* used for text data in grids */ {
  padding-left: 10px;
  padding-top: 3px;
  padding-bottom: 5px;
}

  #PageMessage:empty {
    display: none;
  }

.ErrorMsg,
.DebugMsg {
  color: red;
  font-size: 1.2em;
  padding-left: 10px;
  padding-top: 3px;
  padding-bottom: 5px;
}

body.AddPage .HideForAdd {
  display: none;
}

body.ModPage .HideForMod {
  display: none;
}


/***********************************************/
/*	Styles used for page headings					*/
/***********************************************/
table.pageheader {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; /* cellspacing="0" */
}

  table.pageheader > tbody > tr > td,
  table.pageheader > thead > tr > th,
  table.pageheader > tbody > tr > th {
    color: white;
    /*	background-color: #007FFF;*/
    background-color: #1e5799;
    font-size: 1.2em;
    height: 42px;
    padding: 2px 10px 2px 6px; /* top right bottom leftcellpadding */
    border: none;
    vertical-align: middle;
    white-space: nowrap;
  }

/* Todo change to display:grid */
div.pageheader {
  height: 42px;
  min-width: 100%;
  color: white;
  background-color: #1e5799;
  /*background-color: #007FFF; brighter blue*/
  font-size: 1.2em;
  font-weight: bold;
  padding: 2px 10px 2px 6px; /* top right bottom leftcellpadding */
  vertical-align: middle;
}

  div.pageheader > span {
    line-height: 42px;
    vertical-align: middle;
  }

  div.pageheader > .right {
    position: absolute;
    right: 20px;
  }

/* #endregion Page Styles  */

/* #region MULTICHECK*/

div.MULTICHECK {
  overflow: auto;
  width: 135px;
  height: 200px; /* may need to overide where used */
  border: 1px solid #336699;
  padding-left: 3px;
  vertical-align: top;
  text-align: left;
  resize: vertical;
}

  div.MULTICHECK > label {
    display: block;
    cursor: default;
  }

  div.MULTICHECK span {
    display: inline-block;
    width: 90%;
  }

  div.MULTICHECK.NoWrap > label {
    white-space: nowrap;
  }

  /* possible change to positive flag */
  div.MULTICHECK:not(.NoHighlite) :checked + span {
    background-color: yellow;
  }

  div.MULTICHECK :focus + span {
    outline: 1px solid orange;
  }


.Wide div.MULTICHECK {
  width: 230px;
}

.MenuPage div.MULTICHECK input[type=radio],
.MenuPage div.MULTICHECK input[type=checkbox] {
  margin-top: initial; /* restore spacing of textboxes*/
  margin-bottom: initial;
}
/* #endregion MULTICHECK*/

/* #region GenData */
table.GenData {
  margin-left: 10px;
  margin-top: 3px;
  /*		vertical-align: middle; */
  /* cellspacing */
  /*border-collapse: separate; border-spacing: 5px; */ /* cellspacing="5" */
  border-collapse: collapse;
  border-spacing: 0; /* cellspacing="0" */
  /* this replaces cellspacing
	    border-collapse: separate; 
	    border-spacing: 5px 3px;	 -- cols rows 
    */
}

  table.GenData > tbody > tr > td,
  table.GenData > tbody > tr > th {
    padding: 2px; /* cellpadding*/
    vertical-align: middle;
    /* border: 1px inset black; */
  }

.GenData div.MULTICHECK,
.GenData input:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]:not([type=reset])),
.GenData textarea,
.GenData select {
  width: 135px;
  min-width: 135px;
  max-width: 135px;
}
/* #endregion GenData */

/* #region Navigotor Filter */
/***********************************************/
/* Navigator filter pane styles					 */
/***********************************************/
table.MenuPage /*maybe rename*/ {
  margin-left: 4px;
  margin-top: 4px;
  /*border-collapse: separate; border-spacing: 5px; */ /* cellspacing="5" */
  border-collapse: collapse;
  border-spacing: 0; /* cellspacing="0" */
}

.MenuPage .Indent {
  padding-left: 10px;
}


table.MenuPage > tbody > tr > td,
table.MenuPage > tbody > tr > th {
  font-weight: normal;
  text-align: left;
  padding: 1px; /* cellpadding */
  border-spacing: 0;
  border-collapse: collapse;
  /* border: 1px inset black; */
}

  table.MenuPage > tbody > tr > th:nth-child(1),
  table.MenuPage > thead > tr > th:nth-child(1),
  table.MenuPage > tbody > tr > td:nth-child(1) {
    width: 30%;
  }

  table.MenuPage > tbody > tr > th:nth-child(2),
  table.MenuPage > thead > tr > th:nth-child(2),
  table.MenuPage > tbody > tr > td:nth-child(2) {
    width: 70%;
  }

.MenuPage input[type=radio],
.MenuPage input[type=checkbox] {
  width: 10px;
  height: 10px;
  -moz-appearance: none; /* FireFox has issues */
  cursor: default;
}

.MenuPage img {
  border: 0;
}


.MenuPage a {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

  .MenuPage a:not(.rollBlue):hover {
    text-decoration: underline;
  }


.MenuPage label {
  margin-right: 4px;
}
/* Default field width */
.MenuPage select {
  min-width: 150px;
  max-width: 150px;
}

.MenuPage input[type=search].tbdt,
.MenuPage input[type=text].tbdt { /* w/o calendar ussualy two to a line */
  min-width: 76px;
  max-width: 76px;
  padding-left: 1px;
  padding-right: 1px;
}

.MenuPage input[type=search],
.MenuPage input[type=text] {
  min-width: 150px;
  max-width: 150px;
}

.MenuPage input[type=radio],
.MenuPage input[type=checkbox] {
  margin-top: 8px; /* to approximate spacing of textboxes*/
  margin-bottom: 8px;
}


div.BtnRow {
  padding-left: 6px;
}

  div.BtnRow input[type=button],
  div.BtnRow input[type=submit],
  div.BtnRow input[type=reset],
  div.BtnRow img {
    margin: 4px 0 4px 4px;
  }

/* this are the small images to show/hide Navigotor filter pane*/
#imgShowNav {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

#imgHideNav {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}



/* #region SearchBtn*/

/* NEW two part buttons have a dropdown selector on right side*/
div.search-btn {
  position: relative;
  display: inline-block;
  z-index: 1000;
  padding: 0;
  border: 1px solid #CCC; /* match above 'pretty input' */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  /*border-collapse: collapse;*/
}

  div.search-btn > input[type=button].LB {
    border: 0 none white;
    margin: 0;
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
  }

  div.search-btn > input[type=button].RB {
    border: 0 none white;
    margin: 0;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
    background: ButtonFace url('/images/SVC_SearchDown.png') no-repeat center center;
  }

  div.search-btn > .DD {
    position: absolute;
    top: inherit;
    left: 0;
    border: 2px outset LightGrey;
    /*
		border: 2px outset #999;
		-webkit-box-shadow: 5px 5px 15px rgba(0,0,0,0.4);
		-moz-box-shadow: 5px 5px 15px rgba(0,0,0,0.4);
*/
    background-color: ButtonFace;
    padding: 1px;
    width: max-content; /*         100px;*/
    display: none;
  }

  div.search-btn.Open > .DD {
    display: block;
  }

  div.search-btn > .DD div {
    text-align: left;
    white-space: nowrap;
    padding: 0 3px 0 3px;
  }

  div.search-btn > input[type=button]:hover {
    background-color: #428BCA;
    cursor: pointer;
  }

  div.search-btn > .DD div:hover {
    cursor: pointer;
    color: white;
    background-color: blue;
  }

/* to highlight current search option/match */
.search-btn .DD[data-opt="1"] > div:nth-child(1),
.search-btn .DD[data-opt="0"] > div:nth-child(2),
.search-btn .DD[data-opt="3"] > div:nth-child(3),
.search-btn .DD[data-opt="2"] > div:nth-child(4) {
  font-weight: bold;
}
/* #endregion SearchBtn*/

/* #region MRU QueryCtrl */
/* css for recent view list */
div#divMRU {
  padding-left: 5px;
}

  div#divMRU > .heading {
    padding-left: 5px;
    font-style: italic;
  }

  div#divMRU > p {
    display: block;
    margin: 0 0 2px 0;
    xmax-width: 90%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 1px 0 1px 0;
  }

    div#divMRU > p:hover {
      text-decoration: none;
      background-color: lightblue;
      cursor: pointer;
      text-overflow: unset;
      white-space: initial;
      overflow: visible;
      word-break: break-all;
      xmax-width: 100%;
      padding: 1px 0 1px 0;
    }

/* css for saved query buttons */
#QueryCtrl.disable {
  display: none;
}

#QueryCtrl.NothingSaved #bVQ, #QueryCtrl.NothingSaved #bCQ {
  display: none;
}

#QueryCtrl {
  white-space: nowrap;
}

  #QueryCtrl span {
    white-space: nowrap;
    border: 1px solid silver;
    padding: 1px;
    border-radius: 5px 5px 5px 5px;
  }

  #QueryCtrl img {
    display: inline-block;
    vertical-align: middle;
  }

    #QueryCtrl span:hover,
    #QueryCtrl img:hover {
      text-decoration: none;
      background-color: lightblue;
      cursor: pointer;
    }
/* #endregion MRU QueryCtrl */


/** End Menu Page *********************************************/
/* #endregion Navigotor Filter */

/* #region Navigotor Browse */

/***********************************************/
/*	Styles used for Browse pages		*/
/***********************************************/
table.NavTable {
  /* cellspacing */
  /*border-collapse: separate; border-spacing: 5px; */ /* cellspacing="5" */
  border-collapse: collapse;
  border-spacing: 0; /* cellspacing="0" */
  border: 0;
}

  table.NavTable.FullWidth {
    width: 100%;
  }

  table.NavTable > tbody > tr > td,
  table.NavTable > tbody > tr > th, /* in case did not add thead */
  table.NavTable > thead > tr > th {
    /*color:red !important; */
    padding: 2px; /* cellpadding */
    white-space: nowrap !important;
  }

  table.NavTable > thead > tr > th {
    text-transform: uppercase;
    /* Fixed column headings not IE11 
      https://css-tricks.com/position-sticky-and-table-headers/ */
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 2px -1px rgba(226, 227, 225, 1.0);
  }

  table.NavTable:not(.NoGreenbar) > tbody > tr:nth-child(odd) { /* every other row shading*/
    background-color: #e2e3e1;
  }

  table.NavTable > thead > tr:nth-child(1) /* Header Row*/ {
    background-color: transparent !important;
  }

  table.NavTable:not(.NoClick) > tbody > tr:not(.ignore):hover { /* mouse over effect*/
    background-color: lightblue;
    cursor: pointer;
  }

  table.NavTable.NoClick > tbody > tr:not(.ignore):hover { /* mouse over effect*/
    cursor: default;
  }

  table.NavTable > tbody > tr.CheckRow:hover,
  table.NavTable:not(.NoGreenbar) > tbody > tr.CheckRow:hover { /* mouse over effect*/
    background-color: PaleGreen;
    cursor: pointer;
  }

  table.NavTable > tbody > tr:nth-child(odd).CheckRow,
  table.NavTable > tbody > tr.CheckRow {
    background-color: yellow;
  }

  table.NavTable > tbody > tr.HighBar.CheckRow {
    background-color: PaleGreen;
  }

.NavTable a:hover {
  color: black;
  text-decoration: underline;
}

.NavTable input.chkNav {
  width: 1.2em;
  height: 1.2em;
  padding: 0;
}


table.NavTable > tbody > tr > td > img {
  border: 0;
}
/*.NavTable img  { 	border: 0; }*/
/* Numbers/right justify */
table.NavTable > tbody > tr > td.btr {
  vertical-align: middle;
  text-align: right;
}

table.NavTable > tbody > tr > td.nbr,
table.NavTable > thead > tr > th.nbr {
  /*color:red !important; */
  text-align: right !important;
}

div.NavFooter /* nav. buttons */ {
  font-size: 1.0em;
}

/* div.NavFooter > input		{	}*/
table.NavTable > tbody > tr > td > input[type=checkbox] {
  width: 10px;
  height: 10px;
  -moz-appearance: none; /* FireFox has issues */
  cursor: default;
}

table.NavTable > thead > tr > th.SORT-UP:after {
  content: '\2b9d';
  /*xcontent: '\1f845';*/
}

table.NavTable > thead > tr > th.SORT-DOWN:after {
  content: '\2b9f';
  /*  font-weight: bold;
    xcontent: '\1f847';  */
}


#navigatorBody:not(.HasResults) .HideNoResults,
#navigatorBody:not(.HasResults) .navPages {
  display: none;
}

/* #endregion Navigotor Browse */

/* #region TAB sections*/

/***********************************************/
/*	Styles used for tab pages					*/
/***********************************************/
/* http://code.tutsplus.com/tutorials/create-a-slick-tabbed-content-area-using-css-jquery--net-13 */
.tabbed_area {
  /*border:1px solid #494e52;
						background-color:#636d76;
						padding:8px;    */
  padding-top: 8px;
  /*white-space: nowrap;  REMOVED 11/1/19 caused children to not wrap may need to add to ul.tabs below moved below .tabs*/
}


ul.tabs {
  margin: 0;
  padding: 0;
  margin-top: 5px;
  margin-bottom: 6px;
  white-space: nowrap;
}

  ul.tabs li {
    list-style: none;
    display: inline;
  }

    ul.tabs li a {
      background-color: #1f1f1f;
      color: #ffffff;
      padding: 8px 12px 8px 12px;
      text-decoration: none;
      font-size: 9px;
      font-family: Verdana, Arial, Helvetica, sans-serif;
      font-weight: bold;
      text-transform: uppercase;
      border: 1px solid #464c54;
    }
/* smaller font for small screens */
@media only screen and (max-width: 480px) { /* small */
  ul.tabs li a {
    padding: 6px 8px 8px 6px;
    font-size: 7px;
  }
}

ul.tabs li a:hover {
  background-color: grey;
  border-color: #2f343a;
  /*  background-color: #323232;    */
  color: white;
}
/* note: active has precendence over hover */
ul.tabs li a.active {
  background-color: #ffffff;
  color: #282e32;
  border: 1px solid #464c54;
  border-bottom: 1px solid #ffffff;
}

  ul.tabs li a.active:hover {
    cursor: default;
  }

.tabContent {
  background-color: #ffffff;
  padding: 4px;
  /*border:1px solid #464c54;   */
  display: none;
}
/* First Tab may be on page
#content_1 {
  display: block;
}
*/

/* #endregion TAB sections*/

/* #region Report pages */

/***********************************************/
/*	Styles used for Report pages		*/
/***********************************************/
#RptDateCriteria > span#spnDateCriteria1, #RptDateCriteria > span#spnDateCriteria2, #RptDateCriteria > span#spnTimeCriteria {
  display: none;
}

#RptDateCriteria.D1 > span#spnDateCriteria1 {
  display: inline;
}

#RptDateCriteria.D2 > span#spnDateCriteria2 {
  display: inline;
}

#RptDateCriteria.T1 > span#spnTimeCriteria {
  display: inline;
}
/* #endregion Report pages */


/* #region Progressbar */

/***********************************************/
/* Progressbar 'Please Wait' layout styles  from Chris Shelton*/
.layout_progressbar_all {
  /* Removed this to allow clicking when progressbar is displayed, should use non-transparent background
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 100000000;
  */ display: none;
}

  .layout_progressbar_all .background {
    position: fixed; /*absolute;*/
    top: 50%;
    left: 50%;
    width: 120px;
    height: 40px;
    margin-left: -60px;
    margin-top: -20px;
    background-color: #5F4545;
    background-size: cover;
    border: 1px solid silver;
    border-radius: 5px 5px 5px 5px;
    z-index: 10000000;
  }

  .layout_progressbar_all .indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-image: url('/images/SVC_SystemProgressbar.gif');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
  }

  .layout_progressbar_all .label {
    position: absolute;
    top: 4px;
    left: 45px;
    width: 80px;
    color: silver;
    z-index: 10000;
    background-size: cover;
  }

/* #endregion Progressbar */


/* #region Popup layout styles */

.PopupLayout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 12px;
}

  .AcctOpts .background,
  .horizontalcssmenu .background,
  .PopupLayout .background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.4;
    filter: alpha(opacity=40);
  }

.horizontalcssmenu .background {
  display: none;
}

.PopupLayout .popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  margin-left: -190px;
  margin-top: -190px;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #373737;
  border-radius: 5px 5px 5px 5px;
  border: 3px solid #373737;
  overflow: hidden;
}


.PopupLayout .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  padding-top: 5px;
  padding-left: 5px;
  background-color: #373737;
  color: #E0E0E0;
  font-weight: 700;
}

  .PopupLayout .header a {
    background-color: #373737;
    color: #E0E0E0;
  }

  .PopupLayout .header .PopX {
    float: right;
    position: relative;
    left: -12px;
    color: white;
    cursor: pointer;
  }

.PopupLayout .popupContent {
  /* This fixed issue with buttons on popup not working BOBT */
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: white;
  padding-left: 4px;
  padding-top: 4px;
}
/* content had background-color:#fafafa; */
.PopupLayout .footer { /* careful footer can obsure content and prevent clicks BOBT*/
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  padding: 2px;
  background-color: #373737;
  z-index: -1; /* be careful foot can cover content */
}

.PopupLayout dl {
  padding-left: 10px;
  padding-top: 0;
}

  .PopupLayout dl > dt {
    padding-top: 5px;
  }

  .PopupLayout dl > dd {
    margin-left: 0;
  }

.PopupLayout .button {
  position: relative;
  top: 0;
  left: 0;
  min-width: 100px;
  color: white;
  cursor: pointer;
}

  .PopupLayout .button:hover {
    background: #67AABB;
  }

.PopupLayout .link {
  position: relative;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  color: gray;
  padding-top: 5px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
}

  .PopupLayout .link:hover {
    background: #67AABB;
    color: #FFF;
  }

.PopupLayout iframe {
  display: block;
  width: 99%;
  height: 100%;
  border: none;
}

.PopupLayout.Big .popup {
  width: 550px;
  height: 650px;
  margin-left: -275px;
  margin-top: -325px;
  padding-top: 30px;
  padding-bottom: 30px;
}


/* Small/positioned Popup layout styles */

.PopupLayout.Small .popup {
  position: absolute;
  width: 380px;
  height: 380px;
  xtop: initial;
  xleft: initial;
  margin-left: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  xbackground-color: #373737;
  xborder-radius: 5px 5px 5px 5px;
  xborder: 3px solid #373737;
  xoverflow: hidden;
}

.PopupLayout.Small .header {
  position: relative;
}
/* End Popup layout styles */
/* overrides for specific popups */
#PopUpScheduler .popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 350px;
  margin-left: -205px;
  margin-top: -175px;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #373737;
  border-radius: 5px 5px 5px 5px;
  border: 3px solid #373737;
  overflow: hidden;
}

/* #endregion Popup layout styles */


/* NOT Small screen/Phone section */
@media only screen and (min-width: 581px) { /* was 781 Be consistant about device-width across project ! */

  .MobileOnly {
    display: none !important;
  }

  /* moved to non-mobile or Override in Mobile section (Touch only) */
  input[type="button"].Go:hover:not([disabled]),
  input[type="submit"].Go:hover:not([disabled]) {
    background-color: green;
    cursor: pointer;
  }

  input[name=bClose]:hover:not([disabled]),
  input[type=button].Exit:hover:not([disabled]),
  input[type=submit].Exit:hover:not([disabled]) {
    background-color: #CF4647;
    cursor: pointer;
  }

  input[type=button].Warning:hover:not([disabled]),
  input[type=submit].Warning:hover:not([disabled]) {
    background-color: yellow;
    cursor: pointer;
  }

  input[type=button]:hover:not([disabled]),
  input[type=reset]:hover:not([disabled]),
  input[type=submit]:hover:not([disabled]) {
    background-color: #428BCA; /* don't add important*/
    cursor: pointer;
  }
}
/* Small screen/Phone/mobile section */
@media only screen and (max-device-width: 720px) { /* Be consistant about device-width across project ! */

  body {
    font-size: 90%;
  }

  .FullScreenOnly {
    display: none !important;
  }

  .Copyright {
    font-size: 90%;
  }

  .layout_progressbar_all .label {
    font-size: 80%;
  }


  /*    .PopupLayout .popup {top:50%;left:50%;width:400px;height:500px;margin-left:-200px;margin-top:-250px}*/

  table.NavTable > tbody > tr > td > input[type=checkbox] {
    width: 16px;
    height: 16px;
  }

  td.ButtonRow, /* also in MenuPage below */
  th.ButtonRow,
  table.MenuPage > tbody > tr > td.ButtonRow,
  table.MenuPage > tbody > tr > th.ButtonRow {
    text-align: left;
    padding-left: 50px;
  }
}

@media only screen and (max-device-width: 480px) { /* Be consistant about device-width across project ! */
  .SmallerOnPhone {
    width: 75vw;
  }
}


/*=======================================*/
@media print {
  /* DOCTYPE requires for page break ie8 */

  @page {
    margin: 0.75in;
  }

  body {
    font-size: 12pt;
  }

  .NewPageBefore {
    page-break-before: always;
  }

  .NoPrint,
  .PageInfo,
  img.SVCCal,
  .BtnRow,
  .progressbar,
  .PopupLayout,
  .NavFooter {
    display: none;
  }

  .NoScreen {
    display: block;
  }


  /* Need pageheader styling */
}
/* End Print */



/*=======================================*/
/*=======================================*/
/* CSS FOR THIS SITE ONLY
  may want to find way to include site.css
*/



