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

#colorNav {
	width: 100%;
	display: block;
	color: #E1E1E1;
	position: static;
}

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

}

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

}

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

}

#colorNav li ul {
	position: absolute;
	list-style: none;
	text-align: left;
	width: 100%;
	bottom: -2px;
	background-color: #AAAAAA;
	padding: 2px;
	
	/* 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: #AAAAAA;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #E1E1E1;
	display: block;
	width: 100%;
}

#colorNav li ul li a {
	padding: 12px;
	color: #fff !important;
	text-decoration: none !important;
	display: block;
}


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

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



/* transition animation on hover */

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