/* ***** NAVBAR */

.navbar_principal {
  	display: block;
  	overflow: auto;
	border-style: solid;
	border-width: 3px;
	border-color: rgb(200, 200, 200); 
	border-radius: 10px;  	
	margin-top: 2px;
	margin-left: 2px;
	margin-right: 2px;
	margin-bottom: 1px;
	padding: 5px;
	min-height: 60px;
 	font-family: "Tahoma";
	font-style: normal;
 	font-weight: bold;
 	text-align: left;
 	font-size: 14px;
 	background-image: linear-gradient(rgb(200, 200, 200), rgb(100, 100, 100)70%);
 	/* white-space: nowrap; */
}

/* ***** BOTÃO DROPDOWN (BARRA MENU NA TELA PRINCIPAL) */
.dropbotao {
    overflow: auto;
	font-style: normal;
 	font-weight: bold;
 	font-size: 12px;
  	border: none;
  	outline: none;
  	min-width: 120px;
  	color: rgb(230, 230, 230);
  	padding: 10px 10px;
  	background-color: inherit;
    font-family: inherit; 	/* Importante para alinhamento vertical nos Smartfones. */
  	margin: 0;				/* Importante para alinhamento vertical nos Smartfones. */
  	cursor: default;
}

/* ***** LINKS DENTRO DA NAVBAR */
.navbar_principal a {
	float: left;
 	font-family: "Tahoma";
	font-style: normal;
 	font-weight: normal;
 	font-size: 12px;
  	color: rgb(255, 255, 255);
  	text-align: left;
  	padding: 5px 5px;
  	text-decoration: none;
  	cursor: default;
}

/* ***** LISTA DROPDOWN */
.dropdown_principal {
	float: left;
	overflow: auto;
}

/* ***** COR DE FUNDO DA CAIXA COM FOCO NA NAVBAR */
.navbar_principal a:hover, .dropdown_principal:hover .dropbotao {
  	background-color: rgb(0, 100, 170);
  	color: rgb(255, 255, 255);
  	cursor: default;
}

/* ***** CONTEÚDO DO DROPDOWN */
.dropdown_principal-content {
	display: none;
  	position: absolute;
  	background-color:rgb(230, 230, 230);
  	min-width: 100px;
  	/* min-height: auto;*/
  	box-shadow: 10px 10px 10px 0px rgb(50, 50, 50);
  	z-index: 1;
}

/* ***** LINKS DENTRO DO ITEM NA DROPDOWN */
.dropdown_principal-content a {
  	display: block;
	float: inherit;
	color: rgb(100, 100, 100);
  	padding: 10px 25px;
  	text-decoration: none;
  	text-align: left;
  	cursor: default;
}

/* ***** FUNDO DO ITEM NA DROPDOWN */
.dropdown_principal-content a:hover {
  	background-color: rgb(0, 100, 180);
}

/* ***** ITEM COM FOCO NA DROPDOWN */ 
.dropdown_principal:hover .dropdown_principal-content {
  	display: block;
}
