/*Strip the ul of padding and list styling*/
nav ul {
	list-style-type:none;
	margin:0;
	padding:0;text-align: right;
	position: absolute;top:-46px;left: 0;
}

/*Create a horizontal list with spacing*/
nav li {
	display:inline-block;
	float: left;
	margin-left: -10px;
}

/*Style for menu links*/
nav li a {
	display:block;
	min-width:150px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: 'Heebo', sans-serif;
	font-style: normal;font-weight: 500;
	text-transform: uppercase;
	font-size: 10pt !important;letter-spacing: .5pt;
	color: #0e5fc2;
	text-decoration: none;
}

/*Hover state for top level links*/
nav li:hover a {
	color: #335b8c;
}

/*Style for dropdown links*/
nav li:hover ul a {
	color: #335b8c;
	text-decoration: none;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
nav li:hover ul a:hover {
	background: #335b8c;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
nav li ul {
	display: none;
}

/*Make dropdown links vertical*/
nav li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
nav li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
nav ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "anivers", sans-serif;
	font-style: normal;font-weight: bold;
	text-transform: uppercase;
	font-size: 1em;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	display: none;width: 100%;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}
/*Responsive Styles*/
/* ******************************************
	Media Queries for screen wider than 61.625em (986px) 
****************************************** */
@media screen and (min-width: 61.625em) {
nav ul {
	list-style-type:none;
	padding:.03em 0;margin: 0 1.8em 0 0;
	position: static;
}
}

/*Responsive Styles*/
/* ******************************************
	Media Queries for screen wider than 56.25em (900px) 
****************************************** */
@media screen and (min-width: 56.25em) {
nav {
	width: 100%;margin: 0;position: static;
	background: #fff;height: 64px;
	border-top:8px solid #751502;border-bottom: 4px solid #751502;
}

nav ul {
	list-style-type:none;
	padding:.03em 0;margin: 0 .6em 0 0;
	position: static;
}
nav li {
	float: none;
}
nav li a {
	font-size: 1em;
}
}
/* ******************************************
	Media Queries for screen width less than 56.25em (900px)
****************************************** */
@media screen and (max-width: 56.25em) {
nav {
	width: 100%;margin: 0 auto;position: static;
	background: #751502;padding: .5em 0;
}
nav ul {
	list-style-type:none;
	padding:.03em 0;margin: 0 .6em 0 0;
	position: static;
}
nav li {
	background-color: transparent;
}
nav li a {
	font-size: 1em;color: #ffffff;line-height: 1em;
}
}
/* ******************************************
	Media Queries for screen wider less than 41.875em (670px)
****************************************** */
@media screen and (max-width : 41.875em) {
	/*Make dropdown links appear inline*/
	.nav {
		float: left;width: 100%;
		position: relative;top:0;margin:0 auto 0;padding: 0;
		background: #751502;z-index: 2;
	}
	nav ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	nav ul {
			margin-top:2.75em !important;margin-left:0;margin-right: 0;
		}
	nav li {
		float: none;margin:0 auto 0;padding: 0;
	}
	/*Make all menu links full width*/
	nav ul li, li a {
		width: 100%;text-align: center;line-height: 1;
		background: #751502;margin:0 auto 0;padding: 0;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
}