
/*------------------------------------*\
    RESET
\*------------------------------------*/

*,
*:after,
*:before {
	margin:0;
	padding:0;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

.nav {
	float:left;
	margin:12px 0;
	list-style:none;
}
.nav-link {
}
.nav-link a {
	text-decoration:none;
}