.color_picker {
  height: 16px;
  width: 16px;
  padding: 0 !important;
  border: 1px solid #ccc;
  background: url(arrow.gif) no-repeat bottom right;
  cursor: pointer;
  line-height: 16px;
}

#color_selector {
  width: 198px;
  position: absolute;
  z-index: 11;

  padding: 4px;
  background-color: white;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  -o-box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.color_swatch {
  height: 16px;
  width: 16px;
  border: 1px solid black;
  margin: 2px;
  float: left;
  cursor: pointer;
  line-height: 12px; 
}

.color_swatch:hover {
  border: 1px solid blue;
  -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
  -o-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
}
