
body {
  background-image: url('fundo40.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/*Formatação 'div'-corpo home-page.*/
.corpo {
	background-color:#D9D9D9;
	}

/*Formatação imagem.*/
.img-corpo {
	margin-left:250px;
	margin-top: 5px;
	margin-bottom: 5px;
}

/*Formatação parágrafos.*/
#par1 {
	text-align: center;
	font-family:Arial;
	font-size:25px;
}

#par2 {
	text-align: center;
	font-family:Arial;
	font-size:20px;
}

/*Formatação links.*/
a:link {
  color: #00129A;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #F27925;
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color: #00129A;
  background-color: transparent;
  text-decoration: none;
}

/*Formatação rodapé.*/
.rodapehomepage {
	background-color:#C9C9C9;
	text-align: center;
	font-family:Arial;
	font-size:20px;
	margin-top: 400px;
	padding: 15px;
}

/*Formatação menu suspenso TOPNAV*/
/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #84BBC9;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


/*Formatação responsiva.*/

/*
@media only screen and (max-width:800px) {

  .navbar {
    width: 80%;
    padding: 0;
  }
  #corpo {
    width: 100%;
  }
}
@media only screen and (max-width:500px) {

  .navbar, #corpo {
    width: 100%;
  }
*/