﻿#menu-button{ /* hiding responsive menu button */
	display: none;
	}
nav.mobile { /* hiding responsive menu */
	display:none;
}

/***** Start of primary nav ******/
nav.primary {
	position:relative; margin:0; padding:0;
	}
	nav.primary ul {
		display:flex; flex-flow:row wrap; align-items: center; justify-content: flex-end; margin:0; padding:0;
		}
		nav.primary ul li {
				margin:0; padding:0; list-style-type:none;
			}

			nav.primary ul li a {
				display:block; padding: 20px; font-size: 16px; line-height: 16px; font-weight: bold; text-decoration:none; text-align: center; 	
				color:#fff; font-family: "source-sans-3", sans-serif; text-transform: uppercase; font-style: normal;
				}	
			nav.primary ul > li:last-child a {padding-right: 0px;}
			nav.primary ul li a:hover {
					color: #e41a35; transition: .5s;
				}
			/*nav.primary ul li li a { 
					padding:12px 20px;
					text-transform:none;
					font-weight:500;
					font-size:15px;
					color:#fff;
			}
			nav.primary ul li li a:hover {
			background:#00AB1E;
					color:#000!important;
			}
			
			.manulogos img {
				width:100%;
			}*/
			
			/*nav.primary ul li li.manulogo a {
				width:27%;
				float:left;
				margin:2%;
				padding:1%;
			}*/
			
			

  
/* 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;
	background:#161616;
	padding-top:10px;
	margin-left:20px;
}

nav.primary ul ul.manulogos {
    display: none;
    position: absolute; 
    z-index:999999;
	background:#eeeeee;
	padding-top:10px;
	margin-left:20px;
	width:500px;
	right:15%;
}
  
nav.primary ul ul ul {
    position: absolute; 
    right: 100%;
    top:0;
	margin:0;
	padding:0;
	width:155px; 
}
  
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px;
}
  
nav.primary ul ul li {
    float: none; 
    position: relative;
    margin:0;
}



@media screen and (max-width: 1465px) {
	
	nav.primary ul ul.manulogos {
		right:10%;
	}
	
}

@media screen and (max-width: 1070px) {
	
	nav.primary ul ul.manulogos {
		width:450px;
	}
	
}

/******** End of primary Nav ***************/



@media screen and (max-width: 1050px)  {
nav.primary{
	display:none;
}

/*==============================
	Mobile Nav Styles			
================================*/	

#menu-button {
    display: block;
    font-size: 32px;
    position: relative;;
    z-index: 999;
    padding: 15px 0;
    width:100%;
	box-sizing:border-box;
	text-align:center;
}
	#menu-button a {
		display:block; font-size:16px; line-height: 1; font-weight: bold; text-decoration:none; text-align: center; 	
		color:#fff; text-transform: uppercase; font-family: "source-sans-3", sans-serif;
	  }
	
nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #222;
	z-index: 999999; /* 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: 600;
	font-family: "cinzel", sans-serif;
	background: #161616;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 25px;
}
nav.mobile .menu-toggle { /* Menu close button */
	position: absolute;
	top:8px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	line-height: 1;
	background: #161616;
	color: #fff;
	text-decoration: none;
	vertical-align: top;
}
nav.mobile ul {
	list-style: none;
	font-weight: 300;
	border: 1px solid #111;
	margin: 0px 12px;
	padding: 4px 10px;
	background: #212121;
}
nav.mobile ul li {
	padding: 15px 5px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
nav.mobile ul > li:last-child {
	border-bottom: none;
}
nav.mobile ul li a {
	position: relative;
	display: block;
	color: #f3f3f3;
	text-decoration: none;
	font-size:17px;
	text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.7);
	font-weight:bold;
	font-family: "source-sans-3", sans-serif;
}

.manulogo img {
	width:100%;
}

nav.mobile ul li.manulogo {
	border:none;
}

nav.mobile ul li li.manulogo a {
	width:44%;
	float:left;
	margin:2%;
	padding:1%;
	background:#eee;
}

nav.mobile ul li li.manulogo a:hover {
	background:#fff;
}

nav.mobile ul li li a { /* appearance of the sub-level links */
	background: #444;
	position: relative;
	display: block;
	padding: 8px 10px 8px 15px;
	color: #ccc;
	text-decoration: none;
	font-size:14px;
	text-transform:none;
	font-weight:400;
}
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: 780px)  {





}

@media screen and (max-width: 360px)  {

}

