#demo-table{
	width: 99.9%;
	background-color: #0F0F1F;
	border-collapse: collapse;
}

#demo-table td, #demo-table th{
	padding: 5px;
	word-break: break-all;
}

#demo-table th{
	background-color: #A40D0D;
	color:#ffffff;
	border: #1a1a1a 1px solid;
	text-align: center;
}

.break-table tr:nth-of-type(odd){
    background-color: #0D204B;
}
.break-table tr:nth-of-type(even){
    background-color: #0D113A;
}

@media only screen and (max-width: 720px) {
	/* Force table to not be like tables anymore */
	.break-table{
		background-color: transparent !important;  
	}
	.break-table, 
	.break-table thead, 
	.break-table tbody, 
	.break-table th, 
	.break-table td, 
	.break-table tr { 
		display: block; 
	}

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

	.break-table tr { border: 1px solid #ccc; margin-bottom: 3px; background-color: #ffffff;}
	#modal-leadboard .break-table tr{
		margin-bottom: 0px;
	}
	
	.break-table td { 
		/* Behave  like a "row" */
		border: none !important;
		border-bottom: 1px solid #142f6c !important;  
		position: relative;
		padding-left: 34% !important; 
		white-space: normal;
		text-align:left;
	}

	.break-table td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 0px;
		left: 0px;
		width: 33%; 
		height: 100%;
		white-space: nowrap;
		text-align:right;
		color: #ffffff;
		background: #A40d0d;
		padding:6px 10px;
		content: attr(data-title);
	}
	/*	停權名單	*/
	#tab_tos_4_content .break-table td:before{
		width: 28%; 
	}
	#tab_tos_4_content .break-table td{
		padding-left: 30% !important;
	}
}

