.appNav {
	display:block;
	font-size: 1.45em;
	line-height: 2;
	color: white;
	background-color: #052346;
	position: absolute;
	top: 0;
	right: 0;
	width: 250px;
	padding: 10px 0 10px 10px;
	z-index: 4;
	transform: translate(100%,0);
	transition: transform 0.6s ease;
}

.appNav.open {
	transform: translate(0,0);
}

.appNav ul {
	margin: 0;
}

.appNav a {
	color: inherit;
	padding: 10px;
}

.appNavCloser {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display:none;
}

.appNavCloser.open {
	display:block;
}


.burgerButton {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 64px;
	border-radius: 0;
	background-color: #052346;
	padding: 0;
}

.burgerIcon {
	position:relative;
	display:block;
	width: 20px;
	height: 20px;
	margin: 6px auto 0 auto;
}

.burgerIcon span {
	position: relative;
	display:block;
	width: 100%;
	background-color: white;
	height: 2px;
	margin-bottom: 4px;
}


body.tb .appNav,
body.tb .burgerButton {
	display:none;
}


/* mobile only */
@media only screen and (max-width: 800px) {
	
}

/* tablet + desktop */
@media only screen and (min-width: 800px) {
	
}

/* desktop + */
@media only screen and (min-width: 1300px) {
	
}