
/* Table Sorting */
th.table-sort {
  padding-right : 36px;
  text-align    : left;
  cursor        : pointer;
}

th.table-sort:hover {
  background-image :    -moz-linear-gradient(bottom,rgb(255,255,255), rgb(222,222,222) );
}

.table-sort-field {
  position: relative;
}

.table-sort-control {
  background-image: -moz-linear-gradient(bottom,rgba(0,0,0,0.1),rgba(0,0,0,0.0));
  height    : 15px;
  width     : 15px;
  position  : absolute;
  top       : 0;
  right     : -30px;
}

.table-sort-up,
.table-sort-down {
  border  : 3px solid transparent;
  position: absolute;
  right   : 6px;
}

.table-sort-up {
  border-bottom-color: rgba(0,0,0,0.3);
  top                : 2px;
}

.table-sort-down {
  border-top-color: rgba(0,0,0,0.3);
  top             : 10px;
}

.table-sort-order-asc .table-sort-up {
  border-bottom-color: rgba(255,0,0,1);
}

.table-sort-order-des .table-sort-down {
  border-top-color: rgba(255,0,0,1);
}

/* Table Sort Search */
.table-sort-search-container {
  padding          : 3px 8px;

}

.table-sort-search-input {
  width              : 700px;
  height             : 17px;
  border             : 1px solid rgb(50,50,50);
  border-radius      : 6px;
  font-size          : 13px;
  line-height        : 25px;
  background         : rgb(238,238,238);
}

.table-sort-search-input:focus,.table-sort-search-input:hover {
  outline    : none;
  background : #fff;
}

.table-sort-highlight {
  color      : #000;
  background : rgb(255,255,111);
}

.table-sort-search-count {
  position         : absolute;
  top              : 6px;
  right            : 14px;
  padding          : 0 7px;
  border-radius    : 3px;
  line-height      : 19px;
  color            : #fff;
  background-image : -moz-linear-gradient(bottom,rgb(94,108,117), rgb(145,162,177) );
}