﻿
#menu-button{ /* hiding responsive menu button */
	display: none;
}
nav.mobile { /* hiding responsive menu */
	display:none;
}

/***** Start of primary nav ******/
nav.primary {
	width:100%;
	float:left;
	font-family: 'Barlow', sans-serif;
	text-align: right;
	background: #0041b9;
	border-top: 3.5px solid #000;
	border-bottom: 3.5px solid #000;
	margin-top: 14px;
}
nav.primary .wrap{width: 97%;}
nav.primary ul {
	float:right;
	text-align: right;
}
nav.primary ul li {
	float:left;
	height: 53px;
}
nav.primary ul li a {
	line-height: 20px;
	display:block;
	text-decoration:none;
	color:#fff;
	font-size:17px;
	text-transform: uppercase;
	font-weight: 400;
	text-align: right;
	letter-spacing: 2px;
	padding:15px 20px 5px 20px
}	
nav.primary ul li:last-child {padding-right: 0 !important;}


.ie8 nav.primary ul li a, .ie7 nav.primary ul li a {
	padding:10px 32px;
}

nav.primary ul li:hover {
	background: #e20000; 
}

nav.primary ul li li { /* appearance of the sub-level links */
	border:0;
}
nav.primary ul li li a { /* appearance of the sub-level links */
	background:#a8a9ad;
	padding:10px 20px;
	font-size:15px;
	text-align: left;
	width:240px;
}
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; 
	z-index:999999999999;
	width:auto;
	
}

nav.primary ul ul ul {
	position: absolute; 
	left: 100%;
	top:0; 
}

nav.primary ul li:hover > ul {  
	display: block;
	line-height:18px;
}

nav.primary ul ul li {
	float: none; 
	position: relative;
	margin:0;
	padding: 0;
}


@media screen and (max-width: 1600px)  {
	nav.primary .wrap{widows: 99%;}
nav.primary ul li a {padding:15px 8px 5px 8px; letter-spacing: 1.5px; font-size:14px;}	
}

@media screen and (max-width: 1370px)  {

nav.primary{
	display:none;
}

/*==============================
Mobile Nav Styles			
================================*/	
#menu-button{ /* initially will need to be hidden */
	display: block;
	font-size: 28px;
	position: relative;
	z-index: 999;/* needs to be lower than nav.mobile, adjust as needed */
	padding:10px 0 15px 0;
	width:100%;
	float:left;
	background: #0041b9;
	text-align: center;
}
#menu-button a{
	color:#fff;
	text-decoration: none;
}
#menu-button a:hover{
	color:#002b79;
}
#menu-button h4{display: inline-block;vertical-align: middle; padding: 0; margin-top: -6px; margin-left: 10px;}	
	
	
nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #333;
	z-index: 999999999999999999; /* 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: 22px;
	border-bottom: 4px solid #222;
	text-align: left;
	font-weight: 700;
	font-style: italic;
	text-transform: uppercase;
	font-family: 'Barlow', sans-serif;
	letter-spacing: 1px;
}
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: #002b79;
}
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: 8px 10px;
	color: #999;
	text-decoration: none;
	font-size:17px;
	text-align: left;
	font-weight: 400;
	text-transform: uppercase;
	font-family: 'Barlow', sans-serif;
	letter-spacing: .5px;
}
nav.mobile ul li a:hover {
	background: #fff;
	color: #000;
}
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;
}
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%;
}
}
