*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
	font-family: 'Merriweather', serif;
}

nav a {
	position: relative;
	display: inline-block;
	margin: 15px 25px;
	padding: 0 10px;
	outline: none;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 500;
	font-size: 1.25em;
	font-family: 'Exo 2', sans-serif;
	background: rgba(0,0,0,0.6);
}

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 ul {
	list-style: none;
} 

.cl-effect-11 a {
	padding: 10px 10px;
	border-bottom: 2px solid rgba(255,255,255,0.2);
	color: #fff;
	text-shadow: none;
} 

.cl-effect-11 a::before {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	padding: 10px 10px;
	max-width: 0;
	border-bottom: 2px solid #fff;
	color: #fff;
	content: attr(data-hover);
	-webkit-transition: max-width 0.3s;
	-moz-transition: max-width 0.3s;
	transition: max-width 0.3s;
}

.cl-effect-11 a:hover::before,
.cl-effect-11 a:focus::before {
	max-width: 100%;
}


