@charset "UTF-8";
/* CSS Document */
/* jQuery rt Responsive Tables - v1.0.6 - 2020-01-13
* https://github.com/stazna01/jQuery-rt-Responsive-Tables
*
* This plugin is built heavily upon the work by Chris Coyier
* found at http://css-tricks.com/responsive-data-tables/
*
* Copyright (c) 2020 Nathan Stazewski; Licensed MIT */
/* 
  Generic Styling, for Desktops/Laptops 
*/
table.rt-responsive-table{width:100%;border-collapse:collapse;}
/* Zebra striping */
table.rt-responsive-table tbody tr:nth-of-type(odd){background:#f9f9f9;}
table.rt-responsive-table th{/*! background:#333;*/ /*! color:white;*/ font-weight:bold;}
table.rt-responsive-table td,
table.rt-responsive-table th{padding:6px;border:1px solid #ccc;text-align:left;}
/* Force table to not be like tables anymore */
table.rt-responsive-table.rt-vertical-table,
table.rt-responsive-table.rt-vertical-table thead,
table.rt-responsive-table.rt-vertical-table tbody,
table.rt-responsive-table.rt-vertical-table th,
table.rt-responsive-table.rt-vertical-table td,
table.rt-responsive-table.rt-vertical-table tr{display:block;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;
float:left;clear:left;width:100%;}
/* BELOW THREE STATEMENTS NEEDED FOR IE9 AND BELOW */
/* Hide table headers (but not display:none;,for accessibility) */
table.rt-responsive-table.rt-vertical-table thead tr{position:absolute;top:-9999px;left:-9999px;}
table.rt-responsive-table.rt-vertical-table tbody td div.responsive-container{float:left;width:50%;display:block;}
table.rt-responsive-table.rt-vertical-table tr{border:1px solid #ccc;}
table.rt-responsive-table.rt-vertical-table tr:not(:last-of-type){border-bottom:0;}
/* Behave like a "row" */
table.rt-responsive-table.rt-vertical-table td{border:none;border-bottom:1px solid #eee;position:relative;}
/* Now like a table header */
table.rt-responsive-table.rt-vertical-table td:before{
position:relative;width:45%;padding-right:10px;font-weight:bold;float:left;word-break:break-all;}
