#searchbox {
  height: 32px;
  margin-bottom: 12px;
}

#search_input_wrapper {
  border: solid 1px gray;
  float: left;
  height: 32px;
  width: 200px;
  
  -moz-border-radius-topleft: 8px;
  -moz-border-radius-bottomleft: 8px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  
  position: relative;
  
  background: white;
}

#search_input_wrapper input {
  border: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 8px;
  
  height: 30px;
  width: 192px;
  
  font-size: 24px;
  color: silver;

  outline: none;
}

#search_button {
  border: solid 1px gray;
  border-left: none;
  float: left;
  height: 32px;
  width: 32px;
  
  -moz-border-radius-topright: 8px;
  -moz-border-radius-bottomright: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  
  background: #a0a0a0;
  background-image: url(../images/search_arrow.png);
  
  cursor: pointer;
}

#search_button:hover {
  background: #ccccff;
  background-image: url(../images/search_arrow.png);
}
