@import url("css-bm1-top-nav.css");
/************************************************************************************
RESET
*************************************************************************************/
 /* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: #0d1424;
  position: relative;
  /* box shadow */
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	box-shadow: 0 1px 3px rgba(0,0,0,.4);
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
    background-color: #3b3e4f;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-family: 'roboto', sans-serif;
  font-size: 165%;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: #4f5266;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #f4d75c;
  color: white;
}

/* Style the active link (or home/logo) */
.active {
  background-color: #4f5266;
  color: white;
} 



<!--more-->

