body{
	margin: 0;
	overflow: hidden;
	height: 100vh;
	cursor: none;
	background: #222;
}

#none{
	text-align: center;
	width: 100%;
}

table{
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
	font-size: 1.3rem;
	text-align: center;
	font-family: "Arial";
}
tr,td,th {
	border-collapse: collapse;
	border-top: 1px solid #DDD;
    padding: .2rem 0;
    position: relative;
}
tr.head{
	text-shadow: 0 0 6px #000;
    box-shadow: 0 0 6px #888;
}

tr.cancelled td:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 0;
  border-bottom: 2px solid #666;
  width: 100%;
}

th{
	line-height: 2rem;
    background-color: #27569c;
	color: #FFF;
}
tbody tr:nth-child(odd){
  background-color: #3e3e3e;
  color: #FFF;
}

tbody tr:nth-child(even){
  color: #FFF;
  background: #2a2a2a;
}

td:nth-child(1), th:nth-child(1){
	padding-left:3rem;
}
td:nth-child(5), th:nth-child(5){
	padding-right: 3rem;
}

span.old{
	text-decoration: line-through;
	color: #CCC;
	font-size: 1rem;
}

span.new{
	font-weight: bold;
}