/*****************************
*	vertical news ticker with image
******************************/
.ticker-wrapper-v-image{
    display: flex;
    position: relative;
    /* width: 15%; */
    height: 58px;
    overflow: hidden;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
}

.news-ticker-v-image{
	list-style: none;
	margin:0;
	padding: 0;
	animation: tic-v-image 30s cubic-bezier(1, 0, .5, 0) infinite;
}

.news-ticker-v-image:hover { 
	animation-play-state: paused; 
}

.news-ticker-v-image li{
	/*margin-bottom: 32px;*/
}
	
.news-ticker-v-image .thumbnail {
	max-width: 100%;
	height: 40px;
	float: right;
	margin-right: 10px;
	display: inline-block;
}

.ticker-wrapper-v-image .clear {
	clear: both;
}

.ticker-wrapper-v-image .news_title a{
	color: #202f5b;
	/*font-size: 20px;*/
	font-weight: bold;
}

.ticker-wrapper-v-image .news_title{
	line-height: 20px;
}

.ticker-wrapper-v-image .news-content{
	color: #202f5b;
	font-size: 16px;
}

@keyframes tic-v-image {
	0%   {margin-top: 0;}
	20%  {margin-top: -80px;}
	40%  {margin-top: -160px;}
	65%  {margin-top: -240px;}
	80%  {margin-top: -320px;}
	100%  {margin-top: 0;}
}

@media only screen and (min-width: 0px) and (max-width: 991px) {
.ticker-wrapper-v-image{
	display:none;
}
}
