﻿.clear{clear:both;}

/*==========
/*===================== 
	nav styles
=======================*/
#menu-button{ /* hiding responsive menu button */display: none;}
.mobile { /* hiding responsive menu */display:none;}
.navbar{ background: #000 url(../siteart/navbg.png) repeat-x;}

/***** Start of primary nav ******/
.primary {
	margin:0;
	padding:0;
	}
	.primary ul {
		margin:0 auto;
		padding:0;
		}
		.primary ul li {
			margin:0;
			padding:0;
			float:left;
			list-style-type:none;
		}

.primary ul li a {
    display: block;
    color: #fff;
    padding: 15px 13px;
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'exobold', sans-serif;
    position: relative;
    text-decoration: none;
    text-align:center;
    margin:0;
    -webkit-transition:.4s ease-in;  
    -moz-transition:.2s ease-in;  
    -o-transition:.2s ease-in;  
    transition:.2s ease-in;	
    }	
.primary ul li a:hover {
    background:#fff;
    color: #000;
    }
/* Appearance of the sub-level links */
			.primary ul li li a { 
				font-size:14px;
				line-height:14px;
				padding:10px;
				color:#fff;
				background: #181818;
				text-align:left;
				border-right:none;
				border-left:none;
				border-bottom: #303030 solid 1px;
			}
			/* Appearance of the sub-level links on hover */
			.primary ul li li a:hover { 
			}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
.primary ul ul {
    display: none;
    position: absolute; 
}
.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 100;
}
.primary ul ul li {
    float: none; 
	width: 270px;
    position: relative;
    margin:0;
	display: block;
}

@media screen and (max-width: 1330px) {
.primary{
	display:none;
}
.wrap {margin: 0;}

.nav-footer {
    color: #1b1b1b;
    position: relative;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    padding: 15px 0;
}

/*==============================
	Mobile Nav Styles			
================================*/	
    
    #menu-button{ 
		font-family: 'exobold', sans-serif;
		width: 100%;
		display: block;
		font-size: 24px;
		position: relative;
		line-height:40px; 
		z-index: 1; /* needs to be lower than nav.mobile, adjust as needed */
		background: #fff;
		text-align: center;
		box-shadow:0px 0px 3px #ccc;
	}
        #menu-button a{
            text-decoration: none;
            font-size: 25px;
            text-transform:uppercase;
            font-weight:100;
            color:#254bb6;
			cursor: pointer;
    }
  
.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;
}
.mobile h3 { /* Menu header styles */
	position: relative;
	padding: 12px 10px;
	color: #fff;
	font-size: 1.2em;
	font-weight: 400;
	border-bottom: 4px solid #222;
}
    
.mobile .menu-toggle { /* Menu close button */
	position: flex;
	margin-left: 225px;
	top: 12px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
	font-weight: bold;
	line-height: 1;
	background: #222;
	color: #999;
	cursor: pointer;
	text-decoration: none;
	vertical-align: top;
}
    
.mobile .menu-toggle:hover { /* Menu close button on hoveer */
	color: #fff;
}

.mobile ul {
	list-style: none;
	font-weight: 300;
	border-top: 1px solid #151515;
	border-bottom: 1px solid #454545;
	margin:0;
	padding:0;
}
.mobile ul li {
	border-top: 1px solid #454545;
	border-bottom: 1px solid #151515;
}
.mobile ul li a {
    font-family: 'exobold', sans-serif;
    text-align: left;
	position: relative;
	display: block;
	padding: 10px;
	color: #999;
	text-decoration: none;
    border-left:4px #333 solid;
    font-size: 15px
}
.mobile ul li a:hover {
	background:rgba(45,45,45,0.5); 
    color: #fff; 
    border-left:4px #000099 solid; /* border highlight - Change to fit match site colors */
}
.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;
}
.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;
}
.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;
}
.mobile ul li span.click:hover{background-size:60%;}
}