sup {
  cursor: copy;
  color:#37abc8;
  font-size:0.6em;
  font-weight:600;
  border:1px solid #c8ab37;
  border-radius:5px;
  padding-left:5px;
  padding-right:5px;
  background-color:#f4eed7;
  margin:0px 5px 0px 5px;
  white-space:nowrap;
}
sup a:link,sup a:visited {
  color:#c8ab37;
}

sup a:link.cboxElement ,sup a:visited.cboxElement {
  color:#c8ab37;
}

sup.pop a:link,sup.pop a:visited {
  color:#89a02c;
}

sup.pop {
  border:1px solid #89a02c;
  background-color:#f2f2f2;
}

sup .sp-trigger {
  color:#37abc8;
  border:1px solid #37abc8;
  background-color:#d7f4ee;
}

.sp-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto;
}

.sp-wrapper .content {
    border-radius: 4px;
    min-height: 100px;
    max-width: 800px;
    width: 90%;
    background-color: #fff;
    position:absolute;
    margin: 3em 0;
    padding:2.4em 1.2em 0em 1.2em;
    color:#6F917C;
    font-size:1em;
    line-height:1.4em;
}

.sp-wrapper .content.into-view {
    top: 0;
}

.center-all {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sp-source {
    display: none;
}

.sp-wrapper .sp-close-button {
    height: 30px;
    width: 30px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #eee;
    cursor: pointer;
}

.sp-wrapper .sp-close-button::before {
    content: 'x';
    height: auto;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.sp-wrapper.fadeIn {
    -webkit-animation: fadeIn .25s both;
    animation: fadeIn .25s both
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.sp-wrapper.fadeOut {
    -webkit-animation: fadeOut .25s both;
    animation: fadeOut .25s both
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.sp-wrapper .fadeInDown {
    -webkit-animation: fadeInDown .35s both;
    animation: fadeInDown .35s both
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        margin-top: -20px
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        margin-top: -20px
    }
    100% {
        opacity: 1;
    }
}

.sp-wrapper .fadeOutUp {
    -webkit-animation: fadeOutUp .35s both;
    animation: fadeOutUp .35s both
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        margin-top: -20px
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        margin-top: -20px
    }
}

.sp-wrapper .zoomIn {
    -webkit-animation: zoomIn .15s both;
    animation: zoomIn .15s both;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.95);
        transform: scale(.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.95);
        transform: scale(.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.sp-wrapper .zoomOut {
    -webkit-animation: zoomOut .15s both;
    animation: zoomOut .15s both;
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.85);
        transform: scale(.85);
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.85);
        transform: scale(.85);
    }
}

div.collapsed {
  border:2px solid #CCCCCC;
  border-radius:5px;
  margin-right:10px;
  float:right;
  cursor: copy;
  text-align:center;
  vertical-align:middle;
  background-color:#c8b7b7;
  padding:0px 5px 0px 5px;
  clear:both;
}
.collapsed a:not([href]):not([tabindex]) {
  font-size:0.8em;
  color:#6c5353;
}