.prjt{ width:100% !important;}
.mn_b{ max-width:80px !important;}
.prjt table { 
		width: 100%; 
		border-collapse: collapse; 
	}
	/* Zebra striping */
	.prjt tr:nth-of-type(odd) { 
		background: #eee; 
	}
	.prjt th { 
		background: #333; 
		color: white; 
		font-weight: bold; 
	}
	.prjt td, .prjt th { 
		padding: 6px; 
		border: 1px solid #ccc; 
		text-align: left; 
	}
	@media 
	only screen and (max-width: 560px),
	(min-device-width: 560px) and (max-device-width: 560px)  {
	.mn_b{ max-width:250px !important;}
		/* Force table to not be like tables anymore */
		.prjt table, thead, tbody, th, td, tr { 
			display: block; 
		}
		
		/* Hide table headers (but not display: none;, for accessibility) */
		.prjt thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		.prjt tr { border: 1px solid #ccc; }
		
		.prjt td { 
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee; 
			position: relative;
			padding-left: 58%; 
		}
		
		.prjt 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
		*/
		.prjt td:nth-of-type(1):before { content: "S.No"; }
		.prjt td:nth-of-type(2):before { content: "Project Name"; }
		.prjt td:nth-of-type(3):before { content: "Client"; }
		.prjt td:nth-of-type(4):before { content: "Consultant"; }
		.prjt td:nth-of-type(5):before { content: "Contractor"; }

	}
	
