@charset "UTF-8";
/* CSS Document */

    .nochng {color:#333}
    .upchng {
	color: #4B4B4B
}
    .dwnchng{
	color: #5F5F5F;
	font-weight: bold;
}

    @-webkit-keyframes ticker {
    0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
    }
    100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    }
    }
    @keyframes ticker {
    0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
    }
    100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    }
    }
    .ticker-wrap {
	overflow: hidden;
	/* [disabled]background-color: rgba(46,101,250,1.00); */
	margin-left: 2px;
	border-top: 1px solid rgba(227,227,227,1.00);
	border-bottom: 1px solid rgba(227,227,227,1.00);
	width: 840px;
    }

    .ticker {
	display: inline-block;
	white-space: nowrap;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-name: ticker;
	animation-name: ticker;
	-webkit-animation-duration: 40s;
	animation-duration: 40s;
	text-align: left;
	/* [disabled]background-color: rgba(251,72,75,1.00); */
	width: 400%;
	padding-left: 100%;
	font-size: 85%;
    }

    .ticker-wrap:hover .ticker {
	-webkit-animation-play-state: paused;
	-moz-animation-play-state: paused;
	-o-animation-play-state: paused;
	animation-play-state: paused;
	/* [disabled]background-color: rgba(109,252,90,1.00); */
    }

    .ticker__item {
	display: inline-block;
	padding-top: 0;
	padding-right: 0.5rem;
	padding-left: 0.5rem;
	padding-bottom: 0;
	text-transform: uppercase;
}
    .italic {font-style:italic;}

    .bold {
	font-weight: bolder;
	color: rgba(210,47,50,1.00);
}
