 {
	margin: 0;
	padding: 0;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.ticker-container {
	height: 60px;
	width: 100%;
	text-align: center;
	position: relative;
	overflow: hidden;
	background-color: #1016D5;
	color: #ff6806;
	/*background-color: white;
	color: black;*/
	font-size: 1.1em;
	margin-bottom: 15px;
}
.ticker-container .ticker-caption {
	height: 50%;
	width: 100%;
	background-color:#BF1111;
	display: table;
	position: absolute;
	color: white;
	font-size: 0.8em;
	z-index: 1;
}
.ticker-container .ticker-caption p {
	height: inherit;
	width: inherit;
	display: table-cell;
	vertical-align: middle;
	font-weight: bold;
}
.ticker-container ul {
	list-style: none;
	padding: 0;
	height: auto;
}
.ticker-container ul li {
	overflow: hidden;
	position: absolute;
	z-index: 0;
	display: inline;
	min-width: 100%;
	left: 0;
	height: 50%;
	transition: 0.25s ease-in-out;
}
.ticker-container ul li.ticker-active {
	top: 30px;
}
.ticker-container ul li.not-active {
	top: 60px;
}
.ticker-container ul li.remove {
	top: 0;
}
.ticker-container ul li li {
	padding: 5px 0;
}
.ticker-container ul li li a {
	color: #ff6806;
}

@media (min-width: 500px) {
	.ticker-container {
		height: 40px;
		text-align: left;
	}
	.ticker-container .ticker-caption {
		height: 100%;
		width: 180px;
	}
	.ticker-container .ticker-caption p {
		text-align:center;
		padding-left: 7px;
		color:#fff;
		font-size:22px;
	}
	.ticker-container ul {
		margin-left: 170px;
		height: 100%;
	}
	.ticker-container ul li {
		height: 100%;
		left: 192px;
	}
	.ticker-container ul li.ticker-active {
		top: 0;
	}
	.ticker-container ul li.not-active {
		top: 30px;
	}
	.ticker-container ul li.remove {
		top: -30px;
	}
}
