:root {
	--Bold: 600;
	--Thin: 300;
	--Thin3: 100;
	--Thin2: 200;
	--Thin1: 300;
	--Normal: 400;
	--Bold1: 500;
	--Bold2: 600;
	--Bold3: 700;
	--Bold4: 800;
	--Bold5: 900;

	--AspectRatio1x1: 100%;
	--AspectRatio2x1: 50%;
	--AspectRatio1x2: 200%;
	--AspectRatio3x2: 66.66%;
	--AspectRatio2x3: 150%;
	--AspectRatio3x1: 33.33%;
	--AspectRatio1x3: 300%;
	--AspectRatio4x3: 75%;
	--AspectRatio3x4: 133.33%;
	--AspectRatio16x9: 56.25%;
	--AspectRatio9x16: 177.77%;
	--AspectRatioSquare: 100%;
	--AspectRatioPhoto: 66.66%;
	--AspectRatioPhotoH: 66.66%;
	--AspectRatioPhotoV: 150%;
	--AspectRatioWide: 56.25%;
	--AspectRatioPoster: 148.15%;
	--AspectRatioBanner: 130%;
}


* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Raleway", "Trebuchet MS", "Calibri", sans-serif, "Arial";
	font-variant-numeric: lining-nums;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

html {
	font-size: 16px;
	color: black;
	font-weight: var(--Normal);
	line-height: 1.2;
}

@media screen and (max-width: 320px) {
	html {
		font-size: 15px;
	}
}

@media screen and (min-width: 801px) {
	html {
		font-size: 16px;
	}
}

@media screen and (min-width: 1031px) {
	html {
		font-size: 18px;
	}
}

a {
	padding: 0;
	border: none;
	margin: 0;
	outline: none;
	font-family: inherit;
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
	text-decoration: none;
	text-underline-offset: 0.05rem;
	cursor: pointer
}

a:link, a:visited {
	color: inherit;
	font-weight: inherit;
	text-decoration: none;
}

a:hover, a:active {
	color: inherit;
	font-weight: inherit;
	text-decoration: underline;
}

input[type='submit'], input[type='reset'], input[type='button'], .ButtonText {
	padding: 5px 10px;
	margin: 0;
	border: none;
	border-radius: 1000px;
	outline: none;
	background: var(--GreyBG);
	box-shadow: 1px 1px 2px var(--GreyL) inset, -1px -1px 2px var(--GreyD) inset;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
	cursor: pointer;
	-webkit-appearance: none;
}

.ButtonText--Delete {
	color: white;
	background: var(--Red);
}

input[type='text'], input[type='password'], input[type='file'], input[type='date'], input[type='time'] {
	padding: 5px 10px;
	margin: 0;
	border: 1px solid var(--GreyL);
	border-radius: 1000px;
	outline: none;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
	background-color: white;
	-webkit-appearance: none;
}

input[type='text'], input[type='password'] {
	cursor: text;
}

.SearchBlock {
	display: inline-block;
	margin-right: 1em;
	margin-left: 1em;
	position: relative;
}

input[type='text'].SearchField {
	padding: 5px 2em 5px 10px;
}

input.SearchField + .SearchIcon {
	position: absolute;
	right: 0.5em;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.8em;
	cursor: pointer;
}

input[type='file'] {
	cursor: pointer;
}

select {
	padding: 5px 10px;
	margin: 0;
	border: 1px solid var(--GreyL);
	border-radius: 1000px;
	outline: none;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
	background-color: white;
	-webkit-appearance: none;
	position: relative;
	cursor: pointer;
}

.SelectBlock {
	display: inline-block;
	position: relative;
}

.SelectBlock select {
	padding: 5px 2em 5px 10px;
}

.SelectBlock select + i, .SelectBlock select + .SelectBlock__Arrow {
	display: inline-block;
	width: 1em;
	height: 1em;
	position: absolute;
	right: 0.5em;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1em;
	line-height: 1;
	text-align: center;
	pointer-events: none;
}

input[type='checkbox'], input[type='radio'] {
	-ms-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-webkit-transform: scale(1.5);
	-o-transform: scale(1.5);
	vertical-align: middle;
	cursor: pointer;
}

textarea {
	padding: 3px 5px;
	border: 1px solid var(--GreyL);
	border-radius: 7px;
	margin: 0;
	outline: none;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
	-webkit-appearance: none;
}

h1, h2, h3, h4, h5, h6 {
	border: none;
	padding: 0.15em 0;
	margin: 0;
	outline: none;
	font-weight: var(--Bold);
	line-height: 1em;
}

h1 {
	font-size: 2rem;
}

h2 {
	font-size: 1.8rem;
}

h3 {
	font-size: 1.6rem;
}

h4 {
	font-size: 1.4rem;
}

h5 {
	font-size: 1.2rem;
}

h6 {
	font-size: 1rem;
}

p {
	display: block;
	padding: 0.5em 0;
	margin: 0;
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.2;
}

strong {
	font-size: inherit;
	font-weight: bolder;
	line-height: inherit;
	color: inherit;
}

ul {
	list-style-type: none;
	padding: unset;
	margin: unset;
}

i {
	padding: 0;
	border: none;
	margin: 0;
	outline: none;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
	text-decoration: none;
}

.ButtonImage {
	padding: 0;
	border: none;
	margin: 0;
	outline: none;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
	background: none;
	cursor: pointer
}

.ButtonImage--Delete {
	color: var(--Red);
}

.StButton {cursor: pointer;}

.StFrameHidden {
	display: none;
}

.StFrameShown {
	display: initial;
}

.Obs {
	font-size: 0.75rem;
}

.AlignLeft {
	text-align: left;
}

.AlignCenter {
	text-align: center;
}

/*TableStriped*/
.TableStriped {
	display: table;
	width: 100%;
}

.TableStriped th {
	padding: 0.25em;
	border: 2px solid white;
	background: var(--GreyD);
	color: white;
}

.TableStriped tr:nth-child(even) {
	background: var(--Grey9);
}

.TableStriped tr:nth-child(odd) {
	background: var(--GreyBG);
}

.TableStriped td {
	padding: 0.25em;
	border: 2px solid white;
}


/*TableList*/
.TableList {
	display: table;
	list-style-type: none;
}

.TableList__Row {
	display: table-row;
}

.TableList__Col1, .TableList__Col2 {
	display: table-cell;
	padding: 0.5rem 1rem;
	border: 1px solid var(--GreyL);
	text-align: center;
	vertical-align: middle;
	font-weight: var(--Bold);
	color: black;
}

.TableList__Col1 {
	background: var(--Blue9);
}

.TableList__Col2 {
	background: var(--Purple9);
	white-space: nowrap;
}

.TableList .Obs {
	font-weight: var(--Bold1);
}

.TableList__ColSpan {
	display: table-cell;
	padding: 4px 8px;
	border: 2px solid var(--GreyD);
	vertical-align: middle;
}


body {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 2000px;
	min-height: 100vh;
	padding: 0;
	border: none;
	margin: 0;
	margin-left: auto;
	margin-right: auto;
	outline: none;
	position: relative;
	z-index: 1;
}

.AnchorPoint {
	margin-top: -70px;
	padding-top: 70px;
}

#AdminMenu.AdminMenu {
	display: block;
	width: 100%;
	height: 28px;
	padding: 0;
	border: none;
	margin: 0;
	outline: none;
	position: relative;
	top: 0;
	z-index: 105;
	background: black;

	-webkit-box-flex: 0 0 auto;
	-moz-box-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
	flex: 0 0 auto;
}

#AdminMenu .AdminMenu__ToggleCheckbox {
	display: none;
}

#AdminMenu .AdminMenu__ToggleLabel {
	display: block;
	height: 28px;
	position: relative;
	z-index: 109;
	text-align: center;
	cursor: pointer;
}

#AdminMenu .AdminMenu__ToggleImg {
	display: block;
	width: 20px;
	height: 20px;
	margin-left: auto;
	padding: 0;
	border: 2px solid white;
	border-radius: 10px;
	font-size: 1rem;
	line-height: 16px;
	color: white;
	transform: translateY(4px);
}

#AdminMenu .AdminMenu__ToggleImg:hover {
	background: white;
	color: black;
}

#AdminMenu .AdminMenu__DimmedBackground {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 101;
	background-image: linear-gradient(to top, black, rgb(0,0,0,0.75), black, transparent, transparent);
	opacity: 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	-ms-transform: translate(0, 100%);
	-webkit-transform: translate(0, 100%);
	transform: translate(0, 100%);
	pointer-events: none;
}

#AdminMenu .AdminMenu__Nav {
	display: block;
	max-height: 90vh;
	padding-top: 1rem;
	padding-bottom: 1rem;
	position: relative;
	z-index: 108;
	opacity: 0;
	background: black;
	overflow-y: hidden;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	-ms-transform: translate(0, -100%);
	-webkit-transform: translate(0, -100%);
	transform: translate(0, -100%);
	pointer-events: none;
}

#AdminMenu .AdminMenu__ToggleCheckbox:checked ~ .AdminMenu__Nav {
	max-height: 90vh;
	opacity: 1;
	overflow-y: auto;
	-ms-transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	pointer-events: auto;
}

#AdminMenu .AdminMenu__ToggleCheckbox:checked ~ .AdminMenu__DimmedBackground {
	opacity: 0.5;
	-ms-transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	pointer-events: auto;
}

#AdminMenu .AdminMenu__Ul {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
	gap: 5px;
	list-style-type: none;
}

#AdminMenu .AdminMenu__ItemBlock {
	display: block;
	width: 100%;
	padding-top: var(--AspectRatio2x1);
	min-height: 5rem;
	border-radius: 10px;
	position: relative;
	background: var(--Grey6);
	cursor: pointer;
}

#AdminMenu .AdminMenu__ItemBlock:hover {
	background: var(--GreyD);
}

#AdminMenu .AdminMenu__ItemLink {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	text-decoration: none;
}

#AdminMenu .AdminMenu__ItemLink:hover {
	text-decoration: none;
}

#AdminMenu .AdminMenu__ItemLabel {
	display: block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	font-weight: var(--Bold1);
	font-size: 0.7rem;
	line-height: 1.2;
	text-align: center;
}

#AdminMenu .AdminMenu__ItemLabel--Self {
	color: black;
	font-weight: var(--Bold4);
}

#AdminMenu .AdminMenu__ItemLabelIcon {
	font-size: 2.5rem;
	line-height: 1.5;
	vertical-align: middle;
}

#AdminMenu .AdminMenu__ItemLabelText {
	vertical-align: middle;
}

@media (max-width: 360px) {
	#AdminMenu .AdminMenu__Ul {
		grid-template-columns: 1fr;
	}

	#AdminMenu .AdminMenu__ItemBlock {
		padding-top: 4rem;
	}

	#AdminMenu .AdminMenu__ItemLabelIcon {
		display: inline;
		margin-right: 0.5rem;
		font-size: 1.5rem;
		line-height: 1;
	}

	#AdminMenu .AdminMenu__ItemLabelText {
		display: inline;
		line-height: 1;
		white-space: nowrap;
	}
}

@media (min-width: 601px) {
	.AdminMenu {

	}

	#AdminMenu .AdminMenu__ToggleCheckbox {

	}

	#AdminMenu .AdminMenu__ToggleLabel {
		display: none;
	}

	#AdminMenu .AdminMenu__ToggleImg {

	}

	#AdminMenu .AdminMenu__DimmedBackground {
		opacity: 0;
		pointer-events: none;
	}

	#AdminMenu .AdminMenu__Nav {
		display: block;
		height: 28px;
		max-height: 28px;
		padding-top: 0;
		padding-bottom: 0;
		opacity: 1;
		transform: translate(0, 0);
		pointer-events: auto;
	}

	#AdminMenu .AdminMenu__ToggleCheckbox:checked ~ .AdminMenu__Nav {

	}

	#AdminMenu .AdminMenu__ToggleCheckbox:checked ~ .AdminMenu__DimmedBackground {
		display: none;
	}

	#AdminMenu .AdminMenu__Ul {
		display: flex;
		width: 100%;
		flex-flow: row nowrap;
		justify-content: center;
		align-items: center;
		gap: 0.5rem;
		overflow: hidden;
	}

	#AdminMenu .AdminMenu__ItemBlock {
		display: block;
		width: fit-content;
		height: 28px;
		min-height: unset;
		padding: 0 0.5rem;
		background: transparent;
	}

	#AdminMenu .AdminMenu__ItemBlock:hover {

	}

	#AdminMenu .AdminMenu__ItemBlock--Collapsed {
		display: none;
	}

	#AdminMenu .AdminMenu__ItemLink {
		position: relative;
		text-decoration: none;
	}

	#AdminMenu .AdminMenu__ItemLink:hover {
		text-decoration: none;
	}

	#AdminMenu .AdminMenu__ItemLabel {

	}

	#AdminMenu .AdminMenu__ItemLabel--Self {
		color: white;
		font-weight: var(--Bold1);
	}

	#AdminMenu .AdminMenu__ItemLabelIcon {
		display: none;
	}

	#AdminMenu .AdminMenu__ItemLabelText {
		line-height: 1;
		white-space: nowrap;
	}
}

#MainMenu.MainMenu {
	display: block;
	width: 100%;
	height: 42px;
	padding: 0;
	border: none;
	margin: 0;
	outline: none;
	position: sticky;
	top: 0;
	z-index: 95;
	background: var(--RedD);

	-webkit-box-flex: 0 0 auto;
	-moz-box-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
	flex: 0 0 auto;
}

#MainMenu .MainMenu__ToggleCheckbox {
	display: none;
}

#MainMenu .MainMenu__ToggleLabel {
	display: block;
	height: 42px;
	position: relative;
	z-index: 99;
	text-align: center;
	cursor: pointer;
}

#MainMenu .MainMenu__ToggleImg {
	display: block;
	width: 33px;
	height: 33px;
	margin-left: auto;
	margin-right: auto;
	padding: 2px;
	border-radius: 20px;
	object-fit: contain;
	transform: translateY(4px)
}

#MainMenu .MainMenu__ToggleImg:hover {
	background: black;
}

#MainMenu .MainMenu__DimmedBackground {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 91;
	background-image: linear-gradient(to top, black, rgb(0,0,0,0.75), black, transparent, transparent);
	opacity: 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	-ms-transform: translate(0, 100%);
	-webkit-transform: translate(0, 100%);
	transform: translate(0, 100%);
	pointer-events: none;
}

#MainMenu .MainMenu__Nav {
	display: block;
	max-height: 90vh;
	padding-top: 1rem;
	padding-bottom: 1rem;
	position: relative;
	z-index: 98;
	opacity: 0;
	background: var(--RedD);
	overflow-y: hidden;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	-ms-transform: translate(0, -100%);
	-webkit-transform: translate(0, -100%);
	transform: translate(0, -100%);
	pointer-events: none;
}

#MainMenu .MainMenu__ToggleCheckbox:checked ~ .MainMenu__Nav {
	max-height: 90vh;
	opacity: 1;
	overflow-y: auto;
	-ms-transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	pointer-events: auto;
}

#MainMenu .MainMenu__ToggleCheckbox:checked ~ .MainMenu__DimmedBackground {
	opacity: 0.5;
	-ms-transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	pointer-events: auto;
}

#MainMenu .MainMenu__Ul {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
	gap: 5px;
	list-style-type: none;
}

#MainMenu .MainMenu__ItemBlock {
	display: block;
	width: 100%;
	padding-top: var(--AspectRatio2x1);
	min-height: 5rem;
	border-radius: 10px;
	position: relative;
	background: var(--Grey6);
	cursor: pointer;
}

#MainMenu .MainMenu__ItemBlock:hover {
	background: var(--GreyD);
}

#MainMenu .MainMenu__ItemLink {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	text-decoration: none;
}

#MainMenu .MainMenu__ItemLink:hover {
	text-decoration: none;
}

#MainMenu .MainMenu__ItemLabel {
	display: block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	font-weight: var(--Bold1);
	font-size: 1rem;
	line-height: 1.2;
	text-align: center;
}

#MainMenu .MainMenu__ItemLabel--Self {
	color: black;
	font-weight: var(--Bold4);
}

#MainMenu .MainMenu__ItemLabelIcon {
	width: 100%;
	height: 3rem;
	margin-bottom: 5px;
	font-size: 3rem;
	vertical-align: middle;
}

#MainMenu .MainMenu__ItemLabelIcon > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
}

#MainMenu .MainMenu__ItemLabelText {
	vertical-align: middle;
}

@media (max-width: 360px) {
	#MainMenu .MainMenu__Ul {
		grid-template-columns: 1fr;
	}

	#MainMenu .MainMenu__ItemBlock {
		padding-top: 4rem;
	}

	#MainMenu .MainMenu__ItemLabelIcon {
		display: inline;
		margin-right: 0.5rem;
		font-size: 1.5rem;
		line-height: 1;
	}

	#MainMenu .MainMenu__ItemLabelText {
		display: inline;
		line-height: 1;
		white-space: nowrap;
	}
}

@media (min-width: 601px) {
	.MainMenu {

	}

	#MainMenu .MainMenu__ToggleCheckbox {

	}

	#MainMenu .MainMenu__ToggleLabel {
		display: none;
	}

	#MainMenu .MainMenu__ToggleImg {

	}

	#MainMenu .MainMenu__DimmedBackground {
		opacity: 0;
		pointer-events: none;
	}

	#MainMenu .MainMenu__Nav {
		display: block;
		height: 42px;
		max-height: 42px;
		padding-top: 0;
		padding-bottom: 0;
		opacity: 1;
		transform: translate(0, 0);
		pointer-events: auto;
	}

	#MainMenu .MainMenu__ToggleCheckbox:checked ~ .MainMenu__Nav {

	}

	#MainMenu .MainMenu__ToggleCheckbox:checked ~ .MainMenu__DimmedBackground {
		display: none;
	}

	#MainMenu .MainMenu__Ul {
		display: flex;
		width: 100%;
		flex-flow: row nowrap;
		justify-content: center;
		align-items: center;
		gap: 0.5rem;
		overflow: hidden;
	}

	#MainMenu .MainMenu__ItemBlock {
		display: block;
		width: fit-content;
		height: 42px;
		min-height: unset;
		padding: 0 0.5rem;
		background: transparent;
	}

	#MainMenu .MainMenu__ItemBlock:hover {

	}

	#MainMenu .MainMenu__ItemBlock--Collapsed {
		display: none;
	}

	#MainMenu .MainMenu__ItemLink {
		position: relative;
		text-decoration: none;
	}

	#MainMenu .MainMenu__ItemLink:hover {
		text-decoration: none;
	}

	#MainMenu .MainMenu__ItemLabel {

	}

	#MainMenu .MainMenu__ItemLabel--Self {
		color: white;
		font-weight: var(--Bold1);
	}

	#MainMenu .MainMenu__ItemLabelIcon {
		display: none;
	}

	#MainMenu .MainMenu__ItemLabelText {
		line-height: 1;
		white-space: nowrap;
	}
}

#IdBlogMenu {
	width: 100%;
	height: 42px;
	padding: 0;
	border: none;
	margin: 0;
	outline: none;

	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	background-color: black;
	text-align: center;

	-webkit-box-flex: 0 0 auto;
	-moz-box-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
	flex: 0 0 auto;
}

#IdBlogMenu .BlogMenuLogo {
	display: inline-block;
	width: auto;
	height: 42px;
	margin: 0 10px;
	padding: 10px 0;
	vertical-align: middle;
}

#IdBlogMenu .BlogMenuTitle {
	display: inline-block;
	color: white;
	font-size: 1rem;
	font-weight: var(--Bold);
	vertical-align: middle;
}

#MainMenuGhost {
	width: 100%;
	min-height: 42px;
	padding: 0;
	border: none;
	margin: 0px;
	outline: none;
	position: relative;
	top: 0;
	z-index: -1;
	background-color: transparent;
}

#Warning {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	background: var(--SakuraL);
}

#Warning .Warning__Inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: black;
	font-size: 1.5rem;
	font-weight: var(--Bold);
	text-align: center;
}

#Notifications {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 99;
}

#Notifications .NotifCont {
	border-radius: 10px;
	position: absolute;
	top: 0;
	right: 0;
	background: var(--RedD);
}

#Notifications .NotifCheckbox {
	display: none;
}

#Notifications .NotifLabel {
	display: block;
	padding: 0.5rem;
	border-radius: 1rem;
	font-size: 1rem;
	cursor: pointer;
}

#Notifications .NotifDiv {
	display: none;
	width: 250px;
}

#Notifications .NotifCheckbox:checked ~ .NotifDiv {
	display: block;
}

#Notifications .NotifBlock {
	display: block;
	padding: 0.25rem 0.5rem;
}

#Notifications .NotifBlock + .NotifBlock {
	border-top: 1px solid var(--Red2);
}

#Notifications .NotifDate {
	font-size: 0.5rem;
	color: white;
}

#Notifications .NotifTitle {
	font-size: 0.5rem;
	color: white;
	font-weight: var(--Bold1);
}

#Notifications .NotifText {
	font-size: 0.5rem;
	color: var(--GreyL);
	font-weight: var(--Bold1);
}

#PageHeader.PageHeader {
	width: 100%;
	height: 400px;
	position: relative;
	background-color: black;
}

#PageHeader .PageHeader__Image {
	display: block;
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	padding-right: 0;
	object-fit: cover;
	object-position: center center;
}

#PageHeader .PageHeader__TitleBG {
	width: 100%;
	height: 50%;
	position: absolute;
	top: 0;
	background-image: linear-gradient(to bottom, black, rgb(0,0,0,0.75), transparent);
}

#PageHeader .PageHeader__TitleBlock {
	width: 100%;
	position: absolute;
	top: 2.5rem;
}

#PageHeader .PageHeader__TitleText {
	width: 100%;
	position: relative;
	font-size: 2rem;
	font-weight: var(--Bold);
	color: white;
	text-align: center;
}

#PageHeader .PageHeader__SubTitleText {
	width: 75%;
	font-size: 1.2rem;
	font-weight: var(--Bold);
	color: white;
	text-align: center;
}

#IdSubMenu {
	width: 100%;
	padding: 0;
	border: none;
	margin: 0;
	outline: none;
	z-index: 50;
	position: -webkit-sticky;
	position: sticky;
	top: 42px;
	background: var(--Grey2);
	text-align: left;
}

#IdSubMenuCheckBox {
	display: none;
}

#IdSubMenuLabel {
	display: block;
	width: 100%;
	height: 36px;
	line-height: 36px;
	margin: auto;
	outline: none;
	position: relative;
	z-index: 52;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	color: white;
}

#IdSubMenuLabel i {
	margin-right: 5px;
	vertical-align: middle;
	font-size: 1rem;
	color: white;
	cursor: pointer;
}

#IdSubMenuDimmedScreen {
	display: block;
	height: 0.1px;
	position: absolute;
	top: 36px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 50;
	background: black;
	opacity: 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

#IdSubMenuCheckBox:checked ~ #IdSubMenuDimmedScreen {
	height: calc(100vh - 78px);
	opacity: 0.4;
}

#IdSubMenu nav {
	display: none;
	width: 100%;
	border: none;
	margin: 0;
	outline: none;
	position: absolute;
	z-index: 51;
	background: rgba(40, 40, 40, 0.9);
	opacity: 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

#IdSubMenuCheckBox:checked ~ nav {
	display: block;
	border: none;
	opacity: 1;
	clip: unset;
	overflow-y: auto;
}


#IdSubMenu ul {
	width: 100%;
	max-height: 50vh;
	border: none;
	margin: auto;
	outline: none;
	position: relative;
	overflow-y: auto;
}

#IdSubMenu li {
	padding-left: calc(1.2rem + 10px);
	color: white;
	cursor: pointer;
}

#IdSubMenu li + li {
	border-top: 1px dotted black;
}

#IdSubMenu li:hover {
	color: white;
}

#IdSubMenu li.Empty, #IdSubMenu li.Empty:hover {
	height: 100%;
	color: white;
	background: transparent;
}

#IdSubMenu a {
	display: block;
	width: 100%;
	padding: 15px 0;
	margin: 0;
	outline: none;
	font-size: 18px;
	color: inherit;
	font-weight: inherit;
	text-align: left;
	text-decoration: none;
}

#MainNavigation.MainNavigation {
	width: 100%;
	-webkit-position: sticky;
	position: sticky;
	top: 42px;
	background: black;
	font-size: 0.8rem;
	font-weight: var(--Bold1);
	line-height: 28px;
	color: white;
	z-index: 2;
}

#MainNavigation .MainNavigation__Container {
	text-align: center;
}

#MainNavigation .MainNavigation__Item {
	display: inline-block;
}

#MainNavigation .MainNavigation__Link {
	color: inherit;
}

#MainNavigation .MainNavigation__Arrow {
	padding: 0 0.5em;
}

#IdTitulo {
	width: fit-content;
	max-width: 1030px;
	border: none;
	margin: auto;
	margin-top: 1rem;
	margin-bottom: 2rem;
	outline: none;

	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-ms-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
	flex: 0 0 auto;
}

#IdTitulo h1 {
	display: block;
	width: auto;
	padding: 0;
	border: none;
	margin: 0;
	margin-bottom: 5px;
	outline: none;
	font-weight: var(--Bold3);
	text-align: center;
	line-height: 1em;
}

#IdTitulo p {
	display: block;
	width: auto;
	padding: 0;
	border: none;
	margin: 0;
	outline: none;
	text-align: right;
	font-size: 0.85em;
	font-weight: var(--Bold);
	line-height: 1em;
}

main {
	width: 100%;
	margin-bottom: 2rem;
	border: none;
	margin: 0;
	outline: none;
	position: relative;

	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1 0 auto;
	-webkit-flex: 1 0 auto;
	flex: 1 0 auto;
}

#IdContentContainer {
	width: auto;
	padding: 0;
	border: none;
	margin: 0 10px;
	outline: none;
	text-align: center;
}

#Result.Result {
	width: 100%;
	position: absolute;
	background: var(--YellowBG);
	z-index: 89;
}

#Result.Result--Admin {
	top: 70px;
}

#Result.Result--Menu {
	top: 42px;
}

#Result.Result--NoMenu {
	top: 0;
}

#Result .Result__HideCheckbox {
	display: none;
}

#Result .Result__HideCheckbox:checked ~ * {
	display: none;
}

#Result .Result__HideCheckboxLabel {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 2rem;
	color: var(--Grey);
	line-height: 1;
	cursor: pointer;
	z-index: 82	;
}

#Result .Result__HideCheckboxLabel:hover {
	color: var(--RedD);
}

#Result .Result__HideIcon {
}

#Result .Result__Results {
	width: 100%;
	min-height: 56px;
	padding: 10px 15px;
	padding-right: 46px;
	margin: auto;
	position: relative;
	text-align: center;
	color: var(--GreyD);
	background: var(--YellowBG);
	z-index: 81;
}

#Result .Result__Item--Conf {
	color: var(--GreyD);
}

#Result .Result__Item--OK {
	color: var(--Green);
}

#Result .Result__Item--Error {
	color: var(--Red);
}

#Result .Result__Item--Conf a {
	font-weight: var(--Bold);
}

#IdBottomSpace {
	flex: 1 0 auto;
}

#Footer.Footer {
	width: 100%;
	margin-top: 2rem;
	padding: 1rem 0 2rem;
	border: none;
	outline: none;
	background: black;

	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-ms-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
	flex: 0 0 auto;
}

#Footer a:link, #Footer a:visited {
	color: inherit;
	font-weight: inherit;
	text-decoration: inherit;
}

#Footer a:hover, #Footer a:active {
	color: inherit;
	font-weight: inherit;
	text-decoration: underline;
}

#Footer .Footer__Institutional {
	margin-top: 1rem;
}

#Footer .Footer__InstitutionalText {
	margin: 0.25em;
	padding: 0;
	text-align: center;
	font-size: 0.6rem;
	color: white;
	line-height: 1.2;
}

#Footer .Footer__InstitutionalText--Title {
	font-weight: var(--Bold3);
}

@media (min-width: 601px) {
	#Footer .Footer__InstitutionalText {
		width: fit-content;
		margin: 0.25em auto;
		padding: 0;
		text-align: center;
		font-size: 0.6rem;
		color: white;
		line-height: 1.2;
	}
}

#IdNoForm {
	display: none;
}

#IdDimmedScreen {
	display: none;
	width: 100%;
	height: 100%;
	padding: 0;
	border: none;
	margin: 0;
	outline: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 49;
	background-color: black;
	opacity: 0.4;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.StFrameBG {
	padding: 0;
	border: none;
	margin: 0;
	outline: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 49;
	background-color: black;
	opacity: 0;
	cursor: pointer;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	transform: translate(0, 100%);
}

input[type='checkbox']:checked ~ .StFrameBG {
	transform: translate(0, 0);
	opacity: 0.4;
}

input[type='checkbox']:checked ~ .StDimmedScreen {
	opacity: 0.4;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

#IdIntro {
	font-size: 18px;
	color: black;
	font-weight: 300;
}

.FullContainer {
	display: block;
	width: 100%;
}

.SafeContainer {
	display: block;
	width: 100%;
	padding-left: max(16px,env(safe-area-inset-left));
	padding-right: max(16px,env(safe-area-inset-right));
}

.ViewportContainer {
	display: block;
	width: 100%;
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
	padding-left: max(16px,env(safe-area-inset-left));
	padding-right: max(16px,env(safe-area-inset-right));
}

@media (min-width: 601px) {
	.ViewportContainer--Column {
		max-width: calc(480px - 0.5rem);
	}
}

.TextContainer {
	display: block;
	width: 100%;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
	padding-left: max(16px,env(safe-area-inset-left));
	padding-right: max(16px,env(safe-area-inset-right));
}

@media (min-width: 601px) {
	.TextContainer--Column {
		max-width: calc(410px - 0.5rem);
	}
}

.MinContainer {
	display: block;
	width: fit-content;
	min-width: min(100%, 350px);
	margin-left: auto;
	margin-right: auto;
	padding-left: max(16px,env(safe-area-inset-left));
	padding-right: max(16px,env(safe-area-inset-right));
}

@media (min-width: 601px) {
	.MinContainer {
		min-width: min(100%, 550px);
	}
	
	.MinContainer--Column {
		min-width: 300px;
		max-width: calc(410px - 0.5rem);
	}
}

.FitContainer {
	display: block;
	width: fit-content;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
	padding-left: max(16px,env(safe-area-inset-left));
	padding-right: max(16px,env(safe-area-inset-right));
}

@media (min-width: 601px) {
	.FitContainer--Column {
		max-width: calc(410px - 0.5rem);
	}
}

@media (min-width: 601px) {
	.Column--FirstCol {
		margin-right: 0;
		padding-right: 0;
	}

	.Column--MidCol {
		
	}

	.Column--LastCol {
		margin-left: 0;
		padding-left: 0;
	}
}

.ReadMoreToggle {
	color: var(--SakuraM);
	font-weight: var(--Bold);
	line-height: 1.5em;
	text-decoration: underline;
	cursor: pointer;
}

.ReadMoreToggle:hover {

}

.ReadMoreToggle i {
	height: calc(1.5 * (1em / 0.8));
	margin-left: 10px;
	font-size: 0.8em;
	line-height: calc(1.5 * (1em / 0.8));
	vertical-align: top;
	transition: all 250ms ease;
}

.ReadMoreToggle__Contents {
	height: 0;
	opacity: 0;
	overflow: hidden;
	transform: translateY(-15px);
	transition: all 250ms ease;
}

.ReadMoreToggle--On {

}

.ReadMoreToggle--On + .ReadMoreToggle__Contents {
	height: auto;
	opacity: 1;
	transform: translateY(0);
}

.ReadMoreToggle--On i {
	transform: rotate(-180deg);
}

#IdButtonsBar, .ButtonsBar {
	margin-top: 4rem;
	position: relative;
	text-align: center;
}

#IdButtonsBar *, .ButtonsBar * {
	cursor: pointer;
}

#IdButtonsBar .Block, .ButtonsBar .Block {
	position: relative;
	margin: 0 10px;
}

#IdButtonsBar input[type='checkbox'], .ButtonsBar input[type='checkbox'], #IdButtonsBar .Confirm, .ButtonsBar .Confirm, #IdButtonsBar .Cancel, .ButtonsBar .Cancel {
	display: none;
}

#IdButtonsBar .Label, .ButtonsBar .Label {
	display: inline-block;
}

#IdButtonsBar .Confirm, .ButtonsBar .Confirm {

}

#IdButtonsBar .Cancel, .ButtonsBar .Cancel {
	border-radius: 1rem;
	position: absolute;
	top: -0.5rem;
	right: -0.5rem;
	vertical-align: middle;
	background-color: var(--Lilac);
	font-size: 2rem;
	line-height: 1;
}

#IdButtonsBar input:checked ~ .Label, .ButtonsBar input:checked ~ .Label {
	display: none;
}

#IdButtonsBar input:checked ~ .Confirm, .ButtonsBar input:checked ~ .Confirm, #IdButtonsBar input:checked ~ .Cancel, .ButtonsBar input:checked ~ .Cancel {
	display: inline-block;
}

#IdButtonsBar .Save, .ButtonsBar .Save {
	background: var(--Green);
	color: white;
}

#IdButtonsBar .Reset, .ButtonsBar .Reset {
	background: var(--GreyL);
	color: var(--Grey);
}

#IdButtonsBar .Normal, .ButtonsBar .Normal {
	background: var(--Grey);
	color: white;
}

#IdButtonsBar .Delete, .ButtonsBar .Delete {
	background: var(--Red);
	color: white;
}

#IdButtonsBar .DeleteBlock, .ButtonsBar .DeleteBlock {
	position: absolute;
	right: 1rem;
}

#IdButtonsBar .Label.Delete, .ButtonsBar .Label.Delete {
	width: calc(1rem + 14px);
	height: calc(1rem + 14px);
	border-radius: calc(0.5rem + 7px);
	line-height: calc(1rem + 14px);
}

#IdButtonsBar .BackBlock, .ButtonsBar .BackBlock {
	position: absolute;
	left: 0;
}

.FullImage {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgb(0,0,0,0.9);
	cursor: pointer;
	z-index: 100;
}

.FullImage img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
}

.FullBanner {
	width: 100%;
	z-index: 1;
}

.FullBanner__Inner {
	width: 100%;
	height: 500px;
}

@media (min-width: 601px) {
	.FullBanner__Inner {
		height: 450px;
	}
}

.FullBanner__Link {
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.FullBanner__Image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.FullBanner__ClickHere {
	width: fit-content;
	margin-left: auto;
	padding: 0.5em;
	border-radius: 1rem;
	position: relative;
	top: -3rem;
	right: 1rem;
	background: white;
	font-size: 1rem;
	line-height: 1;
}


object[type="application/gas-events-abn"] {
	display: none;
}
