@font-face {
	font-family: lato-light;
	src: url('../lato/Lato-Light.ttf');
	font-weight: 300;
}

@font-face {
	font-family: lato-regular;
	src: url('../lato/Lato-Regular.ttf');
	font-weight: 400;
}

@font-face {
	font-family: lato-bold;
	src: url('../lato/Lato-Bold.ttf');
	font-weight: 700;
}

@font-face {
	font-family: lato-italic;
	src: url('../lato/Lato-Italic.ttf');
	font-weight: 700;
}

body {
	background: #b7b68a;
	margin: 0;
}

@media only screen and (min-width: 950px) {
	.desktop {
		display: inline-block;
	}
	.mobile {
		display: none;
	}

	.nav_item a {
		color: #fbfbf6;
		text-decoration: none;
	}

	td {
		padding-right: 10px;
	}

	#top_bar {
		position: absolute;
		top: 0px;
		width: 100%;
		height: 80px;
	}
	#top_bg {
		position: relative;
		height: 80px;
		width: 950px;
		background-image: url('../images/top_bar.png');
	}
	.nav_sub_bar {
		display: none;
	}
	.logo {
		position: absolute;
		left: 10px;
		top: 0px;
		height: 140px;
		cursor: pointer;
		width: 190px;
		background-image: url('../images/logo.png');
		background-size: contain;
		background-repeat: no-repeat;
	}
	.fuzz_logo {
		position: absolute;
		left: 10px;
		top: 0px;
		height: 140px;
		cursor: pointer;
		width: 190px;
		background-image: url('../images/fuzz_logo.png');
		background-size: contain;
		background-repeat: no-repeat;
		display: none;
		opacity: .6;
	}
	.home:hover .fuzz_logo {
		display: block;
	}
	.center_content {
		top: 80px;
		min-height: 100vh;
		width: 950px;
		background: #863d29;
		padding-top: 50px;
		margin-bottom: -4px;
	}
	.nav_divider {
		margin-left: -10px;
		display: inline-block;
		height: 25px;
		width: 2px;
		background: #fbfbf6;
		position: relative;
		top: 5px;
	}
	.nav_items {
		position: absolute;
		top: 48px;
		right: 5px;
		font-family: lato-light;
		font-size: 16px;
		letter-spacing: 9px;
		color: #fbfbf6;
		text-shadow: 0px 0px 5px yellow;
		z-index: 10;
	}
	.nav_item {
		cursor: pointer;
	}
	.nav_item:hover {
		opacity: .5;
	}

	.footer {
		padding-top: 1px;
		font-family: lato-light;
		width: 950px;
		background: #1d1b1b;
		color: #fbfbf6;
	}
}

@media only screen and (max-width: 949px) {
	.desktop {
		display: none;
	}
	.mobile {
		display: inline-block;
	}

	.nav_item a {
		color: #fbfbf6;
		text-decoration: none;
		position: relative;
		top: 3px;
	}

	td {
		padding-right: 10px;
	}

	#top_bar {
		position: fixed;
		top: 0px;
		width: 100vw;
		height: 50px;
		z-index: 20;
	}
	#top_bg {
		position: relative;
		height: 50px;
		width: 100vw;
		background-image: url('../images/top_bar.png');
	}
	.nav_sub_bar {
		width: 100%;
		position: absolute;
		bottom: -3px;
		height: 3px;
		background: #863d29;
		display: block;
	}
	.logo {
		position: absolute;
		z-index: 25;
		left: 10px;
		top: 0px;
		height: 87px;
		cursor: pointer;
		width: 120px;
		background-image: url('../images/logo.png');
		background-size: contain;
		background-repeat: no-repeat;
	}
	.fuzz_logo {
		z-index: 25;
		position: absolute;
		left: 10px;
		top: 0px;
		height: 87px;
		cursor: pointer;
		width: 190px;
		background-image: url('../images/fuzz_logo.png');
		background-size: contain;
		background-repeat: no-repeat;
		display: none;
		opacity: .6;
	}
	.home:hover .fuzz_logo {
		display: block;
	}
	.center_content {
		top: 40px;
		min-height: 100vh;
		height: 700px;
		width: 100vw;
		background: #863d29;
		padding-top: 20px;
		overflow: hidden;
	}
	.nav_divider {
		margin-left: -5px;
		display: inline-block;
		height: 15px;
		width: 1px;
		background: #fbfbf6;
		position: relative;
		top: 5px;
	}
	.nav_items {
		position: absolute;
		top: 28px;
		right: 5px;
		font-family: lato-light;
		font-size: 10px;
		letter-spacing: 3px;
		color: #fbfbf6;
		text-shadow: 0px 0px 5px yellow;
		z-index: 10;
	}
	.nav_item {
		cursor: pointer;
	}
	.nav_item:hover {
		opacity: .5;
	}

	.footer {
		margin-top: -4px;
		padding-top: 1px;
		font-family: lato-light;
		width: 100vw;
		background: #1d1b1b;
		color: #fbfbf6;
	}
}