@import url("css-top-nav3.css");
/************************************************************************************
RESET
*************************************************************************************/
 /* Style the navigation menu 022b6b  */
.topnav2 {
  overflow: hidden;
  background-color: #022b6b;
  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) */
.topnav2 #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav2 a {
  color: #ffffff;
  padding: 14px 16px;
  text-decoration: none;
  font-family: 'Teko', sans-serif;
  letter-spacing:2px;
  font-size: 165%;
  display: block;

}

/* Style the hamburger menu */
.topnav2 a.icon {
  background: #022b6b;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

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

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



<!--more-->

