#mobile-menu {
	width: 100%;
	height: 100%;
	background-color: /*#7A8B8B*/ rgb(0, 84, 149);	
	position: absolute;
	top: 0;
	left: 100%;
	-moz-transition: left 1s ease;
	-webkit-transition: left .5s ease;
	z-index: 16;
}

#menu-icon.menu-open + #mobile-menu  {
	left: 0;
}

#mobile-menu, #mobile-menu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

#mobile-menu li {
	padding: 0;
	border: 1px solid #eee;
	border-left: none;
	border-right: none;
	list-style-type: none;
}

#mobile-menu > li {
	background-color: /*#7A8B8B*/ rgb(0, 84, 149);
	color: white;
}

#mobile-menu > li > ul {
	background-color: white;
	display:none;
}

#mobile-menu > li > ul > li {
	margin: 0;
	padding: 0;
	padding-left: 10px;
	color: /*#7A8B8B*/ rgb(51, 51, 51);
	background: rgb(238, 238, 238);
	font-size: 20px;
	font-weight: /*bold*/ normal;
	font-style: italic;
}

#mobile-menu > li > ul > li a {
	color: /*#7A8B8B*/ rgb(10,68,93);
	background: #fff;
	font-weight: bold;
	font-style: normal;
}

#mobile-menu a {
	display: block;
	color: white;
	font-weight: bold;
	text-decoration: none;
	font-size: 20px;
	padding: 16px;
}

#mobile-menu .message a {
	padding: 0 0 10px 0;
	background: none;
	display: inline;
	text-decoration: underline;}

