@charset "utf-8";
/* mobile-table.css */
@media only screen and (max-width: 800px) {
	
	/* Force table to not be like tables anymore */
	#mobile-table table, 
	#mobile-table thead, 
	#mobile-table tbody, 
	#mobile-table th, 
	#mobile-table td, 
	#mobile-table tr { 
		display: block; 
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	#mobile-table thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	#mobile-table tr { 
		/*border: 1px solid #ccc;*/
	}
 
	#mobile-table td { 
		/* Behave  like a "row" */
		border: none;
		/*border-bottom: 1px solid #eee; */
		position: relative;
		padding-left: 36%; 
		white-space: normal;
		text-align:left;
	}
 
	#mobile-table td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 35%; 
		padding-right: 10px; 
		white-space: nowrap;
		text-align:right;
		font-weight: bold;
	}
 
	/*
	Label the data
	*/
	#mobile-table td:before { content: attr(data-title); }
}
#mobile-table tr.mobile-hr td{ 
	border-top: 1px solid #ffffff;
}
#mobile-table tr td.mobile-hr{ 
	border-top: 1px solid #222222;
}
 
