#menu{
	text-transform: uppercase;
}


#paimenu{
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: fixed;
	z-index: 2999;
	background-color: rgba(200, 200, 200, 0.3);		
	display: none;
	transition: 1s;	
}

@media ( max-width: 998px ){		
	#cabmenusanduiche img{
		height: 6vw;
	}
	
	#escritomenu{
		font-weight: 600;
		
	}
	
	#cabmenusanduiche > tr > td:nth-child(2){
		width: 100%;
		
	}
	
	#menu{
		border: 2px solid transparent; /* Set border width and make it transparent */
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Set box shadow with desired color and spread */
		display: inline-block;
		position: absolute;
		top: 3px;
		width: 90%;
		left: -100%;
		transition: .5s;		
		background-color: #FFF;
		z-index: 3000;
		line-height: 1.5em;
		font-weight: 400;
	}
	
	#menu_espacador{
		margin-left: 6.7vw;
	}
	
	#menu a{
		color: #000;
		display: block;
		margin-bottom: .3em;
	}	
	
	.menuvisivel{
		left: 0 !important;
	}
	
	.abrirSubMenu{
		display: block !important;
	}
	
}


@media ( min-width: 999px ){
	
	#hqa{
		display: none;
	}	
	
	#menu{
		border: 2px solid transparent; /* Set border width and make it transparent */
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Set box shadow with desired color and spread */

		display: inline-block;
		position: absolute;
		top: 3px;
		width: 50%;
	
		left: -60%;
		transition: .5s;		
		background-color: #FFF;
		z-index: 3000;
		
		font-size: 1.2em;
		font-weight: 400;
		line-height: 1.5em;
	}
	
	#menu_espacador{
		margin-left: 2.5vw;
	}	
	
	#menu a{
		display: block;
		color: #000;
		margin-bottom: .3em;
	}
	
	.menuvisivel{
		left: 0 !important;
	}
	
	.abrirSubMenu{
		display: block !important;
	}
	
}