.menu-lateral ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
}

.menu-lateral ul li a {
	display: block;
	background: #909090;
	color: #fff;
	border-bottom: solid 1px #fff;
	padding: 10px 20px;
	text-decoration: none;
	font-weight: 500;
}

.menu-lateral ul li a:hover,
.menu-lateral ul li a.selected {
	background: #1c5d9f;
	color: #fff;
}

.menu-lateral ul li:last-child a{
	border-bottom: none;
}

.menu-lateral .menu-lateral-toggle{
	display: block;
	text-align: center;
	max-width: 200px;
	margin: 0 auto 10px;
	color: #fff;
	background: #1c5d9f;
	padding: 5px 20px;
}

@media (min-width: 768px) {
	.menu-lateral .menu-lateral-toggle{
		display: none;
	}
	.menu-lateral ul{
		display: block;
	}
}