

.top {
	background: white;
	display: block;
}

ul.navHighlighter {
	text-align: center;
	top: 0;
	right: 0;
	background: #1C3057;
	width: 100%;
	margin: 0;
	transition: all 0.3s ease-in-out;
}



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

li:after {
	content: '';
	display: block;
	height: 3px;
	width: 0;
	background: transparent;
	transition: width .40s ease, background-color 0.5s ease;
	/*-webkit-filter: blur(1px);*/
}

li:hover:after {
	background: #fff;
	width: 100%;
}

.nav-active:after {
	content:'';
	display: block;
	height: 3px;
	background: #fff;
	width: 100%;
}

/*main section*/
.innerWrapper div {
	padding: 25px 0;
}


.scrolling {
	position: fixed;
}

/*code section*/
div.code {
	background: gainsboro;
	padding: 10px;
	border-radius: 2px;
	margin: 10px 0;
}

pre {
	margin: 0;
	padding: 0;
}
