.menu-top { 
	width:100%; 
	height:66px; 
	z-index:999; 
	position:fixed; 
	background-color:#fff; /* 00b2ef lindo azul */
	border-bottom: 1px solid #e3e9f0;
	top: 0px;
	left:64px;
} 

.cbp-vimenu {
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	height: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
	background: #00b2ef;
}

.cbp-vimenu li a {
	display: block;
	/*text-indent: -500em;*/
	height: 4em;
	width: 4em;
	line-height: 4em;
	text-align: center;
	color: #9ec8ff;
	position: relative;
	/*border-bottom: 1px solid rgba(0,0,0,0.05);*/
	-webkit-transition: background 0.1s ease-in-out;
	-moz-transition: background 0.1s ease-in-out;
	transition: background 0.1s ease-in-out;
}

.cbp-vimenu li a:hover,
.cbp-vimenu li:first-child a{
	background: #428adc;
	color: #fff;
}

/* class for current item */
.cbp-vimenu li.cbp-vicurrent a {
	background: #428adc;
	color: #fff;
}

.cbp-vimenu li a:before {
	font-family: 'fontawesome';
	speak: none;
	font-style: normal;
	font-weight: normal;
	text-indent: 0em;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 1.4em;
	-webkit-font-smoothing: antialiased;
}

.cbp-vimenu li a.icon-logo:before {
	content: "C";
	font-weight: 700;
	font-size: 300%;
	font-family: 'Lato', Calibri, Arial, sans-serif;
}


/* Example for media query (depends on total height of menu) */
@media screen and (max-height: 34.9375em) { 

	.cbp-vimenu {
		font-size: 70%;
	}

}