a {
	animation: pulse 2s;
	color: black;
	text-decoration: none;
}

@keyframes pulse {
	0% {
		text-decoration: underline black;
	}

	100% {
		text-decoration:underline white;
	}
}

a:visited {
	color: black;
	text-decoration: none;
}

body {
	background-color: white;
	font-weight:	normal;
	color:		black;
	text-transform:	none;
	text-align:	left;
	font-family:	"Helvetica", Sans-Serif;
}

h3 {
	font-size:	1.3vw;
	text-align:	center;
}

table {
	width:		100%;
	align:		center;
	# border-collapse: collapse;
	border:		10px solid;
	border-color:	white;
}

td {
	padding:	15px 20px;
	background:	rgb(255,255,255);
	font-weight:	normal;
	color:		DarkSlateGrey;
	font-family: "Helvetica", Sans-Serif;
	vertical-align: middle;
	font-size:	4vw;
	border-collapse: collapse;
}

td.address {
	background:	whitesmoke;
	font-weight:	bold;
	color:		steelblue;
	vertical-align: top;
}

td.available {
	background:	aquamarine;
	color:		DarkOliveGreen;
}

td.occupied {
	background:	PeachPuff;
	color:		Brown;
}

td.unknown {
	background:	LightGrey;
	color:		DimGrey;
}
