/*  NAVIGATION
------------------------------------------------*/
#menu-button{
	display: none;
	color:#ffdb43;
}

nav.mobile {
	display:none;
}

.nav-container {
	display:block;
	width:100%;
	margin:0 auto;
	background: linear-gradient(90deg, #065f2d 50%, #ffdb43 50%);
}

nav.primary {
	display:block;
	width: 100%;
	max-width: 1170px;
	margin:0 auto;
}
	
nav.primary ul {
	padding:0;
	margin:0 auto;
	float:right;
}

nav.primary ul li {
	float:left;
}
nav.primary ul li a {
	padding:15px 15px;
	text-align:left;
	display:block;
	color:#000;
	background-color:#ffdb43;/*yellow*/
	font-size:14px;
	font-family: 'Lato', sans-serif;
	line-height:14px;
	font-weight:700;
	text-decoration:none;
}

nav.primary ul li a:hover {
	color:#000;
	background:#fdeeaf;
}

nav .stripes{
	padding: 15px 30px;
	width: 45px;
    font-size: 16px;
    line-height: 14px;
    background-image: url(/siteart/nav-bg2.jpg);
    background-position: left center;
    background-repeat: no-repeat;
}

/*  OPTIONAL SUB-LEVEL LINKS
------------------------------------------------*/
nav.primary ul li li:last-child  {
}

nav.primary ul li li:last-child a {
	border-bottom:none;
}


/*  NAV DROPDOWNS
------------------------------------------------*/
nav.primary ul ul {
    display: none;
    position: absolute; 
}
  
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
  
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 500;
}
  
nav.primary ul ul li {
    float: none; 
    position: relative;
    margin:0;
}



/*===================== 
	Responsive styles 
=======================*/
@media screen and (max-width: 1170px) {
}

@media screen and (max-width: 1100px) {
}

@media screen and (max-width: 900px) {
	.nav-container {
		background: #ffdb43;
	}

	
	nav.primary{display:none;}
	
	#menu-button{ /* initially will need to be hidden */
		display: block;
		font-size: 28px;
		z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
		float: right;
	}
	#menu-button a{
		color:#06602e;/*green*/
		text-decoration: none;
		padding: 15px 20px;
		float: right;
	}
	#menu-button a:hover{
		color:#fff;
	}
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #333;
		z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
		overflow:auto;
	}
	nav.mobile h3 { /* Menu header styles */
		position: relative;
		padding: 12px 10px;
		color: #fff;
		font-size: 1.2em;
		font-weight: 400;
		border-bottom: 4px solid #222;
	}
	nav.mobile .menu-toggle { /* Menu close button */
		position: absolute;
		top: 12px;
		right: 10px;
		display: inline-block;
		padding: 6px 9px 5px;
		font-family: Arial, sans-serif;
		line-height: 1;
		background: #222;
		color: #999;
		text-decoration: none;
		vertical-align: top;
	}
	nav.mobile .menu-toggle:hover {color: #fff;}
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		border-top: 1px solid #151515;
		border-bottom: 1px solid #454545;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {
		border-top: 1px solid #454545;
		border-bottom: 1px solid #151515;
	}
	nav.mobile ul li a {
		position: relative;
		display: block;
		padding: 15px 0px 15px 20px;
		color: #999;
		font-size:15px;
		text-decoration: none;
		font-weight:700;
	}
	nav.mobile ul li a:hover {background: #000; color: #fff;}
	
	nav.mobile ul li span.click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
		background:url(../siteart/arrow.png) 10px 12px no-repeat;
		background-size:55%;
		position:relative;
		display:block;
		float:right;
		margin:-44px 0 0 0;
		cursor:pointer;
		z-index: 12399994;
		width:44px;
		height:44px;
		-webkit-transition:background-size .3s ease-in-out;
		-moz-transition:background-size .3s ease-in-out;
		transition:background-size .3s ease-in-out;
	}
	nav.mobile ul li span.click:hover{background-size:60%;}
	
	nav.mobile ul li ul li a {
		color:#ccc;
		background:#575757; 

	}
}
@media screen and (max-width: 850px) {
	
	
}
@media screen and (max-width: 800px) {
	
}
@media screen and (max-width: 768px) {
	
	
}
	
@media screen and (max-width: 570px) {
	
}
	

@media screen and (max-width: 480px) {

}