.my_wrapper{
float:left;
width:100%; 
margin:0px;
padding:0px; height:40px;
overflow:hidden; border: 1px solid #bb1919;
}

	#latest_news_top{
	float: left; font-size: 21px; margin: 0; width: 100%; 
	padding: 0px; line-height: 40px; color: #FFF; text-align: center; background: #BB1919; border-radius: 25px 0 0 0;
	}
	
	.marquee{
	position:relative;
	overflow:hidden;
	float:left;
	height:30px;
	margin:5px 0px;
	}

		.marquee span{
		padding-left:10px;
		height:30px;
		white-space: nowrap;
		display:inline;
		position: relative;
		left:0%;
		-moz-animation: marquee 60s infinite linear 1s;   /* Scrolling Timer : Speed 10s */
		-webkit-animation: marquee 60s infinite linear 1s;
		-o-animation: marquee 60s infinite linear 1s;
		animation: marquee 60s infinite linear 1s;
		}
			
			.marquee a i{
			font-size:8pt;
			line-height:20px;
			}
			
			.marquee a{
			font-size: 15px;
			margin: 0px 10px 0px 0px;
			padding-left: 15px;
			line-height: 28px;
			text-decoration: none;
			color: #000;
			font-weight: bold;
			font-size: 18px; transition: 0.6s ease;
			}
				.marquee a:hover{
				color:#BB1919;
				}

			.marquee:hover span{
			-webkit-animation-play-state: paused;
			-moz-animation-play-state: paused;
			-o-animation-play-state: paused;
			animation-play-state: paused;
			}
			.marquee span:after {content:attr(rel); display:inline; color:black; padding-left:10px;}

			@-webkit-keyframes marquee{
			0% {left: 0%;}
			100% {left: -50%;}
			}
			@-moz-keyframes marquee{
			0% {left: 0%;}
			100% {left: -50%;}
			}
			@-o-keyframes marquee{
			0% {left: 0%;}
			100% {left: -50%;}
			}
			@keyframes marquee{
			0% {left: 0%;}
			100% {left: -50%;}
			}