@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}

#menu, #menu ul ul {
	margin: 0;
	padding: 0;
	list-style: none;	
}
#menu {
	display:block;
	position:relative;
	padding:0;
	z-index:10;
	font-family: 'Oswald', sans-serif;
	float:right;
	margin-top:32px;
}
#menu:before,  #menu:after {
	content: "";
	display: table;
}
#menu:after {
	clear: both;
}
#menu {
	zoom: 1;
}
#menu li {
	float: left;
	position: relative;
	margin:0 0 0 30px;
}
#menu a {
	font-size:17px;
	color: #222;
	font-weight:500;
	text-decoration: none;
	text-transform:uppercase;
	float: left;
	letter-spacing:.25px;	
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	
}

#menu li:hover > a {
	color:#6eb440;
		
}
#menu a.selected {
	color:#6eb440;
	cursor:default;
	
}
#menu > a.selected:hover {
	color:#6eb440;
	cursor:default;
	
}
#menu ul li > a.selected:hover {
	color:#6eb440;
	cursor:default;
	
}
#menu ul ul li > a.selected:hover {
	background-color:#fff;
	color:#6eb440;
	cursor:default;
	
}
#menu ul ul li > a.selected {
	background-color:#fff;
	color:#6eb440;
	cursor:default;	
}
#menu ul ul {
	min-width:250px;
	margin: 0 0 0 0;
	_margin: 0; /*IE6 only*/
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 39px;
	left: 0;
	z-index: 1;
	background-color:#6eb440;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	border-radius:0;
	padding:0;
	
}
#menu li:hover > ul {
	opacity: 1;
	visibility: visible;
	margin: 0;
}
#menu ul ul ul {
	top: 0;
	left: 150px;
	margin: 0 0 0 20px;
	_margin: 0; /*IE6 only*/
	-moz-box-shadow: -1px 0 0 rgba(255,255,255,.3);
	-webkit-box-shadow: -1px 0 0 rgba(255,255,255,.3);
	box-shadow: -1px 0 0 rgba(255,255,255,.3);
}
#menu ul ul li {
	float: none;
	display: block;
	border: 0;
	_line-height: 0; /*IE6 only*/
	margin:0;
	border-bottom:solid 1px #9acb7a;
}
#menu ul ul li:last-child {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-bottom:0;
}
#menu ul ul a {
	padding: 0 0 0 0;
	_height: 10px; /*IE6 only*/
	display: block;
	white-space: nowrap;
	float: none;
	text-transform: none;
	font-size:14px;
	font-weight:500;
	color:#fff;
	padding:10px 15px;
	border:none;	
}
#menu ul ul a:hover {
	background-color:#fff;
	color:#6eb440;
	border:none;
}

/* Mobile */
#menu-button {
	display: none;
}
@media screen and (max-width: 1000px) {
/* nav-wrap */
#menu-wrap {
	position: relative;
}
#menu-wrap * {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/* menu icon */
#menu-button {
	position:absolute;
	display: block; /* show menu icon */
	cursor: pointer;
	top:11px;
	right:10px;
	z-index:0;
  }
#menu-button:after {
    position: absolute;
    top: 12px;
    right: 0;
    display: block;
    /*height: 4px;*/
	height: 4px;
    width: 25px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    content: '';
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  }
#menu-button:before {
    position: absolute;
    top: 24px;
    right: 0;
    display: block;
    height: 2px;
    width: 25px;
    background: #000;
    content: '';
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  }
#menu-button.menu-opened:after {
    top: 18px;
	right: 0;
    border: 0;
    height: 2px;
    width: 20px;
    background: #000;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  }
#menu-button.menu-opened:before {
    top: 18px;
	right: 0;
    background: #000;
    width: 20px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  }
/* main nav */
#menu {
	margin: 0;
	padding: 0 20px 0 20px;
	position: absolute;
	top: 60px;
	width: 100%;
	z-index: 1002;
	background-color: #fff;
	display: none;
	border:solid 1px #d2d2d2;	
}
#menu:after {
	content: '';
	position: absolute;
	right: 12px;
	top: -8px;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid rgba(210, 210, 210, 1);
}
#menu ul ul {
	position: static;
	visibility: visible;
	opacity: 1;
	margin:0px !important;
	background: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding:0 !important;
	border:none;	
}
#menu ul ul ul {
	margin: 0 0 0 20px !important;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
#menu li {
	position: static;
	display: block;
	float: none;
	border: 0;
	margin:0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-bottom:solid 1px #d2d2d2;
}
#menu li:last-child {border-bottom:none;}
#menu ul ul li {
	margin-left: 10px;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
#menu a {
	float: none;
	padding: 10px 0;
	color: #333333;
	font-size:14px;	
	display:block;
	border:none;
}

#menu li:hover > a {
	color:#6eb440;
	background: none !important;
}
#menu ul ul li {border:none;}
#menu ul ul a {
	padding: 0;
	width: auto;
	color:#fff;
	padding-bottom:10px;
}
#menu ul ul a:hover {
	background: none !important;
}
#menu ul ul li:first-child a:after,  #menu ul ul ul li:first-child a:after {
	border: 0;
}
#menu li:hover > a {
	color:#6eb440 !important;
}
#menu a.selected {
	background:none;
	color:#6eb440;
	border:none;	
}
#menu ul ul li > a.selected {
	background:none;
	color:#6eb440;
	border:none;
}
}
@media only screen and (min-width : 500px) and (max-width : 1000px) {
#menu {max-width:350px; right:0;}
}
@media only screen and (min-width : 1000px) and (max-width : 1200px) {
#menu {margin-top:23px;}
#menu a {font-size:15px;}
#menu li {margin: 0 0 0 20px;}

}

