#search {

}

#search input[type="text"] {
    background:url(../images/search-white.png)no-repeat 10px 6px #333;
    border: 1px solid #666;
    font: bold 12px Arial,Helvetica,Sans-serif;
    color: #fff;
    width: 230px;
    padding: 6px 6px 6px 35px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
	margin-top:10px;
	float:right;
    }

#search input[type="text"]:focus {
    width: 250px;
	outline:0px;
    }
	
	
	@media only screen and (max-width : 480px)   {
	
	#search input[type="text"] {
	margin-top:5px;
	
	}
	
	}