<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ HEADER ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  */
.general #Masthead #headerLogo {
	background-position: 0 bottom;
}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ PASSWORD ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  */
.general a.showPass { 
	text-indent: -5000%;
	width: 32px;
	height: 32px;
	margin-top: -3px;
	overflow: hidden;
}
.general a.showPass::before { 
	width: 27px;
	height: 100%;
	position: absolute;
	content: '';
	background: url(https://images.azureedge.net/images/interface/icn_show_hide.png) center 302.75px;
	background-size: 100% auto;
	display: block;
	opacity: .7;
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(100%);
	-webkit-transition: .3s opacity ease, .3s -webkit-filter ease;
	transition: .3s opacity ease, .3s filter ease;
}
.general a.showPass:hover::before, .passWrap input.showing + a.showPass:hover::before { 
	opacity: .92;
	-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
	filter: grayscale(0%);
	-webkit-transition: .3s opacity ease, .3s -webkit-filter ease;
	transition: .3s opacity ease, .3s filter ease;
}
.general .passWrap input.showing + .showPass::before {
	background-position-y: 211.75px;
}</pre></body></html>