/*----------------------------
	The Navigation Menu
-----------------------------*/


#colorNav {
	width: 100%;
	display: block;
	background-color: #1B3D57;
}

#colorNav > ul {
	width: 100%; /* Increase when adding more menu items */
	text-align: center;

}

#colorNav > ul > li{ /* will style only the top level li */
	list-style: none;
	display: inline-block;
	position: relative;
	width: 80%;
	text-align: center;

}

#colorNav > ul > li > a {
	text-decoration: none !important;

}

#colorNav li ul {
	position: absolute;
	list-style: none;
	text-align: left;
	width: 100%;
	margin-top: 5px;
	
	
	/* This is important for the show/hide CSS animation */
	max-height: 0px;
	overflow: hidden;
	
	-webkit-transition: max-height 0.5s ease-in-out;
	-moz-transition: max-height 0.5s ease-in-out;
	transition: max-height 0.5s ease-in-out;
}

#colorNav li ul li {
	background-color: #1B3D57;
	display: block;
	width: 100%;
	
}




#colorNav li ul li:hover {
	background-color: #E1E1E1;
	color: #1B3D57;
}

#colorNav li ul li:first-child {
	position: fixed;
}



/* transition animation on hover */

#colorNav li:hover ul {
	max-height: 200px; /* Increase when adding more dropdown items */
}
