#headerMenu {
	display: none;
	width: 100%;
	margin: 2px 0 0 0;
	padding: 5%;
	
	border-bottom: 2px solid #4885c4;
	
	background-color: #FFFFFF;
	
	line-height: 20px;
	min-height: 100%;
	box-sizing: border-box;
}

@media (min-width: 992px) {
	#headerMenu {
		display: block;
		margin: 0;
		padding: 0;
		border: 0;
		line-height: inherit;
		
		min-height: auto;
		background-color: transparent;
	}
}

#headerMenuButton {
	display: inline-block;
	border: 0;
	padding: 0;
	width: 42px;
	height: 42px;
	margin-right: 2%;
	background-color: #3c7bc0;
	vertical-align: middle;
	position: relative;
	z-index: 150;
	line-height: 4px;
	text-align: center;
	cursor: pointer;
}

@media (min-width: 992px) {
	#headerMenuButton {
		display: none;
	}
}

#headerMenuButton i {
	display: inline-block;
	width: 30px;
	height: 4px;
	background-color: #ffffff;
	margin: 4px 0;
}

#headerMenu li {
	display: inline-block;
	font-size: 17px;
	line-height: 32px;
	text-align: left;
	width: 100%;
}

@media (min-width: 992px) {
  #headerMenu li {
		padding: 0 0.4%;
		font-size: 17px;
		line-height: inherit;
		vertical-align: top;
		text-align: right;
		width: auto;
	}
}

@media (min-width: 1200px) {
	#headerMenu li {
		padding: 0 0.6%;
		font-size: 17px;
	}
}

#headerMenu li a {
	display:inline-block;
	color: #111111;

	text-decoration: none;
	transition: transform 0.5s;
}

#headerMenu li a:hover {
	-webkit-transform: translate(0,-5px);
	-khtml-transform: translate(0,-5px);
	-moz-transform: translate(0,-5px);
	-ms-transform: translate(0,-5px);
	-o-transform: translate(0,-5px);
	transform: translate(0,-5px);
}