/*
showstem.css
*/

/*BODY {
		background-color		: #223311;
	}
	*/


body {
    /*
  color: white;
  background-color: #223311;
  */
  color: black;
  background-color: white;
  font-size: 100%;
}
a:visited {
  color: #E66426;
}
a:link {
  color: #E66426;
}
a:active {
  color: olive;
}

.no-wrap {
  white-space: nowrap;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: default;
}

.tooltip .tooltiptext {
  visibility: hidden;
  padding: 0.25em 0.5em;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 0.25em;
  white-space: nowrap;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -50%;
  transition-property: visibility;
  transition-delay: 0s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  transition-delay: 0.3s;
}