/* Swatch (based on http://clrs.cc/) */
/* Quick reference to swatch background and foreground */
.black-bg {
  background: #111111;
  color: #ffffff;
}
.navy-bg {
  background: #001f3f;
  color: #80bfff;
}
.navy-rev-bg {
  background: #80bfff;
  color: #001f3f;
}
.aqua-bg {
  background: #7fdbff;
  color: #004966;
}
.aqua-rev-bg {
  background: #004966;
  color: #7fdbff;
}
.green-bg {
  background: #2ecc40;
  color: #0e3e14;
}
.white-bg {
  background: #ffffff;
  color: #111111;
}
.gray-bg {
  background: #aaaaaa;
  color: #111111;
}
.silver-bg {
  background: #dddddd;
  color: #111111;
}
.red-bg {
  background: #ff4136;
  color: #800600;
}
/* Fonts */
.publications ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.publications ul li {
  line-height: 24px;
  display: flex;
  align-items: center;
  padding: 8px 4px;
}
.publications ul li.even-row {
  background: #dddddd;
}
.publications ul li > .pub-year {
  padding: 0px 16px 0px 8px;
}
.publications ul li .journal {
  font-style: italic;
}
.publications ul li .myself {
  color: #ff4136;
  font-weight: bolder;
}
.publications ul li:hover {
  background: #7fdbff;
}
.publications ul li:hover .myself {
  background: #ff4136;
  color: #800600;
}
.publications .buttons {
  margin: 8px 0px 16px 0px;
}
.publications .buttons button {
  background: #7fdbff;
  color: #004966;
  border-radius: 0px;
  border: 1px solid #001f3f;
  box-shadow: none;
  height: 30px;
  line-height: 30px;
  margin-right: 15px;
  position: relative;
  padding: 0px 16px;
}
.publications .buttons button.active {
  background: #2ecc40;
  color: #0e3e14;
}
.publications .buttons button.active > div {
  background: #ff4136;
  color: #800600;
}
.publications .buttons button:hover {
  cursor: pointer;
  border-color: #ff4136;
}
.publications .buttons button:hover > div {
  background: #ff4136;
  color: #800600;
}
.publications .buttons button > div {
  background: #001f3f;
  color: #80bfff;
  border-radius: 50%;
  font-size: 12px;
  height: 24px;
  line-height: 24px;
  position: absolute;
  top: -8px;
  right: -12px;
  width: 24px;
}
.publications .pending {
  text-align: center;
  color: #ff4136;
  font-family: 'Cabin', sans-serif;
}
