.clColorSample {

  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px black solid;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.clAide {
  color: #cccc66;
  font-weight: bold;
  cursor: help;
}

.clRefresh {
    width: 36px;
    height: 36px;
    -webkit-animation:spin 1s linear infinite;
    -moz-animation:spin 1s linear infinite;
    animation:spin 1s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }