a {
	text-decoration:none;
}
#green {
	box-shadow: 1px 2px 3px #ccc;
	border-collapse:collapse;
}

#green td, #green th {
	border:1px solid #004314;
	padding:2px 4px 1px 4px;
}

#green th {
	font-size:1.2em;
	text-align:left;
	padding-top:5px;
	padding-bottom:4px;
	background-color:#1b7a46;
	color:#fff;
}

#green th a {
	color:#fff;
}

#green tr:nth-child(odd) {
	color:#000;
	background-color:#ddece4;
}

.buttonY {
	color:#fff;
	background-color:#56B949;
	border:0;
	cursor:pointer;
}

.buttonN {
	color:#fff;
	background-color:#EE4035;
	border:0;
	cursor:pointer;
}

.buttonR {
	color:#fff;
	background-color:#367ABD;
	border:0;
	cursor:pointer;
}

.buttonX {
	color:#fff;
	background-color:#AAA;
	border:0;
}

.topcorner {
	position:absolute;
	top:-15px;
	right:10px;
}

fieldset {
    margin-top: 8px;
    margin-bottom: 8px;
    border: 1px solid silver;
    border-radius: 4px;
    background-color: #fff;
}
legend {
    font-size: 70%;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 150px;
  background-color: #1b7a46;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #1b7a46 transparent;
}

