/* Style button - 2 */
.button_docs {
    -webkit-border-radius: 5;
    -moz-border-radius: 5;
    padding: 7px;
    border-radius: 5px;
    background: #E0E0E0;
    /*background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6), inset -2px -2px 3px rgba(0, 0, 0, 0.6);*/
    border: solid #A9A9A9 0px;  /* If removed add value to padding */
    text-decoration: none;
    /*line-height: 4.6;*/
    line-height: 30px;
}

.button_docs:hover {
    background-color: #A9A9A9;
    text-decoration: none;
}

.button_docs:active {
    /*box-shadow: inset -2px -2px 3px rgba(255, 255, 255, 0.6), inset 2px 2px 3px rgba(0, 0, 0, 0.6);*/
}


.table {
        border-collapse: collapse;
        width: 100%;
}

.table td, .table th {
        border: 0px solid #FFFFFF;  /* Reset background-color back to white */
        border-bottom: 5px solid #FFFFFF;
        padding: 8px;
        background-color: #EFEFEF;
}

.table tr:nth-child(even){background-color: #FFFFFF;}

.table tr:hover {background-color: #FFFFFF;}

.table th {
        /*padding-top: 12px;
        padding-bottom: 12px;*/
        text-align: left;
        background-color: #EFEFEF;
        /*color: white;*/
}


.no-more-tables_docs table {
    width: 100%;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
/* 760px */
/* was 800 */
@media (max-width: 800px) {
        .row, .column.left, .column.main, .column.right {
                width: 100%;
                flex-direction: column;
        }

      /* Force table to not be like tables anymore */
  .no-more-tables_docs table,
  .no-more-tables_docs thead,
  .no-more-tables_docs tbody,
  .no-more-tables_docs th,
  .no-more-tables_docs td,
  .no-more-tables_docs tr {
    display: block;
  }

  /* Hide table headers (but not display: none;, for accessibility) */
  .no-more-tables_docs thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .no-more-tables_docs tr {
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  .no-more-tables_docs tr:last-child {
    border-bottom: 0;
  }

  .no-more-tables_docs td {
    /* Behave  like a "row" */
    border: none;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
    white-space: normal;
    text-align:left;
  }

  .no-more-tables_docs td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align:left;
    font-weight: bold;
  }

  /*
  Label the data
  */
  .no-more-tables_docs td:before { content: attr(data-title); }
    }

