body {
	font-family:"tahoma,trebuchet ms",sans-serif;
	font-size:90%;
	background-color:#696969;
 }

#box
{
	border-radius:50px;
	padding:20px 30px;
	width:90%;
	margin:20px 30px;
	padding-top:20px;
	font-family: tahoma;
	background-color:#FFFFFF;
}

legend 
{
    background-color: red;
    color: #FFFFFF;
    padding: 3px 6px;
}
fieldset 
{
	border: red 1px solid;
	border-radius:10px;
    padding: 3px 6px;
}

valid {
   box-shadow: 0 0 2px 1px green;
}

h3{
	text-align:center;
	font-size:20px;
}

textarea{
	width:100%;
	height:80px;
	margin-top:5px;
	border-radius:3px;
	padding:5px;
	resize:none;
}
span{
	color:red
}
.successMessage{
    background-color: #7acc7d;
    border: #2b5a2d 1px solid;
    padding: 5px 9px;
    color: #262b26;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
}
.errorMessage{
    background-color: #e64141;
    border: #da1414 1px solid;
    padding: 5px 10px;
    color: #fdf7f7;
    border-radius: 4px;
}
.info{
    font-size: 0.9em;
    color: #d67262;
    letter-spacing: 2px;
    padding-left: 5px;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-Weight:bold;
  font-size:12px;
  color:black;
}

th {
  text-align: left;
  padding: 2px;
  font-size:14px;
  color:black;
}

td {
  text-align: left;
  padding: 2px;
  font-size:10px;
  color:black;
}

tr:nth-child(even){background-color: #f2f2f2}

th {
  text-align: left;
  background-color: #e64141;
  color: white;
}

a:link, a:visited {
  background-color:#1E90FF;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: #0000FF;
}

<style>
/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 400px;
  background-color: red;
  color: #000000;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}
</style>