@charset "utf-8";
/* CSS Document */
.coBar{
	width: 100%;
	box-sizing: border-box;
	background-color: #24388A;
	position: relative;
}
.navBar{
	width: 100%;
	max-width:1400px;
	margin: 0 auto;
	position: relative;
}

.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:#18255C;
}
.navHorScroll::-webkit-scrollbar-thumb {
  background-color:#596DB7;
}


.linkMenuItem{
	text-align: center;
	padding:10px 20px;
	box-sizing: border-box;
	/*text-transform: uppercase;*/
}
.linkMenuItem:hover{
	background-color: #F50000;
}
.linkMenuItemActive{
	background-color:#F50000;
}
.aLinkMenuItem{
	text-decoration:none;
	color: white;
	text-transform: uppercase;
}

@media only screen and (max-width: 1000px) {
.contenedorMuenuHorizontal{
	justify-content:flex-start;
}
	
}