








/* Font applied to all elements */
html, body {
	font-family: 'Geneva', Arial, sans-serif;
}

/* Fix issues with text-transform affecting placeholders */
::-webkit-input-placeholder {
	text-transform: initial;
}

:-moz-placeholder {
	text-transform: initial;
}

::-moz-placeholder {
	text-transform: initial;
}

:-ms-input-placeholder {
	text-transform: initial;
}



/* Bootstrap Default Styling Customizations */


/*
Default Breakpoints:
XL: @media (min-width: 1200px)
LG: @media (min-width: 992px)
MD: @media (min-width: 768px)
SM: @media (min-width: 576px)
XS: @media (max-width: 575px);

Custom breakpoints:
@media (min-width: 1200px)
*/


/* Default .container width to 100% at LG Viewport and less */

@media (max-width: 1200px) {
	.container {
		max-width: 100%;
	}
}


/* Custom Bootstrap Responsive Style Classes */

@media (max-width: 575px) {
	.h5-xs {
		font-size: 1rem;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.h5-sm {
		font-size: 1.125rem;
	}
}


/* Bootstrap Button Styling */

.btn {
	/*-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5) !important;
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.5) !important;*/
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.btn-primary {
	color: #fff;
	background-color: #554F51;
	border-color: #9f9f9f;
}

.btn-primary:hover {
	color: #fff;
	background-color: #776F72;
	border-color: #9f9f9f;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #554F51;
	border-color: #9f9f9f;
}

.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary.disabled:hover,
.btn-primary:disabled:hover {
	color: #3b3b3b;
	background-color: #bebebe;
	border-color: #858585;
	cursor: not-allowed;
}

.btn-secondary {
	color: #fff;
	background-color: #585858;
	border-color: #9f9f9f;
}

.btn-secondary:hover {
	color: #fff;
	background-color: #008BC9;
	border-color: #9f9f9f;
}

.btn-secondary:focus {
	color: #fff;
	background-color: #008BC9;
	border-color: #9f9f9f;
	box-shadow: 0 0 0 0.15rem rgba(0,123,255,.80);
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
	color: #fff;
	background-color: #545b62;
	border-color: #4e555b;
}

.btn-neutral {
	color: #fff;
	background-color: #435e6b;
	/*background-color: #006692;*/
	border-color: #9f9f9f;
}

.btn-neutral:hover,
.btn-neutral:focus {
	color: #fff;
	background-color: #577888;
	/*background-color: #0288c4;*/
	border-color: #9f9f9f;
}

.btn-primary:focus {
	background-color: #776F72;
	box-shadow: 0 0 0 0.15rem rgba(0,123,255,.80);
}
.btn-neutral:focus,
.form-control:focus,
table tr:focus {
	box-shadow: 0 0 0 0.15rem rgba(0,123,255,.80);
}

/*
.btn-primary:focus,
.form-control:focus {
	border-color: #c40001;
}*/

/* Custom XL Button Size */

.btn-group-xl>.btn,
.btn-xl {
	padding: 3rem 1rem;
	font-size: 1.25rem;
	line-height: 1.5;
	/*border-radius: .3rem;*/
}


/* Custom XS Button Size */

.btn-group-xs>.btn,
.btn-xs {
	padding: .3rem .4rem;
	font-size: .8rem;
	line-height: .5;
	border-radius: .2rem;
}


/* Disabled button style fixes */

.btn[disabled]:hover,
.btn.disabled:hover {
	cursor:not-allowed;
}



/* Other Bootstrap Default Style Overrides */

.text-primary {
	color: #554F51 !important;
}

.text-secondary {
	color: #006592 !important;
}

.bg-disabled {
	background-color: #e9ecef;
}

.tooltip {
	font-size: 12px !important;

}
.tooltip-inner {
    max-width: 1014px;
	margin: 0 auto;
	border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
}

/* Custom Spinner Size */
.spinner-border-md {
	vertical-align: text-bottom;
    width: 21px;
    height: 21px;
    border-width: 2px;
}

.spinner-border-md2 {
	vertical-align: text-bottom;
    width: 19px;
    height: 19px;
    border-width: 2px;
}

/* Custom Bootstrap Tooltips */
.tooltip {
    z-index: 1050;
}

.tooltip-inner {
	background-color: #fefefe;
	color: black;
}

/* arrange popovers below modal overlays - requires container attribute be defined for popovers within modals! */
.popover {
	z-index: 1030;
}

.popover.error {
	max-width: 96%;
	font-size: .75rem;
	background-color: #FFADAD;
	text-align: center;
}

.error.bs-popover-auto[x-placement^=bottom] .arrow:after,
.error.bs-popover-bottom .arrow:after {
	border-bottom-color: #FFADAD;
}

.error.bs-popover-auto[x-placement^=top] .arrow:after,
.error.bs-popover-top .arrow:after {
	border-top-color: #FFADAD;
}

.popover.error .popover-body {
	padding: .25rem .375rem;
}


/* Custom 'width' classes (for buttons) */

.w-150px {
	width: 100%;
	max-width: 150px !important;
}

.w-175px {
	width: 100%;
	max-width: 175px !important;
}

.w-200px {
	width: 100%;
	max-width: 200px !important;
}

.w-225px {
	width: 100%;
	max-width: 225px !important;
}

.w-250px {
	width: 100%;
	max-width: 250px !important;
}


/* Fix issue with Bootstrap Modal Windows and Navigation Bar Content Shift */

html {
	overflow-y: scroll !important;
}

html.noscroll {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	overflow-y: scroll !important;
}

.modal-open .modal {
	padding-right: 0 !important;
}

.modal-open[style] {
	padding-right: 0px !important;
}

/*
.modal::-webkit-scrollbar {
	width: 0 !important;
}
*/

/* Fix double scrollbar issue in Chrome when modal displayed with scrollable body (above used to work but no longer) */
.modal-open .modal {
	overflow-y: hidden;
}

/* Fix slow scrolling on iOS */
.modal {
	-webkit-overflow-scrolling: touch;
}

/* Add Y Scrollbar to modal-body */
.modal-body {
	overflow-y: auto !important;
}

/* Various Bootstrap CSS Overrides */

/* Add box-shadow to .form-control elements within form-group elements on focus -- more for radiobutton / checkboxes */
/*.form-group:focus-within .form-control:not(.jstree-search-field), */
.form-control input[type="radio"]:focus,
.form-control input[type="checkbox"]:focus {
	box-shadow: 0 0 0 0.15rem rgba(0,123,255,.80);
}



/* Loading Spinner (displaySpinner function) */
/* Based on: https://www.w3schools.com/howto/howto_css_loader.asp */

#spinner {
	border: 30px solid #f3f3f3;
	border-radius: 50%;
	border-top: 30px solid #776F72;
	width: 100%;
	height: 100%;
	-webkit-animation: spin 2s linear infinite;
	/* Safari */
	animation: spin 2s linear infinite;
}

#spinner-bg {
	padding: 30px;
	width: 250px;
	height: 250px;
	background-color: #2a2a2a;
	position: relative;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	-moz-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	-o-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);

	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	/* IE 5-7 */
	filter: alpha(opacity=80);
	/* Netscape */
	-moz-opacity: 0.8;
	/* Safari 1.x */
	-khtml-opacity: 0.8;
	/* Good browsers */
	opacity: 0.8;
	border: 1px solid #9f9f9f;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-moz-box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5);
	-webkit-box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5);
	cursor: wait;
}

@media (min-width: 576px) and (max-width: 767px) {
	#spinner {
		border: 20px solid #f3f3f3;
		border-top: 20px solid #554F51;
	}
	#spinner-bg {
		padding: 20px;
		width: 200px;
		height: 200px;
	}
}

@media (max-width: 575px) {
	#spinner {
		border: 15px solid #f3f3f3;
		border-top: 15px solid #554F51;
	}
	#spinner-bg {
		padding: 10px;
		width: 150px;
		height: 150px;
	}
}

#spinner-overlay {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999999988 !important;
	color: transparent;
	background-color: rgba(255, 255, 255, 0.4);
	cursor: wait;
}


/* Safari */

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}



/* Internet Explorer 10/11 Specific CSS Fixes */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	/* Fix flexbox for navbar */
	#header-top,
	#header-bottom {
		display: flex; /* new; forces all children into a single row */
		flex-direction: column;
		height: 100%;
	}
	nav.navbar {
		height: 100%;
		display: inline-flex;
		/* justify-content: center; <-- not needed */
		align-items: center;
		width: 100%;
	}
	/* Fix partners page flexbox width for card-body elements */
	#content.partners .card,
	#content.partners .card .card-body {
		/*max-width: 538px;*/
		width: 100%;
	}
	/* Fix card/carddeck fluid image issue -- fixed via adding h-100 class to these elements directly
	.card-deck .card {
		height: 100%;
	}
	.card-deck .card .card-img-top {
		height: 100%;
	}*/
	/* Fix positioning/overlay issue with progress-bar text in header stats areas */
	#header-banner-stats-data .progress span,
	#header-banner-stats-collapse .progress span {
		line-height: 14px !important;
		left: 0px !important;
	}
	/* Fix modal-title width issue in IE10/11 */
	.modal-title {
		width: 100%;
	}
}


/* Bootstrap AutoComplete Plugin CSS overrides */
.bootstrap-autocomplete.dropdown-menu a.dropdown-item {
	font-weight: normal;
	color: #333;
}
.bootstrap-autocomplete.dropdown-menu a.dropdown-item:focus {
	color: #333 !important;
}



/* Bootstrap4-toggle css fixes (https://gitbrent.github.io/bootstrap4-toggle/) */
.toggle .toggle-group {
	left: -1px;
}


/* TiTaToggle CSS overrides (http://kleinejan.github.io/titatoggle/) */
.checkbox-slider input[type="checkbox"]:focus + *:before,
.checkbox-slider--default input[type="checkbox"]:focus + *:before,
.checkbox-slider--a-rounded input[type="checkbox"]:focus + *:before,
.checkbox-slider--a input[type="checkbox"]:focus + *:before,
.checkbox-slider--b input[type="checkbox"]:focus + *:before,
.checkbox-slider--b-flat input[type="checkbox"]:focus + *:before,
.checkbox-slider--c input[type="checkbox"]:focus + *:before,
.checkbox-slider--c-weight input[type="checkbox"]:focus + *:before,
.checkbox-toggle input[type="checkbox"]:focus + *:before {
	outline: none;
	box-shadow: 0 0 0 0.15rem rgba(0,123,255,.80);
}

.checkbox-slider--b input:checked+span:before,
.checkbox-slider--b-flat input:checked+span:before {
	background: #776F72;
}

.checkbox-slider label span,
.checkbox-slider--default label span,
.checkbox-slider--a-rounded label span,
.checkbox-slider--a label span,
.checkbox-slider--b label span,
.checkbox-slider--b-flat label span,
.checkbox-slider--c label span,
.checkbox-slider--c-weight label span {
	line-height: 12px;
	vertical-align: text-top;
}

.checkbox-slider--b input+span,
.checkbox-slider--b-flat input+span,
.checkbox-slider--c input+span,
.checkbox-slider--c-weight input+span {
	padding-left: 30px;
}


.checkbox-slider-sm label span {
	font-size: 10px;
	line-height: 10px;
}

.checkbox-slider-sm input+span {
	padding-left: 10px;
}

/*
.checkbox-slider-md label span {
	font-size: 30px;
	line-height: 30px;
}

.checkbox-slider-lg label span {
	font-size: 40px;
	line-height: 40px;
}*/

/* Fix disabled color changed in update */
.checkbox-slider--a input:disabled+span,
.checkbox-slider--a-rounded input:disabled+span,
.checkbox-slider--b input:disabled+span,
.checkbox-slider--b-flat input:disabled+span,
.checkbox-slider--c input:disabled+span,
.checkbox-slider--c-weight input:disabled+span {
    color: #adb5bd;
}

.checkbox-slider--b input:disabled:checked+span:before,
.checkbox-slider--b-flat input:disabled:checked+span:before,
.checkbox-slider--c input:disabled+span:before,
.checkbox-slider--c input:disabled:checked+span:after,
.checkbox-slider--c-weight input:disabled+span:before,
.checkbox-slider--c-weight input:disabled:checked+span:after,
.checkbox-slider--default input:disabled+span:after {
    background: rgba(100,100,100,.2);
}


/* noty plugin related styling */
.noty_message {
	font-size: 12px !important;
}

.noty_bar:after {
    position: absolute;
    bottom: -10px;
    right: -3px;
    float: right;
    content: '\f057';
    font-family: FontAwesome;
    color: #333;
    font-weight: normal;
    font-size: 18px;
}


/* cookiealert plugin related styling */
.cookiealert {
	z-index: 1040;
}

.cookiealert a {
	color: #90898c !important;
}

body .cookiealert a:hover,
body .cookiealert a:focus {
	color: #a9a3a6 !important;
}


/* rotating style - used by jstree */
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating,
li.jstree-open.rotate:before,
li.jstree-closed.rotate:before {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}




/* jsTree plugin related styling */

/* set minimum height of jstree element (to match height of bootstrap elements, prior to list init) */
.form-row-tree .form-control {
	min-height: 38px;
}

/* make jsTree anchor links normal font size and color */
.jstree a,
.jstree a:not(.btn):active,
.jstree a:not(.btn):visited  {
	font-weight: normal !important;
	color: inherit !important;
	text-decoration: none;
}

/* jstreeadmincheckbox checkbox styling */
.admin-access-checkbox-label {
	font-style: italic;
	font-size: 14px;
	vertical-align: top;
	padding-left: 11px;
	margin-bottom: 0 !important;

}
.all-admin-checkbox-label {
	font-style: italic;
	font-size: 14px;
	vertical-align: top;
	color: firebrick;
	padding-left: 1px;
	margin-bottom: 0 !important;
}

/* Use fontawesome icon for jsTree parent nodes */
li.jstree-open:before {
	display: inline-block;
	/*vertical-align: top;*/
	content: '\f056';
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: #776F72;
	font-weight: normal;
	font-size: 20px;
	width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

/* Use fontawesome icon for jsTree parent nodes */
li.jstree-closed:before {
	display: inline-block;
	/*vertical-align: top;*/
	content: '\f055';
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: #776F72;
	font-weight: normal;
	font-size: 20px;
	width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

/* Hide/Remove default jstree arrow icons */
.jstree-icon.jstree-ocl {
	background: none !important;
	margin-left: -20px;
}

/* Fix overflow on jstreeGrid wrapper */
.jstree-grid-wrapper {
	overflow: initial !important;
}

/* Hide/Remove jstreeGrid header elements */
.jstree-grid-header {
	display: none !important;
}

/* Remove padding on jstreeGrid cells - Keeps styling consistant with default jsTree padding vs jstreeGrid initalization */
.jstree-grid-cell {
	padding-left: 0 !important;
}

/* Fix jstreeGrid column-0 width */
.jstree-grid-column-0 {
	width: 100% !important;
	max-width: unset !important;
}

/* Fix issue with jsTreeGrid 'admin checkbox' background color being visible when 'normal' jsTree node is selected */
.jstree-clicked:not(.jstree-hovered) {
	background: transparent !important;
	border-radius: none !important;
	box-shadow: none !important;
}

.jstree-clicked.jstree-hovered, .jstree-default .jstree-hovered {
	background: #e7f4f9 !important;
	border-radius: none !important;
	box-shadow: none !important;
}
/* New method to hide parent node checkboxes by adding a_attr classname to parent nodes / inital json data */
.no-checkbox > i.jstree-checkbox {
	display:none;
}

/* jsTree Search Filter(s) styling */
.jstree-search-group {
	width: auto;
	max-width: 248px;
	float: right;
}

/* Responsive styling for .jstree-search-group element */
@media (max-width: 405px) {
	.jstree-search-group {
		float: unset;
		margin: 2px 0 8px;
	}
}

.jstree-search-field {
	padding: 8px;
}

@media (max-width: 550px) {
	.jstree-search-field {
		width: 100px !important;
	}
}


.jstree-search-group button {
	font-size: 9.5px;
	height: 26px !important;
}

.jstree-search-group button.showSelected {
	border-top-right-radius: 4px !important;
	border-bottom-right-radius: 4px !important;
	background-color: #6c757d;
}

.jstree-search-group button:focus {
	box-shadow: 0 0 0 0.15rem rgba(0,123,255,.80);
}
.jstree-search-group .badge {
	position: absolute;
	margin-top: -15px;
	font-size: 11px;
	height: 100%;
	display: none;
}

.jstree-search-field {
	/*width: 50% !important;*/
	font-size: 12px;
	min-height: 26px !important;
	height: 26px !important;
	z-index: 1;
}

.jstree-search-field:focus {
	box-shadow: 0 0 0 0.15rem rgba(0,123,255,.80);
}

.jstree-default .jstree-search {
	font-style: inherit;
	color: inherit;
	font-weight: inherit;
	background-color: #ffff80 !important;
}

/* add strike through text of disabled jstree node  */
.jstree-anchor.jstree-disabled {
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	/* IE 5-7 */
	filter: alpha(opacity=50);
	/* Netscape */
	-moz-opacity: 0.5;
	/* Safari 1.x */
	-khtml-opacity: 0.5;
	/* Good browsers */
	opacity: 0.5;
}



/* jquery.loadmask.min.js plugin css overrides  */

/* hidden div used for loading mask text and image - found in header */

#loading-mask {
	display: none;
}

.loadmask {
	z-index: 100;
	position: absolute;
	top: 0;
	left: 0;
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)" !important;
	/* IE 5-7 */
	filter: alpha(opacity=50) !important;
	/* Netscape */
	-moz-opacity: 0.5 !important;
	/* Safari 1.x */
	-khtml-opacity: 0.5 !important;
	/* Good browsers */
	opacity: 0.5 !important;
	background-color: #333 !important;
	width: 100%;
	height: 100%;
	zoom: 1;
	cursor: wait;
}

.loadmask-msg {
	z-index: 20001;
	position: absolute;
	top: 5% !important;
	left: 10% !important;
	border: none !important;
	background: transparent !important;
	padding: 0;
	width: 80%;
	text-align: center;
	margin: 0;
}

.loadmask-msg div {
	padding: none;
	background: transparent !important;
	line-height: 16px;
	border: none;
	color: #FFF;
	font: inherit !important;
	font-size: 20px !important;
	cursor: wait;
	filter: glow(color=black, strength=1);
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}


/* Tempus Dominus Bootstrap4 Datepicker plugin CSS Overrides */
.bootstrap-datetimepicker-widget.dropdown-menu {
	min-width: 100%;
	left: 0 !important;
	z-index: 2000 !important;
}


/* bootstrap autocomplete plugin related styling */
.bootstrap-autocomplete.dropdown-menu {
    z-index: 1035;
}


/* Common Page Elements */

/* hide IE10 > password clear/reveal icon */
::-ms-clear,
::-ms-reveal {
	display: none;
}

/* remove outline for links and buttons - firefox fix */
:focus {
	outline: none;
}

::-moz-focus-inner {
	border: 0;
}

a:not(.btn),
a:not(.btn):active,
a:not(.btn):visited {
	text-decoration: none;
	color: #776F72;
	font-weight: bold;
}

a:not(.btn):hover {
	text-decoration: none;
	color: #585858;
	font-weight: bold;
}

a:not(.btn):focus {
	text-decoration: underline !important;
	color: #585858 !important;
	font-weight: bold;
}

#content-top-hr,
.primary-hr {
	height: 3px;
	margin-top: 2px;
	background-color: #554F51;
}

.primary-color {
   color: #554F51;
}

#content {
	margin-top: 20px;
}

#content h1 {
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	text-indent: 0px;
	color: #554F51;
}

#content:after {
	content: '';
	display: block;
	clear: both;
}

.ribbon-hr {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 0;
	position: relative;
	display: inline-block;
	background: #554F51;
	min-height: 42px;
	/*line-height: 42px;*/
	padding: 5px 20px;
	width: 50%;
	min-width: 430px;
	color: #FFF;
	text-transform: uppercase;
	text-align: left;
	/* rounded right corner */
	-webkit-border-top-right-radius: 90px;
	-webkit-border-bottom-right-radius: 90px;
	-moz-border-radius-topright: 90px;
	-moz-border-radius-bottomright: 90px;
	border-top-right-radius: 90px;
	border-bottom-right-radius: 90px;
}
/*
#content:not(.registration) .ribbon-hr {
	margin-bottom: 20px;
}*/

/* Responsive styling for ribbon elements */
@media (max-width: 500px) {
	.ribbon-hr {
		font-size: 18px;
		min-width: 100%;
		padding: 7px;
		/* remove rounded right corner */
		-webkit-border-top-right-radius: unset;
		-webkit-border-bottom-right-radius: unset;
		-moz-border-radius-topright: unset;
		-moz-border-radius-bottomright: unset;
		border-top-right-radius: unset;
		border-bottom-right-radius: unset;
	}
}

.question-box {
	font-size: 19px;
	font-weight: bold;
	margin: 40px auto 30px auto !important;
	text-align: center;
	border: solid 1px #585858;
	color: #FFF;
	min-height: 42px;
	line-height: 1.5;
	padding: 7.5px;
	background: #767676;
	/* rounded right corner */
	-webkit-border-top-right-radius: 90px;
	-webkit-border-bottom-right-radius: 90px;
	-moz-border-radius-topright: 90px;
	-moz-border-radius-bottomright: 90px;
	border-top-right-radius: 90px;
	border-bottom-right-radius: 90px;
	/* rounded left corner */
	-webkit-border-top-left-radius: 90px;
	-webkit-border-bottom-left-radius: 90px;
	-moz-border-radius-topleft: 90px;
	-moz-border-radius-bottomleft: 90px;
	border-top-left-radius: 90px;
	border-bottom-left-radius: 90px;
}

#content:not(.registration) .question-box {
	margin: 20px auto !important;
}

/* Responsive styling for question-box elements */
@media (max-width: 500px) {
	.question-box {
		font-size: 17px;
	}
}

.container > .ajax-content ~ .ajax-content {
	display: none;
}

.ajax-content .question-box {
	width: 90%;
	height: auto;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 20px;
}

.ajax-content table {
	width: 90%;
	margin: 0 auto 1rem auto;
}

table .selected-row {
	/*background-color: #FFFF4F !important;*/
	background-color: #776F72 !important;
	color: #fff !important;
}

table td.selected-row:last-of-type:after {
    content: "\f00c";
    font-family: FontAwesome;
    font-style: normal;
    text-decoration: inherit;
    color: #13D522;
    font-weight: normal;
    font-size: 50px;
    margin-left: -50px;
    margin-top: -25px;
    margin-bottom: -26px !important;
    position: relative;
    float: right;
    right: -30px;
    z-index: 10;
    opacity: 2.2;
    filter: glow(color=black,strength=1);
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.strikethrough {
	font-style: italic;
	text-decoration: line-through;
}

.mandatory-field-message {
	font-size: 13px;
	color: #776F72;
	display: block;
	font-style: italic;
	margin-top: 12px;
	margin-left: 10px;
	margin-bottom: -22px;
}

.form-row-label-mandatory {
	font-size:16px;
	margin: -8px 0px 0px -2px;
	color: #776F72;
}


.form-group.validation-error,
.text-red {
	color: #eb0000;
}


/* Header & Nav Menu Styling */

#header-top,
#header-bottom {
	background: #006592;
	/* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' -> set in styles-ie.css */
	background: -moz-linear-gradient(top, #006592 40%, #004d6f 100%);
	/* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #006592), color-stop(100%, #004d6f));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #006592 40%, #004d6f 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #006592 40%, #004d6f 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(top, #006592 40%, #004d6f 100%);
	/* IE10+ */
	background: linear-gradient(to bottom, #006592 40%, #004d6f 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006592', endColorstr='#004d6f ', GradientType=0);
	/* IE6-8 */
}

#header-top {
	border-bottom: solid 3px #006592;
}

#header.pre-login #header-top,
#header .navbar {
	min-height: 63px;
}

#header .navbar-toggler {
	color: rgba(255, 255, 255, .5);
	border-color: rgba(255, 255, 255, .1);
	background-color: rgba(84, 195, 229, 0.2);
	z-index: 100;
}

#header .nav-link {
	text-transform: uppercase;
	font-weight: normal;
	color: #fff;
}

#header .nav-link:hover,
#header .nav-link:focus {
	color: #E4E4E4 !important;
}

#header .nav-item.active .nav-link {
	color: #54c3e5 !important;
	font-weight: bold;
	/*min-width: 150.5px;*/
}

#header .nav-item.active .nav-link:hover,
#header .nav-item.active .nav-link:focus,
#header .nav-link:hover,
#header .nav-link:focus {
    color: #E4E4E4 !important;
	text-decoration: underline;
}

#header .nav-link.disabled {
	color: #6c757d;
	cursor: not-allowed;
}

#header .navbar ul li:not(:last-child) {
	border-right: 1px solid grey;
}

.nav-link,
.nav-link:active,
.nav-link:visited {
	font-weight: normal !important;
	color: #CCCCCC;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
	background-color: #776F72;
}

#skipToContentBtn {
	position: absolute;
	top: -1px;
	margin-left: 2px;
	text-transform: uppercase;
	font-size: 10px;
	z-index: 1;
}
#navbar-header-top-left {
	max-width: 451.5px;
}

#navbar-header-top-right {
	max-width: 451.5px;
}

#navbar-header-top-middle {
	max-width: 230px !important;
}

#header-bottom-text {
	color: #BFBFBF;
	vertical-align: middle;
	line-height: 31px;
	min-height: 31px;
	text-align: center;
	font-size: 13px;
}

.header-bottom-text-hover {
	color: #FFF !important;
	cursor: pointer;
}

#header-banner {
	height: 180px;
	background-image: url('/koala_final/contents/images/generic/activityleader/header-banner-pre-login.jpg');
	background-repeat: no-repeat;
	background-position: center left;
	background-size: cover;
	position: relative;
}

#header.post-login #header-banner {
	background-image: url('/koala_final/contents/images/generic/activityleader/header-banner-post-login.jpg');
}

#header-banner-stats {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	text-align: left;
	width: 100%;
	/* width is dynamically changed via header-menu.js function */
	max-width: 275px;
	height: 180px;
	line-height: 180px;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+40&0+0,0.65+40 */
	background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 90%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,0.85) 90%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0.85) 90%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000d9',GradientType=1 ); /* IE6-9 */
}

#header-banner-stats-collapse {
	display: inline-block;
	width: calc(50% - 115px);
	text-align: right;
	padding: 5px 20px 0 0;
	text-transform: uppercase;
	line-height: 15px;
}

#header-banner-stats-collapse .fullname {
	font-size: 13px;
	font-weight: bolder;
	word-wrap: break-word;
	white-space: pre-line;
	color: #fff;
}

#header-banner-stats-collapse .username {
	font-size: 10.5px;
	font-weight: bold;
	color: #a5a5a5;
	white-space: nowrap;
	text-transform: lowercase;
	font-style: italic;
	word-break: break-all;
	white-space: pre-line;
}

@media (max-width: 650px) {
	#header-banner-stats-collapse .fullname {
		font-size: 12px;
	}
	#header-banner-stats-collapse .username {
		font-size: 10px;
		line-height: 11px;
	}
}

@media (max-width: 620px) {
	#header-banner-stats-collapse .fullname {
		font-size: 11px;
	}
	#header-banner-stats-collapse .username {
		font-size: 9.5px;
	}
}

@media (max-width: 550px) {
	#header-banner-stats-collapse .fullname {
		font-size: 10px;
	}
	#header-banner-stats-collapse .username {
		font-size: 9px;
	}
}

#header-banner-stats-collapse .badge {
	background-color: #006fe6;
	font-size: 9px !important;
}

#header-banner-stats-collapse .progress {
	float: right;
	width: 90%;
	max-width: 80px;
	color: #212529;
	text-shadow: none !important;
	background-color: #d5d5d5;
	height: 13.3px;
	margin-top: 2px;
}

#header-banner-stats-collapse .progress span {
	text-shadow: none !important;
	font-size: 9px !important;
	font-weight: bold;
	line-height: 13.3px;
}

#header-banner-stats-collapse .dropdown-toggle:after {
	content: none;
}

#header-banner-stats-collapse .dropdown-menu {
	left: unset;
	right: -19px;
	top: 54px;
}

#header-banner-stats-collapse .dropdown-menu .stats {
	font-size: 8.5px;
	padding: 5px 5px 0 5px;
	margin: 5px 5px 0 5px;
	border-top: 1px dotted gray;
	color: gray;
	white-space: nowrap;
	text-align: center;
}

#header-banner-stats-collapse a.dropdown-item {
	text-align: right;
}


@media (min-width: 992px) {
	#header-banner-stats {
		display: block;
	}

	#header-banner-stats-collapse {
		display: none;
	}
}

@media (max-width: 450px) {
	#header-banner-stats-collapse {
		display: none;
	}
	.navbar-toggler {
		padding: .35rem;
		margin-left: 5px !important;
	}
	#header-bottom .navbar {
		min-height: 36px !important;
	}
}

#header-banner-stats-data:hover {
	cursor: pointer;
}

#header-banner-stats-data {
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
	white-space: normal;
	text-transform: uppercase;
	text-align: right;
	color: #fff;
	width: 90%;
	font-size: 9px;
	line-height: 15px;
	text-shadow: 0.5px 0.5px rgba(0, 0, 0, 0.8);
}

#header-banner-stats-data .fullname {
	font-size: 18px;
	line-height: 18px;
	font-weight: bolder;
	word-wrap: break-word;
	color: #fff;
}

#header-banner-stats-data .username {
	font-size: 10.5px;
	font-weight: bold;
	color: #a5a5a5;
	white-space: nowrap;
	margin-bottom: 15px;
	text-transform: lowercase;
	font-style: italic;
}

#header-banner-stats-data .badge {
	background-color: #006fe6;
	font-size: 11px !important;
	text-shadow: none !important;
}

#header-banner-stats-data .progress {
	width: 125px;
	left: 125px;
	color: #212529;
	text-shadow: none !important;
	background-color: #d5d5d5;
	margin-top: -1px;
}

#header-banner-stats-data .progress span {
	font-size: 11px !important;
	font-weight: bold;
	text-shadow: none !important;
	line-height: 16px;
	margin-top: 1px;
}

#header-banner-stats-data .stat {
	color: #d5d5d5;
}

#header-banner-text {
	white-space: nowrap;
	position: relative;
	top: 50px;
	/*text-shadow:
	-0.4px -0.4px 0 #fff,
		0.4px -0.4px 0 #fff,
		-0.4px 0.4px 0 #fff,
		0.4px 0.4px 0 #fff;*/
	text-shadow: transparent 0px 0px 0px, #fff 1px 2px 1px;
}

#header-banner-text-small {
	font-size: 26px;
	line-height: 32px;
	color: #554F51;
	text-align: center;
	background-image: url('/koala_final/contents/images/generic/activityleader/header-banner-text-small.png');
	background-repeat: no-repeat;
	background-position: center;
}

#header-banner-text-small-lower {
	font-size: 23px;
	line-height: 23px;
	color: #554F51;
	text-align: center;
}

#header-banner-text-large {
	font-weight: 700;
	font-size: 46px;
	/* set to 36px for Workplace Implementations (via custom css stylesheet override) */
	line-height: 46px;
	/* set to 36px for Workplace Implementations (via custom css stylesheet override) */
	color: #FFF;
	text-align: center;
	color: #554F51;
}

#accessibility-badge {
	display: none;
}

#header-logo {
	width: 247px;
	height: 125px;
	background-image: url('/koala_final/contents/images/generic/header-logo-bg.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top center;
	position: absolute;
	top: 0px;
	/* center image dynamically based on header width minus half of header-logo-bg image width */
	left: 50.25%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

#header-logo-img {
	margin-left: 5px;
}

/* Bootstrap Carousel style for header-logo-image */
#header-logo-img .carousel-item {
	width: 228px !important;
	height: 82px !important;
	margin-top: 6px !important;
	background-position: top center !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
}

@media (max-width: 350px) {
	#header-logo {
		width: 180px !important;
		height: 91px !important;
	}
	#header-logo-img .carousel-item {
		width: 166px !important;
		height: 60px !important;
	}
}

/* Set the active carousel item to fade out when transitioning into the next item */
.carousel .carousel-item.active.carousel-item-left {
  transition: opacity ease-out .5s;
}

#header-logo-img .carousel-item:hover {
    cursor: pointer;
}

/* Responsive styling for header elements */
@media (max-width: 485px) {
	#header-banner-text {
		top: 60px;
	}
	#header-banner-text-large {
		font-weight: 700;
		font-size: 30px;
		line-height: 30px;
	}
	#header-banner-text-small {
		font-size: 22px;
		background-size: contain;
	}
	#header-banner-text-small-lower {
		font-size: 19px;
	}
}

@media (max-width: 330px) {
	#header-banner-text-large {
		font-weight: 700;
		font-size: 26px;
	}
	#header-banner-text-small {
		font-size: 20px;
		background-size: contain;
	}
	#header-banner-text-small-lower {
		font-size: 17px;
	}
}



/* Footer (footer-pre.jsp) Styling */

#footer-top {
	background-color: #585858;
	width: 100%;
	height: 23px;
	margin-top: 10px;
	color: #CCC;
}

#footer-bottom {
	padding: 5px;
	text-indent: 20px;
	width: 100%;
	text-align: right;
	font-size: 12px;
	font-weight: bold;
	color: #333;
}

#footer a {
	text-decoration: none;
	color: inherit;
}

#footer a:hover,
#footer a:focus {
	color: #006592 !important;
}
#footer-top #footer-top-left {
	display: inline-block;
	float: left;
	font-size: 12px;
	font-weight: bold;
	padding-left: 2.5px;
	margin-top: 2.5px;
}

#footer-top #footer-top-left button:before {
	display: inline-block;
	content: '\f05a';
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: inherit;
	font-weight: normal;
	font-size: 12px;
	margin-right: 5px;
}

#footer-top #footer-top-right {
	display: inline-block;
	float: right;
	font-size: 12px;
	font-weight: bold;
	padding-right: 2.5px;
	margin-top: 2.5px;
}

#footer-top #footer-top-right button:after {
	display: inline-block;
	content: '\f024';
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: inherit;
	font-weight: normal;
	font-size: 12px;
	margin-left: 5px;
}

#footer-top #footer-top-right:hover,
#footer-top #footer-top-right:hover:before,
#footer-top #footer-top-left:hover,
#footer-top #footer-top-left:hover:after {
	color: #fff;
	cursor: pointer;
}

/* Responsive styling for footer elements */
@media (max-width: 400px) {
	#footer-top #footer-top-left {
		padding-left: 2px;
	}
	#footer-top #footer-top-right {
		padding-right: 2px;
	}
}

/* Google Places Address Autocomplete Container */
.pac-container {
	z-index: 1051 !important;
	width: auto !important;
}


/* programPageLogo - used in various pages */
.programPageLogo {
    height: 100px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-position: center center !important;
}


/* Start Page (start.jsp) Styling */

.start h2 {
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	text-indent: 0px;
	color: #554F51;
}


/* Registration Page (/registration/registration.jsp) Styling */

body.registration .tooltip {
	z-index: 1000;
}

#googleRecaptcha {
	min-height: 78px;
}

#googleRecaptcha div:first-child {
	margin: 0 auto;
}
.tooltip.error.recaptcha {
	margin-top: -10px;
}

.privacy-scroll-arrow {
	display: inline-block;
	position: absolute; /* was fixed */
	right: 2px;
	top: 12px;
}

.privacy-scroll-arrow-tip {
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 18px 15px 0 15px;
	border-color: #776F72 transparent transparent transparent;
	display: inline-block;
	vertical-align: middle;
	margin: 24px 0px 0px 10px;
}

.privacy-scroll-arrow-line {
	position: relative;
	top: -42px;
	left: -6.5px;
	width: 14px;
	height: 30px;
	background-color: #776F72;
	display: inline-block;
	vertical-align: middle;
}


#registrationSubmitBtn {
	text-align: center;
	margin: 0 auto;
	display: block;
	margin-bottom: 40px;
}


/* Home Page (/course/home.jsp) Styling */

#skip-navbar {
	font-weight: 400;
	line-height: 1.5;
}

#skip-navbar:focus {
	box-shadow: 0 0 0 0.3rem rgba(0,123,255,.80);
}

#program-info h3 {
	font-size: 1rem;
	margin-bottom: 1rem;
	font-weight: 400;
	line-height: 1.5;
}


/* FAQ Page (/course/faq.jsp) Styling */

#faq-info h3 {
	font-size: 1rem;
	margin-bottom: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

#faq-apple-link:hover,
#faq-google-link:hover {
	opacity: 0.8;
	cursor: pointer;
}

#faq-apple-link:focus,
#faq-google-link:focus {
	opacity: 0.8;
	box-shadow: 0 0 0 0.15rem rgba(0,123,255,.80);
}


/* Partners Page (/course/partners.jsp) Styling */

#partners-info h3 {
	font-size: 1rem;
	margin-bottom: 1rem;
	font-weight: 400;
	line-height: 1.5;
}


/* Help Page (/course/help.jsp) Styling */

#help-info h3 {
	font-size: 1rem;
	margin-bottom: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

#help-apple-link:hover,
#help-google-link:hover {
	opacity: 0.8;
	cursor: pointer;
}

#help-apple-link:focus,
#help-google-link:focus {
	opacity: 0.8;
	box-shadow: 0 0 0 0.15rem rgba(0,123,255,.80);
}


/* Handouts Page (/course/handouts.jsp) Styling */

#program-handout-title h4 {
	font-size: 1rem;
	margin-top: 0;
    margin-bottom: 0;
	line-height: 1.5;
}


/* Program Page (/course/program.jsp) Styling */

#program-page-info h3 {
	font-size: 1rem;
	margin-bottom: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

#program-module-list h5 {
    margin-bottom: 0rem;
    line-height: 1.5;
	font-size: 1rem
}

#program-module-list #tab-pane div:first-child {
	margin-bottom: .5rem;
	line-height: 1.2;
}

#program-module-list .nav-link.locked {
	cursor: not-allowed;
    opacity: 0.5;
	background-color: #f4f4f4 !important;
	color: #6c757d;
    border-color: transparent;
}

.card.disabled,
.nav-link.disabled {
	opacity: 0.5;
	background-color: #f4f4f4 !important;
}

.card.disabled a,
.nav-link.disabled {
	cursor: not-allowed;
	pointer-events: unset;
}

.card.completed .card-header:after {
	content: "\f00c";
	font-family: FontAwesome;
	font-style: normal;
	text-decoration: inherit;
	color: #13D522;
	font-weight: normal;
	font-size: 50px;
	margin-bottom: -50px !important;
	position: relative;
	top: -20px;
	float: right;
	right: -10px;
	z-index: 10;
	opacity: 0.6;;
	width: auto;
	height: auto;
	filter: glow(color=black,strength=1);
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

/* border color for card with active class */

.card.current {
	border-color: #776F72;
	/* DISABLED css animation due to crashing on Safari / iOS 15.4.1 or greater
	animation-name: card-current;
	animation-duration: 4s;
	animation-iteration-count: infinite; */
}

/* @keyframes card-current {
	0%   {border-color: rgba(0, 0, 0, 0.125);}
	50%  {border-color: #776F72;}
	100% {border-color: rgba(0, 0, 0, 0.125);}
}*/

.nav-link.completed {
	z-index: 1;
	position: relative;
}

.nav-link.completed h5:after {
	content: "\f00c";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: #13D522;
	font-weight: normal;
	font-size: 50px;
	position: absolute;
	left: 29.5px;
	margin-top: -28px;
	z-index: -1;
	opacity: 0.1;
	width: auto;
	height: auto; /* width/height so IE7 and lower will work */
	filter: glow(color=black,strength=1);
	text-shadow: -1px -1px 0 #000,
	1px -1px 0 #000,
	-1px 1px 0 #000,
	1px 1px 0 #000;
}

#content.program .nav-tabs .nav-link:hover {
	color: #767676 !important;
}

#content.program .nav-tabs .nav-link.show {
	color: #776F72 !important;
}


#content.program .nav-tabs .nav-link.current {
	color: #776F72;
	border-color: #776F72 #776F72 #fff;
	/* DISABLED due to crashing on Safari / iOS 15.4.1 or greater
	animation-name: tab-current;
	animation-duration: 1s;
	animation-iteration-count: infinite;*/
}

/*@keyframes tab-current {
	0%   {color: #8b8b8b;}
	50%  {color: #776F72;}
	100% {color: #8b8b8b;}
} */


/* Social Media Sharing */

ul.social-media-share-buttons{
	list-style: none;
	padding: 0;
}

ul.social-media-share-buttons li{
	display: inline;
}

ul.social-media-share-buttons .sr-only{
	position: absolute;
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0;
	border: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

ul.social-media-share-buttons li i {
	color: #554F51;
}

ul.social-media-share-buttons li i:hover {
	color: #776F72;
}

.linkedin-add-to-profile {
	display: inline-block;
	width: 208px;
	height: 42px;
	vertical-align: sub;
	background-image: url("data:image/svg+xml,%3Csvg width='2541pt' height='512pt' viewBox='0 0 2541 512' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2355bcdc' opacity='0.23' d=' M 82.46 0.00 L 91.64 0.00 C 84.53 1.20 77.31 1.57 70.19 2.81 C 74.83 1.87 79.56 1.35 84.25 0.68 L 82.46 0.00 Z' /%3E%3Cpath fill='%2355bcdc' opacity='0.23' d=' M 415.54 0.00 L 419.94 0.00 C 419.05 1.90 416.56 1.58 415.54 0.00 Z' /%3E%3Cpath fill='%23554F51' opacity='1.00' d=' M 91.64 0.00 L 415.54 0.00 C 416.56 1.58 419.05 1.90 419.94 0.00 L 491.00 0.00 C 491.00 170.67 491.00 341.33 491.00 512.00 L 420.02 512.00 L 419.99 510.41 C 396.34 511.15 372.65 510.55 348.99 510.75 C 266.34 510.75 183.68 510.74 101.03 510.75 C 92.53 510.79 83.95 510.73 75.58 509.06 C 59.26 506.13 43.76 498.72 31.46 487.58 C 15.61 474.09 3.60 455.45 0.00 434.79 L 0.00 74.96 C 5.70 47.69 24.88 24.42 48.98 11.05 C 55.64 7.32 62.98 5.17 70.19 2.81 C 77.31 1.57 84.53 1.20 91.64 0.00 M 103.68 86.93 C 94.97 88.65 86.85 93.33 81.05 100.07 C 67.01 115.56 69.09 142.46 85.19 155.75 C 92.78 162.44 102.99 165.68 113.02 165.66 C 126.36 166.42 140.65 162.01 149.24 151.33 C 158.04 141.49 160.49 127.01 156.84 114.50 C 154.73 105.74 148.87 98.24 141.68 92.99 C 130.66 85.48 116.49 84.30 103.68 86.93 M 298.22 203.18 C 287.82 209.74 279.27 218.95 272.58 229.20 C 272.52 218.41 272.60 207.61 272.55 196.82 C 246.90 196.83 221.26 196.81 195.62 196.83 C 195.88 210.22 195.59 223.62 196.16 237.00 C 195.99 263.99 196.47 290.99 195.82 317.97 C 195.73 354.69 195.86 391.42 195.40 428.14 C 221.12 427.52 246.87 428.07 272.60 427.85 C 272.51 385.56 272.58 343.27 272.56 300.98 C 272.69 294.50 272.76 287.89 274.55 281.62 C 277.81 272.83 283.89 265.21 291.29 259.53 C 301.12 252.15 314.45 250.84 326.11 253.91 C 335.73 256.10 343.48 263.62 347.33 272.53 C 352.82 284.88 352.96 298.71 352.81 311.99 C 352.75 350.57 352.93 389.16 352.72 427.74 C 375.14 428.05 397.57 427.77 419.99 427.87 C 420.02 366.57 419.97 305.27 420.02 243.97 C 419.94 242.32 420.19 240.57 419.53 239.02 C 409.39 215.65 387.11 198.11 362.06 193.61 C 340.63 189.41 317.01 191.27 298.22 203.18 M 76.64 196.86 C 76.46 273.75 76.65 350.65 76.55 427.55 C 102.11 427.60 127.68 427.62 153.24 427.54 C 153.11 350.65 153.38 273.75 153.11 196.86 C 127.62 196.84 102.13 196.84 76.64 196.86 Z' /%3E%3Cpath fill='%23554F51' opacity='1.00' d=' M 494.00 0.00 L 2460.47 0.00 C 2461.28 2.53 2464.30 1.96 2466.39 2.62 C 2493.54 8.47 2516.89 27.66 2529.94 51.90 C 2537.48 65.67 2540.44 81.44 2540.60 97.02 C 2540.60 195.03 2540.60 293.03 2540.60 391.04 C 2540.46 407.18 2541.52 423.60 2537.56 439.42 C 2531.51 463.72 2514.63 484.48 2493.55 497.58 C 2483.84 503.13 2473.35 507.68 2462.18 509.07 C 2462.11 509.81 2461.97 511.27 2461.90 512.00 L 494.00 512.00 C 494.00 341.33 494.00 170.67 494.00 0.00 M 2189.49 111.80 C 2188.11 111.99 2186.71 112.00 2185.51 112.67 C 2180.50 114.26 2176.57 118.37 2173.60 122.56 C 2172.84 124.17 2172.13 125.80 2171.67 127.51 C 2170.41 129.84 2171.17 132.58 2170.99 135.09 C 2171.21 137.88 2170.35 140.90 2171.68 143.49 C 2172.11 145.20 2172.82 146.82 2173.63 148.40 C 2175.57 152.35 2178.64 155.42 2182.60 157.36 C 2184.16 158.15 2185.78 158.87 2187.51 159.33 C 2189.79 160.56 2192.48 159.82 2194.99 160.02 C 2197.46 159.81 2200.18 160.57 2202.49 159.32 C 2204.18 158.85 2205.81 158.14 2207.43 157.40 C 2211.10 154.82 2214.49 151.55 2216.81 147.68 C 2217.59 146.05 2218.04 144.31 2218.22 142.50 C 2219.67 140.31 2218.74 137.52 2219.02 135.06 C 2218.77 132.89 2219.60 130.39 2218.21 128.50 C 2217.99 127.17 2217.89 125.82 2217.44 124.55 C 2214.98 120.81 2212.41 116.89 2208.43 114.63 C 2207.04 114.06 2205.71 113.38 2204.45 112.64 C 2203.20 112.03 2201.80 111.98 2200.50 111.80 C 2198.93 110.54 2196.82 111.11 2195.03 110.95 C 2193.16 111.12 2191.05 110.53 2189.49 111.80 M 2125.52 112.08 C 2121.66 114.17 2116.76 112.39 2112.51 113.07 C 2110.63 115.04 2107.43 113.00 2105.50 114.85 C 2105.00 114.93 2104.00 115.08 2103.51 115.16 C 2102.01 116.16 2100.13 115.96 2098.55 116.63 C 2097.23 117.36 2095.92 118.05 2094.61 118.71 C 2093.25 119.36 2091.93 120.02 2090.61 120.66 C 2082.60 124.83 2077.51 132.69 2073.69 140.58 C 2073.16 141.86 2072.74 143.18 2072.30 144.48 C 2072.05 145.55 2071.67 146.56 2071.17 147.51 C 2071.09 148.01 2070.93 149.00 2070.85 149.49 C 2069.57 150.86 2070.09 152.82 2069.86 154.49 C 2068.55 155.84 2069.10 157.82 2068.87 159.49 C 2067.14 161.75 2068.33 164.86 2067.93 167.48 C 2067.71 167.87 2067.27 168.64 2067.05 169.03 C 2066.84 178.56 2067.18 188.11 2066.91 197.64 C 2065.91 199.54 2063.72 198.92 2062.01 199.02 C 2056.45 199.06 2050.90 198.85 2045.36 199.09 C 2043.43 200.08 2044.05 202.27 2043.98 204.02 C 2044.09 209.56 2043.83 215.11 2044.09 220.64 C 2045.07 222.56 2047.26 221.91 2049.04 222.02 C 2054.56 222.06 2060.10 221.85 2065.64 222.09 C 2065.96 222.40 2066.59 223.04 2066.91 223.36 C 2067.11 286.58 2066.95 349.81 2066.99 413.04 C 2066.67 414.36 2067.61 416.01 2069.08 415.98 C 2078.30 416.06 2087.53 415.95 2096.77 416.01 C 2097.38 414.38 2098.17 412.75 2098.01 410.95 C 2097.97 348.97 2098.02 286.99 2097.99 225.01 C 2097.55 223.24 2099.18 221.57 2100.98 221.99 C 2112.57 222.01 2124.17 221.98 2135.77 222.01 C 2137.74 218.31 2136.80 214.04 2137.00 210.03 C 2136.87 206.32 2137.62 202.39 2135.77 198.99 C 2123.63 198.95 2111.48 199.12 2099.36 198.91 C 2099.04 198.60 2098.40 197.96 2098.09 197.64 C 2097.84 190.43 2098.10 183.20 2097.97 175.98 C 2098.08 174.47 2097.55 172.61 2098.92 171.48 C 2099.25 169.18 2098.24 166.43 2099.88 164.49 C 2099.93 163.50 2100.02 162.50 2100.14 161.52 C 2101.27 159.62 2101.01 157.23 2102.26 155.34 C 2102.98 154.05 2103.63 152.72 2104.25 151.36 C 2105.84 148.15 2108.52 145.50 2111.57 143.63 C 2112.92 143.06 2114.23 142.37 2115.56 141.65 C 2116.51 141.31 2117.49 140.99 2118.51 140.69 C 2123.55 138.76 2129.34 141.13 2134.50 139.45 C 2139.65 137.48 2135.04 130.92 2137.93 127.48 C 2137.71 122.67 2138.97 117.52 2136.78 113.02 C 2136.21 112.99 2135.08 112.93 2134.51 112.89 C 2131.93 111.08 2128.45 112.30 2125.52 112.08 M 849.51 115.71 C 848.17 115.96 845.97 116.29 846.02 118.06 C 845.90 149.58 846.14 181.12 845.91 212.65 C 844.34 215.72 842.49 211.92 841.67 210.34 C 839.15 209.32 837.75 206.82 835.56 205.34 C 833.16 203.80 830.83 202.17 828.45 200.63 C 826.73 200.08 825.00 199.56 823.42 198.69 C 822.45 198.32 821.47 197.98 820.50 197.67 C 819.26 197.00 817.84 196.99 816.50 196.80 C 814.20 194.87 810.65 197.21 808.49 195.07 C 804.16 194.95 799.83 194.95 795.51 195.07 C 793.34 197.20 789.79 194.88 787.50 196.80 C 786.13 197.06 784.59 196.83 783.49 197.84 C 782.99 197.92 781.99 198.09 781.49 198.17 C 779.81 198.95 778.06 199.53 776.36 200.23 C 774.80 201.11 773.20 201.92 771.60 202.70 C 762.06 207.64 754.70 216.22 749.66 225.59 C 748.49 227.84 747.79 230.28 746.72 232.57 C 746.32 233.53 745.97 234.51 745.67 235.50 C 744.99 236.73 744.99 238.14 744.80 239.50 C 743.63 240.91 744.09 242.82 743.87 244.50 C 741.57 247.35 744.46 251.72 742.07 254.52 C 741.95 289.84 741.95 325.17 742.07 360.49 C 744.47 363.28 741.55 367.66 743.88 370.51 C 743.95 371.50 744.03 372.49 744.13 373.49 C 745.34 374.92 744.67 377.04 745.83 378.51 C 745.92 379.01 746.09 380.00 746.18 380.50 C 746.99 382.47 747.69 384.50 748.68 386.40 C 749.21 387.46 749.76 388.53 750.28 389.61 C 754.85 399.19 762.42 407.09 771.61 412.34 C 772.95 412.96 774.27 413.64 775.59 414.33 C 777.49 415.30 779.52 415.99 781.50 416.82 C 782.00 416.91 782.99 417.08 783.49 417.17 C 784.59 418.16 786.14 417.93 787.50 418.19 C 789.49 419.95 792.64 417.97 794.51 419.93 C 799.50 420.05 804.49 420.04 809.49 419.93 C 811.35 417.97 814.50 419.95 816.50 418.19 C 817.84 417.93 819.40 418.17 820.50 417.16 C 821.00 417.08 822.00 416.91 822.50 416.83 C 824.17 416.05 825.93 415.47 827.64 414.76 C 833.95 411.54 839.72 407.21 844.47 401.96 C 844.83 402.31 845.55 403.01 845.91 403.36 C 846.22 407.11 845.77 410.88 846.09 414.64 C 846.77 415.73 847.75 416.19 849.03 416.01 C 857.66 415.97 866.28 416.05 874.91 415.98 C 876.33 416.02 877.29 414.37 877.01 413.06 C 876.97 314.72 877.04 216.38 876.98 118.04 C 876.99 116.29 874.82 115.95 873.50 115.71 C 873.09 115.55 872.29 115.22 871.89 115.05 C 866.27 114.87 860.66 115.09 855.05 114.98 C 853.18 115.09 851.15 114.60 849.51 115.71 M 1030.50 115.71 C 1029.16 115.96 1026.97 116.29 1027.02 118.06 C 1026.94 149.81 1027.07 181.56 1026.96 213.32 C 1025.88 213.05 1024.97 212.53 1024.23 211.75 C 1019.97 207.26 1014.89 203.52 1009.41 200.65 C 1007.48 199.70 1005.46 199.01 1003.50 198.18 C 1003.00 198.09 1002.00 197.92 1001.50 197.84 C 1000.39 196.83 998.84 197.06 997.50 196.80 C 995.50 195.05 992.35 197.03 990.49 195.07 C 986.16 194.95 981.83 194.96 977.51 195.07 C 975.34 197.24 971.71 194.79 969.49 196.87 C 967.82 197.12 965.85 196.58 964.50 197.84 C 964.00 197.93 963.00 198.10 962.50 198.18 C 961.22 198.78 959.88 199.20 958.58 199.70 C 956.58 200.69 954.60 201.70 952.60 202.67 C 946.86 206.34 940.96 210.30 937.18 216.11 C 935.34 218.39 933.65 220.79 932.26 223.36 C 931.62 224.72 930.96 226.06 930.30 227.39 C 929.76 228.45 929.21 229.51 928.70 230.57 C 928.19 231.88 927.77 233.23 927.18 234.50 C 927.10 235.00 926.93 236.00 926.84 236.50 C 925.80 237.59 926.05 239.15 925.81 240.50 C 924.02 242.49 926.02 245.64 924.07 247.51 C 923.95 287.50 923.95 327.50 924.07 367.48 C 925.77 369.08 924.28 371.78 925.80 373.50 C 926.05 374.85 925.82 376.40 926.84 377.51 C 926.92 378.00 927.09 379.00 927.17 379.49 C 927.69 380.44 928.07 381.45 928.30 382.52 C 929.17 385.25 930.29 387.88 931.68 390.39 C 934.02 393.96 936.06 397.85 939.24 400.77 C 943.53 404.80 947.23 409.59 952.57 412.34 C 953.08 412.57 954.10 413.03 954.62 413.26 C 955.53 413.74 956.45 414.25 957.36 414.79 C 959.06 415.48 960.81 416.06 962.50 416.82 C 963.00 416.91 963.99 417.08 964.49 417.16 C 965.58 418.16 967.13 417.93 968.49 418.20 C 970.51 419.65 973.17 418.76 975.49 419.08 C 977.85 420.95 981.22 419.61 984.02 420.00 C 986.79 419.63 990.13 420.93 992.51 419.10 C 994.49 418.84 996.76 419.51 998.50 418.22 C 1000.30 418.08 1002.06 417.67 1003.62 416.71 C 1005.56 415.98 1007.54 415.31 1009.38 414.33 C 1009.89 414.08 1010.92 413.58 1011.43 413.33 C 1015.16 410.82 1019.28 408.70 1022.26 405.24 C 1023.65 403.85 1024.92 402.12 1026.96 401.69 C 1027.11 406.00 1026.82 410.33 1027.09 414.64 C 1027.40 414.96 1028.04 415.60 1028.36 415.91 C 1037.24 416.13 1046.15 415.93 1055.04 416.01 C 1056.77 416.40 1058.40 414.79 1058.01 413.05 C 1057.97 314.71 1058.04 216.37 1057.98 118.02 C 1057.97 116.28 1055.81 115.96 1054.50 115.72 C 1054.11 115.55 1053.33 115.22 1052.94 115.05 C 1045.99 114.95 1039.04 114.95 1032.10 115.05 C 1031.70 115.22 1030.90 115.55 1030.50 115.71 M 2266.51 115.71 C 2265.15 115.96 2262.93 116.30 2263.02 118.08 C 2262.96 216.39 2263.03 314.70 2262.99 413.01 C 2262.67 414.32 2263.57 415.98 2265.04 415.97 C 2273.69 416.05 2282.35 415.97 2291.02 416.01 C 2292.73 416.42 2294.38 414.81 2294.01 413.07 C 2293.99 315.03 2293.99 216.99 2294.01 118.96 C 2294.53 116.78 2292.22 115.84 2290.49 115.72 C 2286.91 114.15 2282.77 115.37 2278.98 115.00 C 2274.85 115.39 2270.39 114.13 2266.51 115.71 M 1204.36 145.08 C 1204.04 145.40 1203.40 146.04 1203.09 146.36 C 1202.81 163.45 1203.18 180.55 1202.91 197.64 C 1202.60 197.96 1201.96 198.60 1201.64 198.91 C 1195.23 199.15 1188.81 198.91 1182.41 199.01 C 1181.60 199.82 1180.80 200.62 1180.01 201.41 C 1179.99 207.47 1179.99 213.53 1180.01 219.59 C 1180.80 220.38 1181.60 221.18 1182.41 221.99 C 1188.57 222.05 1194.75 221.93 1200.92 222.02 C 1202.36 221.98 1203.30 223.66 1203.01 225.00 C 1202.97 273.98 1203.04 322.97 1202.97 371.95 C 1203.10 373.48 1202.53 375.36 1203.92 376.51 C 1204.26 378.81 1203.25 381.57 1204.88 383.51 C 1204.94 384.50 1205.03 385.49 1205.13 386.49 C 1206.21 387.92 1205.87 389.85 1206.68 391.42 C 1207.56 392.99 1208.06 394.73 1208.63 396.45 C 1211.69 401.82 1216.14 406.40 1221.61 409.34 C 1222.94 409.97 1224.27 410.63 1225.60 411.31 C 1227.15 412.16 1228.78 412.87 1230.51 413.33 C 1231.72 414.00 1233.13 414.00 1234.50 414.20 C 1235.90 415.36 1237.80 414.89 1239.49 415.13 C 1239.89 415.34 1240.69 415.74 1241.09 415.95 C 1250.26 416.02 1259.46 416.09 1268.64 415.91 C 1268.96 415.60 1269.59 414.96 1269.91 414.64 C 1270.11 406.80 1269.98 398.94 1269.98 391.09 C 1270.04 389.30 1267.82 388.96 1266.49 388.72 C 1261.46 386.66 1255.56 389.30 1250.50 387.33 C 1248.78 386.85 1247.16 386.14 1245.57 385.39 C 1242.78 383.65 1240.31 381.28 1238.66 378.44 C 1237.47 375.86 1235.78 373.44 1235.78 370.50 C 1234.48 368.77 1235.14 366.50 1234.90 364.52 C 1234.69 364.13 1234.26 363.35 1234.05 362.96 C 1233.92 316.96 1234.04 270.95 1233.99 224.96 C 1233.68 223.65 1234.60 222.02 1236.03 222.03 C 1247.34 221.92 1258.66 222.08 1269.97 221.97 C 1271.70 221.99 1272.02 219.82 1272.28 218.49 C 1272.44 218.11 1272.78 217.33 1272.95 216.95 C 1272.68 212.18 1273.84 207.05 1272.29 202.51 C 1272.03 201.18 1271.69 199.00 1269.96 199.02 C 1258.65 198.93 1247.34 199.07 1236.04 198.97 C 1234.57 198.99 1233.68 197.30 1233.99 195.97 C 1234.01 180.67 1233.98 165.37 1234.01 150.07 C 1234.18 148.26 1233.39 146.62 1232.77 144.98 C 1223.30 145.09 1213.82 144.86 1204.36 145.08 M 625.48 195.92 C 623.17 196.27 620.44 195.27 618.49 196.87 C 616.81 197.09 614.91 196.64 613.49 197.80 C 612.14 197.99 610.73 198.00 609.51 198.67 C 608.07 199.07 606.69 199.63 605.34 200.25 C 603.79 201.12 602.20 201.91 600.62 202.70 C 600.11 202.95 599.10 203.46 598.59 203.72 C 598.08 203.96 597.07 204.43 596.57 204.67 C 588.69 209.47 581.55 215.71 576.68 223.61 C 575.85 225.39 574.65 226.94 573.62 228.60 C 572.70 230.47 572.02 232.44 571.27 234.37 C 570.05 236.24 570.20 238.56 569.21 240.51 C 568.91 241.86 569.22 243.48 568.08 244.52 C 568.00 246.50 567.99 248.49 567.92 250.48 C 566.65 251.50 567.12 253.18 566.94 254.56 C 567.77 255.36 568.60 256.16 569.41 256.99 C 578.94 256.98 588.47 257.04 598.00 256.97 C 599.32 257.05 599.69 255.30 600.45 254.50 C 601.55 252.28 600.24 249.48 601.84 247.50 C 601.93 247.00 602.10 246.00 602.18 245.51 C 602.79 244.24 603.19 242.89 603.63 241.56 C 605.02 239.33 606.57 237.21 607.97 234.99 C 610.24 231.27 614.24 229.23 617.56 226.60 C 619.51 225.73 621.52 225.00 623.50 224.18 C 624.00 224.09 625.00 223.93 625.49 223.84 C 627.65 222.23 630.56 223.28 633.05 222.98 C 635.50 223.24 638.32 222.30 640.50 223.79 C 642.30 223.92 644.06 224.31 645.61 225.28 C 647.77 225.95 649.78 226.94 651.57 228.34 C 656.52 232.52 661.16 237.32 663.70 243.39 C 665.46 245.83 665.69 248.86 666.86 251.51 C 666.94 252.50 667.03 253.49 667.12 254.49 C 669.04 256.40 666.92 259.65 668.93 261.51 C 669.09 270.00 668.95 278.50 669.00 287.00 C 657.68 286.99 646.37 287.03 635.05 286.97 C 633.51 287.12 631.62 286.53 630.49 287.93 C 627.16 288.06 623.83 287.93 620.51 288.07 C 618.64 290.04 615.48 288.03 613.50 289.81 C 612.14 290.06 610.59 289.83 609.49 290.84 C 608.99 290.92 608.00 291.08 607.50 291.16 C 606.04 292.22 604.10 291.84 602.57 292.71 C 599.60 294.09 596.41 294.96 593.62 296.73 C 593.11 296.96 592.08 297.43 591.56 297.66 C 586.60 300.55 582.23 304.24 577.71 307.73 C 574.45 312.20 570.41 316.17 568.28 321.39 C 567.76 322.45 567.22 323.50 566.71 324.57 C 566.20 325.88 565.77 327.22 565.18 328.50 C 565.09 329.00 564.91 329.99 564.83 330.49 C 563.68 331.97 564.32 334.07 563.13 335.52 C 563.04 336.50 562.95 337.49 562.88 338.49 C 560.65 341.01 563.38 345.04 561.07 347.51 C 560.95 354.83 560.95 362.16 561.07 369.49 C 562.79 371.37 561.69 374.18 562.08 376.49 C 563.78 378.09 562.25 380.82 563.84 382.51 C 563.93 383.00 564.09 383.99 564.17 384.48 C 564.68 385.44 565.06 386.45 565.29 387.53 C 565.96 389.52 566.71 391.49 567.62 393.40 C 569.01 395.63 570.55 397.77 571.97 399.99 C 575.34 405.00 580.57 408.21 585.60 411.33 C 587.59 412.30 589.57 413.31 591.58 414.26 C 592.08 414.53 593.07 415.06 593.57 415.32 C 594.88 415.80 596.22 416.21 597.50 416.82 C 598.00 416.91 598.99 417.08 599.49 417.16 C 601.17 418.73 603.90 417.21 605.51 418.91 C 607.16 418.98 608.82 419.01 610.49 419.09 L 611.48 419.80 C 615.95 420.32 620.51 419.83 625.02 420.03 C 626.52 419.88 628.38 420.43 629.52 419.08 C 631.82 418.76 634.48 419.65 636.50 418.19 C 637.85 417.93 639.39 418.15 640.51 417.16 C 641.01 417.08 642.00 416.91 642.50 416.82 C 644.46 415.99 646.49 415.31 648.39 414.33 C 650.38 413.30 652.39 412.28 654.44 411.35 C 659.17 407.86 664.68 404.39 667.32 399.00 C 667.74 399.00 668.58 398.99 669.00 398.99 C 669.08 404.20 668.84 409.43 669.09 414.64 C 669.40 414.96 670.04 415.59 670.36 415.91 C 679.78 416.06 689.22 416.06 698.64 415.91 C 698.96 415.59 699.60 414.96 699.91 414.64 C 700.13 362.10 699.91 309.55 700.03 257.01 C 699.88 255.49 700.42 253.64 699.10 252.49 C 698.79 250.50 699.60 248.13 698.13 246.49 C 698.03 245.49 697.94 244.50 697.87 243.51 C 696.76 242.05 697.11 240.09 696.34 238.50 C 696.01 237.51 695.66 236.53 695.28 235.57 C 694.30 233.55 693.61 231.42 692.81 229.33 C 691.64 227.42 690.28 225.63 689.32 223.61 C 684.22 215.93 677.55 209.06 669.62 204.29 C 668.15 203.54 666.84 202.52 665.46 201.63 C 664.16 201.18 662.83 200.85 661.60 200.27 C 659.93 199.49 658.16 198.95 656.50 198.17 C 656.01 198.09 655.01 197.92 654.51 197.84 C 652.81 196.25 650.08 197.79 648.48 196.08 C 646.18 195.70 643.37 196.79 641.48 195.07 C 637.66 194.94 633.85 195.03 630.03 194.97 C 628.50 195.12 626.62 194.55 625.48 195.92 M 1364.48 195.93 C 1362.15 196.01 1359.83 195.98 1357.52 196.08 C 1355.91 197.80 1353.16 196.24 1351.50 197.84 C 1351.00 197.92 1350.01 198.09 1349.51 198.17 C 1348.54 198.70 1347.53 199.07 1346.48 199.30 C 1345.16 199.78 1343.84 200.19 1342.57 200.69 C 1340.84 201.58 1339.12 202.45 1337.39 203.29 C 1331.89 205.42 1328.10 210.18 1323.34 213.34 C 1321.99 216.48 1318.65 218.07 1316.98 220.99 C 1315.59 223.22 1313.95 225.30 1312.69 227.61 C 1312.21 228.53 1311.72 229.45 1311.23 230.36 C 1310.50 232.04 1309.90 233.76 1309.29 235.48 C 1309.06 236.55 1308.69 237.56 1308.17 238.51 C 1308.09 239.00 1307.92 240.00 1307.84 240.49 C 1306.81 241.59 1307.05 243.15 1306.81 244.50 C 1305.03 246.49 1307.02 249.64 1305.07 251.51 C 1304.95 288.84 1304.95 326.16 1305.07 363.49 C 1307.19 365.65 1304.86 369.20 1306.81 371.50 C 1307.04 372.84 1306.81 374.40 1307.84 375.50 C 1307.92 376.00 1308.09 377.00 1308.18 377.50 C 1308.74 378.77 1309.19 380.10 1309.73 381.40 C 1310.51 383.01 1311.07 384.73 1311.63 386.45 C 1312.66 388.08 1313.87 389.61 1314.68 391.39 C 1320.15 399.76 1327.55 406.94 1336.36 411.74 C 1337.70 412.34 1339.03 413.01 1340.35 413.73 C 1341.68 414.37 1343.06 414.96 1344.54 415.28 C 1345.85 415.78 1347.20 416.23 1348.51 416.82 C 1349.00 416.91 1350.00 417.08 1350.49 417.16 C 1351.86 418.40 1353.81 417.88 1355.49 418.13 C 1357.43 419.73 1360.17 418.73 1362.48 419.08 L 1363.48 419.80 C 1368.28 420.31 1373.17 419.83 1378.02 420.03 C 1379.51 419.88 1381.37 420.43 1382.52 419.08 C 1384.49 419.00 1386.48 418.99 1388.49 418.92 C 1390.08 417.23 1392.76 418.68 1394.51 417.21 C 1395.83 417.00 1397.25 417.00 1398.48 416.31 C 1399.90 415.94 1401.27 415.38 1402.61 414.72 C 1403.83 414.14 1405.15 413.83 1406.43 413.32 C 1406.93 413.07 1407.93 412.57 1408.43 412.32 C 1418.06 406.67 1426.85 399.29 1432.32 389.40 C 1433.30 387.38 1434.31 385.39 1435.31 383.38 C 1436.16 381.83 1436.85 380.19 1437.34 378.49 C 1438.11 376.89 1437.75 374.93 1438.87 373.49 C 1438.93 372.49 1439.02 371.49 1439.12 370.51 C 1441.20 368.29 1438.75 364.65 1440.93 362.48 C 1441.04 325.83 1441.05 289.17 1440.93 252.51 C 1439.33 250.93 1440.21 248.49 1439.90 246.52 C 1438.22 244.89 1439.72 242.18 1438.16 240.49 C 1438.08 240.00 1437.91 239.00 1437.83 238.50 C 1437.04 236.82 1436.47 235.05 1435.76 233.36 C 1434.87 231.80 1434.08 230.19 1433.28 228.61 C 1432.61 227.27 1431.95 225.93 1431.37 224.57 C 1425.60 216.21 1418.28 208.75 1409.43 203.67 C 1408.92 203.43 1407.89 202.95 1407.37 202.70 C 1406.05 202.03 1404.73 201.36 1403.44 200.69 C 1402.11 200.20 1400.76 199.78 1399.49 199.19 C 1399.00 199.10 1398.00 198.92 1397.51 198.83 C 1396.03 197.67 1393.91 198.35 1392.49 197.13 C 1391.47 197.04 1390.48 196.96 1389.51 196.88 C 1386.98 194.65 1382.95 197.38 1380.49 195.07 C 1376.68 194.94 1372.87 195.02 1369.08 194.98 C 1367.52 195.12 1365.63 194.54 1364.48 195.93 M 1644.52 195.07 C 1642.33 197.19 1638.78 194.88 1636.50 196.81 C 1635.12 197.06 1633.58 196.82 1632.50 197.84 C 1632.00 197.92 1631.00 198.09 1630.50 198.18 C 1628.52 199.00 1626.50 199.68 1624.61 200.67 C 1624.10 200.92 1623.08 201.42 1622.57 201.68 C 1619.93 203.28 1617.39 205.06 1614.84 206.78 C 1612.08 209.16 1609.76 211.98 1607.00 214.35 C 1606.98 210.03 1607.00 205.72 1606.99 201.41 C 1606.16 200.61 1605.36 199.82 1604.59 199.01 C 1595.51 199.06 1586.42 198.88 1577.35 199.08 C 1576.65 199.82 1576.05 200.63 1575.55 201.51 C 1575.10 202.61 1574.91 203.76 1574.98 204.96 C 1575.04 301.64 1574.96 398.32 1575.02 495.00 C 1574.95 496.37 1575.75 497.55 1576.19 498.82 C 1577.41 499.21 1578.56 500.03 1579.94 499.98 C 1585.28 500.06 1590.64 499.95 1596.00 500.00 C 1599.29 499.92 1602.80 500.54 1605.81 498.81 C 1607.51 495.80 1606.93 492.29 1607.00 488.99 C 1607.00 459.54 1607.00 430.10 1607.00 400.65 C 1612.13 405.41 1616.64 411.12 1623.39 413.69 C 1623.89 413.96 1624.89 414.50 1625.39 414.77 C 1627.06 415.50 1628.82 416.04 1630.50 416.83 C 1631.00 416.91 1632.00 417.08 1632.49 417.16 C 1633.57 418.17 1635.12 417.93 1636.50 418.20 C 1638.20 419.69 1640.90 418.23 1642.52 419.93 C 1647.50 420.05 1652.49 420.04 1657.49 419.93 C 1659.64 417.79 1663.20 420.14 1665.50 418.19 C 1666.83 417.93 1668.38 418.16 1669.51 417.16 C 1670.01 417.08 1671.00 416.91 1671.50 416.82 C 1674.16 415.74 1676.89 414.78 1679.38 413.27 C 1679.89 413.04 1680.92 412.57 1681.43 412.33 C 1686.77 409.60 1690.46 404.80 1694.76 400.78 C 1697.04 398.67 1698.83 396.09 1700.28 393.36 C 1702.18 390.66 1703.28 387.60 1704.70 384.65 C 1705.35 383.31 1705.93 381.93 1706.33 380.48 C 1707.10 378.89 1706.75 376.93 1707.87 375.49 C 1707.93 374.49 1708.01 373.50 1708.12 372.51 C 1709.73 370.57 1708.71 367.81 1709.08 365.52 C 1710.44 364.36 1709.85 362.47 1710.03 360.95 C 1709.98 325.30 1709.98 289.65 1710.03 254.00 C 1709.85 252.48 1710.43 250.63 1709.09 249.49 C 1708.99 247.83 1708.96 246.17 1708.91 244.52 C 1707.20 242.90 1708.73 240.17 1707.16 238.49 C 1707.08 238.00 1706.91 237.01 1706.83 236.51 C 1706.29 235.55 1705.91 234.54 1705.70 233.48 C 1705.20 232.18 1704.78 230.85 1704.31 229.56 C 1703.60 228.25 1702.94 226.93 1702.35 225.59 C 1701.48 224.17 1700.47 222.84 1699.71 221.38 C 1695.53 214.18 1689.40 208.14 1682.38 203.69 C 1680.13 202.47 1678.09 200.93 1675.60 200.26 C 1673.91 199.49 1672.16 198.94 1670.50 198.18 C 1670.00 198.09 1669.00 197.92 1668.51 197.84 C 1667.39 196.82 1665.83 197.06 1664.50 196.80 C 1662.48 195.33 1659.81 196.24 1657.52 195.92 C 1653.68 193.87 1648.77 195.46 1644.52 195.07 M 1934.48 195.93 C 1931.84 196.34 1928.73 195.16 1926.49 196.88 C 1925.47 196.96 1924.48 197.04 1923.52 197.13 C 1922.05 198.33 1919.95 197.68 1918.49 198.83 C 1917.99 198.91 1917.00 199.09 1916.50 199.17 C 1914.81 199.95 1913.06 200.50 1911.39 201.23 C 1910.89 201.50 1909.89 202.04 1909.39 202.31 C 1898.62 207.58 1889.83 216.42 1883.66 226.61 C 1883.01 227.96 1882.33 229.28 1881.67 230.60 C 1880.68 232.48 1879.96 234.47 1879.29 236.47 C 1879.04 237.54 1878.67 238.56 1878.17 239.51 C 1878.09 240.01 1877.92 241.00 1877.84 241.49 C 1876.23 243.17 1877.78 245.92 1876.07 247.51 C 1875.96 250.17 1876.01 252.83 1875.93 255.49 C 1875.71 255.87 1875.27 256.65 1875.05 257.03 C 1874.91 290.02 1875.07 323.01 1874.97 356.00 C 1875.09 357.51 1874.52 359.39 1875.93 360.51 C 1876.40 363.46 1875.04 366.93 1876.88 369.51 C 1876.93 370.49 1877.02 371.49 1877.13 372.48 C 1878.32 373.92 1877.65 376.04 1878.83 377.50 C 1878.92 378.00 1879.09 379.00 1879.18 379.50 C 1879.93 381.17 1880.51 382.93 1881.23 384.63 C 1881.71 385.54 1882.20 386.46 1882.69 387.40 C 1883.61 389.10 1884.86 390.61 1885.68 392.39 C 1890.04 399.51 1896.39 405.30 1903.38 409.70 C 1904.83 410.48 1906.16 411.48 1907.59 412.38 C 1909.45 413.29 1911.42 413.96 1913.38 414.72 C 1914.68 415.37 1916.05 415.94 1917.52 416.31 C 1918.71 417.00 1920.12 416.99 1921.50 417.20 C 1922.61 418.14 1924.12 417.95 1925.50 418.19 C 1927.82 419.76 1930.84 418.69 1933.48 419.07 L 1934.48 419.80 C 1939.29 420.31 1944.19 419.83 1949.05 420.03 C 1950.52 419.88 1952.37 420.43 1953.51 419.08 C 1955.80 418.77 1958.47 419.65 1960.50 418.20 C 1961.82 417.94 1963.35 418.13 1964.50 417.20 C 1965.82 416.93 1967.39 417.18 1968.50 416.16 C 1969.00 416.07 1970.00 415.91 1970.50 415.82 C 1971.75 415.21 1973.10 414.80 1974.44 414.31 C 1975.73 413.63 1977.05 412.95 1978.40 412.31 C 1990.10 406.33 1999.76 396.29 2005.32 384.38 C 2006.31 382.49 2006.98 380.46 2007.82 378.50 C 2007.91 378.00 2008.08 377.01 2008.16 376.51 C 2009.13 375.40 2008.91 373.85 2009.20 372.50 C 2010.52 370.79 2009.81 368.49 2010.10 366.51 C 2010.31 366.12 2010.73 365.34 2010.95 364.95 C 2011.09 327.65 2010.93 290.33 2011.03 253.02 C 2010.87 251.50 2011.39 249.68 2010.13 248.49 C 2009.87 246.82 2010.35 244.91 2009.20 243.50 C 2008.91 242.14 2009.14 240.59 2008.16 239.50 C 2008.08 239.00 2007.90 238.00 2007.82 237.50 C 2006.98 235.53 2006.30 233.51 2005.34 231.61 C 2005.07 231.10 2004.54 230.08 2004.27 229.57 C 2003.60 228.25 2002.95 226.94 2002.35 225.61 C 1996.97 216.88 1989.78 209.14 1980.62 204.30 C 1978.40 202.74 1975.93 201.68 1973.41 200.74 C 1972.11 200.21 1970.79 199.78 1969.53 199.29 C 1968.42 199.08 1967.41 198.71 1966.50 198.16 C 1966.00 198.08 1965.00 197.92 1964.50 197.84 C 1962.81 196.23 1960.05 197.81 1958.48 196.07 C 1955.85 195.63 1952.67 196.90 1950.49 195.07 C 1946.64 194.93 1942.80 195.03 1938.98 194.97 C 1937.44 195.11 1935.58 194.56 1934.48 195.93 M 2397.49 195.93 C 2395.14 196.01 2392.81 195.99 2390.51 196.07 C 2388.90 197.78 2386.19 196.29 2384.50 197.80 C 2383.11 198.00 2381.70 197.99 2380.50 198.67 C 2379.49 198.98 2378.51 199.32 2377.58 199.70 C 2375.96 200.56 2374.23 201.08 2372.54 201.63 C 2371.13 202.53 2369.81 203.51 2368.38 204.31 C 2365.32 205.81 2362.60 207.87 2360.13 210.18 C 2353.63 214.33 2349.89 221.36 2345.68 227.57 C 2345.43 228.08 2344.92 229.10 2344.67 229.61 C 2343.67 231.48 2342.95 233.47 2342.29 235.48 C 2342.06 236.55 2341.68 237.56 2341.17 238.51 C 2341.08 239.00 2340.92 239.99 2340.84 240.49 C 2339.25 242.18 2340.75 244.91 2339.08 246.52 C 2338.68 248.81 2339.78 251.63 2338.07 253.51 C 2337.95 289.50 2337.95 325.49 2338.07 361.48 C 2340.34 363.96 2337.65 367.97 2339.88 370.51 C 2339.93 371.49 2340.01 372.49 2340.14 373.49 C 2341.28 375.36 2340.98 377.77 2342.28 379.63 C 2343.03 381.56 2343.67 383.56 2344.67 385.40 C 2345.33 386.71 2346.00 388.04 2346.65 389.39 C 2352.17 399.15 2360.67 407.15 2370.60 412.31 C 2371.91 412.95 2373.22 413.63 2374.56 414.32 C 2375.83 414.80 2377.15 415.22 2378.48 415.70 C 2379.52 415.92 2380.53 416.29 2381.51 416.83 C 2382.01 416.91 2383.00 417.07 2383.50 417.15 C 2385.14 418.76 2387.90 417.19 2389.52 418.92 C 2391.79 419.29 2394.61 418.20 2396.51 419.93 C 2401.34 420.08 2406.18 419.95 2411.03 420.03 C 2412.50 419.88 2414.37 420.43 2415.52 419.07 C 2417.79 418.73 2420.54 419.72 2422.51 418.13 C 2424.14 417.87 2426.12 418.42 2427.50 417.15 C 2428.00 417.07 2428.99 416.91 2429.49 416.83 C 2430.41 416.30 2431.42 415.93 2432.52 415.70 C 2433.79 415.21 2435.12 414.80 2436.44 414.31 C 2437.72 413.63 2439.05 412.95 2440.40 412.31 C 2451.16 407.05 2459.74 397.91 2465.34 387.41 C 2466.28 385.55 2466.95 383.57 2467.72 381.62 C 2468.34 380.29 2468.92 378.92 2469.32 377.49 C 2469.97 376.26 2469.96 374.84 2470.20 373.50 C 2471.68 371.78 2470.20 369.08 2471.93 367.49 C 2471.89 364.59 2473.06 360.71 2469.50 359.55 C 2462.30 358.23 2454.80 359.44 2447.50 358.94 C 2446.61 357.91 2445.61 357.78 2444.50 358.54 C 2443.27 359.40 2442.11 360.32 2441.01 361.27 C 2440.98 361.83 2440.91 362.93 2440.88 363.48 C 2439.66 365.65 2439.86 368.34 2438.31 370.39 C 2437.61 371.71 2436.95 373.04 2436.35 374.39 C 2433.25 380.36 2427.94 384.66 2422.48 388.34 C 2421.96 388.60 2420.93 389.10 2420.42 389.35 C 2419.42 389.69 2418.44 390.01 2417.49 390.31 C 2416.26 391.03 2414.81 391.00 2413.50 391.20 C 2411.32 392.73 2408.47 391.73 2406.03 392.01 C 2403.21 391.68 2400.00 392.81 2397.50 391.20 C 2396.11 391.00 2394.71 391.00 2393.52 390.32 C 2392.06 389.89 2390.68 389.36 2389.33 388.81 C 2382.04 384.89 2376.20 378.31 2373.28 370.61 C 2372.59 369.28 2372.03 367.91 2371.69 366.48 C 2370.96 365.26 2370.96 363.84 2370.80 362.50 C 2369.48 360.95 2370.10 358.83 2369.98 357.01 C 2370.02 344.67 2369.98 332.34 2370.00 320.00 C 2399.67 320.00 2429.35 320.00 2459.03 320.00 C 2462.82 319.75 2466.79 320.60 2470.50 319.45 C 2471.30 318.68 2473.08 318.31 2472.98 316.93 C 2473.05 295.63 2472.94 274.33 2473.03 253.03 C 2472.86 251.50 2473.38 249.69 2472.13 248.49 C 2471.86 246.82 2472.34 244.90 2471.20 243.50 C 2470.91 242.14 2471.09 240.63 2470.21 239.50 C 2469.95 238.16 2470.01 236.73 2469.27 235.56 C 2468.20 233.27 2467.46 230.86 2466.38 228.58 C 2465.47 227.18 2464.46 225.85 2463.71 224.38 C 2458.03 214.95 2449.41 207.25 2439.61 202.28 C 2438.51 201.76 2437.46 201.23 2436.43 200.71 C 2435.09 200.20 2433.74 199.77 2432.50 199.18 C 2432.00 199.09 2431.01 198.91 2430.51 198.83 C 2429.01 197.68 2426.90 198.34 2425.49 197.13 C 2424.46 197.04 2423.47 196.96 2422.51 196.88 C 2419.97 194.66 2415.94 197.38 2413.49 195.07 C 2409.66 194.94 2405.84 195.02 2402.03 194.97 C 2400.47 195.12 2398.60 194.54 2397.49 195.93 M 1828.49 196.94 C 1825.52 197.38 1822.10 196.11 1819.50 197.84 C 1819.00 197.93 1818.00 198.09 1817.50 198.18 C 1815.52 199.00 1813.51 199.71 1811.60 200.62 C 1808.13 202.74 1804.92 205.25 1801.73 207.72 C 1799.28 210.93 1796.69 214.09 1794.67 217.60 C 1793.54 219.87 1792.45 222.15 1791.28 224.39 C 1790.48 226.24 1789.61 228.10 1788.04 229.41 C 1787.87 219.73 1788.16 210.04 1787.91 200.36 C 1787.60 200.04 1786.96 199.40 1786.64 199.09 C 1777.22 198.94 1767.77 198.94 1758.36 199.09 C 1758.04 199.40 1757.41 200.04 1757.09 200.36 C 1756.88 271.25 1757.07 342.16 1756.99 413.05 C 1756.57 414.79 1758.20 416.41 1759.96 416.01 C 1768.85 415.93 1777.75 416.13 1786.65 415.91 C 1786.96 415.60 1787.60 414.96 1787.91 414.65 C 1788.16 368.28 1787.85 321.89 1788.07 275.51 C 1789.78 273.62 1788.68 270.81 1789.08 268.51 C 1790.79 266.91 1789.24 264.17 1790.84 262.49 C 1790.92 262.00 1791.09 261.00 1791.18 260.50 C 1791.99 258.53 1792.67 256.50 1793.67 254.61 C 1794.68 252.61 1795.68 250.61 1796.68 248.60 C 1799.81 243.06 1804.51 238.41 1809.57 234.64 C 1810.92 234.06 1812.24 233.37 1813.56 232.65 C 1814.51 232.31 1815.49 231.99 1816.50 231.69 C 1818.59 230.19 1821.61 231.96 1823.51 230.07 C 1826.49 229.96 1829.48 229.95 1832.48 230.09 C 1833.86 231.39 1836.02 230.65 1837.51 231.84 C 1838.01 231.91 1839.00 232.07 1839.50 232.15 C 1841.92 234.13 1846.55 233.26 1846.30 229.50 C 1847.13 227.92 1846.72 225.93 1847.87 224.49 C 1847.93 223.49 1848.01 222.50 1848.12 221.51 C 1849.71 219.86 1848.30 217.21 1849.80 215.50 C 1850.05 214.14 1849.78 212.56 1850.88 211.49 C 1850.93 210.49 1851.01 209.50 1851.12 208.51 C 1852.53 207.19 1852.11 205.07 1851.44 203.51 C 1850.76 202.23 1849.79 201.19 1848.46 200.65 C 1847.94 200.42 1846.90 199.94 1846.38 199.70 C 1844.59 198.56 1842.60 197.86 1840.50 197.79 C 1838.14 196.25 1835.13 197.29 1832.51 196.94 C 1831.54 195.61 1829.42 195.61 1828.49 196.94 M 2181.36 199.09 C 2181.04 199.40 2180.41 200.04 2180.09 200.36 C 2179.88 271.25 2180.07 342.16 2179.99 413.06 C 2179.56 414.79 2181.19 416.40 2182.94 416.01 C 2191.32 416.00 2199.70 416.00 2208.09 416.01 C 2209.81 416.40 2211.39 414.73 2211.01 413.01 C 2210.99 342.65 2210.99 272.30 2211.01 201.95 C 2211.38 200.22 2209.77 198.59 2208.06 198.99 C 2199.16 199.07 2190.25 198.87 2181.36 199.09 Z' /%3E%3Cpath fill='%23554F51' opacity='1.00' d=' M 802.50 223.79 C 806.63 222.04 811.54 223.36 815.98 223.05 C 816.36 223.24 817.12 223.62 817.50 223.80 C 818.83 223.99 820.25 223.99 821.49 224.67 C 823.19 225.15 824.82 225.85 826.43 226.61 C 830.19 229.44 834.43 231.94 837.03 236.00 C 838.43 238.21 839.96 240.34 841.37 242.56 C 841.79 243.88 842.17 245.25 842.82 246.50 C 842.91 247.00 843.08 247.99 843.16 248.49 C 844.15 249.59 843.92 251.14 844.20 252.50 C 845.85 255.15 844.62 258.53 845.06 261.48 C 846.45 262.61 845.86 264.49 846.03 266.01 C 845.92 295.17 846.11 324.33 845.93 353.49 C 843.54 356.28 846.39 360.62 844.15 363.51 C 844.07 364.00 843.91 364.99 843.83 365.49 C 843.30 366.44 842.92 367.45 842.70 368.52 C 842.22 369.81 841.81 371.13 841.31 372.42 C 841.07 372.93 840.59 373.96 840.35 374.48 C 836.66 379.96 832.34 385.22 826.40 388.38 C 824.47 389.29 822.46 390.00 820.50 390.82 C 820.00 390.91 819.00 391.07 818.50 391.16 C 816.06 392.85 812.82 391.67 810.05 392.01 C 807.23 391.69 804.03 392.80 801.50 391.22 C 797.80 391.13 794.87 388.70 791.60 387.33 C 785.18 384.25 781.19 378.28 777.63 372.40 C 776.84 370.82 776.13 369.19 775.67 367.49 C 774.98 366.26 774.98 364.84 774.81 363.50 C 773.04 361.50 775.01 358.36 773.07 356.48 C 772.95 324.16 772.95 291.83 773.07 259.51 C 775.19 257.34 772.88 253.80 774.79 251.50 C 774.97 250.16 774.98 248.76 775.70 247.57 C 776.56 245.99 777.07 244.25 777.63 242.55 C 779.59 239.28 782.06 236.37 784.23 233.25 C 786.44 231.13 789.08 229.48 791.52 227.64 C 792.05 227.40 793.10 226.93 793.62 226.70 C 795.15 225.82 796.79 225.13 798.51 224.67 C 799.73 224.00 801.14 223.99 802.50 223.79 Z' /%3E%3Cpath fill='%23554F51' opacity='1.00' d=' M 983.50 223.80 C 985.67 222.27 988.53 223.26 991.01 222.98 C 993.47 223.26 996.32 222.28 998.50 223.80 C 999.84 223.99 1001.27 223.97 1002.49 224.68 C 1003.47 224.99 1004.46 225.31 1005.46 225.64 C 1012.75 229.21 1018.88 235.22 1022.33 242.60 C 1023.14 244.16 1023.86 245.79 1024.33 247.51 C 1024.99 248.73 1024.99 250.15 1025.20 251.50 C 1026.94 253.50 1024.97 256.64 1026.93 258.51 C 1027.05 291.50 1027.05 324.49 1026.93 357.48 C 1024.96 359.35 1026.98 362.54 1025.16 364.51 C 1025.07 365.00 1024.90 366.00 1024.82 366.49 C 1024.21 367.77 1023.80 369.11 1023.31 370.44 C 1022.62 371.74 1021.95 373.05 1021.34 374.39 C 1018.44 379.53 1014.20 383.95 1009.43 387.37 C 1008.05 387.97 1006.71 388.62 1005.39 389.30 C 1003.59 390.42 1001.62 391.13 999.50 391.21 C 996.98 392.78 993.81 391.70 991.02 392.01 C 988.21 391.66 984.96 392.85 982.49 391.16 C 981.99 391.07 981.00 390.91 980.50 390.82 C 977.81 389.75 975.12 388.70 972.57 387.34 C 970.01 386.03 968.28 383.67 966.24 381.73 C 964.30 379.72 962.01 377.96 960.64 375.48 C 960.41 374.95 959.95 373.89 959.72 373.36 C 959.03 372.05 958.34 370.74 957.65 369.45 C 957.30 368.47 956.97 367.48 956.68 366.50 C 955.97 365.27 955.99 363.84 955.80 362.50 C 955.62 362.12 955.24 361.37 955.05 360.99 C 954.96 325.36 954.96 289.72 955.05 254.10 C 955.24 253.70 955.61 252.90 955.80 252.50 C 955.97 251.14 955.99 249.74 956.67 248.51 C 957.26 246.35 958.25 244.35 959.26 242.36 C 962.78 235.85 968.24 230.39 974.60 226.64 C 976.17 225.84 977.79 225.13 979.51 224.67 C 980.72 224.00 982.14 224.00 983.50 223.80 Z' /%3E%3Cpath fill='%23554F51' opacity='1.00' d=' M 1364.50 223.78 C 1367.03 222.21 1370.22 223.30 1373.05 222.99 C 1375.49 223.25 1378.32 222.29 1380.50 223.80 C 1381.83 223.99 1383.25 224.00 1384.49 224.67 C 1386.18 225.14 1387.81 225.84 1389.40 226.64 C 1395.50 230.24 1400.80 235.43 1404.32 241.60 C 1405.45 243.84 1406.69 246.06 1407.33 248.51 C 1407.99 249.74 1407.98 251.15 1408.20 252.50 C 1409.95 255.81 1408.52 259.87 1409.07 263.49 C 1410.44 264.61 1409.86 266.49 1410.03 268.01 C 1409.92 295.50 1410.11 323.00 1409.93 350.49 C 1407.42 353.94 1410.47 358.91 1408.20 362.50 C 1407.99 363.85 1407.97 365.25 1407.34 366.49 C 1406.86 368.20 1406.16 369.83 1405.31 371.38 C 1405.07 371.89 1404.57 372.92 1404.33 373.43 C 1402.02 377.90 1398.29 381.28 1394.76 384.75 C 1393.54 385.96 1391.89 386.54 1390.40 387.27 C 1389.45 387.74 1388.53 388.25 1387.64 388.78 C 1386.27 389.37 1384.89 389.90 1383.48 390.32 C 1381.64 391.53 1379.08 390.31 1377.49 391.93 C 1374.16 392.04 1370.83 392.05 1367.52 391.92 C 1365.89 390.30 1363.31 391.55 1361.50 390.31 C 1360.50 390.00 1359.51 389.68 1358.55 389.34 C 1357.24 388.62 1355.92 387.94 1354.57 387.37 C 1352.09 385.55 1349.46 383.88 1347.25 381.77 C 1345.06 378.64 1342.58 375.73 1340.63 372.45 C 1340.18 371.13 1339.78 369.81 1339.30 368.52 C 1339.05 367.45 1338.67 366.44 1338.17 365.49 C 1338.09 364.99 1337.93 364.00 1337.84 363.51 C 1335.68 360.94 1338.36 356.96 1336.07 354.49 C 1335.89 324.33 1336.08 294.17 1335.97 264.01 C 1336.10 262.49 1335.53 260.61 1336.93 259.49 C 1337.31 256.86 1336.18 253.78 1337.84 251.49 C 1337.92 251.00 1338.09 250.00 1338.17 249.51 C 1338.68 248.56 1339.06 247.55 1339.30 246.48 C 1339.77 245.19 1340.18 243.86 1340.63 242.56 C 1343.23 238.87 1345.28 234.69 1348.76 231.71 C 1351.33 229.47 1354.30 227.74 1357.39 226.30 C 1359.61 225.08 1361.88 223.83 1364.50 223.78 Z' /%3E%3Cpath fill='%23554F51' opacity='1.00' d=' M 1634.50 223.78 C 1637.02 222.22 1640.20 223.30 1643.02 222.99 C 1645.47 223.25 1648.29 222.29 1650.50 223.78 C 1652.28 223.92 1654.04 224.31 1655.61 225.28 C 1663.99 228.47 1671.13 235.09 1674.72 243.39 C 1675.20 244.46 1675.75 245.50 1676.34 246.55 C 1676.97 247.77 1676.99 249.16 1677.20 250.50 C 1678.69 252.22 1677.21 254.91 1678.93 256.51 C 1679.05 290.50 1679.05 324.50 1678.93 358.48 C 1677.23 360.08 1678.66 362.76 1677.22 364.50 C 1677.05 366.30 1676.64 368.05 1675.77 369.64 C 1675.23 370.54 1674.73 371.46 1674.28 372.40 C 1671.24 379.12 1665.81 384.69 1659.43 388.31 C 1658.93 388.57 1657.93 389.10 1657.43 389.36 C 1656.43 389.69 1655.46 390.01 1654.50 390.31 C 1653.26 391.01 1651.82 390.99 1650.50 391.20 C 1648.01 392.80 1644.83 391.69 1642.07 392.01 C 1639.56 391.73 1636.69 392.73 1634.50 391.20 C 1633.12 390.99 1631.70 391.04 1630.51 390.30 C 1629.50 390.01 1628.52 389.71 1627.56 389.41 C 1625.00 387.65 1622.39 385.97 1619.84 384.23 C 1616.84 381.85 1614.90 378.45 1612.63 375.43 C 1612.03 374.07 1611.36 372.74 1610.69 371.43 C 1610.18 370.11 1609.77 368.76 1609.18 367.50 C 1609.09 367.00 1608.92 366.01 1608.83 365.51 C 1607.65 364.03 1608.37 361.88 1607.08 360.48 C 1606.94 325.49 1606.96 290.50 1607.07 255.51 C 1608.78 253.91 1607.24 251.17 1608.84 249.49 C 1608.92 248.99 1609.09 248.00 1609.18 247.50 C 1609.75 246.23 1610.17 244.89 1610.69 243.58 C 1610.93 243.08 1611.43 242.07 1611.68 241.57 C 1613.55 238.25 1616.06 235.35 1618.26 232.25 C 1620.35 230.73 1622.38 229.12 1624.52 227.63 C 1625.04 227.41 1626.10 226.96 1626.62 226.74 C 1629.08 225.37 1631.57 223.83 1634.50 223.78 Z' /%3E%3Cpath fill='%23554F51' opacity='1.00' d=' M 1935.50 223.80 C 1937.67 222.26 1940.53 223.26 1943.04 222.98 C 1945.48 223.26 1948.32 222.27 1950.50 223.80 C 1951.81 223.99 1953.24 224.00 1954.49 224.67 C 1956.93 225.30 1959.15 226.53 1961.39 227.68 C 1967.05 230.42 1970.91 235.45 1974.36 240.53 C 1974.60 241.05 1975.08 242.10 1975.32 242.62 C 1976.31 244.50 1976.97 246.54 1977.82 248.50 C 1977.91 249.00 1978.08 249.99 1978.16 250.49 C 1979.55 252.17 1978.79 254.50 1979.10 256.49 C 1980.40 257.62 1979.86 259.44 1980.03 260.94 C 1979.92 293.12 1980.11 325.31 1979.93 357.49 C 1977.93 359.35 1979.99 362.55 1978.16 364.50 C 1978.07 365.00 1977.91 366.00 1977.82 366.50 C 1976.75 369.19 1975.69 371.88 1974.34 374.44 C 1971.69 377.98 1969.44 382.13 1965.46 384.38 C 1963.40 385.64 1961.51 387.15 1959.42 388.31 C 1958.92 388.58 1957.93 389.11 1957.43 389.37 C 1956.18 389.97 1954.80 390.01 1953.50 390.21 C 1952.34 391.12 1950.83 390.95 1949.51 391.20 C 1946.18 392.92 1942.12 391.67 1938.51 391.92 C 1936.90 390.19 1934.15 391.76 1932.50 390.16 C 1932.00 390.08 1931.00 389.91 1930.51 389.82 C 1929.22 389.20 1927.87 388.80 1926.56 388.36 C 1919.86 384.34 1914.10 378.50 1910.64 371.45 C 1910.28 370.47 1909.96 369.48 1909.68 368.49 C 1909.29 367.50 1908.96 366.50 1908.67 365.50 C 1907.97 364.27 1907.97 362.84 1907.80 361.50 C 1906.66 360.26 1907.03 358.54 1906.97 357.04 C 1907.08 323.20 1906.88 289.35 1907.07 255.51 C 1908.79 253.92 1907.23 251.17 1908.84 249.50 C 1908.92 249.00 1909.10 248.00 1909.18 247.50 C 1910.00 245.54 1910.70 243.52 1911.62 241.60 C 1915.24 235.48 1920.45 230.23 1926.60 226.63 C 1928.16 225.84 1929.78 225.14 1931.51 224.67 C 1932.71 224.00 1934.12 223.99 1935.50 223.80 Z' /%3E%3Cpath fill='%23554F51' opacity='1.00' d=' M 2397.50 223.78 C 2399.98 222.20 2403.14 223.31 2405.94 222.99 C 2408.41 223.26 2411.28 222.28 2413.51 223.80 C 2414.81 223.99 2416.24 223.99 2417.48 224.68 C 2418.88 225.10 2420.27 225.63 2421.67 226.19 C 2428.68 230.24 2434.79 236.20 2438.32 243.55 C 2438.77 244.87 2439.18 246.23 2439.82 247.50 C 2439.91 248.00 2440.08 248.99 2440.16 249.49 C 2441.14 250.59 2440.90 252.14 2441.19 253.50 C 2442.31 254.74 2441.89 256.47 2442.03 257.99 C 2441.96 269.66 2442.01 281.33 2442.00 293.00 C 2418.00 293.00 2394.00 293.00 2370.00 293.00 C 2369.98 280.99 2370.03 268.98 2369.97 256.97 C 2370.02 255.46 2369.67 253.74 2370.80 252.49 C 2370.95 251.14 2370.98 249.73 2371.67 248.51 C 2372.10 246.79 2372.82 245.16 2373.69 243.60 C 2374.34 242.28 2375.00 240.95 2375.66 239.61 C 2379.14 232.91 2385.43 227.94 2392.39 225.28 C 2393.92 224.31 2395.67 223.93 2397.50 223.78 Z' /%3E%3Cpath fill='%23554F51' opacity='1.00' d=' M 628.51 313.07 C 642.01 312.90 655.50 313.05 669.00 313.00 C 668.95 327.49 669.10 341.99 668.93 356.49 C 667.21 358.08 668.73 360.82 667.16 362.51 C 667.08 363.01 666.91 364.00 666.82 364.50 C 665.98 366.46 665.32 368.49 664.32 370.38 C 664.08 370.90 663.60 371.95 663.36 372.47 C 659.92 377.96 655.36 382.66 649.62 385.71 C 648.14 386.46 646.84 387.49 645.45 388.37 C 644.11 388.81 642.75 389.19 641.50 389.82 C 641.00 389.91 640.00 390.08 639.51 390.16 C 638.40 391.16 636.84 390.93 635.50 391.20 C 632.98 392.82 629.75 391.68 626.94 392.00 C 623.83 391.66 620.32 392.84 617.50 391.22 C 614.89 391.16 612.61 389.93 610.40 388.70 C 605.45 386.77 601.68 382.68 598.64 378.47 C 598.40 377.95 597.92 376.90 597.68 376.38 C 596.67 374.49 596.00 372.46 595.18 370.50 C 595.09 370.00 594.92 369.01 594.84 368.51 C 592.84 366.24 595.20 362.65 593.07 360.49 C 592.95 357.16 592.95 353.83 593.07 350.51 C 595.13 348.33 593.01 344.90 594.69 342.50 C 594.93 341.44 595.31 340.44 595.82 339.49 C 595.91 338.99 596.09 338.00 596.18 337.50 C 596.79 336.24 597.18 334.89 597.64 333.56 C 599.45 330.48 601.75 327.73 603.83 324.83 C 606.27 323.36 608.10 321.11 610.52 319.63 C 611.04 319.41 612.07 318.96 612.59 318.73 C 613.10 318.47 614.12 317.95 614.62 317.69 C 615.94 317.04 617.25 316.36 618.54 315.64 C 619.78 315.04 621.15 314.97 622.50 314.79 C 624.22 313.29 626.91 314.78 628.51 313.07 Z' /%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top left;
}

.linkedin-add-to-profile:hover {
	background-image: url("data:image/svg+xml,%3Csvg width='2541pt' height='512pt' viewBox='0 0 2541 512' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2355bcdc' opacity='0.23' d=' M 82.46 0.00 L 91.64 0.00 C 84.53 1.20 77.31 1.57 70.19 2.81 C 74.83 1.87 79.56 1.35 84.25 0.68 L 82.46 0.00 Z' /%3E%3Cpath fill='%2355bcdc' opacity='0.23' d=' M 415.54 0.00 L 419.94 0.00 C 419.05 1.90 416.56 1.58 415.54 0.00 Z' /%3E%3Cpath fill='%23776F72' opacity='1.00' d=' M 91.64 0.00 L 415.54 0.00 C 416.56 1.58 419.05 1.90 419.94 0.00 L 491.00 0.00 C 491.00 170.67 491.00 341.33 491.00 512.00 L 420.02 512.00 L 419.99 510.41 C 396.34 511.15 372.65 510.55 348.99 510.75 C 266.34 510.75 183.68 510.74 101.03 510.75 C 92.53 510.79 83.95 510.73 75.58 509.06 C 59.26 506.13 43.76 498.72 31.46 487.58 C 15.61 474.09 3.60 455.45 0.00 434.79 L 0.00 74.96 C 5.70 47.69 24.88 24.42 48.98 11.05 C 55.64 7.32 62.98 5.17 70.19 2.81 C 77.31 1.57 84.53 1.20 91.64 0.00 M 103.68 86.93 C 94.97 88.65 86.85 93.33 81.05 100.07 C 67.01 115.56 69.09 142.46 85.19 155.75 C 92.78 162.44 102.99 165.68 113.02 165.66 C 126.36 166.42 140.65 162.01 149.24 151.33 C 158.04 141.49 160.49 127.01 156.84 114.50 C 154.73 105.74 148.87 98.24 141.68 92.99 C 130.66 85.48 116.49 84.30 103.68 86.93 M 298.22 203.18 C 287.82 209.74 279.27 218.95 272.58 229.20 C 272.52 218.41 272.60 207.61 272.55 196.82 C 246.90 196.83 221.26 196.81 195.62 196.83 C 195.88 210.22 195.59 223.62 196.16 237.00 C 195.99 263.99 196.47 290.99 195.82 317.97 C 195.73 354.69 195.86 391.42 195.40 428.14 C 221.12 427.52 246.87 428.07 272.60 427.85 C 272.51 385.56 272.58 343.27 272.56 300.98 C 272.69 294.50 272.76 287.89 274.55 281.62 C 277.81 272.83 283.89 265.21 291.29 259.53 C 301.12 252.15 314.45 250.84 326.11 253.91 C 335.73 256.10 343.48 263.62 347.33 272.53 C 352.82 284.88 352.96 298.71 352.81 311.99 C 352.75 350.57 352.93 389.16 352.72 427.74 C 375.14 428.05 397.57 427.77 419.99 427.87 C 420.02 366.57 419.97 305.27 420.02 243.97 C 419.94 242.32 420.19 240.57 419.53 239.02 C 409.39 215.65 387.11 198.11 362.06 193.61 C 340.63 189.41 317.01 191.27 298.22 203.18 M 76.64 196.86 C 76.46 273.75 76.65 350.65 76.55 427.55 C 102.11 427.60 127.68 427.62 153.24 427.54 C 153.11 350.65 153.38 273.75 153.11 196.86 C 127.62 196.84 102.13 196.84 76.64 196.86 Z' /%3E%3Cpath fill='%23776F72' opacity='1.00' d=' M 494.00 0.00 L 2460.47 0.00 C 2461.28 2.53 2464.30 1.96 2466.39 2.62 C 2493.54 8.47 2516.89 27.66 2529.94 51.90 C 2537.48 65.67 2540.44 81.44 2540.60 97.02 C 2540.60 195.03 2540.60 293.03 2540.60 391.04 C 2540.46 407.18 2541.52 423.60 2537.56 439.42 C 2531.51 463.72 2514.63 484.48 2493.55 497.58 C 2483.84 503.13 2473.35 507.68 2462.18 509.07 C 2462.11 509.81 2461.97 511.27 2461.90 512.00 L 494.00 512.00 C 494.00 341.33 494.00 170.67 494.00 0.00 M 2189.49 111.80 C 2188.11 111.99 2186.71 112.00 2185.51 112.67 C 2180.50 114.26 2176.57 118.37 2173.60 122.56 C 2172.84 124.17 2172.13 125.80 2171.67 127.51 C 2170.41 129.84 2171.17 132.58 2170.99 135.09 C 2171.21 137.88 2170.35 140.90 2171.68 143.49 C 2172.11 145.20 2172.82 146.82 2173.63 148.40 C 2175.57 152.35 2178.64 155.42 2182.60 157.36 C 2184.16 158.15 2185.78 158.87 2187.51 159.33 C 2189.79 160.56 2192.48 159.82 2194.99 160.02 C 2197.46 159.81 2200.18 160.57 2202.49 159.32 C 2204.18 158.85 2205.81 158.14 2207.43 157.40 C 2211.10 154.82 2214.49 151.55 2216.81 147.68 C 2217.59 146.05 2218.04 144.31 2218.22 142.50 C 2219.67 140.31 2218.74 137.52 2219.02 135.06 C 2218.77 132.89 2219.60 130.39 2218.21 128.50 C 2217.99 127.17 2217.89 125.82 2217.44 124.55 C 2214.98 120.81 2212.41 116.89 2208.43 114.63 C 2207.04 114.06 2205.71 113.38 2204.45 112.64 C 2203.20 112.03 2201.80 111.98 2200.50 111.80 C 2198.93 110.54 2196.82 111.11 2195.03 110.95 C 2193.16 111.12 2191.05 110.53 2189.49 111.80 M 2125.52 112.08 C 2121.66 114.17 2116.76 112.39 2112.51 113.07 C 2110.63 115.04 2107.43 113.00 2105.50 114.85 C 2105.00 114.93 2104.00 115.08 2103.51 115.16 C 2102.01 116.16 2100.13 115.96 2098.55 116.63 C 2097.23 117.36 2095.92 118.05 2094.61 118.71 C 2093.25 119.36 2091.93 120.02 2090.61 120.66 C 2082.60 124.83 2077.51 132.69 2073.69 140.58 C 2073.16 141.86 2072.74 143.18 2072.30 144.48 C 2072.05 145.55 2071.67 146.56 2071.17 147.51 C 2071.09 148.01 2070.93 149.00 2070.85 149.49 C 2069.57 150.86 2070.09 152.82 2069.86 154.49 C 2068.55 155.84 2069.10 157.82 2068.87 159.49 C 2067.14 161.75 2068.33 164.86 2067.93 167.48 C 2067.71 167.87 2067.27 168.64 2067.05 169.03 C 2066.84 178.56 2067.18 188.11 2066.91 197.64 C 2065.91 199.54 2063.72 198.92 2062.01 199.02 C 2056.45 199.06 2050.90 198.85 2045.36 199.09 C 2043.43 200.08 2044.05 202.27 2043.98 204.02 C 2044.09 209.56 2043.83 215.11 2044.09 220.64 C 2045.07 222.56 2047.26 221.91 2049.04 222.02 C 2054.56 222.06 2060.10 221.85 2065.64 222.09 C 2065.96 222.40 2066.59 223.04 2066.91 223.36 C 2067.11 286.58 2066.95 349.81 2066.99 413.04 C 2066.67 414.36 2067.61 416.01 2069.08 415.98 C 2078.30 416.06 2087.53 415.95 2096.77 416.01 C 2097.38 414.38 2098.17 412.75 2098.01 410.95 C 2097.97 348.97 2098.02 286.99 2097.99 225.01 C 2097.55 223.24 2099.18 221.57 2100.98 221.99 C 2112.57 222.01 2124.17 221.98 2135.77 222.01 C 2137.74 218.31 2136.80 214.04 2137.00 210.03 C 2136.87 206.32 2137.62 202.39 2135.77 198.99 C 2123.63 198.95 2111.48 199.12 2099.36 198.91 C 2099.04 198.60 2098.40 197.96 2098.09 197.64 C 2097.84 190.43 2098.10 183.20 2097.97 175.98 C 2098.08 174.47 2097.55 172.61 2098.92 171.48 C 2099.25 169.18 2098.24 166.43 2099.88 164.49 C 2099.93 163.50 2100.02 162.50 2100.14 161.52 C 2101.27 159.62 2101.01 157.23 2102.26 155.34 C 2102.98 154.05 2103.63 152.72 2104.25 151.36 C 2105.84 148.15 2108.52 145.50 2111.57 143.63 C 2112.92 143.06 2114.23 142.37 2115.56 141.65 C 2116.51 141.31 2117.49 140.99 2118.51 140.69 C 2123.55 138.76 2129.34 141.13 2134.50 139.45 C 2139.65 137.48 2135.04 130.92 2137.93 127.48 C 2137.71 122.67 2138.97 117.52 2136.78 113.02 C 2136.21 112.99 2135.08 112.93 2134.51 112.89 C 2131.93 111.08 2128.45 112.30 2125.52 112.08 M 849.51 115.71 C 848.17 115.96 845.97 116.29 846.02 118.06 C 845.90 149.58 846.14 181.12 845.91 212.65 C 844.34 215.72 842.49 211.92 841.67 210.34 C 839.15 209.32 837.75 206.82 835.56 205.34 C 833.16 203.80 830.83 202.17 828.45 200.63 C 826.73 200.08 825.00 199.56 823.42 198.69 C 822.45 198.32 821.47 197.98 820.50 197.67 C 819.26 197.00 817.84 196.99 816.50 196.80 C 814.20 194.87 810.65 197.21 808.49 195.07 C 804.16 194.95 799.83 194.95 795.51 195.07 C 793.34 197.20 789.79 194.88 787.50 196.80 C 786.13 197.06 784.59 196.83 783.49 197.84 C 782.99 197.92 781.99 198.09 781.49 198.17 C 779.81 198.95 778.06 199.53 776.36 200.23 C 774.80 201.11 773.20 201.92 771.60 202.70 C 762.06 207.64 754.70 216.22 749.66 225.59 C 748.49 227.84 747.79 230.28 746.72 232.57 C 746.32 233.53 745.97 234.51 745.67 235.50 C 744.99 236.73 744.99 238.14 744.80 239.50 C 743.63 240.91 744.09 242.82 743.87 244.50 C 741.57 247.35 744.46 251.72 742.07 254.52 C 741.95 289.84 741.95 325.17 742.07 360.49 C 744.47 363.28 741.55 367.66 743.88 370.51 C 743.95 371.50 744.03 372.49 744.13 373.49 C 745.34 374.92 744.67 377.04 745.83 378.51 C 745.92 379.01 746.09 380.00 746.18 380.50 C 746.99 382.47 747.69 384.50 748.68 386.40 C 749.21 387.46 749.76 388.53 750.28 389.61 C 754.85 399.19 762.42 407.09 771.61 412.34 C 772.95 412.96 774.27 413.64 775.59 414.33 C 777.49 415.30 779.52 415.99 781.50 416.82 C 782.00 416.91 782.99 417.08 783.49 417.17 C 784.59 418.16 786.14 417.93 787.50 418.19 C 789.49 419.95 792.64 417.97 794.51 419.93 C 799.50 420.05 804.49 420.04 809.49 419.93 C 811.35 417.97 814.50 419.95 816.50 418.19 C 817.84 417.93 819.40 418.17 820.50 417.16 C 821.00 417.08 822.00 416.91 822.50 416.83 C 824.17 416.05 825.93 415.47 827.64 414.76 C 833.95 411.54 839.72 407.21 844.47 401.96 C 844.83 402.31 845.55 403.01 845.91 403.36 C 846.22 407.11 845.77 410.88 846.09 414.64 C 846.77 415.73 847.75 416.19 849.03 416.01 C 857.66 415.97 866.28 416.05 874.91 415.98 C 876.33 416.02 877.29 414.37 877.01 413.06 C 876.97 314.72 877.04 216.38 876.98 118.04 C 876.99 116.29 874.82 115.95 873.50 115.71 C 873.09 115.55 872.29 115.22 871.89 115.05 C 866.27 114.87 860.66 115.09 855.05 114.98 C 853.18 115.09 851.15 114.60 849.51 115.71 M 1030.50 115.71 C 1029.16 115.96 1026.97 116.29 1027.02 118.06 C 1026.94 149.81 1027.07 181.56 1026.96 213.32 C 1025.88 213.05 1024.97 212.53 1024.23 211.75 C 1019.97 207.26 1014.89 203.52 1009.41 200.65 C 1007.48 199.70 1005.46 199.01 1003.50 198.18 C 1003.00 198.09 1002.00 197.92 1001.50 197.84 C 1000.39 196.83 998.84 197.06 997.50 196.80 C 995.50 195.05 992.35 197.03 990.49 195.07 C 986.16 194.95 981.83 194.96 977.51 195.07 C 975.34 197.24 971.71 194.79 969.49 196.87 C 967.82 197.12 965.85 196.58 964.50 197.84 C 964.00 197.93 963.00 198.10 962.50 198.18 C 961.22 198.78 959.88 199.20 958.58 199.70 C 956.58 200.69 954.60 201.70 952.60 202.67 C 946.86 206.34 940.96 210.30 937.18 216.11 C 935.34 218.39 933.65 220.79 932.26 223.36 C 931.62 224.72 930.96 226.06 930.30 227.39 C 929.76 228.45 929.21 229.51 928.70 230.57 C 928.19 231.88 927.77 233.23 927.18 234.50 C 927.10 235.00 926.93 236.00 926.84 236.50 C 925.80 237.59 926.05 239.15 925.81 240.50 C 924.02 242.49 926.02 245.64 924.07 247.51 C 923.95 287.50 923.95 327.50 924.07 367.48 C 925.77 369.08 924.28 371.78 925.80 373.50 C 926.05 374.85 925.82 376.40 926.84 377.51 C 926.92 378.00 927.09 379.00 927.17 379.49 C 927.69 380.44 928.07 381.45 928.30 382.52 C 929.17 385.25 930.29 387.88 931.68 390.39 C 934.02 393.96 936.06 397.85 939.24 400.77 C 943.53 404.80 947.23 409.59 952.57 412.34 C 953.08 412.57 954.10 413.03 954.62 413.26 C 955.53 413.74 956.45 414.25 957.36 414.79 C 959.06 415.48 960.81 416.06 962.50 416.82 C 963.00 416.91 963.99 417.08 964.49 417.16 C 965.58 418.16 967.13 417.93 968.49 418.20 C 970.51 419.65 973.17 418.76 975.49 419.08 C 977.85 420.95 981.22 419.61 984.02 420.00 C 986.79 419.63 990.13 420.93 992.51 419.10 C 994.49 418.84 996.76 419.51 998.50 418.22 C 1000.30 418.08 1002.06 417.67 1003.62 416.71 C 1005.56 415.98 1007.54 415.31 1009.38 414.33 C 1009.89 414.08 1010.92 413.58 1011.43 413.33 C 1015.16 410.82 1019.28 408.70 1022.26 405.24 C 1023.65 403.85 1024.92 402.12 1026.96 401.69 C 1027.11 406.00 1026.82 410.33 1027.09 414.64 C 1027.40 414.96 1028.04 415.60 1028.36 415.91 C 1037.24 416.13 1046.15 415.93 1055.04 416.01 C 1056.77 416.40 1058.40 414.79 1058.01 413.05 C 1057.97 314.71 1058.04 216.37 1057.98 118.02 C 1057.97 116.28 1055.81 115.96 1054.50 115.72 C 1054.11 115.55 1053.33 115.22 1052.94 115.05 C 1045.99 114.95 1039.04 114.95 1032.10 115.05 C 1031.70 115.22 1030.90 115.55 1030.50 115.71 M 2266.51 115.71 C 2265.15 115.96 2262.93 116.30 2263.02 118.08 C 2262.96 216.39 2263.03 314.70 2262.99 413.01 C 2262.67 414.32 2263.57 415.98 2265.04 415.97 C 2273.69 416.05 2282.35 415.97 2291.02 416.01 C 2292.73 416.42 2294.38 414.81 2294.01 413.07 C 2293.99 315.03 2293.99 216.99 2294.01 118.96 C 2294.53 116.78 2292.22 115.84 2290.49 115.72 C 2286.91 114.15 2282.77 115.37 2278.98 115.00 C 2274.85 115.39 2270.39 114.13 2266.51 115.71 M 1204.36 145.08 C 1204.04 145.40 1203.40 146.04 1203.09 146.36 C 1202.81 163.45 1203.18 180.55 1202.91 197.64 C 1202.60 197.96 1201.96 198.60 1201.64 198.91 C 1195.23 199.15 1188.81 198.91 1182.41 199.01 C 1181.60 199.82 1180.80 200.62 1180.01 201.41 C 1179.99 207.47 1179.99 213.53 1180.01 219.59 C 1180.80 220.38 1181.60 221.18 1182.41 221.99 C 1188.57 222.05 1194.75 221.93 1200.92 222.02 C 1202.36 221.98 1203.30 223.66 1203.01 225.00 C 1202.97 273.98 1203.04 322.97 1202.97 371.95 C 1203.10 373.48 1202.53 375.36 1203.92 376.51 C 1204.26 378.81 1203.25 381.57 1204.88 383.51 C 1204.94 384.50 1205.03 385.49 1205.13 386.49 C 1206.21 387.92 1205.87 389.85 1206.68 391.42 C 1207.56 392.99 1208.06 394.73 1208.63 396.45 C 1211.69 401.82 1216.14 406.40 1221.61 409.34 C 1222.94 409.97 1224.27 410.63 1225.60 411.31 C 1227.15 412.16 1228.78 412.87 1230.51 413.33 C 1231.72 414.00 1233.13 414.00 1234.50 414.20 C 1235.90 415.36 1237.80 414.89 1239.49 415.13 C 1239.89 415.34 1240.69 415.74 1241.09 415.95 C 1250.26 416.02 1259.46 416.09 1268.64 415.91 C 1268.96 415.60 1269.59 414.96 1269.91 414.64 C 1270.11 406.80 1269.98 398.94 1269.98 391.09 C 1270.04 389.30 1267.82 388.96 1266.49 388.72 C 1261.46 386.66 1255.56 389.30 1250.50 387.33 C 1248.78 386.85 1247.16 386.14 1245.57 385.39 C 1242.78 383.65 1240.31 381.28 1238.66 378.44 C 1237.47 375.86 1235.78 373.44 1235.78 370.50 C 1234.48 368.77 1235.14 366.50 1234.90 364.52 C 1234.69 364.13 1234.26 363.35 1234.05 362.96 C 1233.92 316.96 1234.04 270.95 1233.99 224.96 C 1233.68 223.65 1234.60 222.02 1236.03 222.03 C 1247.34 221.92 1258.66 222.08 1269.97 221.97 C 1271.70 221.99 1272.02 219.82 1272.28 218.49 C 1272.44 218.11 1272.78 217.33 1272.95 216.95 C 1272.68 212.18 1273.84 207.05 1272.29 202.51 C 1272.03 201.18 1271.69 199.00 1269.96 199.02 C 1258.65 198.93 1247.34 199.07 1236.04 198.97 C 1234.57 198.99 1233.68 197.30 1233.99 195.97 C 1234.01 180.67 1233.98 165.37 1234.01 150.07 C 1234.18 148.26 1233.39 146.62 1232.77 144.98 C 1223.30 145.09 1213.82 144.86 1204.36 145.08 M 625.48 195.92 C 623.17 196.27 620.44 195.27 618.49 196.87 C 616.81 197.09 614.91 196.64 613.49 197.80 C 612.14 197.99 610.73 198.00 609.51 198.67 C 608.07 199.07 606.69 199.63 605.34 200.25 C 603.79 201.12 602.20 201.91 600.62 202.70 C 600.11 202.95 599.10 203.46 598.59 203.72 C 598.08 203.96 597.07 204.43 596.57 204.67 C 588.69 209.47 581.55 215.71 576.68 223.61 C 575.85 225.39 574.65 226.94 573.62 228.60 C 572.70 230.47 572.02 232.44 571.27 234.37 C 570.05 236.24 570.20 238.56 569.21 240.51 C 568.91 241.86 569.22 243.48 568.08 244.52 C 568.00 246.50 567.99 248.49 567.92 250.48 C 566.65 251.50 567.12 253.18 566.94 254.56 C 567.77 255.36 568.60 256.16 569.41 256.99 C 578.94 256.98 588.47 257.04 598.00 256.97 C 599.32 257.05 599.69 255.30 600.45 254.50 C 601.55 252.28 600.24 249.48 601.84 247.50 C 601.93 247.00 602.10 246.00 602.18 245.51 C 602.79 244.24 603.19 242.89 603.63 241.56 C 605.02 239.33 606.57 237.21 607.97 234.99 C 610.24 231.27 614.24 229.23 617.56 226.60 C 619.51 225.73 621.52 225.00 623.50 224.18 C 624.00 224.09 625.00 223.93 625.49 223.84 C 627.65 222.23 630.56 223.28 633.05 222.98 C 635.50 223.24 638.32 222.30 640.50 223.79 C 642.30 223.92 644.06 224.31 645.61 225.28 C 647.77 225.95 649.78 226.94 651.57 228.34 C 656.52 232.52 661.16 237.32 663.70 243.39 C 665.46 245.83 665.69 248.86 666.86 251.51 C 666.94 252.50 667.03 253.49 667.12 254.49 C 669.04 256.40 666.92 259.65 668.93 261.51 C 669.09 270.00 668.95 278.50 669.00 287.00 C 657.68 286.99 646.37 287.03 635.05 286.97 C 633.51 287.12 631.62 286.53 630.49 287.93 C 627.16 288.06 623.83 287.93 620.51 288.07 C 618.64 290.04 615.48 288.03 613.50 289.81 C 612.14 290.06 610.59 289.83 609.49 290.84 C 608.99 290.92 608.00 291.08 607.50 291.16 C 606.04 292.22 604.10 291.84 602.57 292.71 C 599.60 294.09 596.41 294.96 593.62 296.73 C 593.11 296.96 592.08 297.43 591.56 297.66 C 586.60 300.55 582.23 304.24 577.71 307.73 C 574.45 312.20 570.41 316.17 568.28 321.39 C 567.76 322.45 567.22 323.50 566.71 324.57 C 566.20 325.88 565.77 327.22 565.18 328.50 C 565.09 329.00 564.91 329.99 564.83 330.49 C 563.68 331.97 564.32 334.07 563.13 335.52 C 563.04 336.50 562.95 337.49 562.88 338.49 C 560.65 341.01 563.38 345.04 561.07 347.51 C 560.95 354.83 560.95 362.16 561.07 369.49 C 562.79 371.37 561.69 374.18 562.08 376.49 C 563.78 378.09 562.25 380.82 563.84 382.51 C 563.93 383.00 564.09 383.99 564.17 384.48 C 564.68 385.44 565.06 386.45 565.29 387.53 C 565.96 389.52 566.71 391.49 567.62 393.40 C 569.01 395.63 570.55 397.77 571.97 399.99 C 575.34 405.00 580.57 408.21 585.60 411.33 C 587.59 412.30 589.57 413.31 591.58 414.26 C 592.08 414.53 593.07 415.06 593.57 415.32 C 594.88 415.80 596.22 416.21 597.50 416.82 C 598.00 416.91 598.99 417.08 599.49 417.16 C 601.17 418.73 603.90 417.21 605.51 418.91 C 607.16 418.98 608.82 419.01 610.49 419.09 L 611.48 419.80 C 615.95 420.32 620.51 419.83 625.02 420.03 C 626.52 419.88 628.38 420.43 629.52 419.08 C 631.82 418.76 634.48 419.65 636.50 418.19 C 637.85 417.93 639.39 418.15 640.51 417.16 C 641.01 417.08 642.00 416.91 642.50 416.82 C 644.46 415.99 646.49 415.31 648.39 414.33 C 650.38 413.30 652.39 412.28 654.44 411.35 C 659.17 407.86 664.68 404.39 667.32 399.00 C 667.74 399.00 668.58 398.99 669.00 398.99 C 669.08 404.20 668.84 409.43 669.09 414.64 C 669.40 414.96 670.04 415.59 670.36 415.91 C 679.78 416.06 689.22 416.06 698.64 415.91 C 698.96 415.59 699.60 414.96 699.91 414.64 C 700.13 362.10 699.91 309.55 700.03 257.01 C 699.88 255.49 700.42 253.64 699.10 252.49 C 698.79 250.50 699.60 248.13 698.13 246.49 C 698.03 245.49 697.94 244.50 697.87 243.51 C 696.76 242.05 697.11 240.09 696.34 238.50 C 696.01 237.51 695.66 236.53 695.28 235.57 C 694.30 233.55 693.61 231.42 692.81 229.33 C 691.64 227.42 690.28 225.63 689.32 223.61 C 684.22 215.93 677.55 209.06 669.62 204.29 C 668.15 203.54 666.84 202.52 665.46 201.63 C 664.16 201.18 662.83 200.85 661.60 200.27 C 659.93 199.49 658.16 198.95 656.50 198.17 C 656.01 198.09 655.01 197.92 654.51 197.84 C 652.81 196.25 650.08 197.79 648.48 196.08 C 646.18 195.70 643.37 196.79 641.48 195.07 C 637.66 194.94 633.85 195.03 630.03 194.97 C 628.50 195.12 626.62 194.55 625.48 195.92 M 1364.48 195.93 C 1362.15 196.01 1359.83 195.98 1357.52 196.08 C 1355.91 197.80 1353.16 196.24 1351.50 197.84 C 1351.00 197.92 1350.01 198.09 1349.51 198.17 C 1348.54 198.70 1347.53 199.07 1346.48 199.30 C 1345.16 199.78 1343.84 200.19 1342.57 200.69 C 1340.84 201.58 1339.12 202.45 1337.39 203.29 C 1331.89 205.42 1328.10 210.18 1323.34 213.34 C 1321.99 216.48 1318.65 218.07 1316.98 220.99 C 1315.59 223.22 1313.95 225.30 1312.69 227.61 C 1312.21 228.53 1311.72 229.45 1311.23 230.36 C 1310.50 232.04 1309.90 233.76 1309.29 235.48 C 1309.06 236.55 1308.69 237.56 1308.17 238.51 C 1308.09 239.00 1307.92 240.00 1307.84 240.49 C 1306.81 241.59 1307.05 243.15 1306.81 244.50 C 1305.03 246.49 1307.02 249.64 1305.07 251.51 C 1304.95 288.84 1304.95 326.16 1305.07 363.49 C 1307.19 365.65 1304.86 369.20 1306.81 371.50 C 1307.04 372.84 1306.81 374.40 1307.84 375.50 C 1307.92 376.00 1308.09 377.00 1308.18 377.50 C 1308.74 378.77 1309.19 380.10 1309.73 381.40 C 1310.51 383.01 1311.07 384.73 1311.63 386.45 C 1312.66 388.08 1313.87 389.61 1314.68 391.39 C 1320.15 399.76 1327.55 406.94 1336.36 411.74 C 1337.70 412.34 1339.03 413.01 1340.35 413.73 C 1341.68 414.37 1343.06 414.96 1344.54 415.28 C 1345.85 415.78 1347.20 416.23 1348.51 416.82 C 1349.00 416.91 1350.00 417.08 1350.49 417.16 C 1351.86 418.40 1353.81 417.88 1355.49 418.13 C 1357.43 419.73 1360.17 418.73 1362.48 419.08 L 1363.48 419.80 C 1368.28 420.31 1373.17 419.83 1378.02 420.03 C 1379.51 419.88 1381.37 420.43 1382.52 419.08 C 1384.49 419.00 1386.48 418.99 1388.49 418.92 C 1390.08 417.23 1392.76 418.68 1394.51 417.21 C 1395.83 417.00 1397.25 417.00 1398.48 416.31 C 1399.90 415.94 1401.27 415.38 1402.61 414.72 C 1403.83 414.14 1405.15 413.83 1406.43 413.32 C 1406.93 413.07 1407.93 412.57 1408.43 412.32 C 1418.06 406.67 1426.85 399.29 1432.32 389.40 C 1433.30 387.38 1434.31 385.39 1435.31 383.38 C 1436.16 381.83 1436.85 380.19 1437.34 378.49 C 1438.11 376.89 1437.75 374.93 1438.87 373.49 C 1438.93 372.49 1439.02 371.49 1439.12 370.51 C 1441.20 368.29 1438.75 364.65 1440.93 362.48 C 1441.04 325.83 1441.05 289.17 1440.93 252.51 C 1439.33 250.93 1440.21 248.49 1439.90 246.52 C 1438.22 244.89 1439.72 242.18 1438.16 240.49 C 1438.08 240.00 1437.91 239.00 1437.83 238.50 C 1437.04 236.82 1436.47 235.05 1435.76 233.36 C 1434.87 231.80 1434.08 230.19 1433.28 228.61 C 1432.61 227.27 1431.95 225.93 1431.37 224.57 C 1425.60 216.21 1418.28 208.75 1409.43 203.67 C 1408.92 203.43 1407.89 202.95 1407.37 202.70 C 1406.05 202.03 1404.73 201.36 1403.44 200.69 C 1402.11 200.20 1400.76 199.78 1399.49 199.19 C 1399.00 199.10 1398.00 198.92 1397.51 198.83 C 1396.03 197.67 1393.91 198.35 1392.49 197.13 C 1391.47 197.04 1390.48 196.96 1389.51 196.88 C 1386.98 194.65 1382.95 197.38 1380.49 195.07 C 1376.68 194.94 1372.87 195.02 1369.08 194.98 C 1367.52 195.12 1365.63 194.54 1364.48 195.93 M 1644.52 195.07 C 1642.33 197.19 1638.78 194.88 1636.50 196.81 C 1635.12 197.06 1633.58 196.82 1632.50 197.84 C 1632.00 197.92 1631.00 198.09 1630.50 198.18 C 1628.52 199.00 1626.50 199.68 1624.61 200.67 C 1624.10 200.92 1623.08 201.42 1622.57 201.68 C 1619.93 203.28 1617.39 205.06 1614.84 206.78 C 1612.08 209.16 1609.76 211.98 1607.00 214.35 C 1606.98 210.03 1607.00 205.72 1606.99 201.41 C 1606.16 200.61 1605.36 199.82 1604.59 199.01 C 1595.51 199.06 1586.42 198.88 1577.35 199.08 C 1576.65 199.82 1576.05 200.63 1575.55 201.51 C 1575.10 202.61 1574.91 203.76 1574.98 204.96 C 1575.04 301.64 1574.96 398.32 1575.02 495.00 C 1574.95 496.37 1575.75 497.55 1576.19 498.82 C 1577.41 499.21 1578.56 500.03 1579.94 499.98 C 1585.28 500.06 1590.64 499.95 1596.00 500.00 C 1599.29 499.92 1602.80 500.54 1605.81 498.81 C 1607.51 495.80 1606.93 492.29 1607.00 488.99 C 1607.00 459.54 1607.00 430.10 1607.00 400.65 C 1612.13 405.41 1616.64 411.12 1623.39 413.69 C 1623.89 413.96 1624.89 414.50 1625.39 414.77 C 1627.06 415.50 1628.82 416.04 1630.50 416.83 C 1631.00 416.91 1632.00 417.08 1632.49 417.16 C 1633.57 418.17 1635.12 417.93 1636.50 418.20 C 1638.20 419.69 1640.90 418.23 1642.52 419.93 C 1647.50 420.05 1652.49 420.04 1657.49 419.93 C 1659.64 417.79 1663.20 420.14 1665.50 418.19 C 1666.83 417.93 1668.38 418.16 1669.51 417.16 C 1670.01 417.08 1671.00 416.91 1671.50 416.82 C 1674.16 415.74 1676.89 414.78 1679.38 413.27 C 1679.89 413.04 1680.92 412.57 1681.43 412.33 C 1686.77 409.60 1690.46 404.80 1694.76 400.78 C 1697.04 398.67 1698.83 396.09 1700.28 393.36 C 1702.18 390.66 1703.28 387.60 1704.70 384.65 C 1705.35 383.31 1705.93 381.93 1706.33 380.48 C 1707.10 378.89 1706.75 376.93 1707.87 375.49 C 1707.93 374.49 1708.01 373.50 1708.12 372.51 C 1709.73 370.57 1708.71 367.81 1709.08 365.52 C 1710.44 364.36 1709.85 362.47 1710.03 360.95 C 1709.98 325.30 1709.98 289.65 1710.03 254.00 C 1709.85 252.48 1710.43 250.63 1709.09 249.49 C 1708.99 247.83 1708.96 246.17 1708.91 244.52 C 1707.20 242.90 1708.73 240.17 1707.16 238.49 C 1707.08 238.00 1706.91 237.01 1706.83 236.51 C 1706.29 235.55 1705.91 234.54 1705.70 233.48 C 1705.20 232.18 1704.78 230.85 1704.31 229.56 C 1703.60 228.25 1702.94 226.93 1702.35 225.59 C 1701.48 224.17 1700.47 222.84 1699.71 221.38 C 1695.53 214.18 1689.40 208.14 1682.38 203.69 C 1680.13 202.47 1678.09 200.93 1675.60 200.26 C 1673.91 199.49 1672.16 198.94 1670.50 198.18 C 1670.00 198.09 1669.00 197.92 1668.51 197.84 C 1667.39 196.82 1665.83 197.06 1664.50 196.80 C 1662.48 195.33 1659.81 196.24 1657.52 195.92 C 1653.68 193.87 1648.77 195.46 1644.52 195.07 M 1934.48 195.93 C 1931.84 196.34 1928.73 195.16 1926.49 196.88 C 1925.47 196.96 1924.48 197.04 1923.52 197.13 C 1922.05 198.33 1919.95 197.68 1918.49 198.83 C 1917.99 198.91 1917.00 199.09 1916.50 199.17 C 1914.81 199.95 1913.06 200.50 1911.39 201.23 C 1910.89 201.50 1909.89 202.04 1909.39 202.31 C 1898.62 207.58 1889.83 216.42 1883.66 226.61 C 1883.01 227.96 1882.33 229.28 1881.67 230.60 C 1880.68 232.48 1879.96 234.47 1879.29 236.47 C 1879.04 237.54 1878.67 238.56 1878.17 239.51 C 1878.09 240.01 1877.92 241.00 1877.84 241.49 C 1876.23 243.17 1877.78 245.92 1876.07 247.51 C 1875.96 250.17 1876.01 252.83 1875.93 255.49 C 1875.71 255.87 1875.27 256.65 1875.05 257.03 C 1874.91 290.02 1875.07 323.01 1874.97 356.00 C 1875.09 357.51 1874.52 359.39 1875.93 360.51 C 1876.40 363.46 1875.04 366.93 1876.88 369.51 C 1876.93 370.49 1877.02 371.49 1877.13 372.48 C 1878.32 373.92 1877.65 376.04 1878.83 377.50 C 1878.92 378.00 1879.09 379.00 1879.18 379.50 C 1879.93 381.17 1880.51 382.93 1881.23 384.63 C 1881.71 385.54 1882.20 386.46 1882.69 387.40 C 1883.61 389.10 1884.86 390.61 1885.68 392.39 C 1890.04 399.51 1896.39 405.30 1903.38 409.70 C 1904.83 410.48 1906.16 411.48 1907.59 412.38 C 1909.45 413.29 1911.42 413.96 1913.38 414.72 C 1914.68 415.37 1916.05 415.94 1917.52 416.31 C 1918.71 417.00 1920.12 416.99 1921.50 417.20 C 1922.61 418.14 1924.12 417.95 1925.50 418.19 C 1927.82 419.76 1930.84 418.69 1933.48 419.07 L 1934.48 419.80 C 1939.29 420.31 1944.19 419.83 1949.05 420.03 C 1950.52 419.88 1952.37 420.43 1953.51 419.08 C 1955.80 418.77 1958.47 419.65 1960.50 418.20 C 1961.82 417.94 1963.35 418.13 1964.50 417.20 C 1965.82 416.93 1967.39 417.18 1968.50 416.16 C 1969.00 416.07 1970.00 415.91 1970.50 415.82 C 1971.75 415.21 1973.10 414.80 1974.44 414.31 C 1975.73 413.63 1977.05 412.95 1978.40 412.31 C 1990.10 406.33 1999.76 396.29 2005.32 384.38 C 2006.31 382.49 2006.98 380.46 2007.82 378.50 C 2007.91 378.00 2008.08 377.01 2008.16 376.51 C 2009.13 375.40 2008.91 373.85 2009.20 372.50 C 2010.52 370.79 2009.81 368.49 2010.10 366.51 C 2010.31 366.12 2010.73 365.34 2010.95 364.95 C 2011.09 327.65 2010.93 290.33 2011.03 253.02 C 2010.87 251.50 2011.39 249.68 2010.13 248.49 C 2009.87 246.82 2010.35 244.91 2009.20 243.50 C 2008.91 242.14 2009.14 240.59 2008.16 239.50 C 2008.08 239.00 2007.90 238.00 2007.82 237.50 C 2006.98 235.53 2006.30 233.51 2005.34 231.61 C 2005.07 231.10 2004.54 230.08 2004.27 229.57 C 2003.60 228.25 2002.95 226.94 2002.35 225.61 C 1996.97 216.88 1989.78 209.14 1980.62 204.30 C 1978.40 202.74 1975.93 201.68 1973.41 200.74 C 1972.11 200.21 1970.79 199.78 1969.53 199.29 C 1968.42 199.08 1967.41 198.71 1966.50 198.16 C 1966.00 198.08 1965.00 197.92 1964.50 197.84 C 1962.81 196.23 1960.05 197.81 1958.48 196.07 C 1955.85 195.63 1952.67 196.90 1950.49 195.07 C 1946.64 194.93 1942.80 195.03 1938.98 194.97 C 1937.44 195.11 1935.58 194.56 1934.48 195.93 M 2397.49 195.93 C 2395.14 196.01 2392.81 195.99 2390.51 196.07 C 2388.90 197.78 2386.19 196.29 2384.50 197.80 C 2383.11 198.00 2381.70 197.99 2380.50 198.67 C 2379.49 198.98 2378.51 199.32 2377.58 199.70 C 2375.96 200.56 2374.23 201.08 2372.54 201.63 C 2371.13 202.53 2369.81 203.51 2368.38 204.31 C 2365.32 205.81 2362.60 207.87 2360.13 210.18 C 2353.63 214.33 2349.89 221.36 2345.68 227.57 C 2345.43 228.08 2344.92 229.10 2344.67 229.61 C 2343.67 231.48 2342.95 233.47 2342.29 235.48 C 2342.06 236.55 2341.68 237.56 2341.17 238.51 C 2341.08 239.00 2340.92 239.99 2340.84 240.49 C 2339.25 242.18 2340.75 244.91 2339.08 246.52 C 2338.68 248.81 2339.78 251.63 2338.07 253.51 C 2337.95 289.50 2337.95 325.49 2338.07 361.48 C 2340.34 363.96 2337.65 367.97 2339.88 370.51 C 2339.93 371.49 2340.01 372.49 2340.14 373.49 C 2341.28 375.36 2340.98 377.77 2342.28 379.63 C 2343.03 381.56 2343.67 383.56 2344.67 385.40 C 2345.33 386.71 2346.00 388.04 2346.65 389.39 C 2352.17 399.15 2360.67 407.15 2370.60 412.31 C 2371.91 412.95 2373.22 413.63 2374.56 414.32 C 2375.83 414.80 2377.15 415.22 2378.48 415.70 C 2379.52 415.92 2380.53 416.29 2381.51 416.83 C 2382.01 416.91 2383.00 417.07 2383.50 417.15 C 2385.14 418.76 2387.90 417.19 2389.52 418.92 C 2391.79 419.29 2394.61 418.20 2396.51 419.93 C 2401.34 420.08 2406.18 419.95 2411.03 420.03 C 2412.50 419.88 2414.37 420.43 2415.52 419.07 C 2417.79 418.73 2420.54 419.72 2422.51 418.13 C 2424.14 417.87 2426.12 418.42 2427.50 417.15 C 2428.00 417.07 2428.99 416.91 2429.49 416.83 C 2430.41 416.30 2431.42 415.93 2432.52 415.70 C 2433.79 415.21 2435.12 414.80 2436.44 414.31 C 2437.72 413.63 2439.05 412.95 2440.40 412.31 C 2451.16 407.05 2459.74 397.91 2465.34 387.41 C 2466.28 385.55 2466.95 383.57 2467.72 381.62 C 2468.34 380.29 2468.92 378.92 2469.32 377.49 C 2469.97 376.26 2469.96 374.84 2470.20 373.50 C 2471.68 371.78 2470.20 369.08 2471.93 367.49 C 2471.89 364.59 2473.06 360.71 2469.50 359.55 C 2462.30 358.23 2454.80 359.44 2447.50 358.94 C 2446.61 357.91 2445.61 357.78 2444.50 358.54 C 2443.27 359.40 2442.11 360.32 2441.01 361.27 C 2440.98 361.83 2440.91 362.93 2440.88 363.48 C 2439.66 365.65 2439.86 368.34 2438.31 370.39 C 2437.61 371.71 2436.95 373.04 2436.35 374.39 C 2433.25 380.36 2427.94 384.66 2422.48 388.34 C 2421.96 388.60 2420.93 389.10 2420.42 389.35 C 2419.42 389.69 2418.44 390.01 2417.49 390.31 C 2416.26 391.03 2414.81 391.00 2413.50 391.20 C 2411.32 392.73 2408.47 391.73 2406.03 392.01 C 2403.21 391.68 2400.00 392.81 2397.50 391.20 C 2396.11 391.00 2394.71 391.00 2393.52 390.32 C 2392.06 389.89 2390.68 389.36 2389.33 388.81 C 2382.04 384.89 2376.20 378.31 2373.28 370.61 C 2372.59 369.28 2372.03 367.91 2371.69 366.48 C 2370.96 365.26 2370.96 363.84 2370.80 362.50 C 2369.48 360.95 2370.10 358.83 2369.98 357.01 C 2370.02 344.67 2369.98 332.34 2370.00 320.00 C 2399.67 320.00 2429.35 320.00 2459.03 320.00 C 2462.82 319.75 2466.79 320.60 2470.50 319.45 C 2471.30 318.68 2473.08 318.31 2472.98 316.93 C 2473.05 295.63 2472.94 274.33 2473.03 253.03 C 2472.86 251.50 2473.38 249.69 2472.13 248.49 C 2471.86 246.82 2472.34 244.90 2471.20 243.50 C 2470.91 242.14 2471.09 240.63 2470.21 239.50 C 2469.95 238.16 2470.01 236.73 2469.27 235.56 C 2468.20 233.27 2467.46 230.86 2466.38 228.58 C 2465.47 227.18 2464.46 225.85 2463.71 224.38 C 2458.03 214.95 2449.41 207.25 2439.61 202.28 C 2438.51 201.76 2437.46 201.23 2436.43 200.71 C 2435.09 200.20 2433.74 199.77 2432.50 199.18 C 2432.00 199.09 2431.01 198.91 2430.51 198.83 C 2429.01 197.68 2426.90 198.34 2425.49 197.13 C 2424.46 197.04 2423.47 196.96 2422.51 196.88 C 2419.97 194.66 2415.94 197.38 2413.49 195.07 C 2409.66 194.94 2405.84 195.02 2402.03 194.97 C 2400.47 195.12 2398.60 194.54 2397.49 195.93 M 1828.49 196.94 C 1825.52 197.38 1822.10 196.11 1819.50 197.84 C 1819.00 197.93 1818.00 198.09 1817.50 198.18 C 1815.52 199.00 1813.51 199.71 1811.60 200.62 C 1808.13 202.74 1804.92 205.25 1801.73 207.72 C 1799.28 210.93 1796.69 214.09 1794.67 217.60 C 1793.54 219.87 1792.45 222.15 1791.28 224.39 C 1790.48 226.24 1789.61 228.10 1788.04 229.41 C 1787.87 219.73 1788.16 210.04 1787.91 200.36 C 1787.60 200.04 1786.96 199.40 1786.64 199.09 C 1777.22 198.94 1767.77 198.94 1758.36 199.09 C 1758.04 199.40 1757.41 200.04 1757.09 200.36 C 1756.88 271.25 1757.07 342.16 1756.99 413.05 C 1756.57 414.79 1758.20 416.41 1759.96 416.01 C 1768.85 415.93 1777.75 416.13 1786.65 415.91 C 1786.96 415.60 1787.60 414.96 1787.91 414.65 C 1788.16 368.28 1787.85 321.89 1788.07 275.51 C 1789.78 273.62 1788.68 270.81 1789.08 268.51 C 1790.79 266.91 1789.24 264.17 1790.84 262.49 C 1790.92 262.00 1791.09 261.00 1791.18 260.50 C 1791.99 258.53 1792.67 256.50 1793.67 254.61 C 1794.68 252.61 1795.68 250.61 1796.68 248.60 C 1799.81 243.06 1804.51 238.41 1809.57 234.64 C 1810.92 234.06 1812.24 233.37 1813.56 232.65 C 1814.51 232.31 1815.49 231.99 1816.50 231.69 C 1818.59 230.19 1821.61 231.96 1823.51 230.07 C 1826.49 229.96 1829.48 229.95 1832.48 230.09 C 1833.86 231.39 1836.02 230.65 1837.51 231.84 C 1838.01 231.91 1839.00 232.07 1839.50 232.15 C 1841.92 234.13 1846.55 233.26 1846.30 229.50 C 1847.13 227.92 1846.72 225.93 1847.87 224.49 C 1847.93 223.49 1848.01 222.50 1848.12 221.51 C 1849.71 219.86 1848.30 217.21 1849.80 215.50 C 1850.05 214.14 1849.78 212.56 1850.88 211.49 C 1850.93 210.49 1851.01 209.50 1851.12 208.51 C 1852.53 207.19 1852.11 205.07 1851.44 203.51 C 1850.76 202.23 1849.79 201.19 1848.46 200.65 C 1847.94 200.42 1846.90 199.94 1846.38 199.70 C 1844.59 198.56 1842.60 197.86 1840.50 197.79 C 1838.14 196.25 1835.13 197.29 1832.51 196.94 C 1831.54 195.61 1829.42 195.61 1828.49 196.94 M 2181.36 199.09 C 2181.04 199.40 2180.41 200.04 2180.09 200.36 C 2179.88 271.25 2180.07 342.16 2179.99 413.06 C 2179.56 414.79 2181.19 416.40 2182.94 416.01 C 2191.32 416.00 2199.70 416.00 2208.09 416.01 C 2209.81 416.40 2211.39 414.73 2211.01 413.01 C 2210.99 342.65 2210.99 272.30 2211.01 201.95 C 2211.38 200.22 2209.77 198.59 2208.06 198.99 C 2199.16 199.07 2190.25 198.87 2181.36 199.09 Z' /%3E%3Cpath fill='%23776F72' opacity='1.00' d=' M 802.50 223.79 C 806.63 222.04 811.54 223.36 815.98 223.05 C 816.36 223.24 817.12 223.62 817.50 223.80 C 818.83 223.99 820.25 223.99 821.49 224.67 C 823.19 225.15 824.82 225.85 826.43 226.61 C 830.19 229.44 834.43 231.94 837.03 236.00 C 838.43 238.21 839.96 240.34 841.37 242.56 C 841.79 243.88 842.17 245.25 842.82 246.50 C 842.91 247.00 843.08 247.99 843.16 248.49 C 844.15 249.59 843.92 251.14 844.20 252.50 C 845.85 255.15 844.62 258.53 845.06 261.48 C 846.45 262.61 845.86 264.49 846.03 266.01 C 845.92 295.17 846.11 324.33 845.93 353.49 C 843.54 356.28 846.39 360.62 844.15 363.51 C 844.07 364.00 843.91 364.99 843.83 365.49 C 843.30 366.44 842.92 367.45 842.70 368.52 C 842.22 369.81 841.81 371.13 841.31 372.42 C 841.07 372.93 840.59 373.96 840.35 374.48 C 836.66 379.96 832.34 385.22 826.40 388.38 C 824.47 389.29 822.46 390.00 820.50 390.82 C 820.00 390.91 819.00 391.07 818.50 391.16 C 816.06 392.85 812.82 391.67 810.05 392.01 C 807.23 391.69 804.03 392.80 801.50 391.22 C 797.80 391.13 794.87 388.70 791.60 387.33 C 785.18 384.25 781.19 378.28 777.63 372.40 C 776.84 370.82 776.13 369.19 775.67 367.49 C 774.98 366.26 774.98 364.84 774.81 363.50 C 773.04 361.50 775.01 358.36 773.07 356.48 C 772.95 324.16 772.95 291.83 773.07 259.51 C 775.19 257.34 772.88 253.80 774.79 251.50 C 774.97 250.16 774.98 248.76 775.70 247.57 C 776.56 245.99 777.07 244.25 777.63 242.55 C 779.59 239.28 782.06 236.37 784.23 233.25 C 786.44 231.13 789.08 229.48 791.52 227.64 C 792.05 227.40 793.10 226.93 793.62 226.70 C 795.15 225.82 796.79 225.13 798.51 224.67 C 799.73 224.00 801.14 223.99 802.50 223.79 Z' /%3E%3Cpath fill='%23776F72' opacity='1.00' d=' M 983.50 223.80 C 985.67 222.27 988.53 223.26 991.01 222.98 C 993.47 223.26 996.32 222.28 998.50 223.80 C 999.84 223.99 1001.27 223.97 1002.49 224.68 C 1003.47 224.99 1004.46 225.31 1005.46 225.64 C 1012.75 229.21 1018.88 235.22 1022.33 242.60 C 1023.14 244.16 1023.86 245.79 1024.33 247.51 C 1024.99 248.73 1024.99 250.15 1025.20 251.50 C 1026.94 253.50 1024.97 256.64 1026.93 258.51 C 1027.05 291.50 1027.05 324.49 1026.93 357.48 C 1024.96 359.35 1026.98 362.54 1025.16 364.51 C 1025.07 365.00 1024.90 366.00 1024.82 366.49 C 1024.21 367.77 1023.80 369.11 1023.31 370.44 C 1022.62 371.74 1021.95 373.05 1021.34 374.39 C 1018.44 379.53 1014.20 383.95 1009.43 387.37 C 1008.05 387.97 1006.71 388.62 1005.39 389.30 C 1003.59 390.42 1001.62 391.13 999.50 391.21 C 996.98 392.78 993.81 391.70 991.02 392.01 C 988.21 391.66 984.96 392.85 982.49 391.16 C 981.99 391.07 981.00 390.91 980.50 390.82 C 977.81 389.75 975.12 388.70 972.57 387.34 C 970.01 386.03 968.28 383.67 966.24 381.73 C 964.30 379.72 962.01 377.96 960.64 375.48 C 960.41 374.95 959.95 373.89 959.72 373.36 C 959.03 372.05 958.34 370.74 957.65 369.45 C 957.30 368.47 956.97 367.48 956.68 366.50 C 955.97 365.27 955.99 363.84 955.80 362.50 C 955.62 362.12 955.24 361.37 955.05 360.99 C 954.96 325.36 954.96 289.72 955.05 254.10 C 955.24 253.70 955.61 252.90 955.80 252.50 C 955.97 251.14 955.99 249.74 956.67 248.51 C 957.26 246.35 958.25 244.35 959.26 242.36 C 962.78 235.85 968.24 230.39 974.60 226.64 C 976.17 225.84 977.79 225.13 979.51 224.67 C 980.72 224.00 982.14 224.00 983.50 223.80 Z' /%3E%3Cpath fill='%23776F72' opacity='1.00' d=' M 1364.50 223.78 C 1367.03 222.21 1370.22 223.30 1373.05 222.99 C 1375.49 223.25 1378.32 222.29 1380.50 223.80 C 1381.83 223.99 1383.25 224.00 1384.49 224.67 C 1386.18 225.14 1387.81 225.84 1389.40 226.64 C 1395.50 230.24 1400.80 235.43 1404.32 241.60 C 1405.45 243.84 1406.69 246.06 1407.33 248.51 C 1407.99 249.74 1407.98 251.15 1408.20 252.50 C 1409.95 255.81 1408.52 259.87 1409.07 263.49 C 1410.44 264.61 1409.86 266.49 1410.03 268.01 C 1409.92 295.50 1410.11 323.00 1409.93 350.49 C 1407.42 353.94 1410.47 358.91 1408.20 362.50 C 1407.99 363.85 1407.97 365.25 1407.34 366.49 C 1406.86 368.20 1406.16 369.83 1405.31 371.38 C 1405.07 371.89 1404.57 372.92 1404.33 373.43 C 1402.02 377.90 1398.29 381.28 1394.76 384.75 C 1393.54 385.96 1391.89 386.54 1390.40 387.27 C 1389.45 387.74 1388.53 388.25 1387.64 388.78 C 1386.27 389.37 1384.89 389.90 1383.48 390.32 C 1381.64 391.53 1379.08 390.31 1377.49 391.93 C 1374.16 392.04 1370.83 392.05 1367.52 391.92 C 1365.89 390.30 1363.31 391.55 1361.50 390.31 C 1360.50 390.00 1359.51 389.68 1358.55 389.34 C 1357.24 388.62 1355.92 387.94 1354.57 387.37 C 1352.09 385.55 1349.46 383.88 1347.25 381.77 C 1345.06 378.64 1342.58 375.73 1340.63 372.45 C 1340.18 371.13 1339.78 369.81 1339.30 368.52 C 1339.05 367.45 1338.67 366.44 1338.17 365.49 C 1338.09 364.99 1337.93 364.00 1337.84 363.51 C 1335.68 360.94 1338.36 356.96 1336.07 354.49 C 1335.89 324.33 1336.08 294.17 1335.97 264.01 C 1336.10 262.49 1335.53 260.61 1336.93 259.49 C 1337.31 256.86 1336.18 253.78 1337.84 251.49 C 1337.92 251.00 1338.09 250.00 1338.17 249.51 C 1338.68 248.56 1339.06 247.55 1339.30 246.48 C 1339.77 245.19 1340.18 243.86 1340.63 242.56 C 1343.23 238.87 1345.28 234.69 1348.76 231.71 C 1351.33 229.47 1354.30 227.74 1357.39 226.30 C 1359.61 225.08 1361.88 223.83 1364.50 223.78 Z' /%3E%3Cpath fill='%23776F72' opacity='1.00' d=' M 1634.50 223.78 C 1637.02 222.22 1640.20 223.30 1643.02 222.99 C 1645.47 223.25 1648.29 222.29 1650.50 223.78 C 1652.28 223.92 1654.04 224.31 1655.61 225.28 C 1663.99 228.47 1671.13 235.09 1674.72 243.39 C 1675.20 244.46 1675.75 245.50 1676.34 246.55 C 1676.97 247.77 1676.99 249.16 1677.20 250.50 C 1678.69 252.22 1677.21 254.91 1678.93 256.51 C 1679.05 290.50 1679.05 324.50 1678.93 358.48 C 1677.23 360.08 1678.66 362.76 1677.22 364.50 C 1677.05 366.30 1676.64 368.05 1675.77 369.64 C 1675.23 370.54 1674.73 371.46 1674.28 372.40 C 1671.24 379.12 1665.81 384.69 1659.43 388.31 C 1658.93 388.57 1657.93 389.10 1657.43 389.36 C 1656.43 389.69 1655.46 390.01 1654.50 390.31 C 1653.26 391.01 1651.82 390.99 1650.50 391.20 C 1648.01 392.80 1644.83 391.69 1642.07 392.01 C 1639.56 391.73 1636.69 392.73 1634.50 391.20 C 1633.12 390.99 1631.70 391.04 1630.51 390.30 C 1629.50 390.01 1628.52 389.71 1627.56 389.41 C 1625.00 387.65 1622.39 385.97 1619.84 384.23 C 1616.84 381.85 1614.90 378.45 1612.63 375.43 C 1612.03 374.07 1611.36 372.74 1610.69 371.43 C 1610.18 370.11 1609.77 368.76 1609.18 367.50 C 1609.09 367.00 1608.92 366.01 1608.83 365.51 C 1607.65 364.03 1608.37 361.88 1607.08 360.48 C 1606.94 325.49 1606.96 290.50 1607.07 255.51 C 1608.78 253.91 1607.24 251.17 1608.84 249.49 C 1608.92 248.99 1609.09 248.00 1609.18 247.50 C 1609.75 246.23 1610.17 244.89 1610.69 243.58 C 1610.93 243.08 1611.43 242.07 1611.68 241.57 C 1613.55 238.25 1616.06 235.35 1618.26 232.25 C 1620.35 230.73 1622.38 229.12 1624.52 227.63 C 1625.04 227.41 1626.10 226.96 1626.62 226.74 C 1629.08 225.37 1631.57 223.83 1634.50 223.78 Z' /%3E%3Cpath fill='%23776F72' opacity='1.00' d=' M 1935.50 223.80 C 1937.67 222.26 1940.53 223.26 1943.04 222.98 C 1945.48 223.26 1948.32 222.27 1950.50 223.80 C 1951.81 223.99 1953.24 224.00 1954.49 224.67 C 1956.93 225.30 1959.15 226.53 1961.39 227.68 C 1967.05 230.42 1970.91 235.45 1974.36 240.53 C 1974.60 241.05 1975.08 242.10 1975.32 242.62 C 1976.31 244.50 1976.97 246.54 1977.82 248.50 C 1977.91 249.00 1978.08 249.99 1978.16 250.49 C 1979.55 252.17 1978.79 254.50 1979.10 256.49 C 1980.40 257.62 1979.86 259.44 1980.03 260.94 C 1979.92 293.12 1980.11 325.31 1979.93 357.49 C 1977.93 359.35 1979.99 362.55 1978.16 364.50 C 1978.07 365.00 1977.91 366.00 1977.82 366.50 C 1976.75 369.19 1975.69 371.88 1974.34 374.44 C 1971.69 377.98 1969.44 382.13 1965.46 384.38 C 1963.40 385.64 1961.51 387.15 1959.42 388.31 C 1958.92 388.58 1957.93 389.11 1957.43 389.37 C 1956.18 389.97 1954.80 390.01 1953.50 390.21 C 1952.34 391.12 1950.83 390.95 1949.51 391.20 C 1946.18 392.92 1942.12 391.67 1938.51 391.92 C 1936.90 390.19 1934.15 391.76 1932.50 390.16 C 1932.00 390.08 1931.00 389.91 1930.51 389.82 C 1929.22 389.20 1927.87 388.80 1926.56 388.36 C 1919.86 384.34 1914.10 378.50 1910.64 371.45 C 1910.28 370.47 1909.96 369.48 1909.68 368.49 C 1909.29 367.50 1908.96 366.50 1908.67 365.50 C 1907.97 364.27 1907.97 362.84 1907.80 361.50 C 1906.66 360.26 1907.03 358.54 1906.97 357.04 C 1907.08 323.20 1906.88 289.35 1907.07 255.51 C 1908.79 253.92 1907.23 251.17 1908.84 249.50 C 1908.92 249.00 1909.10 248.00 1909.18 247.50 C 1910.00 245.54 1910.70 243.52 1911.62 241.60 C 1915.24 235.48 1920.45 230.23 1926.60 226.63 C 1928.16 225.84 1929.78 225.14 1931.51 224.67 C 1932.71 224.00 1934.12 223.99 1935.50 223.80 Z' /%3E%3Cpath fill='%23776F72' opacity='1.00' d=' M 2397.50 223.78 C 2399.98 222.20 2403.14 223.31 2405.94 222.99 C 2408.41 223.26 2411.28 222.28 2413.51 223.80 C 2414.81 223.99 2416.24 223.99 2417.48 224.68 C 2418.88 225.10 2420.27 225.63 2421.67 226.19 C 2428.68 230.24 2434.79 236.20 2438.32 243.55 C 2438.77 244.87 2439.18 246.23 2439.82 247.50 C 2439.91 248.00 2440.08 248.99 2440.16 249.49 C 2441.14 250.59 2440.90 252.14 2441.19 253.50 C 2442.31 254.74 2441.89 256.47 2442.03 257.99 C 2441.96 269.66 2442.01 281.33 2442.00 293.00 C 2418.00 293.00 2394.00 293.00 2370.00 293.00 C 2369.98 280.99 2370.03 268.98 2369.97 256.97 C 2370.02 255.46 2369.67 253.74 2370.80 252.49 C 2370.95 251.14 2370.98 249.73 2371.67 248.51 C 2372.10 246.79 2372.82 245.16 2373.69 243.60 C 2374.34 242.28 2375.00 240.95 2375.66 239.61 C 2379.14 232.91 2385.43 227.94 2392.39 225.28 C 2393.92 224.31 2395.67 223.93 2397.50 223.78 Z' /%3E%3Cpath fill='%23776F72' opacity='1.00' d=' M 628.51 313.07 C 642.01 312.90 655.50 313.05 669.00 313.00 C 668.95 327.49 669.10 341.99 668.93 356.49 C 667.21 358.08 668.73 360.82 667.16 362.51 C 667.08 363.01 666.91 364.00 666.82 364.50 C 665.98 366.46 665.32 368.49 664.32 370.38 C 664.08 370.90 663.60 371.95 663.36 372.47 C 659.92 377.96 655.36 382.66 649.62 385.71 C 648.14 386.46 646.84 387.49 645.45 388.37 C 644.11 388.81 642.75 389.19 641.50 389.82 C 641.00 389.91 640.00 390.08 639.51 390.16 C 638.40 391.16 636.84 390.93 635.50 391.20 C 632.98 392.82 629.75 391.68 626.94 392.00 C 623.83 391.66 620.32 392.84 617.50 391.22 C 614.89 391.16 612.61 389.93 610.40 388.70 C 605.45 386.77 601.68 382.68 598.64 378.47 C 598.40 377.95 597.92 376.90 597.68 376.38 C 596.67 374.49 596.00 372.46 595.18 370.50 C 595.09 370.00 594.92 369.01 594.84 368.51 C 592.84 366.24 595.20 362.65 593.07 360.49 C 592.95 357.16 592.95 353.83 593.07 350.51 C 595.13 348.33 593.01 344.90 594.69 342.50 C 594.93 341.44 595.31 340.44 595.82 339.49 C 595.91 338.99 596.09 338.00 596.18 337.50 C 596.79 336.24 597.18 334.89 597.64 333.56 C 599.45 330.48 601.75 327.73 603.83 324.83 C 606.27 323.36 608.10 321.11 610.52 319.63 C 611.04 319.41 612.07 318.96 612.59 318.73 C 613.10 318.47 614.12 317.95 614.62 317.69 C 615.94 317.04 617.25 316.36 618.54 315.64 C 619.78 315.04 621.15 314.97 622.50 314.79 C 624.22 313.29 626.91 314.78 628.51 313.07 Z' /%3E%3C/svg%3E");
}


/* Survey Modal Styling */

#survey-description {
	font-weight: bold;
	margin-bottom: 20px;
}

#surveyModal legend {
	font-size: 1rem;
}

#surveyModal table th,
#surveyModal table td:not(:first-child) {
	text-align:center;
	vertical-align: middle;
}

/* method for displaying survey checkboxes and radiobuttons options vertically */

#surveyModal .form-control {
	height: auto !important; /* allows border height around checkboxes to grow with options */
}

#surveyModal .form-group-radio-buttons label {
	display: inline; /* fix with using after css tag to add line break after labels */
	cursor: pointer;
	margin-left: 5px;
}

#surveyModal .form-group-radio-buttons label:after {
	content: "\A"; /* actual line break after labels */
	white-space: pre; /* removes trailing space */
	/* optional method to fix issues in IE but needs padding removed on label:
	content: "";
	display: block;*/
}

/* slider style question */
/* set minimum height on parent form-group element */
#surveyModal .form-group.slider {
	min-height: 70px;
	overflow: hidden;
}

/* Add these new styles */
#surveyModal .slider {
	width: 100% !important;
}
#surveyModal .slider-track {
	width: 100% !important;
}

/* audio questions - font-awesome play/stop icon */
#surveyModal a.fa {
	color: #554F51;
	display: inline;
}
#surveyModal a.fa:hover {
	color:#776F72;
	font-weight: normal;
}

#surveyModal a.fa span,
#surveyModal a.fa:hover span {
	color: initial;
	font-weight: initial;
	margin-left: 5px;
}

#surveyModal .form-group.validation-error span {
    color: red !important;
}


/* audio questions - font-awesome play/stop icons in parent card element with bg-danger class (validation error) */
#surveyModal .bg-danger a.fa {
	color: #FFF;
}
/* new font-awesome play icon */
#surveyModal .bg-danger a.fa:hover {
	color: #dddddd;
}

#surveyModal .bg-danger a.fa span,
#surveyModal .bg-danger a.fa:hover span {
	color: #fff !important;
}


/* fix issue with validation scroll to error and default relative positioning on bootstrap card elements */
#surveyModal .card {
	position: unset !important;
}

/* fix styling for lables within card elements and validation-error class */
.card.bg-danger .validation-error {
	color: #fff !important;
}


/* Profile Page / Admin Page Styling */
#profile-page-tabs h4,
#profile-info-tabs h5,
#admin-page-tabs h4,
#user-management-tabs h5,
#report-type-tabs h5 {
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 0rem;
}

#reportingForm form fieldset:disabled {
	opacity: 0.5;
}

#profile-info .mandatory-field-message,
#reset-pass .mandatory-field-message {
	margin-top: 0px;
	text-align: right;
	margin-right: 8px;
}

#certs-and-takeaways h5 {
	font-size: 1.25rem;
	line-height: 1.2;
}

#privacy-policy .card-subtitle {
	line-height: 1.2;
}

#privacy-policy h5 {
	margin-bottom: 0.5rem;
}

#privacy-policy h6 {
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 1rem;
}
#profile-statistics,
#admin-statistics,
.program-statistics {
	position: relative;
	font-size: 13px;
}

#profile-statistics > .badge,
#admin-statistics > .badge,
.program-statistics > .badge {
	position: absolute;
	top: -8px;
	font-size: 12px;
}

@media (max-width: 576px) {
	#profile-statistics > .badge,
	#admin-statistics > .badge,
	.program-statistics > .badge {
		top: -5px;
		font-size: 9.75px;
	}
}


.statistic {
	display: inline-block;
	text-align: left;
	padding: 5px 40px 5px 10px;
	vertical-align: top;
}

.statistic span {
	display: block;
	font-weight: bold;
}

@media (min-width: 576px) {
    #certs-and-takeaways .card-deck .card,
    #payment-receipt .card-deck .card {
        min-width: calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
}

@media (min-width: 768px) {
    #certs-and-takeaways .card-deck .card,
    #payment-receipt .card-deck .card {
        min-width: calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

#admin-inactive-popup .modal-body {
	font-size: 1.125rem;
}

#admin-inactive-popup .btn {
	flex: 1;
}

/* Authentication Page Styling */
.authentication #admin-authentication-access-form {
	width: 50%;
	margin: auto;
	text-align: center;
}

@media (max-width: 767px) {
	.authentication #admin-authentication-access-form {
		width: 80%;
	}
}

.authentication #admin-authentication-access-form label {
	display: block;
}

.authentication #resend-authentication-email {
	padding: 0;
	color: inherit;
	text-decoration: underline;
	vertical-align: bottom;
}

.authentication #resend-authentication-email:hover,
.authentication #resend-authentication-email:focus {
	color: #554F51;
}

@media (max-width: 365px) {
	#admin-authentication-access-form button:not(.btn-link) {
		font-size: .875rem;
	}
}

#admin-inactive-popup button {
	min-height: 72px;
}