.titulo {
            font-family: Tahoma;
            font-size: 16px;
            font-weight: bolder;
}

.barratitulo {
        background-color: cornflowerblue;
        align-content: center;
        width:100%;
        height:100px;
}

.grande {
        font-size: 24px;
        font-weight: bolder;
}
body {
  background-color: #303050;
  color: #fdfcfc;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-style: normal;
}

.normal {
  background-color: #303050;
  color: #faf3f3;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-style: normal;
}

.info {
  background-color: #303050;
  color: #dddddd;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: bold;
}

.destaque {
  background-color: #303050;
  color: #dddddd;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: bold;
}

h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: bold;
}

input {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #aaaaff;
  border-radius: 3% 3% 3% 3%;
}

input[type=button] {
  background-color: #303050;
  color: #dddddd;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: bolder;
  border: 2px solid #dddddd;
  border-radius: 5% 5% 5% 5%;
  padding: 5px;
}

input[type=number] 
{
  width: 80px;
  text-align: right;
  padding-right: 5px;
}

hr {
  border-top: 2px solid #dddddd;
}

/* classes para o menu dropdown */
/* Dropdown Button */
.dropbtn {
  background-color: #303050;
  color: #dddddd;
  padding: 12px;
  font-size: 12px;
  font-weight: bold;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  font-size: 12px;
  display: none;
  position: absolute;
  background-color: #303050;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(20,20,40,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #dddddd;
  padding: 12px 12px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #404060;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #404060;}

/* div flutuante */
.flutuante {
  position: fixed;
  top: 0px;
  left: 0px;
  border: 1px solid #aaaaff;
  border-radius: 0% 0% 0% 0%;
  padding: 2px;
  z-index: 100;
  background-color: #202040;
  display: none;
  overflow-y: auto;
  max-height: 100vh;
}

