.menutitle,
.nav-button { display: none; } /* hide the navigation button and word "MENU" by default */


@media only screen and (min-width: 0px) and (max-width: 767px) {

	/* Navigation Button
	-------------------------------------------------------- */
    .nav-close { display: none; }  /* don't display "close" HTML when first arriving */
	
	.nav-button {
		display: block;
		position: absolute;
		top: 7px;
		left: 7px;
		width: 30px;
		height: 25px;
		background:linear-gradient(to bottom, #fff 0%, #fff 20%, transparent 20%, transparent 40%, #fff 40%, #fff 60%, transparent 60%, transparent 80%, #fff 80%, #fff 100%);    /* hamburger icon with CSS */
		cursor: pointer;
		border: 0 none;
		border-radius: 0px;
		z-index: 999;
		
	}
	
	.nav-button:hover { 
		background:linear-gradient(to bottom, #a5e69d 0%, #a5e69d 20%, transparent 20%, transparent 40%, #a5e69d 40%, #a5e69d 60%, transparent 60%, transparent 80%, #a5e69d 80%, #a5e69d 100%);
		border: 0px;
		color: #a5e69d;
	}                    
	
	.nav-button.open {
		background: none;
	}
	
	.nav-button.open .nav-close {
		display: block;
		position: absolute;
		width:30px;
		height:30px;
		background-color:transparent;
		margin-top: -8px;
		margin-left: -10px;
	}
	.nav-button.open .right-slash {
		height:25px;
		width:4px;
		margin-left:12px;
		background-color:#fff;
		transform: rotate(45deg);
		-ms-transform: rotate(45deg); /* IE 9 */
		-webkit-transform: rotate(45deg); /* Safari and Chrome */
		Z-index:1;
	}
	.nav-button.open .left-slash {
		height:25px;
		width:4px;
		background-color:#fff;
		transform: rotate(90deg);
		-ms-transform: rotate(90deg); /* IE 9 */
		-webkit-transform: rotate(90deg); /* Safari and Chrome */
		Z-index:2;
	}
	
	.menutitle {
		position: relative;           /* required to make z-index work */
		display: inline-block;
		z-index: 1000;                /* required to show above menu bar */
		margin: 8px 0px 0px 50px;
		font-family: 'Raleway', sans-serif;
		font-weight: 500;
		font-size: 1.1em;
		color: #fff;
		text-decoration: none;
		letter-spacing: .3em;
	}
	.menutitle.open {
		display: none;                /* word "MENU" disappears if menu is open */
	}
	
	
	


	/* Navigation Bar
	-------------------------------------------------------- */

	nav.supercontainer {
		position: absolute;
		top: 0px;
		background-color: #339127;  /* darker main menu bar on this site only for better readability */
	}

	.primary-nav {
		width: 100%;
		float: none;
		background-color: #339127; /* change the menu color */
		display: block;
		height: 37px;
		margin: 0;
		padding: 0;
		overflow: hidden;
		position: absolute;
		top: 0px;
		left: 0px;
		z-index: 998;
		clear: both;
	}
	.primary-nav li {
		display: none !important;                    /* important overrides regular menu styles */
		width: 100%;
		font-family: Arial;
	}
	.primary-nav li a {
		display: block;
		width: auto;
		padding: 5px 0px 5px 60px;
		font-size: 14px;
		font-weight: bold;
		/*text-shadow: -1px -1px 0 rgba(0,0,0,.15);*/
		color: #fff !important;
		text-decoration: none;
		border-bottom: 1px solid rgba(0,0,0,.2);
		/*border-top: 1px solid rgba(255,255,255,.1); */
	}
	
	.primary-nav li:hover {
		background-color: #59b34d !important;
	}
	
	.primary-nav li a:hover {
		background-color: #7fde72;    			/* subnav (under parent li) when hovered - takes on a small block of color above*/
		border-top-color: transparent;
	}
	.primary-nav > li:first-child {
		/*border-top: 1px solid rgba(0,0,0,.2);*/
	}

	/* Toggle the navigation bar open  */

	.primary-nav.open { 
		height: auto; 
		padding-top: 50px;
	}
	.primary-nav.open li { 
		display: block !important;                /* important overrides regular menu styles - show the main li's when the menu is set to "open" */
	}

	/* Submenus – optional .parent class indicates dropdowns */

	.primary-nav > li:hover > a {
		background-color: #59b34d;				/* non-parent nav when hovered */
		border-bottom-color: transparent;
	}
	.primary-nav li.parent > a:after {
		content: "▼";
		color: #e5e5e5;
		float: right;
	}
	.primary-nav li.parent > a:hover {
		background-color: #59b34d;				/* parent nav when hovered */
	}
	.primary-nav li ul {
		display: none !important;               /* important overrides regular menu styles - by default, subnav is not displayed */
		background-color: #59b34d !important;	/* background color of subnav ul under parent li */
		border-top: 0 none;
		padding: 0;
	}
	.primary-nav li ul a {
		border: 0 none;
		font-size: 12px;
		padding: 10px 5%;
		font-weight: normal;
	}
	
	
	
	.primary-nav li:hover ul {
		display: block !important;              /* important overrides regular menu styles - once you hover or tap main li, show the submenu */
		border-top: 0 none;
	}
	
	ul#nav li {
		padding: 0px;
		line-height: 34px;                    /* shorten height of menu bars a bit */
		text-align: left;
	}
	
	ul#nav ul { 
		position: relative;                   /* regular desktop menu is positioned absolutely and hides/shows the subnav using left -9999px and left 0px */
		left: 0px;                            /* this is overriden for mobile to have it push down the additional main li's when the subnav is open */
		top: 0px;
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	
	ul#nav ul li { 
		padding-left: 50px;
	}

	ul#nav li a {
		height: 34px;
	}
	
	


} /* End Mobile Styles */