@charset "UTF-8";

body {
	width: 1000px;
	font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
}
table {
	border: 1px black solid;
	width: 100%;
}
td {
	border: 1px darkgray solid;
}
th {
	background-color: #2e88b8;
	font-weight: bold;
	color: white;
}
td,
th {
	padding: 0.25em;
	cursor: pointer;
}
td.term {
	width: 20%;
}
td.definition {
	width: 80%;
	display: none;
}
td:hover {
	background-color: #eee;
}
td.displayed {
	display: table-cell;
}
tr.hidden {
	display: none;
}

@media only screen and (max-device-width: 1280px) {
	body {
		font-size: 200%;
	}
}

@media only screen and (max-device-width: 768px) {
	body {
		width: 700px;
	}
}

@media only screen and (max-device-width: 480px) {
	body {
		width: 440px;
	}
}