/* ======================  make this look like a button ====================================== */

span.button {
  font-size: smaller;
  font-weight: bold;
  text-align: center;
  background-color: silver;
  color: black;
  text-decoration: none;
  padding: 3px;
  display: inline-block;		/* so width works */
  width: 90px;
  border-radius: 5px;
  border: 1px solid grey;
}

span.button A:link 		{ color: black; text-decoration: none; }
span.button A:visited 	{ color: black; text-decoration: none; }
span.button A:hover   	{ color: blue; text-decoration: none; }
span.button A:active  	{ color: red; text-decoration: none; }

/* ======================  Anchor tags used for A tags with no href ========================== */

.pseudolink {
  cursor: pointer;
  text-decoration: underline;
  color: blue;
}
