#nav-container {
	width: 100%;
	padding: 0;
	margin: 2.0em 0 0 0;
}

.menu-link {
	clear: both;
	float: right;
	font-family: 'Arial Narrow', arial, sans-serif;
	font-size: 1.2em;
	margin: 1.0em;
}

.menu-link:link {
	color: black;
	text-decoration: none;
	font-family: 'Arial Narrow', arial, sans-serif;
	font-size: 1.2em;
}

.menu-link:visited {
	color: black;
	text-decoration: none;
	font-family: 'Arial Narrow', arial, sans-serif;
	font-size: 1.2em;
}

.menu-link:hover {
	color: black;
	text-decoration: none;
	font-family: 'Arial Narrow', arial, sans-serif;
	font-size: 1.2em;
}

#navigation {
	width: 100%;
	text-align: center;
	clear: both;
	display: none;
}

#navigation.active {
	display: block;
}

#navigation ul {
	display: block;
	margin: 0 auto;
}

#navigation ul li {
	text-align: left;
	padding: 1.5em;
	background-color: #666;
	color: white;
	text-transform: uppercase;
	font-family: Arial, sans-serif;
	font-size: 0.8em;
	border-bottom: 1px solid white;
}

#navigation ul li:hover {
	background-color: #999999;
}

#navigation ul li a:link {
	color: white;
	text-decoration: none;
}

#navigation ul li a:visited {
	color: white;
	text-decoration: none;
}

#navigation ul li a:hover {
	color: white;
	text-decoration: none;
}

@media screen and (min-width: 480px) {
	.menu-link {
		display: none;
	}
	
	#navigation {
		display: block;
	}
	
	#navigation ul {
		display: inline-block;
		margin: 0 auto;
	}
	
	#navigation ul li {
		padding: 0;
		width: 12.0em;
		height: 3.5em;
		text-align: center;
		border-right: 1px solid white;
		display: table-cell;
		vertical-align: middle;
	}
}