
/*
	ONELINER
*/

#oneliner {
	/*box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;*/
	position: relative;
	/* margin: 80px auto 40px auto; */
	/*margin: 10px 0 3px 0;*/
	margin-bottom: 10px !important;
/*	width: 900px; */
	height: 44px;
    background-color: #fff;
    /*border-radius: 5px 5px 5px 5px;*/
}

#oneliner:before, #oneliner:after {
	border-radius: 100px 100px 100px 100px / 10px 10px 10px 10px;
	bottom: 0;
	/*box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);*/
	content: "";
	left: 10px;
	position: absolute;
	right: 10px;
	top: 50%;
	z-index: -1;
}

#oneliner .header2 {
	background-color: #ff2e2e;
	display: inline-block;
	width: 19%;
	font-size: 18px;
	
	text-transform: uppercase;
	font-weight: 500;
	line-height: 44px;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-align: right;
    padding-right:10px;
	/*border-radius: 5px 0 0 5px;*/
	cursor: pointer;
	-webkit-transition: all .2s ease-in-out;
	   -moz-transition: all .2s ease-in-out;
	    -ms-transition: all .2s ease-in-out;
	     -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
	-webkit-animation: redPulse 4s infinite;
	   -moz-animation: redPulse 4s infinite;
	        animation: redPulse 4s infinite;
}

#oneliner:hover .header2 {
	-webkit-animation: redPulse 1s infinite;
	   -moz-animation: redPulse 1s infinite;
	        animation: redPulse 1s infinite;
}

#oneliner .header2:active {
	background-color: #000;
	margin-left: -12px;
	color: #aaa;
}

#oneliner ul.newsticker {
	display: inline-block;
	height: 44px;
	    width: 80%;
	overflow: hidden;
	margin: 0 0 0 -3px;
	padding: 0 0 0 6px;
	line-height: 44px;
	font-weight: 500;
	font-family: 'Titillium Web', sans-serif; 
	font-size: 17px;
	background-color: #fafafa;
}

#oneliner ul.newsticker > li{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	/*border-bottom: 1px dotted #48466c;*/
}

#oneliner ul.newsticker > li > a{
color:#252340;
}


@-webkit-keyframes redPulse {
  from { background-color: #48466c;}
  50% { background-color: #E91E63;}
  to { background-color: #48466c; }
}

@-moz-keyframes redPulse {
  from { background-color: #48466c; }
  50% { background-color: #E91E63; }
  to { background-color: #48466c;}
}

@keyframes redPulse {
  from { background-color: #48466c;}
  50% { background-color: #E91E63;}
  to { background-color: #48466c;}
}