.database{
	position: absolute;
	top: 60%;
	left: 0%;
	width: 100%;
	color: black;
	z-index: 9;	
	cursor: default;
}

.sticky{
	position: fixed;
	top: 35px;
}

a:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:hover {text-decoration: none;}
a:active {text-decoration: none;}

.dbhover { background: #E9E9E9 !important; }
.database table tbody tr .ui-selecting { background: #DFD793 !important; }
.database table tbody tr .ui-selected { background: #D5C58E !important; }
.dbnew {background: #A1F191 !important; border-bottom: 1px solid black !important;}
.dbduplicate {background: #B8ECFC !important; }
.dbpending {background: #98C595 !important; }
.sorting { font-weight: bold; }
.sortup { height: 10px; width: 20px; background: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7) no-repeat left top; }
.sortdown { height: 10px; width: 20px; background: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7) no-repeat left top; }

.loader {
  z-index: 10; !important;
  font-size: 10px;
  margin: 5em auto;
  text-indent: -9999em;
  border-radius: 50%;
  background: grey;
  background: -moz-linear-gradient(left, grey 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, grey 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, grey 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, grey 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, grey 10%, rgba(255, 255, 255, 0) 42%);
  position: fixed;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
  margin-top: -40px; margin-left: -40px;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.loader:before {
  width: 50%;
  height: 50%;
  background: grey;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
.loader:after {
  background: lightgrey;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}