var f = document.getElementById('cse-search-box');
if (!f) {
f = document.getElementById('searchbox_demo');
}
var q = f.q;
q.style.cssText = 'border: 0px solid #7e9db9; padding: 0px;';


var f = function() {
      q.value='';
    };

    q.onfocus = f;


