html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
.intro {
  max-width: 1280px;
  margin: 1em auto;
}

.se_hide_page {  display:none }

.se-table-scroll {
  position: relative;
  width:100%;
  z-index: 1;
  margin: auto;
  overflow: auto;
  height: 100%;

  border-color:#d6d6c2;            /* border around whole widget */
  border-width:1px;
  border-style:solid;
}

.se-table-scroll table {
  width: 100%;
  xmin-width: 1280px;
  margin: auto;
  /* border-collapse: separate;  */  /* -- we removed for row highlighting */
  border-collapse: collapse; 
  border-spacing: 0;

  xfont-family: Tahoma, sans-serif;
  xfont-family: 'Courier New', monospace;   /* table data font size*/
  font-family:OpenSans, monospace;
  font-size: 12px;

}
.table-wrap {
  position: relative;
}
.se-table-scroll th,
.se-table-scroll td {
  padding: 5px 10px;
  border: 0px solid #000;                 /* cell borders for everything */
  border-bottom: 1px solid #d6d6c2;
  background: #fff;
  vertical-align: top;
  text-align:left;                      /* all text right aligned for all parts of the widget */
  white-space: nowrap;
}

.se-table-scroll td:last-child {        /* so our last column uses any spare space */
  width: 100%;
}


.se-table-scroll th:hover, td:hover {    /* hover over a single cell, set background colour */
  background-color: #90EE90;
}

.se-table-scroll td:[value*="ABBV"] {
  color:blue
}

[value*="ABBV"] {
  color:blue
}


/* Column titles */
.se-table-scroll thead th {
  font-weight: bold;
  font-family: Tahoma, "Trebuchet MS", sans-serif;
  background: white;
  color: black;                           /* Column title font colour */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  text-transform: capitalize;           /* Titles are capitalized */
}

/* safari and ios need the tfoot itself to be position:sticky also */
.se-table-scroll tfoot,
.se-table-scroll tfoot th,
.se-table-scroll tfoot td {
  position: -webkit-sticky;
  font-weight: normal;
  position: sticky;
  bottom: 0;
  xbackground: #d6eaf8;                   /* footer background colour */
  background: #eff4b7;                   /* footer background colour */
  color: fedx;
  z-index:4;
} 

.se-table-scroll tfoot th:first-child { 
  background:white;                      /* footer corner colour */
}

.se_arrow_up {

    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 7px solid blue;
    padding: 0px;
    margin-bottom: 0px;
    margin-left: 5px;
}

.se_arrow_down {

    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid green;
    padding: 0px;
    margin-bottom: 0px;
    margin-left: 5px;
}


a:focus {
  background: red;
} /* testing links*/


th:first-child {                        /* Locked column on left */
  position: -webkit-sticky;
  font-weight: normal;
  position: sticky;
  left: 0;
  z-index: 2;
  xbackground: #f5f5f0;                 /* light light grey */
  background: #e2e4f7;                 /* light light grey */
}


thead th:first-child,
tfoot th:first-child {
  z-index: 5;
}

