@charset "utf-8";
/* CSS Document */

.tblfacts-container{
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.table>tbody>tr>td{
    white-space:nowrap
}
.tblfacts { 
	
	border-collapse:collapse;
	width:100%;
	
	font-size:small;
	line-height: 18px;
	border-top-style: double;
	border-top-color:#c6f2ff;
	border-bottom-style: double;
	border-bottom-color:#c6f2ff;
}
.tblfacts th { 
	padding:8px; 
	/*border:#e7e7e7 1px solid;*/
	border:#c6f2ff 1px solid; 
	color:#000000;
	margin:0; 
}

.tblfacts th:nth-child(1) {
	width: 25%;
}
.tblfacts th:nth-child(2) {
	width: 75%;
}

.tblfacts tr td:first-child {
		font-weight:bold;
		}
		
.tblfacts td { 
	padding:4px; 
	border:#c6f2ff 1px solid; 
	vertical-align:top;
}

.tblfacts td ul {
	margin:0 0 10px 0;
}

.tblfacts tr:nth-child(even) { 	/*(even) or (2n 0)*/
	background: #ffffff;
}

.tblfacts tr:nth-child(odd) { /*(odd) or (2n 1)*/
	background: #f9f9f9;
}