#header ul {
	z-index: 100;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}
#header ul::after {
	display: block;
	clear: both;
	content: '';
}
#header ul li {
	position: relative;
	float: left;
	/*border: 2px solid #000000;*/
	margin-top: 30px;
	background-color: #FFFFFF;
	text-align: center;
}
#header ul li:not(:first-child) {
	border-left: none;
}
#header ul li:hover {
	background-color: rgba(255,255,255,.3);
	background-color: #e6f7ff;
}
#header ul li a {
	display: inline-block;
	/*padding: 1em 1em;*/
	padding-bottom: 5px;
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
	color: #000000;
	font-size: 18px;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}
#header ul ul {
	position: absolute;
	top: 100%;
	/*left: -2px;*/
}
#header ul ul li {
	float: none;
	margin: 0;
	border-bottom: 1px solid #D0C1B0;
}
#header ul ul li:not(:first-child) {
	border-top: none;
}
#header ul ul ul {
	position: absolute;
	top: -2px;
	left: 100%;
}
#header ul ul {
  visibility: hidden;
  opacity: 0;
  transition: .2s ease-in-out;
  transform: translateY(-20px);
}
#header ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width : 600px) {
#header {
	background-color: #00509B;
	height: 60px;
}
#header ul li {
	display: none;
}