 .ticker-container {
	width: 100%;
	overflow: hidden;
	position: sticky;
	top: 10px;
}
 .ticker-wrapper {
	width: 100%;
	overflow: hidden;
	padding-left: 100%;
	font-family: ARIAL,VERDANA,HELVETICA;
	font-size: 2.25em;
	color: #0021A5;
	background-color: #FA4616;
	border-top-color: #0021A5; 
	border-top-width: 7px;
	border-top-style: ridge;
	border-bottom-color: #0021A5; 
	border-bottom-width: 7px;
	border-bottom-style: ridge;
}
 @keyframes ticker {
	0% {
		transform: translate3d(0, 0, 0);
    }
	100% {
		transform: translate3d(-100%, 0, 0);
    }
}
 .ticker-transition {
	display: inline-block;
	white-space: nowrap;
	padding-right: 100%;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-name: ticker;
	animation-duration: 20s;
}
 .ticker-transition:hover {
	animation-play-state: paused;
	cursor: pointer;
}
 .ticker-item {
	display: inline-block;
	padding: 0 1rem;
}

 .ticker-item a:link {
	color: #0021A5;
	text-decoration: none;
}
 .ticker-item a:visited {
	color: #0021A5;
	text-decoration: none;
}

img.filtergray {
    -webkit-filter: grayscale(100%); /* Chrome, Safari, Opera */
    filter: grayscale(100%);
}

html,body {
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.bezel-box-shadow {
	border-top: 5px solid lightgrey;
	border-bottom: 5px solid grey;
	border-left: 5px solid lightgrey;
	border-right: 5px solid grey;
	padding: 20px;
	background-color: #0021A520;
	display: inline-block;
	box-shadow: -2px -2px 5px rgba(255, 255, 255, 0.7), /* Top-left highlight */
	2px 2px 5px rgba(0, 0, 0, 0.3), /* Bottom-right shadow */
	inset 1px 1px 2px rgba(0, 0, 0, 0.1), /* Inner shadow for depth */
	inset -1px -1px 2px rgba(255, 255, 255, 0.5); /* Inner highlight */
}