/*  NAVIGATION
------------------------------------------------*/
#menu-button {
	display: none;
}

nav.mobile {
	display: none;
}

nav.primary {
	padding: 0;
	margin: 0;
	height: 40px;
	width: 100%;
	background: #ed1c24;
	z-index: 9999;
	margin-bottom: 20px;
}

nav.primary ul {
	/*max-width:1250px;*/
	width: 96%;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}

nav.primary ul li {
	padding: 0;
	z-index: 9999;
	list-style-type: none;
	display: inline-block;
	*zoom: 1;
	*display: inline;
	vertical-align: middle;
	position: relative;
}



nav.primary ul li:hover,
nav.primary ul li:focus,
nav.primary ul li:active {
	color: #fff;
}

nav.primary ul li:last-child {}

nav.primary ul li a {
	font-family: 'Montserrat', sans-serif;
	font-weight: normal;
	display: block;
	color: #fff;
	font-size: 15px;
	line-height: 15px;
	text-decoration: none;
	padding: 13px 12px 11px;
	margin: 0;
	text-transform: uppercase;
	-webkit-transition: .5s ease-in;
	-moz-transition: .5s ease-in;
	-o-transition: .5s ease-in;
	transition: .5s ease-in;
}

nav.primary ul li a:hover {
	color: #ed1c24;
	background: #000;

}


/*  SUB NAV
------------------------------------------------*/
nav.primary ul li li a:link,
nav.primary ul li li a:visited {
	font-size: 14px;
	line-height: 14px;
	color: #fff;
	background: hsl(0deg 0% 24%);
	width: 250px;
	border-right:
		none;
	padding: 10px 10px 10px 20px;
	border-left:
		none;
	border-bottom: #fff solid 1px;
	text-align:
		left;
}

nav.primary ul li li a:hover,
nav.primary ul li li a:active {
	background: #000;
	color: #ed1c24;
}


/*  OPTIONAL SUB-LEVEL LINKS
------------------------------------------------*/
nav.primary ul li li:last-child {
	border-right: 2px solid #fff;
}

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: 99999;
}

nav.primary ul ul li {
	float: none;
	position: relative;
	margin: 0;
	border: none;
}

nav.primary ul ul li:last-child {
	border: none;
}

/*===================== 
	Responsive styles 
=======================*/
@media screen and (max-width: 1480px) {
	nav.primary ul li a {
		font-size: 14px;
		padding: 13px 8px 11px;
	}

	nav.primary ul li li a:link,
	nav.primary ul li li a:visited {
		font-size: 13px;
		line-height: 13px;
		padding: 10px;
		width: 230px;
	}
}

@media screen and (max-width: 1320px) {
	nav.primary ul li a {
		font-size: 13px;
		padding: 13px 4px 11px;
	}
}

@media screen and (max-width: 1200px) {
	nav.primary {
		display: none;
	}

	#menu-button {
		/* initially will need to be hidden */
		display: block;
		font-size: 28px;
		width: 90px;
		position: relative;
		z-index: 400;
		/* needs to be lower than nav.mobile, adjust as needed */
		padding: 0 0 3px 0;
		margin-bottom: 10px;
		background: #ed1c24;
		width: 100%;
	}

	#menu-button a {
		color: #fff;
		text-decoration: none;
		padding: 0 0 0 .8em;
	}

	nav.mobile {
		display: block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #333333;
		z-index: 10000;
		/* 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: 400;
	}

	nav.mobile .menu-toggle {
		/* Menu close button */
		position: absolute;
		top: 12px;
		right: 10px;
		display: inline-block;
		*zoom: 1;
		*display: inline;
		padding: 6px 9px 5px;
		font-family: 'droid_sansregular';
		font-weight: bold;
		line-height: 1;
		background: #fff;
		color: #333333;
		text-decoration: none;
		vertical-align: top;
	}

	nav.mobile .menu-toggle:hover {
		color: #ed1c24;
	}

	.menu-toggle span {
		font-size: 18px !important;
	}

	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;
		margin: 0;
		padding: 0;
	}

	nav.mobile ul li {
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;
	}

	nav.mobile ul li a {
		position: relative;
		display: block;
		padding: 15px 0px 15px 20px;
		color: #fff;
		font-size: 13px;
		text-decoration: none;
	}

	nav.mobile ul li a:hover {
		background: #ed1c24;
		color: #fff;
	}

	nav.mobile ul li a.click {
		/* dropdown menu idicator arrow be sure to include this image with your image files */
		background-color: #333;
		position: relative;
	}

	nav.mobile ul a.click:hover {
		background-color: #ed1c24;
		color: #fff;
	}

	.arrow {
		position: absolute;
		top: 23%;
		right: 5%;
	}

	ul.list li a {
		padding-left: 20px !important;
		background: #fff;
		color: #ed1c24 !important;
		border-top: 1px solid #ed1c24;
		border-bottom: 1px solid #ed1c24;
	}

	ul.list li a:hover {
		background: #ed1c24 !important;
		color: #fff !important;
	}
}