a, a:visited {
	text-decoration:none;
	outline:none;
	color:#54a6de;
}

a:hover{
	text-decoration:underline;
}

section, footer, nav{
	display: block;
}


/*----------------------------
	The Navigation Menu
-----------------------------*/

#colorNav {
  height: 100%;
}
/* Increase when adding more menu items */
#colorNav > ul{
	/* width: 450px;  */
	margin:0 auto;
  height: 76px;
}

/* will style only the top level li */
#colorNav > ul > li{ 
	list-style: none;
	/* box-shadow: 0 0 10px rgba(100, 100, 100, 0.2) inset,1px 1px 1px #CCC; */
	display: inline-block;
  height: 100%;
	min-width: 100px;
  text-align: center;
	margin-right: 35px;
	position:relative;
}

#colorNav > ul > li img{
	width: 24px;
	height: 24px;
}

#colorNav > ul > li > a{
	color: inherit;
	text-decoration: none !important;
	/* font-size: 24px; */
	height: 76px;
	display: flex;
	flex-direction: column;
  justify-content: center;
}
#colorNav > ul > li .imgSel,#colorNav > ul > li.activeLi .imgNoSel{
	display: none;
}
#colorNav > ul > li.activeLi .imgSel,#colorNav > ul > li .imgNoSel{
	display: inline-block;
}

#colorNav > ul > li:hover {
	color: #1E50AE;
	border-bottom: 2px solid;
}

#colorNav > ul > li .name {
	font-size: 18px;
	padding: 8px 0px;
	font-weight: bold;
}

#colorNav > ul .activeLi {
	color: #1E50AE;
	border-bottom: 2px solid;
}

#colorNav li ul{
	position:absolute;
	list-style:none;
	text-align:center;
	width:250px;
	/* left:40%; */
	margin-left:-114px;
	top:66px;
	/* font:bold 12px 'Open Sans Condensed', sans-serif; */
	font-size: 14px;
	
	/* This is important for the show/hide CSS animation */
	max-height:0px;
	overflow:hidden;

	z-index: 10;
	
	-webkit-transition:max-height 0.1s linear;
	-moz-transition:max-height 0.1s linear;
	transition:max-height 0.1s linear;
}
#colorNav li ul li{
	background-color:#fff;
	    border-bottom: 1px dashed #e3ebfe;
}

#colorNav li ul li a{
	padding:12px;
	color: #000;
	text-decoration:none;
	display:block;
}

#colorNav li ul li a:hover {
  color: #1E50AE;
}

/* zebra stripes */
/* #colorNav li ul li:nth-child(odd){ 
	background-color:#363636;
} */

#colorNav li ul li:hover{
	/* background-color:#fff; */
  color: #1E50AE;
  font-weight: bold;
  background: #f0f5ff;
}

#colorNav li ul li:first-child{
	border-radius:3px 3px 0 0;
	margin-top:25px;
	position:relative;
}

#colorNav li ul li:first-child:before{ /* the pointer tip */
	content:'';
	position:absolute;
	width:1px;
	height:1px;
	border:10px  solid transparent;
	border-bottom-color:#fff;
	left:47%;
	top:-20px;
	margin-left:-5px;
}

#colorNav li ul li:last-child{
	border-bottom-left-radius:3px;
	border-bottom-right-radius:3px;
}

/* This will trigger the CSS */
/* transition animation on hover */

#colorNav li:hover ul{
	max-height:inherit; /* Increase when adding more dropdown items */
}


/*----------------------------
	Color Themes
-----------------------------*/


#colorNav li.green{
	/* This is the color of the menu item */
	background-color:#00c08b;
	
	/* This is the color of the icon */
	color:#127a5d;
}

#colorNav li.red{		background-color:#ea5080;color:#aa2a52;}
#colorNav li.blue{		background-color:#53bfe2;color:#2884a2;}
#colorNav li.yellow{	background-color:#f8c54d;color:#ab8426;}
#colorNav li.purple{	background-color:#df6dc2;color:#9f3c85;}
