nav {
	margin: 0;
	background-color: #4fa7b1;
	font-weight : bold;
}

nav ul {
	padding:0px;
	margin:0;
	list-style: none;
	position: relative;
}

nav ul li {
	margin: 0px -7px 0 0;
	display: inline-block;
	background-color: #4fa7b1;
}

nav a {
	display: block;
	padding: 10 20px;
	color: #ffffff;
	font-size: 16px;

	text-decoration: none;
}

nav a:hover {
  background-color: #ddd;
}
nav ul ul {
	display: none;
	position: absolute;
	top: 100%;
}
		
nav ul li:hover > ul {
  display: inherit;
}
			
nav ul ul li {
	min-width: 170px;
	float: none;
	display: list-item;
	position: relative;
}

.phone-nmenu-button {
  display: none;
}

@media (max-width: 992px) {

	nav {
		display: none;
	}

	.phone-nmenu-button {
	  display: block;
		text-align: center;
  }

	.phone-nmenu-button a {
		color: #4fa7b1;
  }
	
	.phone-nmenu {
		display: none;
		margin: 0 auto;
		margin-top: 4px;
		background-color: #4fa7b1;
		text-align: left;
		width: 300;
		box-shadow: 4px 4px 8px 6px rgba(34, 60, 80, 0.14);
	}
	
  .phone-nmenu ul {
	  padding:0;
  	margin:0;
		list-style: none;
		position: relative;
	}

  .phone-nmenu ul li {
		margin: 0;
		display: inline-block;
		background-color: #4fa7b1;
	}

  .phone-nmenu a {
		display: block;
		padding: 4 20px;
		color: #ffffff;
		font-size: 16px;
		line-height: 24px;
		text-decoration: none;
	}

  .phone-nmenu a:hover {
		background-color: #ddd;
	}
	
  .phone-nmenu ul ul {
		position: absolute;
		top: 100%;
	}

}