/*  NAVIGATION
------------------------------------------------*/ 
/* Colors

Red: #ac0300
Black: #000
White: #fff
Gray: #666666

*/

#menu-button{display: none;}
nav.mobile {display:none;}

nav.primary {
	padding:38px 0 0 0;
	margin:0;
	z-index:700; 
	float:right;
	text-align:right
	}

nav.primary	 ul {
	margin:0 auto;
	padding:0;
	}

nav.primary ul li {
	margin:0;
	text-align:right;
	paddding:0;
	z-index:9999;
	list-style-type:none;	
	display: inline-block;
	position: relative;

	}
				
nav.primary ul li a {
   	font-family: 'Montserrat', sans-serif;
	display:block;
	color:#000;
	font-weight:200;
	font-size:17px;
	line-height:18px;
	text-decoration:none;
	padding:10px 0 10px 18px;
	margin:0;
	transition:color .2s ease-in-out; -moz-transition:color .5s ease-in-out; -webkit-transition:color .5s ease-in-out;
	}	

nav.primary ul li a:hover {
	border-bottom:1px solid #ac0300;
	}

/*  SUB NAV
------------------------------------------------*/
nav.primary ul li li a:link, nav.primary ul li li a:visited{
	font-size: 12px;
	line-height:14px;	
	color:#000;
	background: #fff; 
	width: 310px;
	border-right:none;
	border-left:none;
	border-bottom: #ccc solid 1px;
	}

nav.primary ul li li a:hover,nav.primary ul li li a:active {
	background:#ac0300;
	color:#fff;
	}

/*  OPTIONAL SUB-LEVEL LINKS
------------------------------------------------*/
nav.primary ul li li:last-child  {
	}

nav.primary ul li li:last-child a {
	border-bottom:none;
	}

/*  NAV DROPDOWNS
------------------------------------------------*/
nav.primary ul ul {
    display: none;
    position: absolute; 
	}
  
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
	}
  
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 500;
	}
  
nav.primary ul ul li {
    float: none; 
    position: relative;
    margin:0;
	}

/*===================== 
	Responsive styles 
=======================*/
@media screen and (max-width:1300px) {
nav.primary ul li a {font-size:14px; padding:10px 7px;}
}

@media screen and (max-width:1025px) {
	nav.primary{display:none;}
	
	#menu-button{ /* initially will need to be hidden */
		display: block;
		font-size: 20px;
		width:100px;
		position: relative;
		z-index: 500;/* needs to be lower than nav.mobile, adjust as needed */
		padding:0 0;
		width:10%;
		margin:0px 45px 8px 0;
		right:0;
		float:right;
		top:37px
		}
	#menu-button a{
		color:#000;
		text-decoration: none;
		padding:0 0 0 0;
		}
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #282828;
		z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
		overflow:auto;
		z-index:9999999999999999999999999999999999999999999;
		}
	nav.mobile h3 { /* Menu header styles */
		position: relative;
		padding: 12px 10px;
		color: #fff;
		font-size: 1.2em;
		font-weight: 400;
		}
	nav.mobile .menu-toggle { /* Menu close button */
		position: absolute;
		top: 12px;
		right: 10px;
		display: inline-block;
		padding: 6px 9px 5px;
		font-family: 'Montserrat', sans-serif;
		font-weight: bold;
		line-height: 1;
		background: #4f4f4f;
		color: #999;
		text-decoration: none;
		vertical-align: top;
		}
	nav.mobile .menu-toggle:hover {color: #fff;}
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		border-top: 1px solid #4F4F4F;
		border-bottom: 1px solid #4F4F4F;
		margin:0;
		padding:0;
		}
	nav.mobile ul li {
		border-top: 1px solid #4F4F4F;
		border-bottom: 1px solid #4F4F4F;
		}
	nav.mobile ul li a {
		position: relative;
		display: block;
		padding: 15px 0px 15px 20px;
		color: #999;
		font-size:15px;
		text-decoration: none;
		}
	nav.mobile ul li a:hover {background: #ac0300; color: #fff;}
	
	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%;
		}
}


