* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box
}

:after,
:before {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box
}

body {
	padding: 0 !important;
	margin: 0 !important;
	direction: ltr;
	font-size: 14px;
	line-height: 1.42857143;
	background-color: #ffffff;
	color: #333;
}

#anav {
	display: block;
	position: absolute;
	height:auto;
	top:0;
	bottom:0;
	left:0;
	width: 300px;
	background-color: #ffffff;
	box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 3px 0px, rgba(0, 0, 0, 0.24) 0px 1px 2px 0px
}
#main-container {
	display: grid;
	height: 100vh !important;
	width: 100vw !important;
	grid-template-columns: auto;
	grid-template-rows: 60px 60px 1fr;
	grid-template-areas:
		"main-header-top"
		"main-header-bottom"
		"main";
}

#main {
	grid-area: main;
	position: relative;
}

#main-content-wrapper {
	position: absolute;
	left: 300px;
	top: 0;
	height: 100%;
	width: calc(100% - 300px);
	overflow: auto;
	border-left: 1px solid #DCDCDC;
}

#main.collapsed #main-content-wrapper {
	left: 70px;
	width: calc(100% - 70px);
}

#main-content-wrapper #main-content.restricted {
	padding: 20px;
	height: 100%;
	max-width: 900px;
	overflow: auto;
}

#main-content-wrapper #main-content.wide {
	padding: 20px;
	height: 100%;
	overflow:auto;
}