﻿/*@media (max-width: 47.9375em) {*/
@media (max-width: 435px) {

  .home-tbl td {
    width:auto !important;
  }

    .factsheetsPortalTableContainer .historicValuesRow {
        border-bottom: 1px solid #437994;
    }

.center {
  text-align:left;
}

/* responsive table */
  .home-tbl table {
    border             : 0;
    border-bottom-width: 0.0625em;
    border-bottom-style: solid;    
    display            : block;
    width              : 100%;
    /*
     * make everything display block so it 
     * aligns vertically
     */
    /* Labeling
     * adding a data-title attribute to the cells
     * lets us add text before the content to provide
     * the missing context
     * 
     * Markup: 
     *   <td data-title="Column Header">Content Here</td>
     * 
     * Display:
     *   Column Header: Content Here
     */
  }
  .home-tbl table caption {
    display: block;
  }
  .home-tbl table thead {
    display   : none;
    visibility: hidden;
  }
  .home-tbl table tbody, .home-tbl table tr,.home-tbl table th, .home-tbl table td {
    border     : 0;
    display    : block;
    padding    : 0;
    text-align : left;
    white-space: normal;
  }
  .home-tbl table tr {
    /*margin-bottom: 1.5em;*/    
  }
  .home-tbl table th[data-title]:before,
  .home-tbl table td[data-title]:before {
    content    : attr(data-title) ": ";
    font-weight: bold;
  }
  .home-tbl table th:not([data-title]) {
    font-weight: bold;
  }
  .home-tbl table td:empty {
    display: none;
  }

  .factsheetsPortalTableContainer .home-tbl table tr td {
    height        : 20px;
    padding-top   : 3px;
    padding-bottom: 3px;
  }

}