/* CSS: Adaptado de: http://sixrevisions.com/css/css-only-tooltips/ */
body { 
	font-size: 20px;
	font-family: verdana, "Times New Roman", Times; 
}
table {
    display: table;
    border-collapse: separate;
    border-spacing: 3px;
    border-color: black;
} 
td { 
	height: 20px;
    text-align: center; 
    padding: 4px;
    font-size: 20px;
}
.opt table {
    display: table;
    border-collapse: separate;
    border-spacing: 3px;
    border-color: black;
} 
.opt td, input, button {
    text-align: left; 
    height: 10px;
    padding: 3px;
	font-size: 20px;
}
.boldtxt{
	font-weight: bold;
}
.laranjatxt{
	color: orange;
}
input { 
	color: #cc5500;
	border: 1px solid;
	text-align: center;
	height: 20px;
    padding: 5px;
    font-size: 15px;
}
select { 
	color: #cc5500;
	text-align: center;
    padding: 5px;
    font-size: 15px;
}
button { 
	color: #cc5500;
	text-align: center;
	height: 40px;
    padding: 5px;
    font-size: 15px;
}
a:link { color: blue }
a:visited { color: grey }
span {
	border-bottom: 1px; color: #000000; outline: none;
	cursor: help; text-decoration: none;
	position: relative;
}
span[alt]:hover:after {
    content: attr(alt);
    background: #FFFFAA;
    border: 1px solid #FFAD33;
    padding: 0.8em 1em;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    position: absolute; left: 1em; top: 2em; z-index: 99;
    font-family: Calibri, Tahoma, Geneva, sans-serif;
    font-size: .9em;
    font-weight: normal;
    color: #FFAD33;
    cursor: help;
}
td:hover span{
    display: block;
}
tr:hover{
	background-color: #FFFFAA;
	background: #FFFFAA;
}