.nowrap td {
  white-space: nowrap;
  padding-top: 2px;
  padding-bottom: 2px;
}
.t-right{
  text-align: right;
}
/* loading spinner */
.loader-animation {
  border: 2px solid #f3f3f3;
  border-radius: 50%;
  /*border-top: 16px solid #3498db;
  border-bottom: 16px solid blue;*/
  border-top: 2px solid #2d366f;
  border-bottom: 2px solid #01114e;
  width: 14px;
  height: 14px;
  -webkit-animation: spin 0.5s linear infinite; /* Safari */
  animation: spin 0.5s linear infinite;
  float: right;
  margin: 5px;
  padding: 5px;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.loader-label{
  font-style: italic;
  font-size: 10px;
  float: right;
  padding: 5px;
}
a.link-plain{
  cursor: default;
}
.box-shadow{
  border: 0px solid;
  padding: 10px;
  box-shadow: 5px 10px 30px #999999;
  border-radius: 15px;
}
