*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

nav a {
	position: relative;
	display: inline-block;
	outline: none;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
}

nav a:hover,
nav a:focus {
	outline: none;
}


/* Effect 11: text fill based on Lea Verou's animation http://dabblet.com/gist/6046779 */
#cl-effect-11 a {
	color: #fffff;
	text-shadow: none;
} 

#cl-effect-11 a::before {
	position: absolute;
	top: 0;
	left: 40;
	bottom: -2px;
	overflow: hidden;
	max-width: 0;
	border-bottom: 2px solid #a5b43e;
	color: #a5b43e;
	content: attr(data-hover);
	-webkit-transition: max-width 0.5s;
	-moz-transition: max-width 0.5s;
	transition: max-width 0.5s;
}

#cl-effect-11 a:hover::before,
#cl-effect-11 a:focus::before {
	max-width: 100%;
}
