




ul.navHighlighter li a {

	padding: 10px 20px;
	text-decoration: none;

}

/*after, focus and hover states*/
li a:focus {
	outline: 0;
}

li:after {
	content: '';
	display: block;
	height: 3px;
	width: 0;

	transition: width 0.5s ease, background-color 0.5s ease;
}



.nav-active:after {
	content:'';
	display: block;
	height: 3px;

	width: 100%;
}


