/*NAV STYLES */
header {
	display: block;
	position: relative;
	width: 100%;
	top: 0;
	z-index: 100;
	background: transparent;
}
header .logo-mobile {
	display: none;
	visibility: hidden;
}
header .logo {
	width: 200px;
	height: auto;
	padding: 0 2.0em 0 1.0em;
	display: inherit;
	visibility: visible;
	margin-top: -20px;
	float: left;
}
#menu {
	width: 100%;
	background-color: transparent;
}
/*Strip the ul of padding and list styling*/
header ul {
	color: #b2b2b2;
	list-style-type: square;
	margin: 0;
	padding: 0;
	position: absolute;
}
/*Create a horizontal list with spacing*/
header li {
	display: inline-block;
	float: left;
	margin-right: 0;
}
/*Style for menu links*/
header li a {
	display: block;
	/*min-width: 140px;*/
    min-width: 75px;
	text-align: center;
	line-height: 60px;
	font-family: 'Teko', sans-serif;
	font-size: 1.6em;
	font-weight: 500;
	text-transform: uppercase;
	height: auto;
	color: #FFFFFF;
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 1);
	text-decoration: none;
	padding: 0 30px 0 30px;
	background-color: transparent;
}
header li:nth-of-type(5) a {
    background-color: #F7D100;
    color: red;
    text-shadow: none;
}
/*Hover state for top level links*/
header li:hover a {
	background: rgb(240, 240, 240);
	background: rgba(240, 240, 240, .9);
	color: #002E6D;
	text-shadow: none;
}
/*Style for dropdown links*/
header li:hover ul a {
	background: none;
	font-family: 'Titillium Web', sans-serif;
	font-size: 1.0em;
	font-weight: 600;
	color: #282828;
	line-height: 35px;
	width: 100%;
	text-align: left;
	display: inline;
	text-shadow: none;
}
/*Hover state for dropdown links*/
header li:hover ul a:hover {
	color: #002E6D;
	background-color: none;
}
/*Hide dropdown links until they are needed*/
header li ul {
	display: none;
}
/*Display the dropdown on hover*/
header ul li a:hover + .hidden, .hidden:hover {
	display: block;
	position: absolute;
	left: 0;
	z-index: 9999;
}
.drop-content {
	padding: 1.6em;
}
.drop-content h2 {
	font-family: 'Teko', sans-serif;
	font-size: 2.2em !important;
	font-weight: 500;
	text-transform: uppercase;
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
	padding: 0;
	margin: 0;
}
.drop-content p {
	color: #282828;
	font-size: 0.8em;
	line-height: 160%;
	text-shadow: none;
}
.bullet {
	padding: 0 3px 3px 0;
}
/*Make dropdown links horizontal*/
header li ul li {
	display: block;
	float: left;
	width: 33%;
}
header li:hover ul {
	width: 100%;
	background: rgb(240, 240, 240);
	background: rgba(240, 240, 240, .9);
}
/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-size: 0.9em;
	text-decoration: none;
	color: #fff;
	text-align: center;
	display: none;
	background-color: transparent;
	padding: 0;
	height: 0;
}
/*Hide checkbox*/
header input[type=checkbox] {
	display: none;
	-webkit-appearance: none;
}
/*Show menu when invisible checkbox is checked*/
header input[type=checkbox]:checked ~ #menu {
	display: block;
}

/*Responsive Styles*/

@media screen and (max-width: 1080px) {
header {
	background: #002E6D;
	padding-bottom: 0;
	position: fixed;
	top: 0;
}
/*Hide Navigation Intro for Mobile*/
.hidden li:nth-of-type(1) {
	display: none;
	visibility: hidden;
}
/*Show Mobile Logo and Sandwich Bar*/
header .logo-mobile {
	width: 130px;
	height: auto;
	float: none;
	display: inline;
	visibility: visible;
	padding: 1.0em 0 0.5em 2.0em;
}
header .logo {
	display: none;
	visibility: hidden;
}
/*Make dropdown links appear inline*/
header ul {
	position: static;
	display: none;
}
/*Create vertical spacing*/
header li {
	margin-bottom: 1px;
}
/*Make all menu links full width*/
header ul li, li a a:hover {
	width: 94%;
	text-align: left;
	padding-left: 1.0em;
}
header ul li a:hover + .hidden, .hidden:hover {
	display: block;
	position: relative;
	left: inherit;
	z-index: inherit;
}
/*Make dropdown links vertical*/
header li ul li {
	display: block;
	float: none;
	width: 94%;
}
/*Style for menu links*/
header li a {
	text-shadow: none;
	text-decoration: none;
	background-color: none;
	text-align: left;
}
/*Hover state for top level links*/
header li:hover a {
	background: transparent;
	color: #DBDBDB;
	text-shadow: none;
}
/*Style for dropdown links*/
header li a {
	padding: 0 0 0 20px;
}
header li:hover ul a {
	background: none;
	color: #002E6D;
	line-height: 200%;
	width: 100%;
	text-align: left;
	display: inline;
	padding: 0;
	margin: 0;
}
.drop-content {
	padding: 0;
}
/*Display 'show menu' link*/
.show-menu {
	display: block;
	height: auto;
	cursor: pointer;
	float: right;
	padding: 30px 20px 0 0;
}
.show-menu i {
	font-size: 2.6em;
}
}

@media screen and (max-width: 760px) {
header {
	top: 0 !important;
	position: absolute;
}
}
