
table tr p {
    margin-top: 10px;
    font-size:0.7em;
    font-weight: lighter;
}

table tr th{
    border: 3px solid #4ec4ce;
    padding: 5px;
    background-color:#282828;
    font-size: 1.1em;
    font-weight: bold;
    vertical-align: middle;
}

table tr td{
    border:1px solid #4ec4ce;
    padding: 10px;
    vertical-align: middle;
	font-size: 0.9em;
}

table {
    margin-top:20px;
    margin-bottom:100px;
    margin-left:auto;
    margin-right:auto;
    width:63%;
    border:3px solid #4ec4ce;
    color: white;
    text-align:center;
}

table.wide {
    margin-left:auto;
    margin-right:auto;
    width:95%;
    margin-top:20px;
    margin-bottom: 100px;
}

table.wide tr th,
table.wide tr td{
    white-space:nowrap;
}
table.wide tr th sup,
table.wide tr th sub {
    font-size: 75%;
}

table.wide tr td:nth-child(3) {
    white-space: normal;
    width: 100%;
}

table.wide tr td:last-child {
    white-space: normal;
}

h2.center { /* change name: center -> wide */
	margin-left:auto;
    margin-right:auto;
    width:92.5%;
}

/* CSS specific to FooTable */ 

.footable-details.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 0px;
    margin-top: 0px;
    border: 0px;
    font-size: 95%;
}

.footable-details.table th {
	text-align: right;
    background-color: #333333;
    vertical-align: middle;
    padding-right: 10px;
    white-space: nowrap;
    font-size: 80%;
}
.footable-details.table th sup,
.footable-details.table th sub {
    font-size: 75%;
}

/*.footable-details.table th::after {
    content: ":";
}*/

.footable-details.table td {
	text-align: left;
    vertical-align: middle;
    width: 100%;
    padding-left: 10px;
}

.footable-details.table tr,
.footable-details.table th,
.footable-details.table td {
    border: 0;
}

/*
.footable-details.table th,
.footable-details.table td {
    border-bottom: 5px solid #282828;
}
*/

.footable-details.table tr:last-child th,
.footable-details.table tr:last-child td {
    border-bottom: 0;
}

/*
.footable-details.table th {
    border-right: 5px solid #282828;
}
*/

.footable-details.table tr:hover {
    background-color: #282828;
}

.fooicon {
    padding-right: 5px;
    font-size: 0.7em;
    vertical-align: middle;
    color: #F0A65F;
}
.fooicon-plus::after {
    content:"(+)";
}
.fooicon-minus::after {
    content:"--";
}

/* Filtering */

table.footable-filtering {
    border: 0px;
}

tr.footable-filtering {
    font-size: 80%;
    border: 0px;
    margin: 0;
    padding: 0;
}

tr.footable-filtering>th {
    border: 0px;
    background-color: #333333;
    margin: 0;
    padding: 0;
}

div.footable-filtering-search {
    float: left;
    font-weight: 300;
    color: #4ec4ce;
    margin-bottom: 10px;
    border: 1px solid #4ec4ce;
}

div.footable-filtering-search > label {
    float: left;
    padding-top: 3px;
    display: none; /* comment this to show the label "Search:" */
}

div.footable-filtering-search > label::after {
    content: ":";
    padding-right: 5px;
}

div.footable-filtering-search > div {
    float: left;
}

div.footable-filtering-search > div > input[type="text"] {
    color: #4ec4ce;
    float: left;
    background-color: darkslategray;
}

div.input-group-btn {
    display: none;
}

/* Paging */

tr.footable-paging {
    font-size: 80%;
}

tr.footable-paging>td {
    border:0;
    padding-right:0;
}

tr.footable-paging>td>span {
    display: inline-block;
    color: #4ec4ce;
    font-weight: 300;
    margin-right: 20px;
    vertical-align: middle;
    float: right;
    margin-top: 18px;
}

ul.pagination {
    list-style-type: none;
    text-align: center;
    float: right;
    margin-top: 10px;
}

ul.pagination>li {
    display: inline-block;
    min-width: 1.5em;
    margin-right: 2px;
    text-align: center;
    cursor: pointer;
    *cursor: hand;
    color: #F0A65F;
    border:1px solid #F0A65F;
    border-radius: 2px;
    text-decoration: italic;
}
ul.pagination>li>a {
    display: block;
    padding: 0.5em 1em;
}

ul.pagination>li.active {
    border: 1px solid #F0A65F;
    background-color: #F0A65F;
}
ul.pagination>li.active>a {
    color: black;
    font-weight: bold;
}

ul.pagination>li.disabled {
    pointer-events: none;
    border:1px solid #999;
}
ul.pagination>li.disabled>a {
    color:#999; 
}