﻿
#menu-button{display: none;}
nav.mobile {display:none;}

/***** Start of primary nav ******/

nav.primary {float: right;}

nav.primary ul {float: right;}

	nav.primary ul li {
	float: right;
	}
	nav.primary ul li a {
		display:inline-block;
		text-decoration:none;
		font-family: 'Lato', sans-serif;
		font-size:15px;
		color:#fff;
		background: #565656; 
		padding: 50px 20px;
		margin: 1px;
		font-weight:600;
	}

	nav.primary ul li a i {
		font-size:28px;
	}
	nav.primary ul li a:hover {
		background:#d10000;
	}
	nav.primary ul li li a { /* appearance of the sub-level links */
	}
	nav.primary ul li li a:hover { /* appearance of the sub-level links on hover */
			}

  
/* 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:999999;
}
  
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
  
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px;
	color:#333333
}
  
nav.primary ul ul li {
    float: none; 
    position: relative;
    margin:0;
}


@media screen and (max-width: 1100px)  {

nav.primary{display:none;}

/*==============================
	Mobile Nav Styles			
================================*/	
#menu-button{ /* initially will need to be hidden */
	display: block;
	font-size: 32px;
	position: relative;
	z-index: 999;/* needs to be lower than nav.mobile, adjust as needed */
	width:100%;
    padding: 5px 0 7px 0;
    background:  #d10000
}
	#menu-button a{
        color:#fff;
        background: #d10000;
        padding: 0 20px;
        text-decoration: none;
        }
nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background:  #333333;
	z-index: 99999999; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}
nav.mobile h3 { /* Menu header styles */
	position: relative;
	padding: 10px;
	color: #fff;
	font-size: 2em;
    margin: 0;
    font-weight: normal;
}
nav.mobile .menu-toggle { /* Menu close button */
	position: absolute;
	top:0;
	right: 10px;
	display: inline-block;
	font-weight: bold;
	line-height: 1;
	color: #d10000;
	text-decoration: none;
	vertical-align: top;
    font-size:2em;
}
nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
	color: #fff;
}
nav.mobile ul {
	list-style: none;
	font-weight: 600;
	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: #fff;
	text-decoration: none;
}
nav.mobile ul li a:hover {
	background:  #d10000;
	color:#fff;
}
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: #333333;
	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%;
}
}