	/* 
	Generic Styling, for Desktops/Laptops 
	*/
	table { 
		width: 100%; 
		border-collapse: collapse; 
	}
	/* Zebra striping */
	tr:nth-of-type(odd) { 
		background: #f0f0f0; 
	}
	tr:nth-of-type(even) { 
		background: #f7f7f7; 
	}
	th { 
		color: white; 
		font-weight: bold; 
		background: #333333; 
	}
	td, th { 
		padding: 6px; 
		text-align: left; 
		border: 1px solid #999999; 
	}
	
