/* Colores este anio:2021 */
/* 	Principal azul: ​#163b76*/
/* 	Secundario naranja:#dc6016 */

/* liScroll styles */
.tickercontainer { /* the outer div with the black border */
border: 1px solid #fff;
background: #fff; 
color:#163b76;
width: 90%; 
height: 36px; 
padding: 0; 
margin: 10px 0 0 50px;
overflow: hidden; 
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 10px;
top: 6px;
width: 100%;
overflow: hidden;
}
ul.newsticker { /* that's your list */
overflow: auto; 
position: relative;
left: 750px;
font-size: 1.2em;
list-style-type: none;
margin: 0;
padding: 0;

}
ul.newsticker li {
border: 0 solid #000;
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0;
padding: 0;
}
ul.newsticker a {
white-space: nowrap;
padding: 0;
color: #163b76	;
margin: 0 50px 0 0;
font-weight: bolder;
} 
ul.newsticker span {
margin: 0 10px 0 0;
} 


@media only screen and (max-width : 480px) {
	.tickercontainer {
		width: 98%;
		margin: 2px 0 0 2px;	
	}

}