.nav ul {
	list-style: none;
	background-color: #000000;
	text-align: left;
}

.nav li {
  font-size: 1.2em;
  line-height: 35px;
  text-align: left;
}

.nav a {
	text-decoration: none;
	color: #fff;
	display: block;
	border-bottom: 1px solid #888;
	transition: .3s background-color;
	width: 216px;
	height: 35px;
	text-align: left;
}

.nav a:hover {
	background-color: #808080;
	color: #000000;
	width: 216px;
	height: 35px;
}

.nav a.active {
	background-color: #C0C0C0;
	color: #444;
	cursor: default;
}

@media screen and (min-width: 650px) {
  .nav li {
	width: 216px;
	border-bottom: none;
	height: 35px;
	line-height: 50px;
	font-size: 1.4em;
	display: inline-block;
	margin-right: -4px;
}

  .nav a {
    border-bottom: none;
  }

  .nav > ul > li {
    text-align: center;
  }

  .nav > ul > li > a {
    padding-left: 0;
  }
