#top_menu{
	max-width: 100%;
	margin: 0px;
	display: block;
	overflow: hidden;
	text-align: center;
	background-image: url(../images/bg_03.jpg);
	background-repeat: repeat-y;
	border-top-width: 5px;
	border-bottom-width: 5px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
}

.menu{	
	text-align: center;

}

.menu ul {
	display: flex;
	justify-content: center;
	list-style: none;	
}

.menu ul li {
	width: 130px;
	line-height: 30px;
	border: 1px solid #e7e8ea;	
}

.menu ul li a {
	font-family: calibri;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
}

.active, .menu ul li:hover{	
	background-color: #1950a4;
}


#toggle{
	display: none;
	margin-bottom: 1px solid #e7e8ea;
}

.togglearea{
	background-color: #4f4f4f;
	color: #fff;
	padding: 5px;
	display: flex;
	justify-content: flex-end;

}

.togglearea label {
	background-color: #fff;
	height: 30px;
	width: 35px;
	color: #000;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.togglearea label span{
	background-color: #000;
	height: 3px;
	width: 70%;
	margin: 3px 0px;
}

.togglearea{
	display: none;
}

@media screen and (max-width:800px) {

	#top_menu{
	max-width:100%; 
	margin:0px;  
	display: block; 
	overflow:hidden; 
	text-align: center;
	background-image: url(../images/bg_03.jpg);
	background-repeat: repeat-y;
	border-top-width: 5px;
	border-bottom-width: 5px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
}

.menu{	
	text-align: center;
	display: none;

}

	.menu ul {
	display: block;
	justify-content: center;
	list-style: none;

}

	.menu ul li {
	width: 100%;
	line-height: 30px;
	border: 1px solid #e7e8ea;	
}

	.sub-menu-01{
	display: none;
	margin-top: 1px;

}

.menu ul li:hover .sub-menu-01{
	width: 100%;
	display: block;
	position: relative;
	background: #1958c9;

}

.menu ul li:hover .sub-menu-01 ul {
	display: block;
	width: 100%;
	position: absolute;
	visibility: visible;
	z-index: 100;

}

#toggle:checked + .menu{
	display: block;
}
.togglearea{
	display: flex;
}


}
