@charset "UTF-8";

/* ------------------------------------------
  NAVIGATION STYLES
  (+ responsive-nav.css file is loaded in the <head>)
--------------------------------------------- */



/* ------------------------------------------
  NAV TOGGLE STYLES
--------------------------------------------- */

@font-face {
  font-family: "responsivenav";
  src:url("icons/responsivenav.eot");
  src:url("icons/responsivenav.eot?#iefix") format("embedded-opentype"),
    url("icons/responsivenav.ttf") format("truetype"),
    url("icons/responsivenav.woff") format("woff"),
    url("icons/responsivenav.svg#responsivenav") format("svg");
  font-weight: normal;
  font-style: normal;
}


.nav-toggle {
  position: absolute;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  text-indent: -999px;
  height: 24px;
  padding:6px 0;
  color:rgba(255,255,255,0.75);
  }



.nav-toggle:before {
	color:rgba(255,255,255,0.75); /* Edit this to change the icon color */
	font-family: "responsivenav", sans-serif;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	font-size: 24px;
	text-transform: none;
	position: absolute;
	content: "≡";
	text-indent: 0;
	text-align: right;
	line-height: 48px;
	speak: none;
	width: 100%;
	top: 0px;
	left: 20px;
}

.nav-toggle.active::before {
	color:rgba(255,255,255,0.75);
	font-size: 24px;
	content:"x";
}


.nav li ul:hover > ul.sub-menu{
	display: block;
	visibility: visible;
}

@media only screen and (min-width: 481px) {

	.nav-toggle:before {
		top: 30px;
		left: 20px;
	}

}
