#rw-banner-image_wrapper	{
	-webkit-animation: fade_background 1.9s cubic-bezier (0.250, 0.460, 0.450, 0.940) both !important;
	animation: fade_background 1.9s cubic-bezier(0.250, 0.460, 0.450, 0.940) both !important;
	-webkit-animation-fill-mode: both;   animation-fill-mode: both;  
}
/* 
-webkit-animation-fill-mode: both;   animation-fill-mode: both;   
-webkit-backface-visibility: hidden; -webkit-transform-style: preserve-3d; 
*/ 
@keyframes fade_background { 
	0%{ opacity:0;} 
	10%{ opacity:0;} 
	100%{opacity:1;}
}
@-webkit-keyframes fade_background {
	0%{ opacity:0;} 
	10%{ opacity:0;} 
	100%{ opacity:1;}
}
