/*
Header is relative so z-index: 1 guarantees always displayed on top
*/
#header {
	background-color: #3b5998;
	/*padding: 10px;*/
	text-decoration: none;
	position: fixed;
	width: 100%;
	z-index: 1;
	-webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.4);
	box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.4);
}

/*
using background color is important to cover the menu
position absolute isset to cover the whole viewport
*/
#content {
	position: relative;
	width: auto;
	/*-webkit-box-shadow: -10px 0px 9px 0px rgba(0, 0, 0, 0.4);
	box-shadow: -10px 0px 9px 0px rgba(0, 0, 0, 0.4);*/
}

@media only screen and (max-width: 991px) {
	#partner-nav {
		display: none;
	}
}

/*
The navigation container in the background
*/
#partner-nav-mobile {
	opacity: 0;
	left: -75%;
	top: 0px;
	position: fixed;
	z-index: 9999;
	width: 70%;
	height: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow-x: hidden;
	overflow-y: auto;
	background: #3e3c3d;
	/*-webkit-box-shadow: 9px 0px 9px -10px rgba(0, 0, 0, 0.4);
	box-shadow: 9px 0px 9px -10px rgba(0, 0, 0, 0.4);*/
	-webkit-box-shadow: 5px 0px 8px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow:    5px 0px 8px 0px rgba(0, 0, 0, 0.75);
	box-shadow:         5px 0px 8px 0px rgba(0, 0, 0, 0.75);
	border-right: 1px solid #494748;
}

/*
Style the navigation menu
*/
#partner-nav-mobile ul {
	list-style: none;
	margin: 0;
	width: 100%;
	padding: 0;
}

#partner-nav-mobile li {
	position: relative;
	font-size: 1em;
	font-weight: bold;
	border-bottom: 1px solid #222222;
	border-top: 1px solid #444444;
}

#partner-nav-mobile li a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 15px;
}
#partner-nav-mobile li a:hover {
	background-color: #222;
}

/*
The Layer that will be layed over the content
so that the content is unclickable while menu is shown
*/
#contentLayer {
	cursor: pointer;
	display: none;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 30%;
	z-index: 9999;
	/*background-color: black;
	opacity: 0.4;*/
}