@charset "UTF-8";
/* CSS Document */

/* HAMBURGER */
#hamburger {
	width: 9%;
	max-width: 70px;
	height: 42px;
	text-align: center;
	display: block;
	cursor: pointer;
	position: absolute;
	top: 12px;
	right: 5%;
}
#hamburger:hover {
	/*background-color: #265693;*/
}
#hamburger #hb_lines {
	width: 100%;
	height: auto;
	display: inline-block;
	vertical-align: middle;
}
#hamburger .hb_line {
	width: 100%;
	height: 7px;
	background: #0b5d8d;
	margin-top: 7px;
}

/* MENU */
#menuMobile {
	z-index: 99;
	width: 100%;
	height: 100%;
	font-weight: bold;
	background-color: #ffffff;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	visibility: hidden;
	text-align: center;
}
#menuTop {
	width: 100%;
	height: auto;
	background-color: #ffffff;
	padding-bottom: 10px;
}
#menuTop img {
	width: 45%;
	max-width: 392px;
	height: auto;
	margin-top: 20px;
	margin-bottom: 0;
}
#menuBottom {
	width: 100%;
	height: 100%;
}
#menuMobile ul {
	width: 100%;
	color: #0b5d8d;
	letter-spacing: normal;
	text-transform: capitalize;
	padding: 0;
	margin: 0;
	display: inline-block;
	position: relative;
}
#menuMobile ul li {
	width: 100%;
	height: 20px;
	background-color: #ffffff;
	padding: 20px 0px 20px 0px;
	line-height: 20px;
	letter-spacing: -1px;
	list-style: none;
	font-size: 6vmin;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: #0b5d8d;;
}
#menuMobile ul a {
	width: 100%;
	color: #0b5d8d;
	text-decoration: none;
}
#menuMobile ul a:hover {
	color: #ffffff;
}
#menuMobile ul li:hover  {
	background-color: #0b5d8d;
}

@media screen and (min-width: 600px) {

	#menuMobile ul li {
		font-size: 30px;
	}

}