/* NavBar - Menu */

@import url(http://fonts.googleapis.com/css?family=Raleway);
nav {
    display: block;
    width: auto;
    height: auto;
    grid-row: 2;
}

.myNav {
    color: black;
    line-height: 85%;
}

.menu-width {
  grid-column: 2/6;
}

nav a {
  text-decoration: none;
  font-size: 1.3em;
  margin-right: 16px;
}

 /* Dropdown Button */
 .dropbtn {
  background-color: deepskyblue;
  font-size: 1.2em;
  border: none;
  margin-right: 12px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  /*--- Load Cursor ---*/
  cursor: url(../images/a10a.cur), auto;
  text-decoration: none;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: deepskyblue;
  min-width: 150px;
  z-index: 1;
  /*--- Load Cursor ---*/
  cursor: url(../images/a10a.cur), auto;
  text-decoration: none;
}

/* Links inside the dropdown */
.dropdown-content a {
  padding: 6px;
  margin-top: 5px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  /*--- Load Cursor ---*/
  cursor: url(../images/a10a.cur), auto;
  text-decoration: none;}

/* 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 {
  /*--- Load Cursor ---*/
  cursor: url(../images/a10a.cur), auto;
  text-decoration: none;}