@keyframes animatedBackground {
	0% { background-position: 0 0; }
	100% { background-position: -300px 0; }
}
@-moz-keyframes animatedBackground {
	0% { background-position: 0 0; }
	100% { background-position: -300px 0; }
}
@-webkit-keyframes animatedBackground {
	0% { background-position: 0 0; }
	100% { background-position: -300px 0; }
}
@-ms-keyframes animatedBackground {
	0% { background-position: 0 0; }
	100% { background-position: -300px 0; }
}
@-o-keyframes animatedBackground {
	0% { background-position: 0 0; }
	100% { background-position: -300px 0; }
}

#animate-area { 
	width: 100%; 
        height: 100px;
	background-image: url(http://subtlepatterns2015.subtlepatterns.netdna-cdn.com/patterns/stardust.png);
	background-position: 0px 0px;
	animation: animatedBackground 10s linear infinite;
	-moz-animation: animatedBackground 10s linear infinite;
	-webkit-animation: animatedBackground 10s linear infinite;
	-ms-animation: animatedBackground 10s linear infinite;
	-o-animation: animatedBackground 10s linear infinite;
}

.search_textbox {
    float: right;
    background: #252525;
    width: 180px;
    border: 0;
    margin: 0;
    height: 9px;
    padding: 16px 35px 15px 10px;
    color: #fff;
    font-family: 'Roboto', Arial, Sans-Serif;
    font-weight: 700;
    font-size: 14px;
}
.search_textbox:focus {
    background: #595959;
    border: 0;
    outline: 0;
}
		
		
		