<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Header Anchor Links */

.entry-content .header-anchor-link {
    cursor: pointer;
    position: relative;
}

.entry-content .header-anchor-link .anchor-link {
    display: inline-block;
    margin: 0 0.5rem 0 0;
    vertical-align: middle;
    font-size: 0;
    color: var(--upmcGreyLight2);
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

.entry-content .header-anchor-link:active .anchor-link,
.entry-content .header-anchor-link:focus .anchor-link,
.entry-content .header-anchor-link:hover .anchor-link {
    color: var(--upmcPurple);
    font-size: 1.5rem;
}

.entry-content .header-anchor-link .copied-popup {
    /* position: relative; */
    display: inline-block;
    width: auto;
    background: var(--upmcOffWhite);
    position: absolute;
    top: 105%;
    left: 16px;
    white-space: nowrap;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    padding: 5px;
    opacity: 1;
    cursor: default;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.entry-content .header-anchor-link .copied-popup:before {
    content: '';
    display: block;
    position: absolute;
    top: -5px;
    left: 30%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--upmcOffWhite);
}

.entry-content .header-anchor-link .copied-popup.hidden {
    opacity: 0;
    top: 130%;
}

.author-image {
    object-fit: cover;
    width: 72px;
    height: 72px;
    border-radius:50%;
    margin-right: 14px;
}

.author-title {
    margin: 4px 0px !important;
}

.byline-author {
    margin-bottom: 6px !important;
}

@media (max-width: 599px) {
    .author-byline {
        padding-top: 15px;
    }
    .author-column1 {
        float: left;
    }
    .author-column2 {
        float: left;
        width: 75%;
    }
}

@media (min-width: 600px) {
    .author-byline {
        padding-top: 15px;
    }
    .author-column1 {
        float: left;
        padding-top: 6px;
    }
    .author-column2 {
        float: left;
        width: 85%;
    }
}

.canvas {
    display: none;
}</pre></body></html>