.top-nav {
	float: right;
	margin-right: 10px;
	margin-top: 16px;
	position: relative;	
}
.top-nav ul {
	margin: 0;
	padding: 0;
	max-width: 1180px;
	display: block;
	margin: 0 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.top-nav li {
	list-style: none;
	display: block;
	padding: 5px 15px;
	line-height: 30px;
}
.top-nav li a {
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	font-family: 'Roboto Condensed';
	text-decoration: none;
	letter-spacing: 0.6px;
}
.top-nav li.active a {
	color: #21C0E8;
}
.nav-fixed {
	position: fixed;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 10px;
	z-index: 99999;
}
.nav-fixed ul {
	margin: 0;
	padding: 0;
}
.nav-fixed li {
	display: block;
	text-align: center;	
	border-radius: 100%;
	list-style: none;
	color: #4CAF50;
	background: #222;
	margin-bottom: 10px;
	font-size: 10px;
	font-weight: 700;
	-webkit-transition: .4s;
	transition: .4s;
	cursor: pointer;
}
.nav-fixed li a {
	color: #4CAF50;
	height: 12px;
	display: block;
	width: 12px;
	border-radius: 100%;
	border: 1px solid #fff;
	text-decoration: none;
}
.nav-fixed li:last-child {
	margin-bottom: 0;
}
.nav-fixed li.active {
	background: #21C0E8;
}
.nav-fixed li.active a {
	color: #fff;
}
.full {
	display: block;
	height: auto;
	line-height: 300px;
	text-align: center;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
}
@media all and (max-width: 1000px) {
.top-nav {
	display: none;
}
}