main.main {
	flex-grow: 1;
	background-color: var(--background);
	min-width: var(--min-width);
	margin-top: 0;
	display: block;
}
main.main ul, main.main ol {
	text-align: left;
}
main.main > *:last-child {
margin-bottom: 0 !important;
}


main.main .subpage-head {
	background-color: var(--subpage-head-background);
	padding-top: var(--head-height);
}
main.main .subpage-head .background {
	background-image: var(--url);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center;
	background-color: var(--subpage-head-back);
	height: var(--subpage-head-height);
	min-height: var(--subpage-head-min-height);
	position: relative;
	overflow: var(--subpage-head-overflow);
	display: grid;
	grid-template: 1fr / 1fr;
	place-content: stretch stretch;
	place-items: stretch stretch;
}
main.main .subpage-head .grid {
	display: grid;
	grid-template: 1fr / 1fr;
	place-content: stretch stretch;
	place-items: var(--subpage-head-place);
}
main.main .subpage-head .text {
	margin: var(--subpage-text-margin);
	padding: var(--subpage-text-padding);
	background-color: transparent;
}
main.main .subpage-head .text > h1 {
	color: var(--subpage-head-h1-color);
	font-size: var(--stand-head-h1-font-size);
	font-weight: var(--subpage-head-h1-font-weight);
	line-height: 105%;
	text-transform: var(--subpage-head-h1-text-transform);
	filter: var(--subpage-head-h1-filter);
	text-align: var(--subpage-head-text-align);
	margin-bottom: -0.17em
}


main.main .content-stand > * {
	margin-bottom: var(--stand-margin-bottom);
}
main.main .content-stand > *:last-child {
	margin-bottom: 0;
}
main.main .content-stand > *:first-child {
	margin-top: 0;
}

main.main .content-stand > * b {
	font-weight: 700;
}

main.main .content-stand .m-t-minus {
margin-top: calc(0px - var(--stand-margin-bottom));
}
main.main .content-stand {
font-size: var(--stand-font-size);
font-weight: var(--stand-font-weight);
line-height: var(--stand-line-height);
color: var(--stand-color);
}
main.main .content-stand > h1, main.main .content-stand > ul h1, main.main .content-stand > ol h1 {
font-size: var(--stand-h1-font-size);
font-weight: var(--stand-h1-font-weight);
line-height: var(--stand-h1-line-height);
color: var(--stand-h1-color);
margin-top: var(--stand-h1-margin-top);
margin-bottom: var(--stand-h1-margin-bottom);
}
main.main .content-stand > h2, main.main .content-stand > ul h2, main.main .content-stand > ol h2 {
font-size: var(--stand-h2-font-size);
font-weight: var(--stand-h2-font-weight);
line-height: var(--stand-h2-line-height);
color: var(--stand-h1-color);
margin-top: var(--stand-h2-margin-top);
margin-bottom: var(--stand-h2-margin-bottom);
}
main.main .content-stand > h3, main.main .content-stand > ul h3, main.main .content-stand > ol h3 {
font-size: var(--stand-h3-font-size);
font-weight: var(--stand-h3-font-weight);
line-height: var(--stand-h3-line-height);
color: var(--stand-h3-color);
margin-top: var(--stand-h3-margin-top);
margin-bottom: var(--stand-h3-margin-bottom);
}
main.main .content-stand > h4, main.main .content-stand > ul h4, main.main .content-stand > ol h4 {
font-size: var(--stand-h4-font-size);
font-weight: var(--stand-h4-font-weight);
line-height: var(--stand-h4-line-height);
color: var(--stand-h4-color);
margin-top: var(--stand-h4-margin-top);
margin-bottom: var(--stand-h4-margin-bottom);
}
main.main .content-stand a:not(.button):not(.link-special) {
color: var(--stand-link-color);
font-weight: var(--stand-link-weight);
text-decoration: var(--stand-link-decoration);
}
main.main .content-stand a:not(.button):not(.link-special):hover {
color: var(--stand-link-color-hover);
text-decoration: var(--stand-link-decoration-hover);
}
main.main .content-stand ul > li, main.main .content-stand ol > li {
	counter-increment: count 1;
}
main.main .content-stand ul, main.main .content-stand ol {
	counter-reset: count 0;
}
main.main .content-stand ul.sub-list, main.main .content-stand ol.sub-list {
	font-size: calc(var(--stand-font-size) - 1px);
}
@media (min-width: 576px){
main.main .content-stand ul, main.main .content-stand ol {
	list-style-position: outside;
	margin-left: var(--stand-list-margin-left);
}
main.main .content-stand ul.sub-list, main.main .content-stand ol.sub-list {
	margin-left: var(--stand-sublist-margin-left);
}
}
@media (max-width: 575px){
main.main .content-stand ul, main.main .content-stand ol {
	list-style-position: inside;
}
main.main .content-stand > * {
	text-align: center !important;
}
}
main.main .content-stand ul > li::marker, main.main .content-stand ol > li::marker {
	font-size: var(--stand-list-marker-font-size);
	color: var(--stand-list-marker-color);
	font-weight: var(--stand-list-marker-font-weight);
}
main.main .content-stand ul.sub-list > li::marker, main.main .content-stand ol.sub-list > li::marker {
	font-size: calc(var(--stand-list-marker-font-size) - 1px);
	color: var(--stand-sublist-marker-color);
	font-weight: var(--stand-sublist-marker-font-weight);
}
main.main .content-stand ul.circle, main.main .content-stand ol.circle {
	list-style-type: circle;
}
main.main .content-stand ul.circle > li::marker, main.main .content-stand ol.circle > li::marker {
	content: '\25CB    ';
}
main.main .content-stand ul.disc, main.main .content-stand ol.disc {
	list-style-type: disc;
}
main.main .content-stand ul.disc > li::marker, main.main .content-stand ol.disc > li::marker {
	content: '\25CF    ';
}
main.main .content-stand ul.decimal, main.main .content-stand ol.decimal {
	list-style-type: decimal;
}
main.main .content-stand ul.decimal > li::marker, main.main .content-stand ol.decimal > li::marker {
	content: counter(count, decimal) '.   ';
}
main.main .content-stand ul.alpha, main.main .content-stand ol.alpha {
	list-style-type: lower-alpha;
}
main.main .content-stand ul.alpha > li::marker, main.main .content-stand ol.alpha > li::marker {
	content: counter(count, lower-alpha) ')   ';
}
main.main .content-stand ul.roman, main.main .content-stand ol.roman {
	list-style-type: upper-roman;
}
main.main .content-stand ul.roman > li::marker, main.main .content-stand ol.roman > li::marker {
	content: counter(count, upper-roman) '   ';
}
main.main .content-stand ul.dash > li::marker, main.main .content-stand ol.dash > li::marker {
	content: '\2012    ';
}
main.main .content-stand ul.h1 > li::marker, main.main .content-stand ol.h1 > li::marker {
	font-size: var(--stand-h1-font-size);
	font-weight: var(--stand-h1-font-weight);
}
main.main .content-stand ul.h2 > li::marker, main.main .content-stand ol.h2 > li::marker {
	font-size: var(--stand-h2-font-size);
	font-weight: var(--stand-h2-font-weight);
}
main.main .content-stand ul.h3 > li::marker, main.main .content-stand ol.h3 > li::marker {
	font-size: var(--stand-h3-font-size);
	font-weight: var(--stand-h3-font-weight);
}
main.main .content-stand table {
	width: var(--stand-table-width);
	table-layout: fixed;
	text-align: var(--stand-table-align);
	background-color: var(--stand-table-background);
	font-size: var(--stand-table-font-size);
	font-weight: var(--stand-table-font-weight);
	color: var(--stand-table-color);
}
main.main .content-stand table td {
	padding: calc(var(--stand-table-padding) / 2) 0 calc(var(--stand-table-padding) / 2) 0;
	border-bottom: var(--stand-table-border);
	vertical-align: baseline;
}
main.main .content-stand table td:first-child {
	padding-right: var(--stand-table-padding);
}
main.main .content-stand table tr.title td {
	background-color: var(--stand-table-title-background);
	border-bottom: 0;
	font-size: var(--stand-table-title-font-size);
	font-weight: var(--stand-table-title-font-weight);
	color: var(--stand-table-title-color);
}