         .animated {
            background-image: url(d:bonuce/css/images/logo.png);
            background-repeat: no-repeat;
            background-position: center;
            padding-top:100px;
            margin-bottom:60px;
            -webkit-animation-duration: 3s;
            animation-duration: 3s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
            opacity: 0.8;
         }
         
         @-webkit-keyframes bounceInRight {
            0% {
               opacity: 1;
               -webkit-transform: translateX(1000px);
            }
            60% {
               opacity: 1;
               -webkit-transform: translateX(-30px);
            }
            80% {
               -webkit-transform: translateX(10px);
            }
            100% {
               -webkit-transform: translateX(0);
            }
         }
         
         @keyframes bounceInRight {
            0% {
               opacity: 1;
               transform: translateX(1000px);
            }
            60% {
               opacity: 1;
               transform: translateX(-30px);
            }
            80% {
               transform: translateX(10px);
            }
            100% {
               transform: translateX(0);
            }
         }
         
         .bounceInRight {
            -webkit-animation-name: bounceInRight;
            animation-name: bounceInRight;
         }
		
		@-webkit-keyframes bounceOutRight {
            0% {
               -webkit-transform: translateX(0);
            }
            20% {
               opacity: 1;
               -webkit-transform: translateX(-20px);
            }
            100% {
               opacity: 1;
               -webkit-transform: translateX(2000px);
            }
         }
         
         @keyframes bounceOutRight {
            0% {
               transform: translateX(0); 
            }
            20% {
               opacity: 1;
               transform: translateX(-20px);
            }
            100% {
               opacity: 1;
               transform: translateX(2000px);
            }
         }
         
         .bounceOutRight {
            -webkit-animation-name: bounceOutRight;
            animation-name: bounceOutRight;
         }
         
.userlogin-back
{
    font-family: karasans;
    font-size: 13px;
//    background-image: linear-gradient(30deg, #f37021, #ffc20e);  
background-repeat: no-repeat;
background-attachment:fixed;
background-size: cover;
     

}