 * {
	margin:0;
	padding:0;
}
body {
	/*background-color:#000000;*/
}
.alert_box {
    position:relative;max-width:900px;margin:0px auto;height:150px;/*overflow:hidden;*/border-radius:0px;
	overflow:hidden;
	white-space:nowrap;
	width:100%;
	height:50px;
/*	background-color:rgba(150,166,218,0.233);*/
	line-height:60px;
	font-size:20px;
	color:green/*#0078d7*//*#AFD4EE*/;

}
.red_alert {
    
	color:green/*#0078d7*//*#FF6363*/;
}
.alert_box_content {
	width:100%;
	display:inline-block;
	animation:scroll-left 10s linear infinite;
}
@keyframes scroll-left {
	0% {
	transform:translateX(100%);
}
100% {
	transform:translateX(0%);
}
}
