@charset "UTF-8";
/* CSS Document */
html, body{
	
	margin:0;
	padding:0;
}
pubs {
	
	margin-left:40;
	margin-right:200;
	width: 80%;
	display: block;
}

.center {
	display: block;
  margin-left: auto;
  margin-right: auto;
 
}

div.main{
	
	margin-left: 80px;
	margin-right: 80px;
	margin-top: 20px;
	padding: 10;
	max-width: 1050px;
}
div.banner{
	margin-left: 5px;
	margin-right: 80px;
	padding-left: 10px;
	width: 200px;
	background-color: lightgrey;
}
div.essay{
	margin-left: 25px;
	margin-right: 80px;
	margin-top: 20px;
	padding-left: 10px;
	margin-bottom: 30px;

}
/* The container <div> - needed to position the dropdown content */

ul.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

li.menu {
  float: left;
}

li.menu a, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 8px ;
  text-decoration: none;
}


/* Links - change color on hover */
li.menu a:hover {
   background-color: #ddd;  
  color: green;
}


li.dropdown {
	display: inline-block;
}

.dropdown .dropbtn {
	// position: relative;
	display: inline-block;
  font-size: inherit;  
  border: none;
  outline: none;
   color: white;
  padding: 14px 8px  ;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

 a:hover, .dropdown:hover .dropbtn {
  background-color: #ddd;
	color: green;
}

.dropdown-content {
  display: none;
    position: absolute;
  background-color: #f9f9f9;
	color: black;
  	max-width 150px; 
  box-shadow: 0px 2px 16px 0px   rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
   display: block; 
  color: black;
  text-align: center;
  padding: 10px 8px 10px 10px ;
  text-decoration: none;
	text-align: left;
}
.dropdown-content a:hover {
  background-color: #ddd;
  color: steelblue;

}

.dropdown:hover .dropdown-content {
  display: block;
}