/* Fix for double-bold h1 in sidebar
 */
.sidebar h1 {
  font-weight: normal;
}

/* Positioning and animation for animated web ring graphic
 */
.ring-container {
  animation-name: rotato;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  width: 150px;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
}
.ring-container a:link {
  color: #cccccc;
  fill: #cccccc;
}
.ring-container a:hover {
  color: #white;
  fill: #white;
}
.ring-container a:active {
  color: white;
  fill: white;
}
.ring-container a:visited {
  color: #999999;
  fill: #999999;
}

@keyframes rotato {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

