@charset "UTF-8";
/* CSS Document */

.box.wiredbox {
}

.wired {
  position: absolute;
  top: -15px;
  left: -12px;
  right: -12px;
  bottom: -15px;
  text-align: left;
  font-family: serif;
  font-size: 18px;
  line-height: 28px;
  color: #fff; color: var(--nav-title-color);
}

.wired a {
  border-bottom: 3px solid #f04939;
  border-bottom: 3px solid var(--accent-color);
  box-shadow: inset 0 -5px 0 #f04939;
  box-shadow: inset 0 -5px 0 var(--accent-color);
  color: #fff; color: var(--nav-title-color);
  text-decoration: none;
  cursor: default;
  background: none;
  transition: all 300ms ease-in-out;
  -moz-transition: all 100ms ease-in-out;
  -webkit-transition: all 100ms ease-in-out;
}

.wired a:hover{
  color: #fff;
  background: #f04939;
  background: var(--accent-color);
}