﻿#ticker {
	width: 100%;
	height: 100%;
    min-height:180px;
	margin: 2em auto;
}

#ticker-wrapper {
	height: 100%;
	width: 100%;
	overflow: hidden;
	position: relative;
	
}

#ticker-wrapper ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
	height: 180px;
	position: relative;
	transition: all 1500ms ease-in;
}

#ticker-wrapper li {
    font-size:10px;
    color:#000;
	display: block;
	height: 60px;
	width: 100%;
	margin-bottom: 0.3em;
	position: relative;
    background: #0b4f7d;
}

#ticker-wrapper li:nth-child(even) {
	background: #0b4f7d;
}

#ticker-wrapper li figure {
	width: 80px;
	height: 60px;
	float: left;
	margin: 0;
	padding: 0;
}

#ticker-wrapper li figure img {
	display: block;
	width: 100%;
	height: 100%;
}

#ticker-wrapper li p {
	float: right;
	margin: 0;
	padding-top: 2em;
	padding-right: 0.5em;
	font-size: 10px;
}