
    
	

	/* Navigation*/
	body > header > nav {
		border-top: 1px solid #f7f9fa;
		background-color: #F7F9FA;
        height:calc(100vh - 95px);
        position:absolute;
        top:95px;
		width: inherit;
        z-index:99;
		overflow-y: scroll;
		scrollbar-color: #E2E6E8 #F7F9FA ;
		scrollbar-width: thin;
	}

	body > header > nav::-webkit-scrollbar {
		width: 5px;
		height: 8px;
		background-color: #F7F9FA; 
	  }

	body > header > nav::-webkit-scrollbar-thumb {
		background: #E2E6E8;
	}

	body > header > nav a, body > header > nav a:hover, body > header > nav a:visited
	{
		color:#46485c;
		text-decoration: none;
	}

    body > header > nav ul
	{
		list-style-type: none;
        margin-bottom: 40px;
	}

    body > header > nav > ul > li
	{
        font-size:18px;
		display:block;
		margin: 30px 0 0 75px;
	}

    body > header > nav > ul > li > span
	{
        width: 30px;
        display: inline-block;
    }
	body > header > nav > ul > li.inactive > span:before
	{
		content:"\0025B6";
	}

	body > header > nav > ul > li.active > span:before
	{
		content : "\0025BC";
	}

	body > header > nav > ul > li > a
	{
		text-transform: uppercase;
		font-weight:bold;
        width: calc(100% - 30px);
        height: 40px;
        line-height: 40px;
        display: inline-block;
	}

	body > header > nav > ul > li.admin > a
	{
		color:green;
	}

	
	body > header > nav > ul > li.active > ul
	{
		display:block;
	}

    body > header > nav > ul > li.inactive > ul
	{
		display:none;
	}

	body > header > nav > ul > li > ul > li
	{
		height: 40px;
		line-height: 40px;
        display:block;
        width:100%;
	}
    body > header > nav > ul > li > ul > li > a
	{
        height: inherit;
        line-height: inherit;
        display: inline-block;
        width:inherit;
		text-indent: 30px;
    }

    body > header > nav > ul > li > ul > li a:hover, body > header > nav > ul > li > ul > li a.active
	{
		background-color: #D5DAE0;
	}
	
	@media screen and (min-width: 1024px) {
		
		body > header > nav {
			position:static;
			height:calc(100% - 235px);
		}
        body > header > nav > ul > li
        {
            font-size:15px;
            margin: 30px 0 0 30px;
        }
	}