@charset "utf-8";

	/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    /*background-color: #4b543b;*/
    background-color: #24206f;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    padding:0;
    margin:0;
    list-style: none;
    position: relative;
    }

/* Positioning the navigation items inline */
nav ul li {
    margin: 0px -7px 0 0;
    display:inline-block;
    /*background-color: #4b543b;*/
    background-color: #24206f;
    }

/* Styling the links */
nav a{
    display:block;
    padding:0 10px;
    color: #dce2aa;
    font-size:15px;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    line-height: 30px;
    text-decoration:none;
}

/* Background color change on Hover */
nav a:hover {
    /*background-color: #24206f;*/
	background-color: #4b543b;    
	color: #FFFFFF;
	
}
	
		/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display:inherit;
}

/* First Tier Dropdown */
nav ul ul li {
    min-width:170px;
    display:list-item;
    position: relative;
}

/* Change ' +' in order to change the Dropdown symbol */
li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }

.navcontainer {
	z-index: 99;
	position: sticky;
	top: 0;
	display: grid;
    /*background-color: #4b543b;*/
    background-color: #24206f;
    grid-template-columns: 1fr minmax(320px, 750px) 1fr;
}

.navcontainer2 {
	text-align: left;
}
