/* Shared sales-page foundation: registration, Artist, and Business pages. */

	:root {
		--ms-ink: #101828;
		--ms-muted: #526175;
		--ms-navy: #0b2942;
		--ms-blue: #176b87;
		--ms-cyan: #59d5e0;
		--ms-gold: #f5b642;
		--ms-cream: #fff8e8;
		--ms-line: #dce6ec;
		--ms-soft: #f4f8fa;
	}

	.scriptbody.music-sense-sales {
		color: var(--ms-ink);
		font-family: Arial, Helvetica, sans-serif;
		padding: 95px 0 0;
	}

	.music-sense-sales * {
		box-sizing: border-box;
	}

	.header-brand {
		color: #fff;
		font-size: 2em;
		font-weight: 700;
		margin-left: 40px;
		margin-top: 15px;
		position: relative;
		white-space: nowrap;
	}

	.ms-wrap {
		margin: 0 auto;
		max-width: 1160px;
		padding: 0 28px;
	}

	.ms-hero {
		background:
			radial-gradient(circle at 82% 12%, rgba(89, 213, 224, .22), transparent 32%),
			linear-gradient(135deg, #071c2d 0%, #0b3650 58%, #155f72 100%);
		color: #fff;
		overflow: hidden;
		padding: 88px 0 76px;
		position: relative;
	}

	.ms-hero-grid {
		align-items: center;
		display: grid;
		gap: 64px;
		grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
	}

	.ms-eyebrow {
		color: var(--ms-blue);
		font-size: 10pt;
		font-weight: 800;
		letter-spacing: .13em;
		margin: 0 0 16px;
		text-transform: uppercase;
	}

	.ms-hero .ms-eyebrow {
		color: #8ee9ef;
	}

	.ms-hero h1 {
		color: #fff;
		font-size: clamp(34px, 5vw, 62px);
		letter-spacing: -.035em;
		line-height: 1.02;
		margin: 0 0 24px;
		max-width: 760px;
	}

	.ms-hero-copy {
		color: #d9e8ee;
		font-size: clamp(17px, 2vw, 21px);
		line-height: 1.58;
		margin: 0 0 30px;
		max-width: 680px;
	}

	.ms-hero-media {
		margin: 0;
		position: relative;
	}

	.ms-hero-media img {
		aspect-ratio: 1200 / 630;
		border: 1px solid rgba(255, 255, 255, .35);
		border-radius: 18px;
		box-shadow: 0 30px 70px rgba(0, 0, 0, .34);
		display: block;
		height: auto;
		object-fit: cover;
		width: 100%;
	}

	.ms-hero-caption {
		background: rgba(7, 28, 45, .94);
		border: 1px solid rgba(142, 233, 239, .35);
		border-radius: 9px;
		bottom: -22px;
		box-shadow: 0 12px 28px rgba(0, 0, 0, .26);
		color: #eaf7f8;
		font-size: 10pt;
		font-weight: 700;
		left: 24px;
		line-height: 1.45;
		margin: 0;
		padding: 13px 16px;
		position: absolute;
		right: 24px;
		text-align: center;
	}

	.ms-actions {
		align-items: center;
		display: flex;
		flex-wrap: wrap;
		gap: 14px;
	}

	.ms-button {
		align-items: center;
		background: var(--ms-gold);
		border: 2px solid var(--ms-gold);
		border-radius: 7px;
		box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
		color: #17202a;
		display: inline-flex;
		font-size: 12pt;
		font-weight: 800;
		justify-content: center;
		min-height: 50px;
		padding: 12px 22px;
		text-decoration: none;
		transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
	}

	.ms-button:hover,
	.ms-button:focus {
		background: #ffc85b;
		box-shadow: 0 13px 28px rgba(0, 0, 0, .22);
		color: #17202a;
		text-decoration: none;
		transform: translateY(-2px);
	}

	.ms-button-secondary {
		background: transparent;
		border-color: rgba(255, 255, 255, .55);
		box-shadow: none;
		color: #fff;
	}

	.ms-button-secondary:hover,
	.ms-button-secondary:focus {
		background: rgba(255, 255, 255, .1);
		color: #fff;
	}

	.ms-hero-note {
		color: #b8cdd6;
		font-size: 10pt;
		margin: 18px 0 0;
	}

	.ms-hero-business {
		background: rgba(255, 255, 255, .08);
		border-left: 4px solid var(--ms-gold);
		border-radius: 0 6px 6px 0;
		color: #e7f3f6;
		font-size: 11.5pt;
		line-height: 1.55;
		margin: 22px 0 0;
		padding: 12px 16px;
	}

	.ms-hero-business strong {
		color: #fff;
	}

	.ms-hero-business + .ms-actions {
		margin-top: 22px;
	}

	.ms-player-card {
		background: rgba(255, 255, 255, .98);
		border: 1px solid rgba(255, 255, 255, .45);
		border-radius: 18px;
		box-shadow: 0 30px 70px rgba(0, 0, 0, .32);
		color: var(--ms-ink);
		padding: 28px;
		position: relative;
		transform: rotate(1.5deg);
	}

	.ms-player-top {
		align-items: center;
		display: flex;
		gap: 16px;
	}

	.ms-artwork {
		align-items: center;
		background: linear-gradient(145deg, var(--ms-blue), var(--ms-cyan));
		border-radius: 12px;
		color: #fff;
		display: flex;
		font-size: 26px;
		height: 78px;
		justify-content: center;
		width: 78px;
	}

	.ms-player-label {
		color: var(--ms-blue);
		font-size: 9pt;
		font-weight: 800;
		letter-spacing: .09em;
		margin: 0 0 5px;
		text-transform: uppercase;
	}

	.ms-player-title {
		font-size: 16pt;
		font-weight: 800;
		margin: 0 0 4px;
	}

	.ms-player-subtitle {
		color: var(--ms-muted);
		font-size: 10pt;
		margin: 0;
	}

	.ms-wave {
		align-items: center;
		display: flex;
		gap: 4px;
		height: 58px;
		margin: 22px 0 18px;
	}

	.ms-wave span {
		background: linear-gradient(to top, var(--ms-blue), var(--ms-cyan));
		border-radius: 99px;
		flex: 1;
		height: 30%;
	}

	.ms-wave span:nth-child(3n) { height: 76%; }
	.ms-wave span:nth-child(4n) { height: 48%; }
	.ms-wave span:nth-child(5n) { height: 92%; }
	.ms-wave span:nth-child(7n) { height: 62%; }

	.ms-player-tools {
		display: grid;
		gap: 9px;
		grid-template-columns: repeat(3, 1fr);
	}

	.ms-player-tool {
		background: var(--ms-soft);
		border: 1px solid var(--ms-line);
		border-radius: 7px;
		font-size: 9pt;
		font-weight: 700;
		padding: 10px 6px;
		text-align: center;
	}

	.ms-trust-strip {
		background: var(--ms-cream);
		border-bottom: 1px solid #eadfca;
		padding: 18px 0;
		text-align: center;
	}

	.ms-trust-strip p {
		color: #4a4336;
		font-size: 10.5pt;
		font-weight: 700;
		letter-spacing: .015em;
		margin: 0;
	}

	.ms-section {
		padding: 82px 0;
	}

	.ms-section-soft {
		background: var(--ms-soft);
	}

	.ms-section-dark {
		background: var(--ms-navy);
		color: #fff;
	}

	.ms-section-heading {
		margin: 0 auto 46px;
		max-width: 760px;
		text-align: center;
	}

	.ms-section-heading h2 {
		color: var(--ms-ink);
		font-size: clamp(27px, 4vw, 42px);
		letter-spacing: -.025em;
		line-height: 1.12;
		margin: 0 0 16px;
	}

	.ms-section-heading p {
		color: var(--ms-muted);
		font-size: 13pt;
		line-height: 1.6;
		margin: 0;
	}

	.ms-section-dark .ms-section-heading h2,
	.ms-section-dark .ms-section-heading p {
		color: #fff;
	}

	.ms-section-fade .ms-section-heading .ms-eyebrow {
		color: #7188a8;
	}

	.ms-section-fade .ms-section-heading h2 {
		color: #3e5274;
	}

	.ms-section-fade .ms-section-heading p {
		color: #607798;
	}

	.ms-pain-grid,
	.ms-benefit-grid,
	.ms-steps {
		display: grid;
		gap: 22px;
		grid-template-columns: repeat(3, 1fr);
	}

	.ms-card {
		background: #fff;
		border: 1px solid var(--ms-line);
		border-radius: 12px;
		box-shadow: 0 12px 28px rgba(18, 48, 66, .07);
		padding: 28px;
	}

	.ms-icon {
		align-items: center;
		background: #e7f5f7;
		border-radius: 50%;
		color: var(--ms-blue);
		display: flex;
		font-size: 17pt;
		font-weight: 800;
		height: 48px;
		justify-content: center;
		margin-bottom: 18px;
		width: 48px;
	}

	.ms-card h3,
	.ms-step h3 {
		color: var(--ms-ink);
		font-size: 16pt;
		line-height: 1.25;
		margin: 0 0 10px;
	}

	.ms-card p,
	.ms-step p {
		color: var(--ms-muted);
		font-size: 11pt;
		line-height: 1.62;
		margin: 0;
	}

	.ms-benefit-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ms-benefit {
		align-items: flex-start;
		display: flex;
		gap: 18px;
	}

	.ms-benefit .ms-icon {
		flex: 0 0 48px;
		margin: 0;
	}

	.ms-step {
		padding: 8px 22px 0;
		position: relative;
		text-align: center;
	}

	.ms-step-number {
		align-items: center;
		background: var(--ms-gold);
		border-radius: 50%;
		color: #17202a;
		display: flex;
		font-size: 14pt;
		font-weight: 900;
		height: 48px;
		justify-content: center;
		margin: 0 auto 18px;
		width: 48px;
	}

	.ms-plans {
		align-items: stretch;
		display: grid;
		gap: 24px;
		grid-template-columns: repeat(2, 1fr);
		margin: 0 auto;
		max-width: 980px;
	}

	.ms-plan {
		background: #fff;
		border: 1px solid var(--ms-line);
		border-radius: 14px;
		box-shadow: 0 15px 38px rgba(12, 43, 62, .1);
		display: flex;
		flex-direction: column;
		padding: 36px;
		position: relative;
	}

	.ms-plan-featured {
		border: 3px solid var(--ms-blue);
		padding: 34px;
	}

	.ms-plan-badge {
		background: var(--ms-blue);
		border-radius: 99px;
		color: #fff;
		font-size: 9pt;
		font-weight: 800;
		letter-spacing: .07em;
		padding: 7px 12px;
		position: absolute;
		right: 22px;
		text-transform: uppercase;
		top: -16px;
	}

	.ms-plan h3 {
		color: var(--ms-ink);
		font-size: 21pt;
		margin: 0 0 10px;
	}

	.ms-plan-intro {
		color: var(--ms-muted);
		line-height: 1.55;
		margin: 0 0 24px;
		min-height: 52px;
	}

	.ms-price {
		color: var(--ms-navy);
		font-size: 28pt;
		font-weight: 900;
		letter-spacing: -.02em;
		margin: 0 0 4px;
	}

	.ms-price-note {
		color: var(--ms-muted);
		font-size: 10pt;
		margin: 0 0 24px;
	}

	.ms-plan ul {
		list-style: none;
		margin: 0 0 30px;
		padding: 0;
	}

	.ms-plan li {
		border-bottom: 1px solid #edf1f3;
		line-height: 1.45;
		padding: 11px 0 11px 28px;
		position: relative;
		text-align: left;
	}

	.ms-plan li:before {
		color: #16815d;
		content: "\2713";
		font-weight: 900;
		left: 2px;
		position: absolute;
	}

	.ms-plan .ms-button {
		margin-top: auto;
		width: 100%;
	}

	.ms-plan-link {
		color: var(--ms-blue);
		display: block;
		font-size: 10pt;
		font-weight: 700;
		margin-top: 16px;
		text-align: center;
	}

	.ms-faq {
		margin: 0 auto;
		max-width: 860px;
	}

	.ms-faq details {
		background: #fff;
		border: 1px solid var(--ms-line);
		border-radius: 9px;
		margin-bottom: 12px;
		padding: 0 22px;
	}

	.ms-faq summary {
		color: var(--ms-ink);
		cursor: pointer;
		font-size: 12pt;
		font-weight: 800;
		list-style-position: outside;
		padding: 20px 0;
	}

	.ms-faq details p {
		color: var(--ms-muted);
		line-height: 1.65;
		margin: -3px 0 22px;
	}

	.ms-close {
		background: linear-gradient(135deg, #0b2942, #155f72);
		color: #fff;
		padding: 76px 0;
		text-align: center;
	}

	.ms-close h2 {
		color: #fff;
		font-size: clamp(28px, 4vw, 44px);
		letter-spacing: -.025em;
		margin: 0 auto 16px;
		max-width: 760px;
	}

	.ms-close p {
		color: #d9e8ee;
		font-size: 13pt;
		line-height: 1.6;
		margin: 0 auto 28px;
		max-width: 680px;
	}

	button.ms-back-to-top {
		align-items: center;
		background: var(--ms-gold);
		border: 2px solid #fff;
		border-radius: 5px;
		bottom: 28px;
		box-shadow: 0 10px 25px rgba(0, 0, 0, .28);
		color: var(--ms-navy);
		cursor: pointer;
		display: flex;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 22px;
		font-weight: 900;
		height: 50px;
		justify-content: center;
		line-height: 1;
		opacity: 0;
		padding: 0 0 3px;
		pointer-events: none;
		position: fixed;
		right: 24px;
		transform: translateY(12px);
		transition: opacity 180ms ease, transform 180ms ease, background-color 150ms ease;
		visibility: hidden;
		width: 50px;
		z-index: 1200;
	}

	button.ms-back-to-top.is-visible {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		visibility: visible;
	}

	button.ms-back-to-top:hover,
	button.ms-back-to-top:focus {
		background: #ffc85b;
		box-shadow: 0 13px 28px rgba(0, 0, 0, .32);
		color: var(--ms-navy);
		outline: 3px solid rgba(89, 213, 224, .55);
		outline-offset: 3px;
	}

	@media screen and (max-width: 900px) {
		.header-brand {
			font-size: 26pt;
			margin-bottom: 0;
			margin-top: 0;
		}

		.ms-hero-grid {
			gap: 42px;
			grid-template-columns: 1fr;
		}

		.ms-player-card {
			margin: 0 auto;
			max-width: 540px;
			transform: none;
			width: 100%;
		}

		.ms-pain-grid,
		.ms-steps {
			grid-template-columns: 1fr;
		}

		.ms-step {
			padding-bottom: 24px;
		}
	}

	@media screen and (max-width: 700px) {
		.ms-wrap {
			padding: 0 18px;
		}

		.ms-hero {
			padding: 62px 0 56px;
		}

		.ms-section {
			padding: 62px 0;
		}

		.ms-benefit-grid,
		.ms-plans {
			grid-template-columns: 1fr;
		}

		.ms-plan-intro {
			min-height: 0;
		}

		.ms-actions .ms-button {
			width: 100%;
		}

		.ms-hero-caption {
			bottom: auto;
			left: auto;
			margin-top: 12px;
			position: relative;
			right: auto;
		}

		button.ms-back-to-top {
			bottom: 18px;
			right: 16px;
		}
	}

	@media (prefers-reduced-motion: reduce) {
		button.ms-back-to-top {
			transition: none;
		}
	}

/* Artist and Business detail pages. */

:root {
	--msp-ink: #101828;
	--msp-muted: #53657a;
	--msp-navy: #0b2942;
	--msp-blue: #176b87;
	--msp-cyan: #74e2eb;
	--msp-gold: #f5b642;
	--msp-line: #d9e5eb;
	--msp-soft: #f2f7f9;
}

.header-brand {
	color: #fff;
	font-size: 2em;
	font-weight: 700;
	margin-left: 40px;
	margin-top: 15px;
	position: relative;
	white-space: nowrap;
}

.scriptbody.ms-detail-page {
	background: #05070a;
	color: #d9e5eb;
	font-family: Arial, Helvetica, sans-serif;
	padding: 95px 0 0;
}

.ms-detail-page * {
	box-sizing: border-box;
}

.msp-wrap {
	margin: 0 auto;
	max-width: 1160px;
	padding: 0 28px;
}

.msp-hero {
	background:
		radial-gradient(circle at 82% 10%, rgba(116, 226, 235, .2), transparent 32%),
		linear-gradient(135deg, #071c2d 0%, #0b3650 58%, #155f72 100%);
	overflow: hidden;
	padding: 84px 0 72px;
}

.msp-hero-grid {
	align-items: center;
	display: grid;
	gap: 58px;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
}

.msp-eyebrow {
	color: var(--msp-cyan);
	font-size: 10pt;
	font-weight: 900;
	letter-spacing: .13em;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.msp-hero h1 {
	color: #fff;
	font-size: clamp(36px, 5vw, 62px);
	letter-spacing: -.035em;
	line-height: 1.03;
	margin: 0 0 22px;
}

.msp-hero-copy {
	color: #d7e6ec;
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.58;
	margin: 0 0 28px;
}

.msp-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.msp-button {
	align-items: center;
	background: var(--msp-gold);
	border: 2px solid var(--msp-gold);
	border-radius: 7px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
	color: #17202a;
	display: inline-flex;
	font-size: 12pt;
	font-weight: 900;
	justify-content: center;
	min-height: 52px;
	padding: 12px 24px;
	text-decoration: none;
}

.msp-button:hover,
.msp-button:focus {
	background: #ffd171;
	border-color: #ffd171;
	color: #101828;
	transform: translateY(-1px);
}

.msp-button-secondary {
	background: transparent;
	border-color: rgba(255, 255, 255, .55);
	box-shadow: none;
	color: #fff;
}

.msp-button-secondary:hover,
.msp-button-secondary:focus {
	background: rgba(255, 255, 255, .1);
	border-color: #fff;
	color: #fff;
}

.msp-price-line {
	color: #c0d3dc;
	font-size: 10.5pt;
	margin: 17px 0 0;
}

.msp-hero-media {
	margin: 0;
}

.msp-hero-media img {
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 16px;
	box-shadow: 0 28px 64px rgba(0, 0, 0, .34);
	display: block;
	height: auto;
	width: 100%;
}

.msp-section {
	padding: 78px 0;
}

.msp-section-soft {
	background: var(--msp-soft);
}

.msp-section-heading {
	margin: 0 auto 40px;
	max-width: 800px;
	text-align: center;
}

.msp-section-heading h2 {
	color: #d8e4f0;
	font-size: clamp(29px, 4vw, 44px);
	letter-spacing: -.025em;
	line-height: 1.12;
	margin: 0 0 15px;
}

.msp-section-heading p {
	color: #8297b3;
	font-size: 13pt;
	line-height: 1.62;
	margin: 0;
}

.msp-section-soft .msp-section-heading h2 {
	color: var(--msp-ink);
}

.msp-section-soft .msp-section-heading p {
	color: var(--msp-muted);
}

.msp-card-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, 1fr);
}

.msp-card {
	background: #f5f5f5;
	border: 1px solid var(--msp-line);
	border-radius: 13px;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
	color: var(--msp-ink);
	padding: 30px;
}

.msp-card h3 {
	color: var(--msp-ink);
	font-size: 17pt;
	line-height: 1.25;
	margin: 0 0 12px;
}

.msp-card p {
	color: var(--msp-muted);
	font-size: 11pt;
	line-height: 1.65;
	margin: 0;
}

.msp-tool-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, 1fr);
	margin: 0 auto;
	max-width: 980px;
}

.msp-tool {
	background: #fff;
	border: 1px solid var(--msp-line);
	border-radius: 10px;
	padding: 22px 24px;
}

.msp-tool h3 {
	color: var(--msp-ink);
	font-size: 14pt;
	margin: 0 0 8px;
}

.msp-tool p {
	color: var(--msp-muted);
	line-height: 1.58;
	margin: 0;
}

.msp-checkout {
	background: linear-gradient(135deg, var(--msp-navy), #155f72);
	padding: 72px 0;
	text-align: center;
}

.msp-checkout-card {
	margin: 0 auto;
	max-width: 760px;
}

.msp-checkout h2 {
	color: #fff;
	font-size: clamp(30px, 4vw, 46px);
	margin: 0 0 12px;
}

.msp-checkout .msp-price {
	color: var(--msp-gold);
	font-size: 27pt;
	font-weight: 900;
	margin: 0 0 12px;
}

.msp-checkout p {
	color: #d7e6ec;
	font-size: 12pt;
	line-height: 1.6;
	margin: 0 auto 24px;
	max-width: 660px;
}

.msp-checkout .msp-actions {
	justify-content: center;
}

.msp-switch-plan {
	color: #c2d7df;
	font-size: 10.5pt !important;
	margin-top: 20px !important;
}

.msp-switch-plan a {
	color: #fff;
	font-weight: 800;
}

@media screen and (max-width: 920px) {
	.header-brand {
		font-size: 1.35em;
		margin-left: 20px;
		margin-top: 20px;
	}

	.msp-hero-grid {
		grid-template-columns: 1fr;
	}

	.msp-hero-media {
		margin: 0 auto;
		max-width: 620px;
	}

	.msp-card-grid {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 700px) {
	.msp-wrap {
		padding: 0 18px;
	}

	.msp-hero,
	.msp-section,
	.msp-checkout {
		padding-bottom: 58px;
		padding-top: 58px;
	}

	.msp-tool-grid {
		grid-template-columns: 1fr;
	}

	.msp-actions .msp-button {
		width: 100%;
	}
}

/* Membership feature-reference pages. */
.msp-reference-top {
	background: linear-gradient(135deg, #071c2d, #0b3650);
	color: #fff;
	padding: 58px 0 52px;
}

.msp-reference-top h1 {
	color: #fff;
	font-size: clamp(32px, 4.5vw, 52px);
	letter-spacing: -.03em;
	line-height: 1.08;
	margin: 0 0 16px;
	max-width: 850px;
}

.msp-reference-intro {
	color: #d7e6ec;
	font-size: 13pt;
	line-height: 1.6;
	margin: 0;
	max-width: 820px;
}

.msp-reference-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 26px;
}

.msp-reference-price {
	color: #fff;
	font-size: 15pt;
	font-weight: 900;
	margin: 0 8px 0 0;
}

.msp-reference-link {
	color: #fff;
	font-weight: 800;
}

.msp-reference-heading {
	margin-bottom: 28px;
	text-align: left;
	max-width: none;
}

.msp-feature-list {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.msp-feature {
	background: #fff;
	border: 1px solid var(--msp-line);
	border-radius: 10px;
	padding: 24px 26px;
}

.msp-feature h3 {
	color: var(--msp-ink);
	font-size: 15pt;
	margin: 0 0 12px;
}

.msp-feature ul {
	color: var(--msp-muted);
	line-height: 1.55;
	margin: 0;
	padding-left: 21px;
}

.msp-feature li + li {
	margin-top: 6px;
}

.msp-reference-checkout {
	background: var(--msp-navy);
	color: #fff;
	padding: 38px 0;
	text-align: center;
}

.msp-reference-checkout > .msp-wrap > p:first-child {
	font-size: 15pt;
	margin: 0 0 18px;
}

.msp-reference-checkout .msp-switch-plan {
	margin-bottom: 0 !important;
}

@media screen and (max-width: 700px) {
	.msp-reference-top {
		padding: 48px 0 44px;
	}

	.msp-feature-list {
		grid-template-columns: 1fr;
	}

	.msp-reference-actions .msp-button {
		width: 100%;
	}
}
