/* CSS Document */

.tables {
	display: block;
    position: relative;
    overflow-x: auto;
}
.tables table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
	border: 0;
    overflow-x: auto;
    white-space: nowrap;
	padding: 1%;
	font-size: 0.9rem;
}
.whitetxt .tables {   }
.tables table thead tr th {
	background: none; 
	text-align: center;  
	text-transform: uppercase;
	font-size: 0.8rem;
}
.tables tr th { background: none; }

.tables th, .tables td {
    border: none;
    padding: 8px;
    vertical-align: middle;
}
.tables tr {
 }
.tables tr:nth-child(even) { }

.tables td {
    white-space: initial; 
	padding: 10px 15px;
	min-width: 50px;
}
@media screen and (max-width: 950px){
	.ccm-layout-column table td{
	border: 1px dotted;
	margin: 2%;
	text-align: left;
	}
	.ccm-layout-column table td ul { padding-bottom: 10px!important;}
}
@media screen and (min-width: 250px){
.tables table,
.tables table td {
    /*display: block;*/
	vertical-align: top;
}
}
@media screen and (min-width: 750px){
.tables { border: none; }
.tables table {
    display: inline-table;
}
.tables table td {
    display: table-cell;
}
}