#ssActivityIndicator_Container {
    z-index: 9999;
    box-sizing: border-box;
    position: absolute !important;
	display: inline-block;
    left: 50%;
    top: 45%;
	width: 88px;
	height: 88px;
    text-align: center;
	transform: translatex(-50%);
}

#ssActivityIndicator_Underlay {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(49, 104, 155, .8);
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    background: rgba(15, 39, 62, .8);
}

#ssActivityIndicator_Message {
	font: 14px sans-serif;
	margin-top: 20px;
	padding: 6px 8px 4px;
	background: rgba(15, 39, 62, .8);
	color: #fff;
    border: 1px solid rgba(49, 104, 155, .8);
	border-radius: 4px;
	text-align: center;
}

/** https://raw.githubusercontent.com/tobiasahlin/SpinKit/master/LICENSE */
.ssAI_spinner {
    margin-top: 5px;
    margin-left: 13px;
	width: 60px;
	height: 60px;
	text-align: center;
	
	transition: opacity 500ms, height 200ms;

	animation: ss-anim-rotate 2.0s infinite linear;
}

.ssAI_spinner .ssAI_dots {
	display: inline-block;
	position: absolute;
	top: 0;
	width: 74%;
	height: 74%;
    border-radius: 100%;
    
	mix-blend-mode: difference;

	animation: ss-anim-bounce 2.0s infinite ease-in-out;
}

.ssAI_spinner .ssAI_dot1 {
    background-color: #f89938;
    border: 2px solid #fff;
}

.ssAI_spinner .ssAI_dot2 {
	top: auto;
	bottom: 0;
    background-color: #fff;
    border: 2px solid #f89938;

	animation-delay: -1.0s;
}

@keyframes ss-anim-rotate {
    100% { 
        transform: rotate(360deg);
    }
}

@keyframes ss-anim-bounce {
	0%, 100% { 
		transform: scale(0.0);
	} 50% { 
		transform: scale(1.0);
	}
}

.pulse {
    transform: scale(1);
	animation: pulse-error .9s 1;
}

@keyframes pulse-error {
    0% {
		transform: scale(1);
    }
    
    40% {
		transform: scale(1.3);
    }
    
    100% {
		transform: scale(1);
	}
}

hr {
	margin: 2px 0;
	border: 1px solid #193957;
}

p {
    margin: 0 0 5px;
    padding: 5px 0;
}

.sup {
    position: relative;
    vertical-align: 0;
    line-height: 0;
    vertical-align: baseline;
    top: -0.2rem;
}

.sup-rtm {
    top: -0.05rem;
    /* font-size: 70%; */
}

.sup-tm {
    top: 0;
}

a.sssite {
    color: rgb(248, 153, 56);
}

#Blurb {
	box-sizing: border-box;
	padding: 10px 20px 7px;
	border: 1px dotted #3e5e79;
	font-size: 12px;
}

#Blurb p {
	font-size: 0.65rem;
    line-height: 1.5;
    font-family: "Muli";
    font-size: 0.7rem;
    font-weight: 300;
    font-style: normal;
}

#Blurb p a {
	text-decoration: underline;
}

/** Tier 4 */
/** Phones */
@media 
only screen and ( max-width: 666px )
{
    .iframed #ssActivityIndicator_Container {
        left: 50%;
        top: 25%;
        transform: scale(.8) translatex(-50%);
    }
}