﻿body
{
}


/* 
	Generic Styling, for Desktops/Laptops 
	*/
	.responsive-table { 
		width: 100%; 
		border-collapse: collapse; 
	}
	/* Zebra striping */
	.responsive-table tr:nth-of-type(odd) { 
		background: #eee; 
	}
	.responsive-table th { 
		background: #fff; 
		
		font-weight: bold; 
	}
	.responsive-table td, th { 
		padding: 6px; 
		border: 1px solid #ccc; 
		text-align: left; 
	}
@media 
	only screen and (max-width: 760px),
	(min-device-width: 768px) and (max-device-width: 1024px)  {
	
		/* Force table to not be like tables anymore */
		.responsive-table table, .responsive-table thead, .responsive-table tbody, .responsive-table td, .responsive-table tr { 
			display: block; 
		}

        .responsive-table th { 
			display: none; 
		}
		
		/* Hide table headers (but not display: none;, for accessibility) */
		.responsive-table thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		.responsive-table tr { border: 1px solid #ccc; }
		
		.responsive-table td { 
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee; 
			position: relative;
			padding-left: 50%; 
		}
		
		.responsive-table td:before { 
			/* Now like a table header */
			position: absolute;
			/* Top/left values mimic padding */
			top: 6px;
			left: 6px;
			width: 45%; 
			padding-right: 10px; 
			white-space: nowrap;
		}
		
		/*
		Label the data
		*/
		.responsive-table td:nth-of-type(1):before { content: "See Details"; }
		.responsive-table td:nth-of-type(2):before { content: "Project"; }
		.responsive-table td:nth-of-type(3):before { content: "Month"; }
		.responsive-table td:nth-of-type(4):before { content: "Year"; }
		.responsive-table td:nth-of-type(5):before { content: "Agency"; }
		.responsive-table td:nth-of-type(6):before { content: "Point of Contact"; }
		
	}