<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** MATRIX-CMS **/
.matrixcms, .matrixcms a {
	font: 12px/14px serif;
}
* { outline: none; }

body,
.GPS {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 120%;
	color: #000;
}
body {
	padding: 0;
	margin: 0;
	background-color: #fff;
}

:root {
	--Scarlett-Color: #cd151b;
	--Kyle-Border-Color: #f0ede3;
	--Kyle-Border: 1px solid var(--Kyle-Border-Color);
	--Dexter-Color: #575556;
	--Dexter-Bg-Color: #e3e2e2;
	--Dexter-Border-Color: #888;
	--Dexter-Border: 1px solid var(--Dexter-Border-Color);
	--Arkan-Color: #3366cc;
}

img { border: none; display: block; }
object:hover { border: 0px solid transparent; }

.mxci { max-width: 100%; }

.small { font-size: 85%; }

p, hr, .GPM { margin: 0 0 12px 0; }
p { line-height: 120%; }
.inline { display: inline; }
.floatRight { float: right; }
.floatLeft { float: left; }
.clearBoth { clear: both; }
.nowrap, .NoWrap { white-space: nowrap; }
.BorderBox { box-sizing: border-box; }
.justify { text-align: justify; }

.valignTop.valignTop.valignTop,
.vaTop.vaTop.vaTop,
.alignTop.alignTop.alignTop { vertical-align: top; }
.vaMiddle.vaMiddle.vaMiddle,
.alignMiddle.alignMiddle.alignMiddle { vertical-align: middle; }
.vaBottom.vaBottom.vaBottom { vertical-align: bottom; }
.vaBase.vaBase.vaBase { vertical-align: baseline; }

.alignRight.alignRight.alignRight { text-align: right; }
.alignLeft.alignLeft.alignLeft { text-align: left; }
.alignCenter.alignCenter.alignCenter { text-align: center; }

.displayBlock.displayBlock.displayBlock { display: block; }
.displayInline.displayInline.displayInline,
.inline.inline.inline { display: inline; }
.displayInlineBlock.displayInlineBlock.displayInlineBlock,
.inlineBlock.inlineBlock.inlineBlock { display: inline-block; }
.displayNone.displayNone.displayNone { display: none; }

.invisible.invisible.invisible { visibility: hidden; }

.posAbsolute.posAbsolute.posAbsolute { position: absolute; }
.posRelative.posRelative.posRelative { position: relative; }

.oHidden.oHidden.oHidden { overflow: hidden; }

.bold { font-weight: bold; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.cursorPointer { cursor: pointer; }
.cursorDefault { cursor: default; }

.NoSelect {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.TransformMirror {
	-ms-transform: scale(-1, 1);
	-webkit-transform: scale(-1, 1);
	transform: scale(-1, 1);
}

.ClearFloat:after {
	content: '';
	display: block;
	clear: both;
}

.FieldRequired:after {
	content: '*';
	color: #a23;
	display: inline-block;
	padding-left: 5px;
}
.TableFlow {overflow-x: auto;}


/* Flexy Stuff */

.flexed,
.justflex {
	display: -webkit-box; -ms-flex: 1; display: -ms-flexbox; display: flexbox; display: box; display: -ms-flex; display: -webkit-flex;
	display: flex;
	flex: 0 1 auto;
}
.justflex {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	-ms-justify-content: space-between;
	justify-content: space-between;
}
.flexwrap {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flexigrow1 {
	-webkit-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
}
.flextop { align-items: flex-start; }
.flexmiddle { align-items: center; }
.flexbase { align-items: baseline; }
.flexbottom { align-items: flex-end; }
.flexstretch { align-items: stretch; }

.flexcenter { justify-content: center; }
.flexright { justify-content: flex-end; }
.flexaround { justify-content: space-around; }

.flexitop { align-self: flex-start; }
.fleximiddle { align-self: center; }
.flexibase { align-self: baseline; }
.flexibottom { align-self: flex-end; }

/* some widths */
.w10p { width: 10%; }
.w20p { width: 20%; }
.w30p { width: 30%; }
.w40p { width: 40%; }
.w50p { width: 50%; }
.w60p { width: 60%; }
.w70p { width: 70%; }
.w80p { width: 80%; }
.w90p { width: 90%; }
.w100p,
.fullWidth { width: 100%; }
.noMargin { margin: 0; }
.cfx { display: block; width: 100%; height: 1px; } /*clear full x-axis*/
.jfx { display: inline-block; width: 100%; height: 1px; } /*justify full x-axis*/

.table { display: table; }
.table.inlineBlock, .table.inline { display: inline-table; }
.table .row { display: table-row; }
.table .row .cell { display: table-cell; }
.table .row.vaMiddle .cell { vertical-align: middle; }
.table .row.displayNone, .table .row .cell.displayNone { display: none; }
table.nbcpcs {
	border: none;
	padding: 0;
	border-spacing: 0;
	border-collapse: collapse;
}

/* The Pads */
.pl { padding-left: 5px; }
.pr { padding-right: 5px; }
.pt { padding-top: 5px; }
.pb { padding-bottom: 5px; }
.ph { padding-top: 5px; padding-bottom: 5px; }
.pv { padding-left: 5px; padding-right: 5px; }
.pc { padding: 5px; }

/* The Lines */
.bl { border-left: var(--Kyle-Border); }
.br { border-right: var(--Kyle-Border); }
.bt { border-top: var(--Kyle-Border); }
.bb { border-bottom: var(--Kyle-Border); }
.bh { border-top: var(--Kyle-Border); border-bottom: var(--Kyle-Border); }
.bv { border-left: var(--Kyle-Border); border-right: var(--Kyle-Border); }
.bc { border: var(--Kyle-Border); }

h1, .h1s {
	font-size: 140%;
	font-weight: bold;
	line-height: 100%;
	padding: 0px;
	margin: 0px;
	margin-bottom: 1em;
	color: #000;
}
h2, .h2s {
	margin: 0px;
	margin-bottom: .75em;
	font-size: 120%;
	font-weight: bold;
}
h3, .h3s {
	margin: 0px;
	padding: 0px;
	margin-bottom: 0.5em;
	font-weight: normal;
	color: #979da8;
	font-size: 100%;
}
h4, .h4s {
	margin: 0px;
	padding: 0px;
	margin: 0 0 0.5em 0;
	font-weight: normal;
	font-style: italic;
	font-size: 100%;
}

a, .GAS { color: #cd151b; text-decoration: none; }
a:hover, .GAS:hover,
a:focus, .GAS:focus { text-decoration: underline; }
a.selected, .GAS.selected { text-decoration: underline; }

ul:not([type]) {
	margin: 0;
	padding: 0 0 1em;
	list-style: none;
}
ul:not([type]) &gt; li {
	margin: 0;
	padding: 0;
	padding: 2px 0px;
	padding-left: 20px;
	background-image: url('../images/layout/li.png');
	background-repeat: no-repeat;
	background-position: 0px 0px;
}
ol {
	margin: 0;
	padding: 0 0 1em;
	padding-left: 23px;
	/*font-weight: bold;*/
}
ol li {
	margin: 0;
	padding: 0;
	padding: 2px 0px;
}

INPUT[type=text], INPUT[type=password], textarea {
	border: 1px solid #434343;
	border-color: #a7accf #989dbf #989dbf #a7accf;
	padding: 0px 3px 0px;
	font-size: 100%;
	vertical-align: bottom;
	font-family: 'Roboto', sans-serif;
}
INPUT[type=text], INPUT[type=password] {
	height: 22px;
}
INPUT[type=text]:focus, INPUT[type=password]:focus, textarea:focus {
	box-shadow: 0px 0px 2px #5e8;
}
INPUT.button, INPUT[type="submit"], INPUT[type="button"], INPUT[type="reset"], BUTTON {
	color: black;
	border: 1px solid;
	border-left-color: #D0D7E8;
	border-top-color: #D0D7E8;
	border-bottom-color: #D0D7E8;
	border-right-color: #D0D7E8;
	padding: 0px 3px;
	background: white;
}
INPUT[type="submit"].displayNone {
	display: block;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: none;
	background: none;
	opacity: 0.01;
	position: absolute;
	top: -9999px;
	left: -9999px;
}
label { position: relative; }

input.ui[type="checkbox"],
input.ui[type="radio"] {
	position: absolute;
	transform: scale(0);
	margin-left: 15px; 
}
input.ui[type="checkbox"] + label,
input.ui[type="radio"] + label {
	position: relative;
	padding-left: 26px;
	margin-right: 14px;
	cursor: pointer;
}
input.ui[type="radio"] + label {
	padding-top: 3px;
	padding-bottom: 3px;
}

input.ui[type="checkbox"] + label:before,
input.ui[type="checkbox"] + label:after,
input.ui[type="radio"] + label:before,
input.ui[type="radio"] + label:after {
	content: '';
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	top: 12px;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	transition: all 200ms;
}
input.ui[type="checkbox"] + label:after,
input.ui[type="checkbox"] + label:before {
	border-radius: 0;
}
input.ui[type="checkbox"] + label:before,
input.ui[type="radio"] + label:before {
	border: 1px solid rgba(0,0,0,0.5);
}
input.ui[type="checkbox"] + label:after,
input.ui[type="radio"] + label:after {
	left: 4px;
	transform: translateY(-50%) scale(1.5);
	width: 6px;
	height: 6px;
	background-color: var(--Scarlett-Color);
	opacity: 0;
	transition: all 300ms;
}
input.ui[type="checkbox"]:checked + label:after,
input.ui[type="radio"]:checked + label:after {
	transform: translateY(-50%) scale(1);
	opacity: 1;
}
input.ui[type="checkbox"]:checked + label:before,
input.ui[type="radio"]:checked + label:before {
	background: #fff;
}
input[type='radio'].ui:focus + label {
	box-shadow: 0 1px 0 var(--Scarlett-Color);
}

.shortNum {
	width: 30px;
	text-align: center;
	padding-left: 0;
	padding-right: 0;
}

hr {
	border: none;
	border-bottom: 1px solid #b8b8b8;
	font-size: 0px;
	background-color: transparent;
}

sup, sub {
	height: 0;
	line-height: 1;
	vertical-align: baseline;
	position: relative;
	font-size: 75%;
}

sup { bottom: 1ex; }
sub { top: .5ex; }
</pre></body></html>