body{
	margin: 0;
	font-family: sans-serif;
}
header{
	background: #007AFF;
}
#headerdiv{
	background: url(header.svg) 0 100% no-repeat;
	background-position: center top;
	min-height: 120px;
	position: relative;
}
#navegador{
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: rgba(0, 122, 255, 0.5);
	border: 1px solid rgba(0, 0, 0, 0.15);
}
#navegador nav ul{
	display: flex;
	align-items: center;
	height: 0;
}
#navegador nav ul li{
	float: left;
	list-style: none;
	padding: 0 10px;
	color: white;
	border-left: 1px solid rgba( 255, 255, 255, 0.2 );
	border-right: 1px solid rgba( 0, 0, 0, 0.2 );
}
#navegador nav ul li:hover{
	background: #007AFF;
	cursor: pointer;
	transition-timing-function: ease-in-out;
}
#navegador nav ul li a{
	display: block;
	width: 100%;
}