/* Bring in the Default CSS for the website */
@import url('main.css') screen;
@import url('main_Print.css') print;

@media screen{
	table{
		border-collapse: collapse;
		width: 100%;
		font-size: 1.6em;
		box-shadow: 5px 5px 5px #888888;
	}
	table, th, td {
	   border: 1px solid black;
	   
	}
	tr:nth-child(even) {
		background: #CCC;
	}
	tr:nth-child(odd) {
		background: #FFF;
	}
	th{
		background: #d4ffd3;
	}
	.tableSeasons tr:hover th, .tableSeasons tr:hover{
		background:#22b14c;
	}
	.tableSchedual{
		border-color: #22b14c;
		border-width:5px;  
		border-style:inset;
	}
}
@media print{
	table{
		border-collapse: collapse;
		width: 100%;
		font-size: 16pt;
	}
	table, th, td {
	   border: 1px solid black;
	   
	}
	tr:nth-child(even) {
		background: #CCC;
	}
	tr:nth-child(odd) {
		background: #FFF;
	}
	th{
		background: #FFF;
	}
	.tableSchedual{
		border-color: #22b14c;
		border-width:5px;  
		border-style:inset;
	}
}