@charset "utf-8";
/* CSS Document */
.pegajoso{
	/*width: 100%;
	position:sticky;*/
	top:0;
	z-index: 1000;
}

.contenedorMuenuHorizontal{
	width: 100%; 
	display: flex;
	flex-flow: row nowrap;
	overflow-y: auto;
	position: sticky;
	top: 0;
	align-items: center;
	justify-content: space-around;
}

.navHorScroll::-webkit-scrollbar {
  width: 5px;
}
.navHorScroll::-webkit-scrollbar-track {
  background-color:darkred;
}
.navHorScroll::-webkit-scrollbar-thumb {
  background-color:red;
}


.linkMenuItem{
	text-align: center;
	padding:10px 20px;
	box-sizing: border-box;
	/*text-transform: uppercase;*/
}
/*.linkMenuItem:hover{
	box-sizing: border-box;
	background-color: #ffd600;
}*/
.activeLinkMenu{
	background-color:darkgoldenrod;
	color: white;
}
.activeLinkMenu a{
	background-color:darkgoldenrod;
	color: white;
}
.activeLinkMenu a:hover{
	background-color:darkgoldenrod;
	color: white;
}

.aLinkMenuItem{
	text-decoration:none;
}
@media only screen and (max-width: 600px) {
.contenedorMuenuHorizontal{
	justify-content:flex-start;
}
	
}