<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* STRATEGIC PLAN STICKY */
#sp-sticky {
	padding: 0;
	width: max-content;
	margin-right: 0;
	margin-top: .5rem;
	position: fixed;
	background: #FFF9D9;
	right: 0;
	top: 50vh;
	z-index: 999;
	transform-origin: 100% 50%;
	transition: all .3s;
	border: 1px solid gray;
	border-right: transparent;
}
#sp-sticky .container {
    padding-left: 0;
    padding-right: 0;
}
#sp-sticky .tab-container {
    display: flex;
    height: 100%;
}
#sp-sticky .tab-arrows, #sp-sticky a {
    display: inline;
}
#sp-sticky .tab-arrows .glyphicon:last-of-type {
    margin-right: 10px;
}
#sp-sticky .tab-arrows .glyphicon {
    color: #fff9d9;
    width: 10px;
    margin-top: auto;
    margin-bottom: auto;
}
#sp-sticky .tab-arrows {
    width: 30px;
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
    background-color: #c8102e;
    display: flex;
}
#sp-sticky .tab-arrows:hover {
    cursor: pointer;
}
#sp-sticky .tab-arrows:hover .glyphicon {
    color: #fff0c9;
    font-weight: bold;
}
#sp-sticky a {
    padding-left: .5rem;
    padding-right: .5rem;
    color: #c8102e;
}
#sp-sticky a:hover {
    background-color: #fff0c9;
}
#sp-sticky svg {
    margin-top: .5rem;
}
#sp-sticky.tab-collapsed {
    right:-120px;
}
#sp-sticky.tab-expanded {
    right:0;
}
/* this resizes the tag for small devices */
@media (max-width:767px) {
	#sp-sticky {
		top: 50vh;
    }
    #sp-sticky .tab-arrows {
        width: 30px;
        background-color: #c8102e;
        display: flex;
        height: revert;
        margin-top: revert;
        margin-bottom: revert;
    }
}</pre></body></html>