
#glossary {
  	overflow-y: auto;

}


#glossary label {
/*  background-color: #ccc;
  color: brown;
  padding: 15px;
*/  text-decoration: none;
  font-size: 16px;
/*  border: 2px solid brown;
  border-radius: 5px;
*/  display: block;
  width: 100px;
  text-align: center;
}
	
.glossitem {
	display: grid;
	grid-template-columns: 9em 65%;
	margin-bottom: 0.2em;
}

.term {
	font-weight: normal;
	text-transform: uppercase;
	text-align: right;
	grid-row: 1 / 2;
	grid-column: 1 / 2;
}

.definition {
	font-weight: normal;
	grid-row: 1 / 2;
	grid-column: 2 / 3;
}

.title {
	font-weight: bold;
	text-transform: uppercase;
	margin-left: 10em;
}
