/* Classes for tables mimicking signup sheets */
	.signup-sheet {
		width: 70%;
		margin: 0 auto 2rem;
		text-align: center;
		border-collapse: collapse;
		border: solid white 1px;
	}

	.signup-sheet tr {
		border-bottom: solid 1px lightgray;
	}

	.signup-sheet tr > td {
		padding-bottom: 5px;
	}

	.signup-sheet tr > td:nth-child(1) {
		width: 30%;
	}
	
/* Class for email obfuscation.
Email address in HTML includes decoy portions which are then hidden by CSS */
	.email > span:nth-child(1) {
		display: none;
	}

	.email > span:nth-child(3) {
		display: none;
	}