/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Aug 2, 2016, 12:13:51 PM
    Author     : User
*/
@keyframes animatedBackground {
    from { background-position: 0 -800; background-color: #e2912d;}
	
    to { background-position: 100% 0; background-color: #000000;}
    
/*    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}*/
}

#animate-area	{ 
	width: 560px; 
	height: 400px; 
	background-image: url(bg-clouds.png);
	background-position: 0px 0px;
	background-repeat: repeat-x;

	animation: animatedBackground 40s linear infinite;
}

