
	/* 
	Generic Styling, for Desktops/Laptops 
	*/
	table { 
		width: 100%; 
		border-collapse: collapse; 
		font-size: 12px;
	}
	/* Zebra striping */
	tr:nth-of-type(odd) { 
		background: #eee; 
	}
	th { 
		background: #333; 
		color: white; 
		font-weight: bold; 
	}
	td, th { 
		padding: 2px  4px; 
		border: 1px solid #ccc; 
		text-align: left; 
	}
	
	
table.download tr:hover { background-color:#CEEBF4;}
table.download a:link { color:#069; font-weight:bold; text-decoration:none;}
table.download a:hover{ color:#069; font-weight:bold; text-decoration:underline;}
	
	/* 
	Max width before this PARTICULAR table gets nasty
	This query will take effect for any screen smaller than 760px
	and also iPads specifically.
	*/
	@media 
	only screen and (max-width: 760px),
	(min-device-width: 768px) and (max-device-width: 1024px)  { 
	
	/************************************ TEMPORARY HIDE THIS ****
	

		table, thead, tbody, th, td, tr { 
			display: block; 
		}
		

		thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		tr { border: 1px solid #ccc; }
		
		td { 

			border: none;
			border-bottom: 1px solid #eee; 
			position: relative;
			padding-left: 50%; 
		}
		
		td:before { 

			position: absolute;
			top: 6px;
			left: 6px;
			width: 45%; 
			padding-right: 10px; 
			white-space: nowrap;
		}
		
		*******************************/
		
		
		/*
		Label the data
		
        #no-more-tables td:before { content: attr(data-title); }*/
	}
	

	
