﻿/*Strip the ul of padding and list styling*/
.menu-wrap {
	width: 100%;
}
.menu-wrap ul {
	list-style-type: none;
	margin:0 !important;
	padding:0;
}
/*Create a horizontal list with spacing*/
.menu-wrap li {
	display: inline-block;
	float: left;
	margin: 0px !important;
	z-index: 1000;
}
/*Style for menu links*/
.menu-wrap li a {
	display: block;
	min-width: 50px;
	height: 50px;
	padding: 0 1.2rem 0 0;
	text-align: left;
	line-height: 50px;
	font-family: 'FrutigerLTProBold';
	font-size: 1.6rem;
	color: #0f3762;
	font-weight: 100;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}
/*Hover state for top level links*/
.menu-wrap li:hover a {
	color: #d75624; 
}
/*Style for dropdown links*/
.menu-wrap li:hover ul a {
	font-size: 1.5rem;
	color: #d75624;
	background: #FFF;
	text-align: left;
	height: 50px;
	line-height: 50px;
	text-transform: uppercase;
}
/*Hover state for dropdown links*/
.menu-wrap li:hover ul a:hover {
	color: #ea9f20;
}
/*Hide dropdown links until they are needed*/
.menu-wrap li ul {
	display: none;
	right: auto;
}
/*Make dropdown links vertical*/
.menu-wrap li ul li {
	display: block;
	float: none;
}
/*align right last dropdown */
.menu-wrap ul li:last-child ul {
	right: 0px;
}
/*Prevent text wrapping*/
.menu-wrap li ul li a {
	width: auto;
	min-width: 200px;
	padding: 0 20px;
}
/*Display the dropdown on hover*/
.menu-wrap ul li a:hover + .hidden, .hidden:hover {
	display: block;
}
/*Style 'show menu' label button and hide it by default*/
.show-menu {
	position: absolute;
	right: .8em;
    top: 7px;
    display: none;
    cursor: pointer;
    z-index: 10000;
}
.bt, .bm, .bb {
    width: 30px;
    height: 5px;
    background-color: #0f3762;
    margin: 6px 0;
    transition: 0.4s;
}
.ham .bt {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}
.ham .bm {opacity: 0;}
.ham .bb {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}
/*Hide checkbox*/
#show-menu {
    display: none !important;
}
/*Show menu when invisible checkbox is checked*/
#show-menu:checked ~ #menu {
    display: block;
}
/*Responsive Styles*/
@media screen and (min-width : 1450px) {
	.menu-wrap li a {
		min-width: 60px;
		font-size: 2.0rem;
		padding: 0 2.8rem 0 0;
	}
}
@media screen and (min-width : 1250px) {
	.menu-wrap li a {
		min-width: 50px;
		font-size: 1.7rem;
		padding: 0 2.0rem 0 0;
	}
}
@media screen and (max-width : 1080px) {
	/*Make dropdown links appear inline*/
	.menu-wrap ul {
		width: 100%;
		position: absolute;
		display: none;
		top: 80px;
		left: 0;
		z-index: 10000;
	}
	/*Create vertical spacing*/
	.menu-wrap li {
		margin-bottom: 1px;
		background: #FFF;
	}
	/*Make all menu links full width*/
	.menu-wrap ul li, li a {
		width: 100%;
	}
	.menu-wrap li a {
		height: 40px;
		padding: 0px;
		font-size: 1.4rem;
		text-align: center;
	}
	.menu-wrap ul li ul {
		position: static;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display: inline-block;
	}
	/*Show sub pages on mobiles*/
	.hidden {
		display: block !important;
	}
}
@media screen and (max-width : 850px) {
	.show-menu {
	    top: 5px;
	}
	.menu-wrap ul {
		top: 100px;
	}
}
@media screen and (max-width : 650px) {
	.show-menu {
	    top: 60px;
	}
	.menu-wrap ul {
		top: 150px;
	}
}
@media screen and (max-width : 450px) {
	.show-menu {
	    top: 45px;
	}
	.menu-wrap ul {
		top: 130px;
	}
}