﻿
#menu-button{ /* hiding responsive menu button */
	display: none;
	}
nav.mobile { /* hiding responsive menu */
	display:none;
}



/***** Start of primary nav ******/
nav.primary {
		position:relative; 
		width:95%; 
		margin:-90px 0 0; 
		background:rgba(249,230,20,0.92);
		background:#f9e614\9;
		float:right;
		-moz-box-shadow:0px 0px 15px rgba(0, 0, 0, .8); 
		-webkit-box-shadow:0px 0px 15px rgba(0, 0, 0, .8); 
		box-shadow:0px 0px 15px rgba(0, 0, 0, .8);
		z-index:99999;
	}
	nav.primary ul {
			float:right;
		}
		nav.primary ul li {
				float:left;
			}
			nav.primary ul li a {
					padding:30px 10px;
					display:block;
					font-size:14px;
					text-decoration:none;
					color:#000;
					text-transform:uppercase;
					font-family:'museo_slab500', Helvetica, Arial, sans-serif;
				}	
			nav.primary ul li a:hover {
					color:#fff; 
					background:#000;
				}
				
				
	/***** Sticky Header ******/			
	header.sticky nav.primary {
		width:95%;
		margin:-65px 0 0;
	}

	header.sticky nav.primary ul li a {
		padding:18px 10px;
		font-size:14px;
	}
				
				
				
			nav.primary ul li li a, header.sticky nav.primary ul li li a { /* appearance of the sub-level links */
				padding:11px 15px;font-size:12px;text-decoration:none;color:#000;font-weight:normal; font-family:'museo_slab500', Helvetica, Arial, sans-serif;
			}
			nav.primary ul li li a:hover, header.sticky nav.primary ul li li a:hover { /* appearance of the sub-level links on hover */
				background:#000; color:#fff;
			}
/* Optional-use, Begin targeting styles of first and last links */
nav.primary ul li:last-child  { /* Optional-use, this targets last li */
}
nav.primary ul li:last-child a {  /* Optional-use, this targets last link */
}
nav.primary ul li:first-child a { /* Optional-use, this targets first li */
}
  
/* Optional-use, targeting styles of first and last sub-level links*/
nav.primary ul li li:last-child  {
}
nav.primary ul li li:last-child a {
}
nav.primary ul li li:first-child a {
}
/* Optional-use, End targeting styles of first and last links */
  
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
    display: none;
    position: absolute; 
    top:100%;
	border:solid #000 1px;
}

.mega {
	background:#fff;
	width:400px;
}

.mega li {
	float:left!important;
	width:200px;
}
  
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
  
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 100;
}
  
nav.primary ul ul li {
    float: none; 
    position: relative;
    margin:0;
	background:#fff;
}
/******** End of primary Nav ***************/

@media screen and (max-width:1290px){
	
	nav.primary {
		margin:-75px 0 0;
	}
	
}

@media screen and (max-width:1185px){
	
	/* nav.primary ul li a {
		padding:20px 18px;
		font-size:15px;
	} */
	
	nav.primary {
		margin:-70px 0 0;
	}
	
}

@media screen and (max-width:1105px){
	
	nav.primary ul li a {
		padding:20px 10px;
		font-size:12px;
	}
	
	header.sticky nav.primary ul li a {
		padding:18px 15px;
	}
	
	header.sticky nav.primary {
		margin:-60px 0 0;
	}
	
}


@media screen and (max-width:1025px){
nav.primary{
	display:none;
}

/*==============================
	Mobile Nav Styles			
================================*/	
#menu-button{ /* initially will need to be hidden */
	display: block;
	font-size: 28px;
	width:90px;
	position: relative;
	z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
	padding:0px 20px 10px;
	margin-top:-35px;
	}
	#menu-button a{
		 color:#000;
		 text-decoration: none;
	  }
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;
	z-index:9999999;
}
nav.mobile h3 { /* Menu header styles */
	position: relative;
	padding: 12px 10px;
	color: #f9e614;
	font-size: 1.2em;
	font-weight: 400;
	border-bottom: 4px solid #222;
	font-family:'museo_slab500', Helvetica, Arial, sans-serif;
}
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;
	font-weight: bold;
	line-height: 1;
	background: #222;
	color: #999;
	text-decoration: none;
	vertical-align: top;
}
nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
	color: #f9e614;
}
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: 10px;
	color: #999;
	text-decoration: none;
	font-family:'museo_slab500', Helvetica, Arial, sans-serif;
	font-size:16px;
}
nav.mobile ul li a:hover {
	background: #000;
	color: #f9e614;
}
nav.mobile ul li li a { /* appearance of the sub-level links */
	background: #444;
	position: relative;
	display: block;
	padding: 10px 10px 10px 15px;
	color: #ccc;
	text-decoration: none;
	font-family:'museo_slab500', Helvetica, Arial, sans-serif;
	font-size:14px;
}
nav.mobile ul li li li a { /* appearance of third level sub-level links if needed */
	background: #666;
	position: relative;
	display: block;
	padding: 10px 10px 10px 25px;
	color: #000;
	text-decoration: none;
}
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%;
}
}


@media screen and (max-width: 420px)  {
	
	#menu-button{ /* initially will need to be hidden */
		margin-top:0px;
	}
}