body, html {
	font-family: 'Roboto', sans-serif;
	background-color: #efefef;
}

.cabecalho {
	padding: 10px 50px 10px 50px;
	box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.3);
	background-color: white;
}

.usuario {
	position: relative;
	display: inline-block;
	float: right;
}

.usuario a:hover {
	background-color: #ddd;
}

.usuario-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	overflow: auto;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	right: 0;
}

.usuario-show {
	display: block;
}

.usuario-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.usuario-content i {
	margin-right: 20px;
	background-color: #d7d7d7;
	padding: 6px 6px 6px 6px;
}

.btnUsuario {
	margin-top: 8px;
	border: 3px solid white;
	border-radius: 50%;
	background-color: white;
	padding: 0;
	outline: none;
}

.btnUsuario:hover {
	border: 3px solid #eeeeee;
	border-radius: 50%;
	cursor: pointer;
}

.avatarusuario {
	width: 35px !important;
	height: 35px !important;
}

.cabecalho img {
	width: 80px;
}