@charset "UTF-8";



h1.titulo-mes {
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.5em;
  color: #29556c;
}

td, a {
  transition: color 333ms ease-in-out;
}

a {
  color: #407DB8;
  text-decoration: none;
  font-weight: 400;
}

.table, .footer, .output {
  width: 100%;
  margin: 0;
}

tr {
  height: 40px;
  transition: background 333ms ease-in-out;
}
tr:nth-child(even) {
  background: #e6f0f6;
}
tr:nth-child(odd) {
  background: #fff;
}
tr:hover {
  background: #ddd;
}
tr:hover:nth-child(even) {
  background: #ddd;
}
tr:hover td {
  color: #888;
}
tr:hover a {
  color: #666;
}
tr td {
  color: #888;
  font-size: 0.9em;
  font-weight: 300;
  letter-spacing: 0.2em;
}
tr td:first-child {
  padding-left: 25px;
}
tr td:last-child {
  padding-right: 25px;
  text-align: right;
}


/* Top Bar */
tr:first-child {
  background: #666;
}
tr:first-child td {
  color: #eee;
  font-size: 0.75em;
  letter-spacing: 0.3em;
}

tr:first-child,
tr:first-child td {
  transition: none;
}


