@charset "UTF-8";
/* CSS Document */
<style>
body{
	margin:auto;
}

h1.one{
	
	height:200px;
	width:2000px;
	margin-left:2cm;
}

nav {
  background-color:white; 
  height:35px;
  border:3px solid black;
  border-left-color:white; 
  border-right-color:white; 
  padding: 10px 15px;
  width:85%;
  margin:auto;
  letter-spacing:.1em;
}
nav ul {
  font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
  font-size: 20px;
  margin:auto;
  padding: 50;
  list-style: none;
}
nav ul li {
  display:block;
  float:left;
  text-align:center;  
  width:20%;

  
}
nav ul li a {
  display:block;
  text-decoration: none;
  color:#000000;
} 
nav ul li a:hover { 
  background:#4A4A4A;
  color:#AAAAA;
}

nav ul li ul{
	display:none;
	padding:0px;	
}

nav ul li:hover ul {
  display: block;
  margin:0px;
}


nav li:hover li {
  float: none;
  font-size: 15px;
}

nav li:hover a { 
  height:30px;
  background-color:#C6C6C6;
  padding-left:10px;
  padding-right:10px; 

}
 
nav ul li ul li{
  text-align:center; /* Top-level items are centered, but nested list items are left-aligned */
  width:100%;

}


</style>
/* CSS Document */
