/** {
	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: rgba(0,0,0,1);
	color: white;*/
	background-color:#F2F2F2;
	color:#000;
	font-size: 1.24em;
	margin-bottom: 0;
}
.ticker-container .ticker-caption {
	background-color: #000;
	height: 50%;
	width: 100%;
	background-color:#000; /*#EC0B43;*/
	display: table;
	position: absolute;
	color: white;
	/*font-size: 0.8em;*/
	z-index: 1;
}
.ticker-container .ticker-caption p { font-size:14px; padding-top:0px; padding-left:5px;
	height: inherit;
	width: inherit;
	display: table-cell;
	vertical-align: middle;
	color:#fff;
	/*font-weight: bold;*/
}
.ticker-container ul {
	list-style: none;
	padding: 0;
	height: auto;
}
.ticker-container ul div {
	overflow: hidden;
	position: absolute;
	z-index: 0;
	display: inline;
	min-width: 100%;
	left: 5px; 
	height: 50%;
	transition: 0.25s ease-in-out;
}
.ticker-container ul div.ticker-active {
	top: 30px;
}
.ticker-container ul div.not-active {
	top: 60px;
}
.ticker-container ul div.remove {
	top: 0;
}
.ticker-container ul div li {
	padding: 4px 0;
}
.ticker-container ul div li a { 
	color:#000;/*0d4ba9;*//*EC0B43;*/
}

@media (max-width: 767px) {
	.ticker-container {
		height: 30px;
		text-align: left;
	}
	.ticker-container .ticker-caption {
		height: 100%;
		width: auto;
		padding: 3px 10px 3px 5px;
		/*background:url(../img/ticker-caption-bg.png) ;
		background: url('./ticker-caption-bg.png');*/
	}
	.ticker-container .ticker-caption p {
		text-align: left;
		padding-left: 7px;
	}
	.ticker-container ul {
		margin-left:70px;
		height: 100%;
	}
	.ticker-container ul div {
		height: 100%;
		left: auto;
	}
	.ticker-container ul div.ticker-active {
		top: 0;
	}
	.ticker-container ul div.not-active {
		top: 30px;
	}
	.ticker-container ul div.remove {
		top: -30px;
	}
}

@media (min-width: 768px) {
  .ticker-container {
  display:none;
  }
}

@media (min-width: 992px) {
/*  .ticker-container {
    margin-bottom: 20px;
  }*/
}