
	@media 
	only screen and (max-width: 760px),
	(min-device-width: 768px) and (max-device-width: 1024px)  {
	
		/* Force table to not be like tables anymore */
		table, thead, tbody, th, td, tr { 
			display: block; 
		}
		
		/* Hide table headers (but not display: none;, for accessibility) */
		thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		tr { border: 1px solid #ccc; }
		
		td { 
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee; 
			position: relative;
			padding-left: 50%; 
		}
		
		td:before { 
	left: 5%;
    padding-right: 10px;
    position: absolute;
    text-align: left;
    top: 4%;
    white-space: nowrap;
    width: 45%;
		}
		
		/*
		Label the data
		*/
		td:nth-of-type(1):before { content: "State"; font-size:1.2em; color:#255d73; font-weight:bold;}
		td:nth-of-type(2):before { content: "First Year Fees"; color:#1cbcff;}
		td:nth-of-type(3):before { content: "Second Year Fees";  color:#1cbcff;}
		td:nth-of-type(4):before { content: "Other";  color:#1cbcff;}
	}
	
	/* Smartphones (portrait and landscape) ----------- */
	@media only screen
	and (min-device-width : 320px)
	and (max-device-width : 480px) {
		body { 
			padding: 0; 
			margin: 0; 
			width: 320px; }
		}
	
	/* iPads (portrait and landscape) ----------- */
	@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
		body { 
			width: 495px; 
		}
		
	}
	table { 
		width: 100%; 
		border-collapse: collapse; 
	}
	/* tr:nth-of-type(odd) { 
		background: #fff; 
	}*/

	tr { 
	    color: #333;
		background: #fff; 
	}
	th { 
		background: #1cbcff; 
		color: white; 
		font-weight: bold; 
	}
	td, th { 
		border: 1px solid #CCCCCC;
    padding: 6px 5% 6px 6px;
    text-align: right;
	}
