/*!
* Template : grid
* Frame    : 1.0.1
* Created  : 2023-05-20
* Updated  : 2023-05-20
*/
.hfui-none,
.hfui-media .hfui-media-mask {
	display: none
}

.hfui-block,
.hfui-nav,
.hfui-media,
.hfui-media .hfui-media-wrap,
.hfui-media .hfui-media-wrap .hfui-media-inner,
.hfui-media .hfui-media-wrap .hfui-media-img,
.hfui-crumb,
.hfui-menu,
.hfui-menu>.hfui-menu-item,
.hfui-menu>.hfui-menu-item>.hfui-menu-link,
.hfui-cabinet .hfui-cabinet-preview,
.hfui-cabinet .hfui-cabinet-preview .hfui-cabinet-preview-wrapper {
	display: block
}

.hfui-inline {
	display: inline
}

.hfui-inline-block,
.hfui-icon,
.hfui-nav .hfui-nav-item,
.hfui-nav .hfui-nav-divider,
.hfui-btn,
.hfui-input,
.hfui-crumb .hfui-crumb-item,
.hfui-crumb .hfui-crumb-separator,
.hfui-tags .hfui-tags-item {
	display: inline-block;
	vertical-align: middle
}

.hfui-grid>.hfui-grid-row,
.hfui-flex {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-direction: row;
	flex-direction: row
}

.hfui-flex>.hfui-flex-auto {
	-webkit-flex: auto;
	flex: auto
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col,
.hfui-flex>.hfui-flex-none {
	-webkit-flex: none;
	flex: none
}

.hfui-text-ellipsis-single,
.hfui-text-ellipsis-multi,
.hfui-menu>.hfui-menu-item>.hfui-menu-link,
.hfui-tags .hfui-tags-item {
	overflow: hidden;
	text-overflow: ellipsis
}

.hfui-text-ellipsis-single,
.hfui-menu>.hfui-menu-item>.hfui-menu-link,
.hfui-tags .hfui-tags-item {
	white-space: nowrap;
	word-break: normal
}

.hfui-text-ellipsis-multi {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: break-word;
	white-space: normal
}

.hfui-media .hfui-media-mask,
.hfui-cabinet .hfui-cabinet-preview .hfui-cabinet-preview-wrapper,
.hfui-cabinet .hfui-cabinet-preview .hfui-cabinet-preview-wrapper .hfui-cabinet-preview-video,
.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-container .hfui-cabinet-thumb-list .hfui-cabinet-thumb-item .hfui-cabinet-thumb-wrap .hfui-cabinet-thumb-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.hfui-media .hfui-media-mask:after {
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	width: 0
}

.hfui-seam,
.hfui-nav,
.hfui-dropdown>.hfui-dropdown-toggle,
.hfui-dropdown>.hfui-dropdown-content>.hfui-dropdown-list>.hfui-dropdown-item,
.hfui-menu>.hfui-menu-item>.hfui-menu-link,
.hfui-tags {
	line-height: 1;
	font-size: 0
}

@-webkit-keyframes fade-in {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes fade-in {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@-webkit-keyframes fade-out {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

@keyframes fade-out {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

@-webkit-keyframes modal-in {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.5);
		transform: scale(0.5)
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes modal-in {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.5);
		transform: scale(0.5)
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@-webkit-keyframes modal-out {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(0);
		transform: scale(0)
	}
}

@keyframes modal-out {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(0);
		transform: scale(0)
	}
}

@-webkit-keyframes drawer-in-right {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes drawer-in-right {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@-webkit-keyframes drawer-out-right {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}

@keyframes drawer-out-right {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}

@-webkit-keyframes drawer-in-left {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes drawer-in-left {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@-webkit-keyframes drawer-out-left {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
}

@keyframes drawer-out-left {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
}

.hfui-wrap {
	word-break: break-word;
	white-space: normal
}

.hfui-nowrap {
	word-break: keep-all;
	white-space: nowrap
}

.hfui-link:hover {
	color: #f80d4a
}

.hfui-link-wrap:hover .hfui-link {
	color: #f80d4a
}

.hfui-link-wrap:hover .hfui-media-hover {
	border-color: #f80d4a
}

.hfui-link-wrap:hover .hfui-media-hover .hfui-media-wrap {
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1)
}

.hfui-link-wrap:hover .hfui-media-hover .hfui-media-mask {
	color: #f80d4a
}

@media only screen and (min-width: 768px) {
	.hfui-none\@T {
		display: none
	}

	.hfui-block\@T {
		display: block
	}

	.hfui-inline\@T {
		display: inline
	}

	.hfui-inline-block\@T {
		display: inline-block;
		vertical-align: middle
	}

	.hfui-seam\@T {
		line-height: 1;
		font-size: 0
	}
}

@media only screen and (min-width: 1024px) {
	.hfui-none\@S {
		display: none
	}

	.hfui-block\@S {
		display: block
	}

	.hfui-inline\@S {
		display: inline
	}

	.hfui-inline-block\@S {
		display: inline-block;
		vertical-align: middle
	}

	.hfui-seam\@S {
		line-height: 1;
		font-size: 0
	}
}

@media only screen and (min-width: 1280px) {
	.hfui-none\@M {
		display: none
	}

	.hfui-block\@M {
		display: block
	}

	.hfui-inline\@M {
		display: inline
	}

	.hfui-inline-block\@M {
		display: inline-block;
		vertical-align: middle
	}

	.hfui-seam\@M {
		line-height: 1;
		font-size: 0
	}
}

@media only screen and (min-width: 1600px) {
	.hfui-none\@L {
		display: none
	}

	.hfui-block\@L {
		display: block
	}

	.hfui-inline\@L {
		display: inline
	}

	.hfui-inline-block\@L {
		display: inline-block;
		vertical-align: middle
	}

	.hfui-seam\@L {
		line-height: 1;
		font-size: 0
	}
}

@media only screen and (min-width: 1920px) {
	.hfui-none\@H {
		display: none
	}

	.hfui-block\@H {
		display: block
	}

	.hfui-inline\@H {
		display: inline
	}

	.hfui-inline-block\@H {
		display: inline-block;
		vertical-align: middle
	}

	.hfui-seam\@H {
		line-height: 1;
		font-size: 0
	}
}

.hfui-icon {
	fill: currentColor;
	overflow: hidden;
	text-align: center;
	font-style: normal;
	line-height: 1
}

.hfui-icon.hfui-icon-12 {
	width: 12px;
	height: 12px
}

.hfui-icon.hfui-icon-12>i {
	font-size: 12px
}

.hfui-icon.hfui-icon-14 {
	width: 14px;
	height: 14px
}

.hfui-icon.hfui-icon-14>i {
	font-size: 14px
}

.hfui-icon.hfui-icon-16 {
	width: 16px;
	height: 16px
}

.hfui-icon.hfui-icon-16>i {
	font-size: 16px
}

.hfui-icon.hfui-icon-20 {
	width: 20px;
	height: 20px
}

.hfui-icon.hfui-icon-20>i {
	font-size: 20px
}

.hfui-icon.hfui-icon-24 {
	width: 24px;
	height: 24px
}

.hfui-icon.hfui-icon-24>i {
	font-size: 24px
}

.hfui-icon.hfui-icon-28 {
	width: 28px;
	height: 28px
}

.hfui-icon.hfui-icon-28>i {
	font-size: 28px
}

.hfui-icon.hfui-icon-32 {
	width: 32px;
	height: 32px
}

.hfui-icon.hfui-icon-32>i {
	font-size: 32px
}

.hfui-icon.hfui-icon-36 {
	width: 36px;
	height: 36px
}

.hfui-icon.hfui-icon-36>i {
	font-size: 36px
}

.hfui-icon.hfui-icon-40 {
	width: 40px;
	height: 40px
}

.hfui-icon.hfui-icon-40>i {
	font-size: 40px
}

.hfui-icon.hfui-icon-48 {
	width: 48px;
	height: 48px
}

.hfui-icon.hfui-icon-48>i {
	font-size: 48px
}

.hfui-icon.hfui-icon-56 {
	width: 56px;
	height: 56px
}

.hfui-icon.hfui-icon-56>i {
	font-size: 56px
}

.hfui-icon.hfui-icon-64 {
	width: 64px;
	height: 64px
}

.hfui-icon.hfui-icon-64>i {
	font-size: 64px
}

.hfui-icon.hfui-icon-72 {
	width: 72px;
	height: 72px
}

.hfui-icon.hfui-icon-72>i {
	font-size: 72px
}

.hfui-icon.hfui-icon-80 {
	width: 80px;
	height: 80px
}

.hfui-icon.hfui-icon-80>i {
	font-size: 80px
}

.hfui-icon.hfui-icon-88 {
	width: 88px;
	height: 88px
}

.hfui-icon.hfui-icon-88>i {
	font-size: 88px
}

.hfui-icon.hfui-icon-96 {
	width: 96px;
	height: 96px
}

.hfui-icon.hfui-icon-96>i {
	font-size: 96px
}

.hfui-icon.hfui-icon-128 {
	width: 128px;
	height: 128px
}

.hfui-icon.hfui-icon-128>i {
	font-size: 128px
}

.hfui-icon.hfui-icon-144 {
	width: 144px;
	height: 144px
}

.hfui-icon.hfui-icon-144>i {
	font-size: 144px
}

@media only screen and (min-width: 768px) {
	.hfui-icon.hfui-icon-12\@T {
		width: 12px;
		height: 12px
	}

	.hfui-icon.hfui-icon-12\@T>i {
		font-size: 12px
	}

	.hfui-icon.hfui-icon-14\@T {
		width: 14px;
		height: 14px
	}

	.hfui-icon.hfui-icon-14\@T>i {
		font-size: 14px
	}

	.hfui-icon.hfui-icon-16\@T {
		width: 16px;
		height: 16px
	}

	.hfui-icon.hfui-icon-16\@T>i {
		font-size: 16px
	}

	.hfui-icon.hfui-icon-20\@T {
		width: 20px;
		height: 20px
	}

	.hfui-icon.hfui-icon-20\@T>i {
		font-size: 20px
	}

	.hfui-icon.hfui-icon-24\@T {
		width: 24px;
		height: 24px
	}

	.hfui-icon.hfui-icon-24\@T>i {
		font-size: 24px
	}

	.hfui-icon.hfui-icon-28\@T {
		width: 28px;
		height: 28px
	}

	.hfui-icon.hfui-icon-28\@T>i {
		font-size: 28px
	}

	.hfui-icon.hfui-icon-32\@T {
		width: 32px;
		height: 32px
	}

	.hfui-icon.hfui-icon-32\@T>i {
		font-size: 32px
	}

	.hfui-icon.hfui-icon-36\@T {
		width: 36px;
		height: 36px
	}

	.hfui-icon.hfui-icon-36\@T>i {
		font-size: 36px
	}

	.hfui-icon.hfui-icon-40\@T {
		width: 40px;
		height: 40px
	}

	.hfui-icon.hfui-icon-40\@T>i {
		font-size: 40px
	}

	.hfui-icon.hfui-icon-48\@T {
		width: 48px;
		height: 48px
	}

	.hfui-icon.hfui-icon-48\@T>i {
		font-size: 48px
	}

	.hfui-icon.hfui-icon-56\@T {
		width: 56px;
		height: 56px
	}

	.hfui-icon.hfui-icon-56\@T>i {
		font-size: 56px
	}

	.hfui-icon.hfui-icon-64\@T {
		width: 64px;
		height: 64px
	}

	.hfui-icon.hfui-icon-64\@T>i {
		font-size: 64px
	}

	.hfui-icon.hfui-icon-72\@T {
		width: 72px;
		height: 72px
	}

	.hfui-icon.hfui-icon-72\@T>i {
		font-size: 72px
	}

	.hfui-icon.hfui-icon-80\@T {
		width: 80px;
		height: 80px
	}

	.hfui-icon.hfui-icon-80\@T>i {
		font-size: 80px
	}

	.hfui-icon.hfui-icon-88\@T {
		width: 88px;
		height: 88px
	}

	.hfui-icon.hfui-icon-88\@T>i {
		font-size: 88px
	}

	.hfui-icon.hfui-icon-96\@T {
		width: 96px;
		height: 96px
	}

	.hfui-icon.hfui-icon-96\@T>i {
		font-size: 96px
	}

	.hfui-icon.hfui-icon-128\@T {
		width: 128px;
		height: 128px
	}

	.hfui-icon.hfui-icon-128\@T>i {
		font-size: 128px
	}

	.hfui-icon.hfui-icon-144\@T {
		width: 144px;
		height: 144px
	}

	.hfui-icon.hfui-icon-144\@T>i {
		font-size: 144px
	}
}

@media only screen and (min-width: 1024px) {
	.hfui-icon.hfui-icon-12\@S {
		width: 12px;
		height: 12px
	}

	.hfui-icon.hfui-icon-12\@S>i {
		font-size: 12px
	}

	.hfui-icon.hfui-icon-14\@S {
		width: 14px;
		height: 14px
	}

	.hfui-icon.hfui-icon-14\@S>i {
		font-size: 14px
	}

	.hfui-icon.hfui-icon-16\@S {
		width: 16px;
		height: 16px
	}

	.hfui-icon.hfui-icon-16\@S>i {
		font-size: 16px
	}

	.hfui-icon.hfui-icon-20\@S {
		width: 20px;
		height: 20px
	}

	.hfui-icon.hfui-icon-20\@S>i {
		font-size: 20px
	}

	.hfui-icon.hfui-icon-24\@S {
		width: 24px;
		height: 24px
	}

	.hfui-icon.hfui-icon-24\@S>i {
		font-size: 24px
	}

	.hfui-icon.hfui-icon-28\@S {
		width: 28px;
		height: 28px
	}

	.hfui-icon.hfui-icon-28\@S>i {
		font-size: 28px
	}

	.hfui-icon.hfui-icon-32\@S {
		width: 32px;
		height: 32px
	}

	.hfui-icon.hfui-icon-32\@S>i {
		font-size: 32px
	}

	.hfui-icon.hfui-icon-36\@S {
		width: 36px;
		height: 36px
	}

	.hfui-icon.hfui-icon-36\@S>i {
		font-size: 36px
	}

	.hfui-icon.hfui-icon-40\@S {
		width: 40px;
		height: 40px
	}

	.hfui-icon.hfui-icon-40\@S>i {
		font-size: 40px
	}

	.hfui-icon.hfui-icon-48\@S {
		width: 48px;
		height: 48px
	}

	.hfui-icon.hfui-icon-48\@S>i {
		font-size: 48px
	}

	.hfui-icon.hfui-icon-56\@S {
		width: 56px;
		height: 56px
	}

	.hfui-icon.hfui-icon-56\@S>i {
		font-size: 56px
	}

	.hfui-icon.hfui-icon-64\@S {
		width: 64px;
		height: 64px
	}

	.hfui-icon.hfui-icon-64\@S>i {
		font-size: 64px
	}

	.hfui-icon.hfui-icon-72\@S {
		width: 72px;
		height: 72px
	}

	.hfui-icon.hfui-icon-72\@S>i {
		font-size: 72px
	}

	.hfui-icon.hfui-icon-80\@S {
		width: 80px;
		height: 80px
	}

	.hfui-icon.hfui-icon-80\@S>i {
		font-size: 80px
	}

	.hfui-icon.hfui-icon-88\@S {
		width: 88px;
		height: 88px
	}

	.hfui-icon.hfui-icon-88\@S>i {
		font-size: 88px
	}

	.hfui-icon.hfui-icon-96\@S {
		width: 96px;
		height: 96px
	}

	.hfui-icon.hfui-icon-96\@S>i {
		font-size: 96px
	}

	.hfui-icon.hfui-icon-128\@S {
		width: 128px;
		height: 128px
	}

	.hfui-icon.hfui-icon-128\@S>i {
		font-size: 128px
	}

	.hfui-icon.hfui-icon-144\@S {
		width: 144px;
		height: 144px
	}

	.hfui-icon.hfui-icon-144\@S>i {
		font-size: 144px
	}
}

@media only screen and (min-width: 1280px) {
	.hfui-icon.hfui-icon-12\@M {
		width: 12px;
		height: 12px
	}

	.hfui-icon.hfui-icon-12\@M>i {
		font-size: 12px
	}

	.hfui-icon.hfui-icon-14\@M {
		width: 14px;
		height: 14px
	}

	.hfui-icon.hfui-icon-14\@M>i {
		font-size: 14px
	}

	.hfui-icon.hfui-icon-16\@M {
		width: 16px;
		height: 16px
	}

	.hfui-icon.hfui-icon-16\@M>i {
		font-size: 16px
	}

	.hfui-icon.hfui-icon-20\@M {
		width: 20px;
		height: 20px
	}

	.hfui-icon.hfui-icon-20\@M>i {
		font-size: 20px
	}

	.hfui-icon.hfui-icon-24\@M {
		width: 24px;
		height: 24px
	}

	.hfui-icon.hfui-icon-24\@M>i {
		font-size: 24px
	}

	.hfui-icon.hfui-icon-28\@M {
		width: 28px;
		height: 28px
	}

	.hfui-icon.hfui-icon-28\@M>i {
		font-size: 28px
	}

	.hfui-icon.hfui-icon-32\@M {
		width: 32px;
		height: 32px
	}

	.hfui-icon.hfui-icon-32\@M>i {
		font-size: 32px
	}

	.hfui-icon.hfui-icon-36\@M {
		width: 36px;
		height: 36px
	}

	.hfui-icon.hfui-icon-36\@M>i {
		font-size: 36px
	}

	.hfui-icon.hfui-icon-40\@M {
		width: 40px;
		height: 40px
	}

	.hfui-icon.hfui-icon-40\@M>i {
		font-size: 40px
	}

	.hfui-icon.hfui-icon-48\@M {
		width: 48px;
		height: 48px
	}

	.hfui-icon.hfui-icon-48\@M>i {
		font-size: 48px
	}

	.hfui-icon.hfui-icon-56\@M {
		width: 56px;
		height: 56px
	}

	.hfui-icon.hfui-icon-56\@M>i {
		font-size: 56px
	}

	.hfui-icon.hfui-icon-64\@M {
		width: 64px;
		height: 64px
	}

	.hfui-icon.hfui-icon-64\@M>i {
		font-size: 64px
	}

	.hfui-icon.hfui-icon-72\@M {
		width: 72px;
		height: 72px
	}

	.hfui-icon.hfui-icon-72\@M>i {
		font-size: 72px
	}

	.hfui-icon.hfui-icon-80\@M {
		width: 80px;
		height: 80px
	}

	.hfui-icon.hfui-icon-80\@M>i {
		font-size: 80px
	}

	.hfui-icon.hfui-icon-88\@M {
		width: 88px;
		height: 88px
	}

	.hfui-icon.hfui-icon-88\@M>i {
		font-size: 88px
	}

	.hfui-icon.hfui-icon-96\@M {
		width: 96px;
		height: 96px
	}

	.hfui-icon.hfui-icon-96\@M>i {
		font-size: 96px
	}

	.hfui-icon.hfui-icon-128\@M {
		width: 128px;
		height: 128px
	}

	.hfui-icon.hfui-icon-128\@M>i {
		font-size: 128px
	}

	.hfui-icon.hfui-icon-144\@M {
		width: 144px;
		height: 144px
	}

	.hfui-icon.hfui-icon-144\@M>i {
		font-size: 144px
	}
}

@media only screen and (min-width: 1600px) {
	.hfui-icon.hfui-icon-12\@L {
		width: 12px;
		height: 12px
	}

	.hfui-icon.hfui-icon-12\@L>i {
		font-size: 12px
	}

	.hfui-icon.hfui-icon-14\@L {
		width: 14px;
		height: 14px
	}

	.hfui-icon.hfui-icon-14\@L>i {
		font-size: 14px
	}

	.hfui-icon.hfui-icon-16\@L {
		width: 16px;
		height: 16px
	}

	.hfui-icon.hfui-icon-16\@L>i {
		font-size: 16px
	}

	.hfui-icon.hfui-icon-20\@L {
		width: 20px;
		height: 20px
	}

	.hfui-icon.hfui-icon-20\@L>i {
		font-size: 20px
	}

	.hfui-icon.hfui-icon-24\@L {
		width: 24px;
		height: 24px
	}

	.hfui-icon.hfui-icon-24\@L>i {
		font-size: 24px
	}

	.hfui-icon.hfui-icon-28\@L {
		width: 28px;
		height: 28px
	}

	.hfui-icon.hfui-icon-28\@L>i {
		font-size: 28px
	}

	.hfui-icon.hfui-icon-32\@L {
		width: 32px;
		height: 32px
	}

	.hfui-icon.hfui-icon-32\@L>i {
		font-size: 32px
	}

	.hfui-icon.hfui-icon-36\@L {
		width: 36px;
		height: 36px
	}

	.hfui-icon.hfui-icon-36\@L>i {
		font-size: 36px
	}

	.hfui-icon.hfui-icon-40\@L {
		width: 40px;
		height: 40px
	}

	.hfui-icon.hfui-icon-40\@L>i {
		font-size: 40px
	}

	.hfui-icon.hfui-icon-48\@L {
		width: 48px;
		height: 48px
	}

	.hfui-icon.hfui-icon-48\@L>i {
		font-size: 48px
	}

	.hfui-icon.hfui-icon-56\@L {
		width: 56px;
		height: 56px
	}

	.hfui-icon.hfui-icon-56\@L>i {
		font-size: 56px
	}

	.hfui-icon.hfui-icon-64\@L {
		width: 64px;
		height: 64px
	}

	.hfui-icon.hfui-icon-64\@L>i {
		font-size: 64px
	}

	.hfui-icon.hfui-icon-72\@L {
		width: 72px;
		height: 72px
	}

	.hfui-icon.hfui-icon-72\@L>i {
		font-size: 72px
	}

	.hfui-icon.hfui-icon-80\@L {
		width: 80px;
		height: 80px
	}

	.hfui-icon.hfui-icon-80\@L>i {
		font-size: 80px
	}

	.hfui-icon.hfui-icon-88\@L {
		width: 88px;
		height: 88px
	}

	.hfui-icon.hfui-icon-88\@L>i {
		font-size: 88px
	}

	.hfui-icon.hfui-icon-96\@L {
		width: 96px;
		height: 96px
	}

	.hfui-icon.hfui-icon-96\@L>i {
		font-size: 96px
	}

	.hfui-icon.hfui-icon-128\@L {
		width: 128px;
		height: 128px
	}

	.hfui-icon.hfui-icon-128\@L>i {
		font-size: 128px
	}

	.hfui-icon.hfui-icon-144\@L {
		width: 144px;
		height: 144px
	}

	.hfui-icon.hfui-icon-144\@L>i {
		font-size: 144px
	}
}

@media only screen and (min-width: 1920px) {
	.hfui-icon.hfui-icon-12\@H {
		width: 12px;
		height: 12px
	}

	.hfui-icon.hfui-icon-12\@H>i {
		font-size: 12px
	}

	.hfui-icon.hfui-icon-14\@H {
		width: 14px;
		height: 14px
	}

	.hfui-icon.hfui-icon-14\@H>i {
		font-size: 14px
	}

	.hfui-icon.hfui-icon-16\@H {
		width: 16px;
		height: 16px
	}

	.hfui-icon.hfui-icon-16\@H>i {
		font-size: 16px
	}

	.hfui-icon.hfui-icon-20\@H {
		width: 20px;
		height: 20px
	}

	.hfui-icon.hfui-icon-20\@H>i {
		font-size: 20px
	}

	.hfui-icon.hfui-icon-24\@H {
		width: 24px;
		height: 24px
	}

	.hfui-icon.hfui-icon-24\@H>i {
		font-size: 24px
	}

	.hfui-icon.hfui-icon-28\@H {
		width: 28px;
		height: 28px
	}

	.hfui-icon.hfui-icon-28\@H>i {
		font-size: 28px
	}

	.hfui-icon.hfui-icon-32\@H {
		width: 32px;
		height: 32px
	}

	.hfui-icon.hfui-icon-32\@H>i {
		font-size: 32px
	}

	.hfui-icon.hfui-icon-36\@H {
		width: 36px;
		height: 36px
	}

	.hfui-icon.hfui-icon-36\@H>i {
		font-size: 36px
	}

	.hfui-icon.hfui-icon-40\@H {
		width: 40px;
		height: 40px
	}

	.hfui-icon.hfui-icon-40\@H>i {
		font-size: 40px
	}

	.hfui-icon.hfui-icon-48\@H {
		width: 48px;
		height: 48px
	}

	.hfui-icon.hfui-icon-48\@H>i {
		font-size: 48px
	}

	.hfui-icon.hfui-icon-56\@H {
		width: 56px;
		height: 56px
	}

	.hfui-icon.hfui-icon-56\@H>i {
		font-size: 56px
	}

	.hfui-icon.hfui-icon-64\@H {
		width: 64px;
		height: 64px
	}

	.hfui-icon.hfui-icon-64\@H>i {
		font-size: 64px
	}

	.hfui-icon.hfui-icon-72\@H {
		width: 72px;
		height: 72px
	}

	.hfui-icon.hfui-icon-72\@H>i {
		font-size: 72px
	}

	.hfui-icon.hfui-icon-80\@H {
		width: 80px;
		height: 80px
	}

	.hfui-icon.hfui-icon-80\@H>i {
		font-size: 80px
	}

	.hfui-icon.hfui-icon-88\@H {
		width: 88px;
		height: 88px
	}

	.hfui-icon.hfui-icon-88\@H>i {
		font-size: 88px
	}

	.hfui-icon.hfui-icon-96\@H {
		width: 96px;
		height: 96px
	}

	.hfui-icon.hfui-icon-96\@H>i {
		font-size: 96px
	}

	.hfui-icon.hfui-icon-128\@H {
		width: 128px;
		height: 128px
	}

	.hfui-icon.hfui-icon-128\@H>i {
		font-size: 128px
	}

	.hfui-icon.hfui-icon-144\@H {
		width: 144px;
		height: 144px
	}

	.hfui-icon.hfui-icon-144\@H>i {
		font-size: 144px
	}
}

.hfui-nav .hfui-nav-item {
	line-height: 1;
	color: #333;
	position: relative;
}

/*.hfui-nav .hfui-nav-item:hover,
.hfui-nav .hfui-nav-item.active {
	color: #f80d4a;
}*/


/*.hfui-nav .hfui-nav-item:hover::after,
.hfui-nav .hfui-nav-item.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0px auto;
}*/

.hfui-nav .hfui-nav-data{
	position: relative;
    display: inline-block;
    overflow: hidden;
}

.hfui-nav .hfui-nav-title {
    transition: all ease-out .3s;	
}

.hfui-nav .hfui-nav-title:after {
    position: absolute;
    left: 0;
    width: 100%;
    color: #fff;
    content: attr(data-title);
    transform: translateY(100%);
}

.scrolled .hfui-nav .hfui-nav-title:after {
	color:#000;
}

.hfui-nav .hfui-nav-item:hover .hfui-nav-title,
.hfui-nav .hfui-nav-item.active .hfui-nav-title {
    transform: translateY(-100%);
}

.hfui-nav .hfui-nav-divider {
	position: relative;
	margin: 0 24px
}

.hfui-nav .hfui-nav-divider:after {
	content: '';
	display: block;
	width: 1px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	margin-top: -8px;
	background-color: #e6e6e6
}

.hfui-nav.hfui-nav-dark .hfui-nav-item {
	color: #FFF
}

/*.hfui-nav.hfui-nav-dark .hfui-nav-item:hover,
.hfui-nav.hfui-nav-dark .hfui-nav-item.active {
	color: #f80d4a
}*/

.hfui-text-color-light {
	color: #FFF
}

.hfui-text-color-dark {
	color: #000
}

.hfui-text-color-secondary {
	color: #666
}

.hfui-text-color-tertiary {
	color: #999
}

.hfui-text-color-disabled {
	color: #b3b3b3
}

.hfui-text-color-link {
	color: #FF0603
}

.hfui-text-color-primary {
	color: #f80d4a
}

.hfui-text-color-accents {
	color: #FF0603
}

.hfui-text-color-dangers {
	color: #FE5050
}

.hfui-text-color-success {
	color: #38C976
}

.hfui-text-color-warning {
	color: #FFA23A
}


.hfui-text-color-blue{
	color: #5A67FF;
}

.hfui-text-size-xs {
	font-size: 12px
}

.hfui-text-size-2xs {
	font-size: 24px
}

.hfui-text-size-sm {
	font-size: 14px
}

.hfui-text-size-2sm {
	font-size: 28px
}

.hfui-text-size-md {
	font-size: 16px
}

.hfui-text-size-2md {
	font-size: 32px
}

.hfui-text-size-lg {
	font-size: 18px
}

.hfui-text-size-2lg {
	font-size: 36px
}

.hfui-text-size-3lg {
	font-size: 54px
}

.hfui-text-size-hr {
	font-size: 20px
}

.hfui-text-size-2hr {
	font-size: 40px
}

.hfui-text-size-4lg {
	font-size: 72px
}

.hfui-text-height-xs {
	line-height: 12px
}

.hfui-text-height-2xs {
	line-height: 24px
}

.hfui-text-height-sm {
	line-height: 14px
}

.hfui-text-height-2sm {
	line-height: 28px
}

.hfui-text-height-md {
	line-height: 16px
}

.hfui-text-height-2md {
	line-height: 32px
}

.hfui-text-height-lg {
	line-height: 18px
}

.hfui-text-height-2lg {
	line-height: 36px
}

.hfui-text-height-3lg {
	line-height: 54px
}

.hfui-text-height-hr {
	line-height: 20px
}

.hfui-text-height-2hr {
	line-height: 40px
}

.hfui-text-height-4lg {
	line-height: 72px
}

.hfui-text-weight-normal {
	font-weight: normal
}

.hfui-text-weight-bold {
	font-weight: bold
}

.hfui-text-weight-bolder {
	font-weight: bolder
}

.hfui-text-weight-lighter {
	font-weight: lighter
}

.hfui-text-align-left {
	text-align: left
}

.hfui-text-align-center {
	text-align: center
}

.hfui-text-align-right {
	text-align: right
}

.hfui-text-align-justify {
	text-align: justify
}

.hfui-text-style-through {
	text-decoration: line-through
}

.hfui-text-style-underline {
	text-decoration: underline
}

.hfui-text-style-overline {
	text-decoration: overline
}

.hfui-text-ellipsis-1 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: normal
}

.hfui-text-ellipsis-2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: break-word;
	white-space: normal;
	-webkit-line-clamp: 2
}

.hfui-text-ellipsis-3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: break-word;
	white-space: normal;
	-webkit-line-clamp: 3
}

.hfui-text-ellipsis-4 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: break-word;
	white-space: normal;
	-webkit-line-clamp: 4
}

.hfui-text-ellipsis-5 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: break-word;
	white-space: normal;
	-webkit-line-clamp: 5
}

.hfui-text-ellipsis-6 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: break-word;
	white-space: normal;
	-webkit-line-clamp: 6
}

@media only screen and (min-width: 768px) {
	.hfui-text-color-light\@T {
		color: #FFF
	}

	.hfui-text-color-dark\@T {
		color: #000
	}

	.hfui-text-color-secondary\@T {
		color: #666
	}

	.hfui-text-color-tertiary\@T {
		color: #999
	}

	.hfui-text-color-disabled\@T {
		color: #b3b3b3
	}

	.hfui-text-color-link\@T {
		color: #FF0603
	}

	.hfui-text-color-primary\@T {
		color: #f80d4a
	}

	.hfui-text-color-accents\@T {
		color: #FF0603
	}

	.hfui-text-color-dangers\@T {
		color: #FE5050
	}

	.hfui-text-color-success\@T {
		color: #38C976
	}

	.hfui-text-color-warning\@T {
		color: #FFA23A
	}

	.hfui-text-size-xs\@T {
		font-size: 12px
	}

	.hfui-text-size-2xs\@T {
		font-size: 24px
	}

	.hfui-text-size-sm\@T {
		font-size: 14px
	}

	.hfui-text-size-2sm\@T {
		font-size: 28px
	}

	.hfui-text-size-md\@T {
		font-size: 16px
	}

	.hfui-text-size-2md\@T {
		font-size: 32px
	}

	.hfui-text-size-lg\@T {
		font-size: 18px
	}

	.hfui-text-size-2lg\@T {
		font-size: 36px
	}

	.hfui-text-size-3lg\@T {
		font-size: 54px
	}

	.hfui-text-size-hr\@T {
		font-size: 20px
	}

	.hfui-text-size-2hr\@T {
		font-size: 40px
	}

    .hfui-text-size-4lg\@T {
    	font-size: 72px
    }	

	.hfui-text-height-xs\@T {
		line-height: 12px
	}

	.hfui-text-height-2xs\@T {
		line-height: 24px
	}

	.hfui-text-height-sm\@T {
		line-height: 14px
	}

	.hfui-text-height-2sm\@T {
		line-height: 28px
	}

	.hfui-text-height-md\@T {
		line-height: 16px
	}

	.hfui-text-height-2md\@T {
		line-height: 32px
	}

	.hfui-text-height-lg\@T {
		line-height: 18px
	}

	.hfui-text-height-2lg\@T {
		line-height: 36px
	}

	.hfui-text-height-3lg\@T {
		line-height: 54px
	}

	.hfui-text-height-hr\@T {
		line-height: 20px
	}

	.hfui-text-height-2hr\@T {
		line-height: 40px
	}

    .hfui-text-height-4lg\@T {
    	line-height: 72px
    }	

	.hfui-text-weight-normal\@T {
		line-height: normal
	}

	.hfui-text-weight-bold\@T {
		line-height: bold
	}

	.hfui-text-weight-bolder\@T {
		line-height: bolder
	}

	.hfui-text-weight-lighter\@T {
		line-height: lighter
	}

	.hfui-text-align-left\@T {
		text-align: left
	}

	.hfui-text-align-center\@T {
		text-align: center
	}

	.hfui-text-align-right\@T {
		text-align: right
	}

	.hfui-text-align-justify\@T {
		text-align: justify
	}

	.hfui-text-style-through\@T {
		text-decoration: line-through
	}

	.hfui-text-style-underline\@T {
		text-decoration: underline
	}

	.hfui-text-style-overline\@T {
		text-decoration: overline
	}

	.hfui-text-ellipsis-single\@T {
		display: block;
		white-space: nowrap;
		word-break: normal;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.hfui-text-ellipsis-multi\@T {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		word-break: break-word;
		white-space: normal;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.hfui-text-ellipsis-2\@T {
		-webkit-line-clamp: 2
	}

	.hfui-text-ellipsis-3\@T {
		-webkit-line-clamp: 3
	}

	.hfui-text-ellipsis-4\@T {
		-webkit-line-clamp: 4
	}

	.hfui-text-ellipsis-5\@T {
		-webkit-line-clamp: 5
	}

	.hfui-text-ellipsis-6\@T {
		-webkit-line-clamp: 6
	}
}

@media only screen and (min-width: 1024px) {
	.hfui-text-color-light\@S {
		color: #FFF
	}

	.hfui-text-color-dark\@S {
		color: #000
	}

	.hfui-text-color-secondary\@S {
		color: #666
	}

	.hfui-text-color-tertiary\@S {
		color: #999
	}

	.hfui-text-color-disabled\@S {
		color: #b3b3b3
	}

	.hfui-text-color-link\@S {
		color: #FF0603
	}

	.hfui-text-color-primary\@S {
		color: #f80d4a
	}

	.hfui-text-color-accents\@S {
		color: #FF0603
	}

	.hfui-text-color-dangers\@S {
		color: #FE5050
	}

	.hfui-text-color-success\@S {
		color: #38C976
	}

	.hfui-text-color-warning\@S {
		color: #FFA23A
	}

	.hfui-text-size-xs\@S {
		font-size: 12px
	}

	.hfui-text-size-2xs\@S {
		font-size: 24px
	}

	.hfui-text-size-sm\@S {
		font-size: 14px
	}

	.hfui-text-size-2sm\@S {
		font-size: 28px
	}

	.hfui-text-size-md\@S {
		font-size: 16px
	}

	.hfui-text-size-2md\@S {
		font-size: 32px
	}

	.hfui-text-size-lg\@S {
		font-size: 18px
	}

	.hfui-text-size-2lg\@S {
		font-size: 36px
	}

	.hfui-text-size-3lg\@S {
		font-size: 54px
	}

	.hfui-text-size-hr\@S {
		font-size: 20px
	}

	.hfui-text-size-2hr\@S {
		font-size: 40px
	}

    .hfui-text-size-4lg\@S {
    	font-size: 72px
    }	

	.hfui-text-height-xs\@S {
		line-height: 12px
	}

	.hfui-text-height-2xs\@S {
		line-height: 24px
	}

	.hfui-text-height-sm\@S {
		line-height: 14px
	}

	.hfui-text-height-2sm\@S {
		line-height: 28px
	}

	.hfui-text-height-md\@S {
		line-height: 16px
	}

	.hfui-text-height-2md\@S {
		line-height: 32px
	}

	.hfui-text-height-lg\@S {
		line-height: 18px
	}

	.hfui-text-height-2lg\@S {
		line-height: 36px
	}

	.hfui-text-height-3lg\@S {
		line-height: 54px
	}

	.hfui-text-height-hr\@S {
		line-height: 20px
	}

	.hfui-text-height-2hr\@S {
		line-height: 40px
	}

    .hfui-text-height-4lg\@S {
    	line-height: 72px
    }	

	.hfui-text-weight-normal\@S {
		line-height: normal
	}

	.hfui-text-weight-bold\@S {
		line-height: bold
	}

	.hfui-text-weight-bolder\@S {
		line-height: bolder
	}

	.hfui-text-weight-lighter\@S {
		line-height: lighter
	}

	.hfui-text-align-left\@S {
		text-align: left
	}

	.hfui-text-align-center\@S {
		text-align: center
	}

	.hfui-text-align-right\@S {
		text-align: right
	}

	.hfui-text-align-justify\@S {
		text-align: justify
	}

	.hfui-text-style-through\@S {
		text-decoration: line-through
	}

	.hfui-text-style-underline\@S {
		text-decoration: underline
	}

	.hfui-text-style-overline\@S {
		text-decoration: overline
	}

	.hfui-text-ellipsis-single\@S {
		display: block;
		white-space: nowrap;
		word-break: normal;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.hfui-text-ellipsis-multi\@S {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		word-break: break-word;
		white-space: normal;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.hfui-text-ellipsis-2\@S {
		-webkit-line-clamp: 2
	}

	.hfui-text-ellipsis-3\@S {
		-webkit-line-clamp: 3
	}

	.hfui-text-ellipsis-4\@S {
		-webkit-line-clamp: 4
	}

	.hfui-text-ellipsis-5\@S {
		-webkit-line-clamp: 5
	}

	.hfui-text-ellipsis-6\@S {
		-webkit-line-clamp: 6
	}
}

@media only screen and (min-width: 1280px) {
	.hfui-text-color-light\@M {
		color: #FFF
	}

	.hfui-text-color-dark\@M {
		color: #000
	}

	.hfui-text-color-secondary\@M {
		color: #666
	}

	.hfui-text-color-tertiary\@M {
		color: #999
	}

	.hfui-text-color-disabled\@M {
		color: #b3b3b3
	}

	.hfui-text-color-link\@M {
		color: #FF0603
	}

	.hfui-text-color-primary\@M {
		color: #f80d4a
	}

	.hfui-text-color-accents\@M {
		color: #FF0603
	}

	.hfui-text-color-dangers\@M {
		color: #FE5050
	}

	.hfui-text-color-success\@M {
		color: #38C976
	}

	.hfui-text-color-warning\@M {
		color: #FFA23A
	}

	.hfui-text-size-xs\@M {
		font-size: 12px
	}

	.hfui-text-size-2xs\@M {
		font-size: 24px
	}

	.hfui-text-size-sm\@M {
		font-size: 14px
	}

	.hfui-text-size-2sm\@M {
		font-size: 28px
	}

	.hfui-text-size-md\@M {
		font-size: 16px
	}

	.hfui-text-size-2md\@M {
		font-size: 32px
	}

	.hfui-text-size-lg\@M {
		font-size: 18px
	}

	.hfui-text-size-2lg\@M {
		font-size: 36px
	}

	.hfui-text-size-3lg\@M {
		font-size: 54px
	}

	.hfui-text-size-hr\@M {
		font-size: 20px
	}

	.hfui-text-size-2hr\@M {
		font-size: 40px
	}

    .hfui-text-size-4lg\@M {
    	font-size: 72px
    }	

	.hfui-text-height-xs\@M {
		line-height: 12px
	}

	.hfui-text-height-2xs\@M {
		line-height: 24px
	}

	.hfui-text-height-sm\@M {
		line-height: 14px
	}

	.hfui-text-height-2sm\@M {
		line-height: 28px
	}

	.hfui-text-height-md\@M {
		line-height: 16px
	}

	.hfui-text-height-2md\@M {
		line-height: 32px
	}

	.hfui-text-height-lg\@M {
		line-height: 18px
	}

	.hfui-text-height-2lg\@M {
		line-height: 36px
	}

	.hfui-text-height-3lg\@M {
		line-height: 54px
	}

	.hfui-text-height-hr\@M {
		line-height: 20px
	}

	.hfui-text-height-2hr\@M {
		line-height: 40px
	}

    .hfui-text-height-4lg\@M {
    	line-height: 72px
    }	
	

	.hfui-text-weight-normal\@M {
		line-height: normal
	}

	.hfui-text-weight-bold\@M {
		line-height: bold
	}

	.hfui-text-weight-bolder\@M {
		line-height: bolder
	}

	.hfui-text-weight-lighter\@M {
		line-height: lighter
	}

	.hfui-text-align-left\@M {
		text-align: left
	}

	.hfui-text-align-center\@M {
		text-align: center
	}

	.hfui-text-align-right\@M {
		text-align: right
	}

	.hfui-text-align-justify\@M {
		text-align: justify
	}

	.hfui-text-style-through\@M {
		text-decoration: line-through
	}

	.hfui-text-style-underline\@M {
		text-decoration: underline
	}

	.hfui-text-style-overline\@M {
		text-decoration: overline
	}

	.hfui-text-ellipsis-single\@M {
		display: block;
		white-space: nowrap;
		word-break: normal;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.hfui-text-ellipsis-multi\@M {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		word-break: break-word;
		white-space: normal;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.hfui-text-ellipsis-2\@M {
		-webkit-line-clamp: 2
	}

	.hfui-text-ellipsis-3\@M {
		-webkit-line-clamp: 3
	}

	.hfui-text-ellipsis-4\@M {
		-webkit-line-clamp: 4
	}

	.hfui-text-ellipsis-5\@M {
		-webkit-line-clamp: 5
	}

	.hfui-text-ellipsis-6\@M {
		-webkit-line-clamp: 6
	}
}

@media only screen and (min-width: 1600px) {
	.hfui-text-color-light\@L {
		color: #FFF
	}

	.hfui-text-color-dark\@L {
		color: #000
	}

	.hfui-text-color-secondary\@L {
		color: #666
	}

	.hfui-text-color-tertiary\@L {
		color: #999
	}

	.hfui-text-color-disabled\@L {
		color: #b3b3b3
	}

	.hfui-text-color-link\@L {
		color: #FF0603
	}

	.hfui-text-color-primary\@L {
		color: #f80d4a
	}

	.hfui-text-color-accents\@L {
		color: #FF0603
	}

	.hfui-text-color-dangers\@L {
		color: #FE5050
	}

	.hfui-text-color-success\@L {
		color: #38C976
	}

	.hfui-text-color-warning\@L {
		color: #FFA23A
	}

	.hfui-text-size-xs\@L {
		font-size: 12px
	}

	.hfui-text-size-2xs\@L {
		font-size: 24px
	}

	.hfui-text-size-sm\@L {
		font-size: 14px
	}

	.hfui-text-size-2sm\@L {
		font-size: 28px
	}

	.hfui-text-size-md\@L {
		font-size: 16px
	}

	.hfui-text-size-2md\@L {
		font-size: 32px
	}

	.hfui-text-size-lg\@L {
		font-size: 18px
	}

	.hfui-text-size-2lg\@L {
		font-size: 36px
	}

	.hfui-text-size-3lg\@L {
		font-size: 54px
	}

	.hfui-text-size-hr\@L {
		font-size: 20px
	}

	.hfui-text-size-2hr\@L {
		font-size: 40px
	}

    .hfui-text-size-4lg\@L {
    	font-size: 72px
    }	

	.hfui-text-height-xs\@L {
		line-height: 12px
	}

	.hfui-text-height-2xs\@L {
		line-height: 24px
	}

	.hfui-text-height-sm\@L {
		line-height: 14px
	}

	.hfui-text-height-2sm\@L {
		line-height: 28px
	}

	.hfui-text-height-md\@L {
		line-height: 16px
	}

	.hfui-text-height-2md\@L {
		line-height: 32px
	}

	.hfui-text-height-lg\@L {
		line-height: 18px
	}

	.hfui-text-height-2lg\@L {
		line-height: 36px
	}

	.hfui-text-height-3lg\@L {
		line-height: 54px
	}

	.hfui-text-height-hr\@L {
		line-height: 20px
	}

	.hfui-text-height-2hr\@L {
		line-height: 40px
	}

    .hfui-text-height-4lg\@L {
    	line-height: 72px
    }	
	

	.hfui-text-weight-normal\@L {
		line-height: normal
	}

	.hfui-text-weight-bold\@L {
		line-height: bold
	}

	.hfui-text-weight-bolder\@L {
		line-height: bolder
	}

	.hfui-text-weight-lighter\@L {
		line-height: lighter
	}

	.hfui-text-align-left\@L {
		text-align: left
	}

	.hfui-text-align-center\@L {
		text-align: center
	}

	.hfui-text-align-right\@L {
		text-align: right
	}

	.hfui-text-align-justify\@L {
		text-align: justify
	}

	.hfui-text-style-through\@L {
		text-decoration: line-through
	}

	.hfui-text-style-underline\@L {
		text-decoration: underline
	}

	.hfui-text-style-overline\@L {
		text-decoration: overline
	}

	.hfui-text-ellipsis-single\@L {
		display: block;
		white-space: nowrap;
		word-break: normal;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.hfui-text-ellipsis-multi\@L {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		word-break: break-word;
		white-space: normal;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.hfui-text-ellipsis-2\@L {
		-webkit-line-clamp: 2
	}

	.hfui-text-ellipsis-3\@L {
		-webkit-line-clamp: 3
	}

	.hfui-text-ellipsis-4\@L {
		-webkit-line-clamp: 4
	}

	.hfui-text-ellipsis-5\@L {
		-webkit-line-clamp: 5
	}

	.hfui-text-ellipsis-6\@L {
		-webkit-line-clamp: 6
	}
}

@media only screen and (min-width: 1920px) {
	.hfui-text-color-light\@H {
		color: #FFF
	}

	.hfui-text-color-dark\@H {
		color: #000
	}

	.hfui-text-color-secondary\@H {
		color: #666
	}

	.hfui-text-color-tertiary\@H {
		color: #999
	}

	.hfui-text-color-disabled\@H {
		color: #b3b3b3
	}

	.hfui-text-color-link\@H {
		color: #FF0603
	}

	.hfui-text-color-primary\@H {
		color: #f80d4a
	}

	.hfui-text-color-accents\@H {
		color: #FF0603
	}

	.hfui-text-color-dangers\@H {
		color: #FE5050
	}

	.hfui-text-color-success\@H {
		color: #38C976
	}

	.hfui-text-color-warning\@H {
		color: #FFA23A
	}

	.hfui-text-size-xs\@H {
		font-size: 12px
	}

	.hfui-text-size-2xs\@H {
		font-size: 24px
	}

	.hfui-text-size-sm\@H {
		font-size: 14px
	}

	.hfui-text-size-2sm\@H {
		font-size: 28px
	}

	.hfui-text-size-md\@H {
		font-size: 16px
	}

	.hfui-text-size-2md\@H {
		font-size: 32px
	}

	.hfui-text-size-lg\@H {
		font-size: 18px
	}

	.hfui-text-size-2lg\@H {
		font-size: 36px
	}

	.hfui-text-size-3lg\@H {
		font-size: 54px
	}

	.hfui-text-size-hr\@H {
		font-size: 20px
	}

	.hfui-text-size-2hr\@H {
		font-size: 40px
	}

    .hfui-text-size-4lg\@H {
    	font-size: 72px
    }	

	.hfui-text-height-xs\@H {
		line-height: 12px
	}

	.hfui-text-height-2xs\@H {
		line-height: 24px
	}

	.hfui-text-height-sm\@H {
		line-height: 14px
	}

	.hfui-text-height-2sm\@H {
		line-height: 28px
	}

	.hfui-text-height-md\@H {
		line-height: 16px
	}

	.hfui-text-height-2md\@H {
		line-height: 32px
	}

	.hfui-text-height-lg\@H {
		line-height: 18px
	}

	.hfui-text-height-3lg\@H {
		line-height: 54px
	}

	.hfui-text-height-2lg\@H {
		line-height: 36px
	}

	.hfui-text-height-hr\@H {
		line-height: 20px
	}

	.hfui-text-height-2hr\@H {
		line-height: 40px
	}

    .hfui-text-height-4lg\@H {
    	line-height: 72px
    }	
	

	.hfui-text-weight-normal\@H {
		line-height: normal
	}

	.hfui-text-weight-bold\@H {
		line-height: bold
	}

	.hfui-text-weight-bolder\@H {
		line-height: bolder
	}

	.hfui-text-weight-lighter\@H {
		line-height: lighter
	}

	.hfui-text-align-left\@H {
		text-align: left
	}

	.hfui-text-align-center\@H {
		text-align: center
	}

	.hfui-text-align-right\@H {
		text-align: right
	}

	.hfui-text-align-justify\@H {
		text-align: justify
	}

	.hfui-text-style-through\@H {
		text-decoration: line-through
	}

	.hfui-text-style-underline\@H {
		text-decoration: underline
	}

	.hfui-text-style-overline\@H {
		text-decoration: overline
	}

	.hfui-text-ellipsis-single\@H {
		display: block;
		white-space: nowrap;
		word-break: normal;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.hfui-text-ellipsis-multi\@H {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		word-break: break-word;
		white-space: normal;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.hfui-text-ellipsis-2\@H {
		-webkit-line-clamp: 2
	}

	.hfui-text-ellipsis-3\@H {
		-webkit-line-clamp: 3
	}

	.hfui-text-ellipsis-4\@H {
		-webkit-line-clamp: 4
	}

	.hfui-text-ellipsis-5\@H {
		-webkit-line-clamp: 5
	}

	.hfui-text-ellipsis-6\@H {
		-webkit-line-clamp: 6
	}
}

.hfui-m-0 {
	margin: 0px
}

.hfui-m-h-0 {
	margin-left: 0px;
	margin-right: 0px
}

.hfui-m-v-0 {
	margin-bottom: 0px;
	margin-top: 0px
}

.hfui-m-l-0 {
	margin-left: 0px
}

.hfui-m-r-0 {
	margin-right: 0px
}

.hfui-m-t-0 {
	margin-top: 0px
}

.hfui-m-b-0 {
	margin-bottom: 0px
}

.hfui-m-2 {
	margin: 2px
}

.hfui-m-h-2 {
	margin-left: 2px;
	margin-right: 2px
}

.hfui-m-v-2 {
	margin-bottom: 2px;
	margin-top: 2px
}

.hfui-m-l-2 {
	margin-left: 2px
}

.hfui-m-r-2 {
	margin-right: 2px
}

.hfui-m-t-2 {
	margin-top: 2px
}

.hfui-m-b-2 {
	margin-bottom: 2px
}

.hfui-m-4 {
	margin: 4px
}

.hfui-m-h-4 {
	margin-left: 4px;
	margin-right: 4px
}

.hfui-m-v-4 {
	margin-bottom: 4px;
	margin-top: 4px
}

.hfui-m-l-4 {
	margin-left: 4px
}

.hfui-m-r-4 {
	margin-right: 4px
}

.hfui-m-t-4 {
	margin-top: 4px
}

.hfui-m-b-4 {
	margin-bottom: 4px
}

.hfui-m-8 {
	margin: 8px
}

.hfui-m-h-8 {
	margin-left: 8px;
	margin-right: 8px
}

.hfui-m-v-8 {
	margin-bottom: 8px;
	margin-top: 8px
}

.hfui-m-l-8 {
	margin-left: 8px
}

.hfui-m-r-8 {
	margin-right: 8px
}

.hfui-m-t-8 {
	margin-top: 8px
}

.hfui-m-b-8 {
	margin-bottom: 8px
}

.hfui-m-12 {
	margin: 12px
}

.hfui-m-h-12 {
	margin-left: 12px;
	margin-right: 12px
}

.hfui-m-v-12 {
	margin-bottom: 12px;
	margin-top: 12px
}

.hfui-m-l-12 {
	margin-left: 12px
}

.hfui-m-r-12 {
	margin-right: 12px
}

.hfui-m-t-12 {
	margin-top: 12px
}

.hfui-m-b-12 {
	margin-bottom: 12px
}

.hfui-m-16 {
	margin: 16px
}

.hfui-m-h-16 {
	margin-left: 16px;
	margin-right: 16px
}

.hfui-m-v-16 {
	margin-bottom: 16px;
	margin-top: 16px
}

.hfui-m-l-16 {
	margin-left: 16px
}

.hfui-m-r-16 {
	margin-right: 16px
}

.hfui-m-t-16 {
	margin-top: 16px
}

.hfui-m-b-16 {
	margin-bottom: 16px
}

.hfui-m-20 {
	margin: 20px
}

.hfui-m-h-20 {
	margin-left: 20px;
	margin-right: 20px
}

.hfui-m-v-20 {
	margin-bottom: 20px;
	margin-top: 20px
}

.hfui-m-l-20 {
	margin-left: 20px
}

.hfui-m-r-20 {
	margin-right: 20px
}

.hfui-m-t-20 {
	margin-top: 20px
}

.hfui-m-b-20 {
	margin-bottom: 20px
}

.hfui-m-24 {
	margin: 24px
}

.hfui-m-h-24 {
	margin-left: 24px;
	margin-right: 24px
}

.hfui-m-v-24 {
	margin-bottom: 24px;
	margin-top: 24px
}

.hfui-m-l-24 {
	margin-left: 24px
}

.hfui-m-r-24 {
	margin-right: 24px
}

.hfui-m-t-24 {
	margin-top: 24px
}

.hfui-m-b-24 {
	margin-bottom: 24px
}

.hfui-m-32 {
	margin: 32px
}

.hfui-m-h-32 {
	margin-left: 32px;
	margin-right: 32px
}

.hfui-m-v-32 {
	margin-bottom: 32px;
	margin-top: 32px
}

.hfui-m-l-32 {
	margin-left: 32px
}

.hfui-m-r-32 {
	margin-right: 32px
}

.hfui-m-t-32 {
	margin-top: 32px
}

.hfui-m-b-32 {
	margin-bottom: 32px
}

.hfui-m-36 {
	margin: 36px
}

.hfui-m-h-36 {
	margin-left: 36px;
	margin-right: 36px
}

.hfui-m-v-36 {
	margin-bottom: 36px;
	margin-top: 36px
}

.hfui-m-l-36 {
	margin-left: 36px
}

.hfui-m-r-36 {
	margin-right: 36px
}

.hfui-m-t-36 {
	margin-top: 36px
}

.hfui-m-b-36 {
	margin-bottom: 36px
}

.hfui-m-40 {
	margin: 40px
}

.hfui-m-h-40 {
	margin-left: 40px;
	margin-right: 40px
}

.hfui-m-v-40 {
	margin-bottom: 40px;
	margin-top: 40px
}

.hfui-m-l-40 {
	margin-left: 40px
}

.hfui-m-r-40 {
	margin-right: 40px
}

.hfui-m-t-40 {
	margin-top: 40px
}

.hfui-m-b-40 {
	margin-bottom: 40px
}

.hfui-m-48 {
	margin: 48px
}

.hfui-m-h-48 {
	margin-left: 48px;
	margin-right: 48px
}

.hfui-m-v-48 {
	margin-bottom: 48px;
	margin-top: 48px
}

.hfui-m-l-48 {
	margin-left: 48px
}

.hfui-m-r-48 {
	margin-right: 48px
}

.hfui-m-t-48 {
	margin-top: 48px
}

.hfui-m-b-48 {
	margin-bottom: 48px
}

.hfui-m-56 {
	margin: 56px
}

.hfui-m-h-56 {
	margin-left: 56px;
	margin-right: 56px
}

.hfui-m-v-56 {
	margin-bottom: 56px;
	margin-top: 56px
}

.hfui-m-l-56 {
	margin-left: 56px
}

.hfui-m-r-56 {
	margin-right: 56px
}

.hfui-m-t-56 {
	margin-top: 56px
}

.hfui-m-b-56 {
	margin-bottom: 56px
}

.hfui-m-64 {
	margin: 64px
}

.hfui-m-h-64 {
	margin-left: 64px;
	margin-right: 64px
}

.hfui-m-v-64 {
	margin-bottom: 64px;
	margin-top: 64px
}

.hfui-m-l-64 {
	margin-left: 64px
}

.hfui-m-r-64 {
	margin-right: 64px
}

.hfui-m-t-64 {
	margin-top: 64px
}

.hfui-m-b-64 {
	margin-bottom: 64px
}

.hfui-m-72 {
	margin: 72px
}

.hfui-m-h-72 {
	margin-left: 72px;
	margin-right: 72px
}

.hfui-m-v-72 {
	margin-bottom: 72px;
	margin-top: 72px
}

.hfui-m-l-72 {
	margin-left: 72px
}

.hfui-m-r-72 {
	margin-right: 72px
}

.hfui-m-t-72 {
	margin-top: 72px
}

.hfui-m-b-72 {
	margin-bottom: 72px
}

.hfui-m-80 {
	margin: 80px
}

.hfui-m-h-80 {
	margin-left: 80px;
	margin-right: 80px
}

.hfui-m-v-80 {
	margin-bottom: 80px;
	margin-top: 80px
}

.hfui-m-l-80 {
	margin-left: 80px
}

.hfui-m-r-80 {
	margin-right: 80px
}

.hfui-m-t-80 {
	margin-top: 80px
}

.hfui-m-b-80 {
	margin-bottom: 80px
}

.hfui-m-96 {
	margin: 96px
}

.hfui-m-h-96 {
	margin-left: 96px;
	margin-right: 96px
}

.hfui-m-v-96 {
	margin-bottom: 96px;
	margin-top: 96px
}

.hfui-m-l-96 {
	margin-left: 96px
}

.hfui-m-r-96 {
	margin-right: 96px
}

.hfui-m-t-96 {
	margin-top: 96px
}

.hfui-m-b-96 {
	margin-bottom: 96px
}

.hfui-m-128 {
	margin: 128px
}

.hfui-m-h-128 {
	margin-left: 128px;
	margin-right: 128px
}

.hfui-m-v-128 {
	margin-bottom: 128px;
	margin-top: 128px
}

.hfui-m-l-128 {
	margin-left: 128px
}

.hfui-m-r-128 {
	margin-right: 128px
}

.hfui-m-t-128 {
	margin-top: 128px
}

.hfui-m-b-128 {
	margin-bottom: 128px
}

.hfui-m-v-a {
	margin-top: auto;
	margin-bottom: auto
}

.hfui-m-h-a {
	margin-left: auto;
	margin-right: auto
}

@media only screen and (min-width: 768px) {
	.hfui-m-0\@T {
		margin: 0px
	}

	.hfui-m-h-0\@T {
		margin-left: 0px;
		margin-right: 0px
	}

	.hfui-m-v-0\@T {
		margin-bottom: 0px;
		margin-top: 0px
	}

	.hfui-m-l-0\@T {
		margin-left: 0px
	}

	.hfui-m-r-0\@T {
		margin-right: 0px
	}

	.hfui-m-t-0\@T {
		margin-top: 0px
	}

	.hfui-m-b-0\@T {
		margin-bottom: 0px
	}

	.hfui-m-2\@T {
		margin: 2px
	}

	.hfui-m-h-2\@T {
		margin-left: 2px;
		margin-right: 2px
	}

	.hfui-m-v-2\@T {
		margin-bottom: 2px;
		margin-top: 2px
	}

	.hfui-m-l-2\@T {
		margin-left: 2px
	}

	.hfui-m-r-2\@T {
		margin-right: 2px
	}

	.hfui-m-t-2\@T {
		margin-top: 2px
	}

	.hfui-m-b-2\@T {
		margin-bottom: 2px
	}

	.hfui-m-4\@T {
		margin: 4px
	}

	.hfui-m-h-4\@T {
		margin-left: 4px;
		margin-right: 4px
	}

	.hfui-m-v-4\@T {
		margin-bottom: 4px;
		margin-top: 4px
	}

	.hfui-m-l-4\@T {
		margin-left: 4px
	}

	.hfui-m-r-4\@T {
		margin-right: 4px
	}

	.hfui-m-t-4\@T {
		margin-top: 4px
	}

	.hfui-m-b-4\@T {
		margin-bottom: 4px
	}

	.hfui-m-8\@T {
		margin: 8px
	}

	.hfui-m-h-8\@T {
		margin-left: 8px;
		margin-right: 8px
	}

	.hfui-m-v-8\@T {
		margin-bottom: 8px;
		margin-top: 8px
	}

	.hfui-m-l-8\@T {
		margin-left: 8px
	}

	.hfui-m-r-8\@T {
		margin-right: 8px
	}

	.hfui-m-t-8\@T {
		margin-top: 8px
	}

	.hfui-m-b-8\@T {
		margin-bottom: 8px
	}

	.hfui-m-12\@T {
		margin: 12px
	}

	.hfui-m-h-12\@T {
		margin-left: 12px;
		margin-right: 12px
	}

	.hfui-m-v-12\@T {
		margin-bottom: 12px;
		margin-top: 12px
	}

	.hfui-m-l-12\@T {
		margin-left: 12px
	}

	.hfui-m-r-12\@T {
		margin-right: 12px
	}

	.hfui-m-t-12\@T {
		margin-top: 12px
	}

	.hfui-m-b-12\@T {
		margin-bottom: 12px
	}

	.hfui-m-16\@T {
		margin: 16px
	}

	.hfui-m-h-16\@T {
		margin-left: 16px;
		margin-right: 16px
	}

	.hfui-m-v-16\@T {
		margin-bottom: 16px;
		margin-top: 16px
	}

	.hfui-m-l-16\@T {
		margin-left: 16px
	}

	.hfui-m-r-16\@T {
		margin-right: 16px
	}

	.hfui-m-t-16\@T {
		margin-top: 16px
	}

	.hfui-m-b-16\@T {
		margin-bottom: 16px
	}

	.hfui-m-20\@T {
		margin: 20px
	}

	.hfui-m-h-20\@T {
		margin-left: 20px;
		margin-right: 20px
	}

	.hfui-m-v-20\@T {
		margin-bottom: 20px;
		margin-top: 20px
	}

	.hfui-m-l-20\@T {
		margin-left: 20px
	}

	.hfui-m-r-20\@T {
		margin-right: 20px
	}

	.hfui-m-t-20\@T {
		margin-top: 20px
	}

	.hfui-m-b-20\@T {
		margin-bottom: 20px
	}

	.hfui-m-24\@T {
		margin: 24px
	}

	.hfui-m-h-24\@T {
		margin-left: 24px;
		margin-right: 24px
	}

	.hfui-m-v-24\@T {
		margin-bottom: 24px;
		margin-top: 24px
	}

	.hfui-m-l-24\@T {
		margin-left: 24px
	}

	.hfui-m-r-24\@T {
		margin-right: 24px
	}

	.hfui-m-t-24\@T {
		margin-top: 24px
	}

	.hfui-m-b-24\@T {
		margin-bottom: 24px
	}

	.hfui-m-32\@T {
		margin: 32px
	}

	.hfui-m-h-32\@T {
		margin-left: 32px;
		margin-right: 32px
	}

	.hfui-m-v-32\@T {
		margin-bottom: 32px;
		margin-top: 32px
	}

	.hfui-m-l-32\@T {
		margin-left: 32px
	}

	.hfui-m-r-32\@T {
		margin-right: 32px
	}

	.hfui-m-t-32\@T {
		margin-top: 32px
	}

	.hfui-m-b-32\@T {
		margin-bottom: 32px
	}

	.hfui-m-36\@T {
		margin: 36px
	}

	.hfui-m-h-36\@T {
		margin-left: 36px;
		margin-right: 36px
	}

	.hfui-m-v-36\@T {
		margin-bottom: 36px;
		margin-top: 36px
	}

	.hfui-m-l-36\@T {
		margin-left: 36px
	}

	.hfui-m-r-36\@T {
		margin-right: 36px
	}

	.hfui-m-t-36\@T {
		margin-top: 36px
	}

	.hfui-m-b-36\@T {
		margin-bottom: 36px
	}

	.hfui-m-40\@T {
		margin: 40px
	}

	.hfui-m-h-40\@T {
		margin-left: 40px;
		margin-right: 40px
	}

	.hfui-m-v-40\@T {
		margin-bottom: 40px;
		margin-top: 40px
	}

	.hfui-m-l-40\@T {
		margin-left: 40px
	}

	.hfui-m-r-40\@T {
		margin-right: 40px
	}

	.hfui-m-t-40\@T {
		margin-top: 40px
	}

	.hfui-m-b-40\@T {
		margin-bottom: 40px
	}

	.hfui-m-48\@T {
		margin: 48px
	}

	.hfui-m-h-48\@T {
		margin-left: 48px;
		margin-right: 48px
	}

	.hfui-m-v-48\@T {
		margin-bottom: 48px;
		margin-top: 48px
	}

	.hfui-m-l-48\@T {
		margin-left: 48px
	}

	.hfui-m-r-48\@T {
		margin-right: 48px
	}

	.hfui-m-t-48\@T {
		margin-top: 48px
	}

	.hfui-m-b-48\@T {
		margin-bottom: 48px
	}

	.hfui-m-56\@T {
		margin: 56px
	}

	.hfui-m-h-56\@T {
		margin-left: 56px;
		margin-right: 56px
	}

	.hfui-m-v-56\@T {
		margin-bottom: 56px;
		margin-top: 56px
	}

	.hfui-m-l-56\@T {
		margin-left: 56px
	}

	.hfui-m-r-56\@T {
		margin-right: 56px
	}

	.hfui-m-t-56\@T {
		margin-top: 56px
	}

	.hfui-m-b-56\@T {
		margin-bottom: 56px
	}

	.hfui-m-64\@T {
		margin: 64px
	}

	.hfui-m-h-64\@T {
		margin-left: 64px;
		margin-right: 64px
	}

	.hfui-m-v-64\@T {
		margin-bottom: 64px;
		margin-top: 64px
	}

	.hfui-m-l-64\@T {
		margin-left: 64px
	}

	.hfui-m-r-64\@T {
		margin-right: 64px
	}

	.hfui-m-t-64\@T {
		margin-top: 64px
	}

	.hfui-m-b-64\@T {
		margin-bottom: 64px
	}

	.hfui-m-72\@T {
		margin: 72px
	}

	.hfui-m-h-72\@T {
		margin-left: 72px;
		margin-right: 72px
	}

	.hfui-m-v-72\@T {
		margin-bottom: 72px;
		margin-top: 72px
	}

	.hfui-m-l-72\@T {
		margin-left: 72px
	}

	.hfui-m-r-72\@T {
		margin-right: 72px
	}

	.hfui-m-t-72\@T {
		margin-top: 72px
	}

	.hfui-m-b-72\@T {
		margin-bottom: 72px
	}

	.hfui-m-80\@T {
		margin: 80px
	}

	.hfui-m-h-80\@T {
		margin-left: 80px;
		margin-right: 80px
	}

	.hfui-m-v-80\@T {
		margin-bottom: 80px;
		margin-top: 80px
	}

	.hfui-m-l-80\@T {
		margin-left: 80px
	}

	.hfui-m-r-80\@T {
		margin-right: 80px
	}

	.hfui-m-t-80\@T {
		margin-top: 80px
	}

	.hfui-m-b-80\@T {
		margin-bottom: 80px
	}

	.hfui-m-96\@T {
		margin: 96px
	}

	.hfui-m-h-96\@T {
		margin-left: 96px;
		margin-right: 96px
	}

	.hfui-m-v-96\@T {
		margin-bottom: 96px;
		margin-top: 96px
	}

	.hfui-m-l-96\@T {
		margin-left: 96px
	}

	.hfui-m-r-96\@T {
		margin-right: 96px
	}

	.hfui-m-t-96\@T {
		margin-top: 96px
	}

	.hfui-m-b-96\@T {
		margin-bottom: 96px
	}

	.hfui-m-128\@T {
		margin: 128px
	}

	.hfui-m-h-128\@T {
		margin-left: 128px;
		margin-right: 128px
	}

	.hfui-m-v-128\@T {
		margin-bottom: 128px;
		margin-top: 128px
	}

	.hfui-m-l-128\@T {
		margin-left: 128px
	}

	.hfui-m-r-128\@T {
		margin-right: 128px
	}

	.hfui-m-t-128\@T {
		margin-top: 128px
	}

	.hfui-m-b-128\@T {
		margin-bottom: 128px
	}

	.hfui-m-v-a\@T {
		margin-top: auto;
		margin-bottom: auto
	}

	.hfui-m-h-a\@T {
		margin-left: auto;
		margin-right: auto
	}
}

@media only screen and (min-width: 1024px) {
	.hfui-m-0\@S {
		margin: 0px
	}

	.hfui-m-h-0\@S {
		margin-left: 0px;
		margin-right: 0px
	}

	.hfui-m-v-0\@S {
		margin-bottom: 0px;
		margin-top: 0px
	}

	.hfui-m-l-0\@S {
		margin-left: 0px
	}

	.hfui-m-r-0\@S {
		margin-right: 0px
	}

	.hfui-m-t-0\@S {
		margin-top: 0px
	}

	.hfui-m-b-0\@S {
		margin-bottom: 0px
	}

	.hfui-m-2\@S {
		margin: 2px
	}

	.hfui-m-h-2\@S {
		margin-left: 2px;
		margin-right: 2px
	}

	.hfui-m-v-2\@S {
		margin-bottom: 2px;
		margin-top: 2px
	}

	.hfui-m-l-2\@S {
		margin-left: 2px
	}

	.hfui-m-r-2\@S {
		margin-right: 2px
	}

	.hfui-m-t-2\@S {
		margin-top: 2px
	}

	.hfui-m-b-2\@S {
		margin-bottom: 2px
	}

	.hfui-m-4\@S {
		margin: 4px
	}

	.hfui-m-h-4\@S {
		margin-left: 4px;
		margin-right: 4px
	}

	.hfui-m-v-4\@S {
		margin-bottom: 4px;
		margin-top: 4px
	}

	.hfui-m-l-4\@S {
		margin-left: 4px
	}

	.hfui-m-r-4\@S {
		margin-right: 4px
	}

	.hfui-m-t-4\@S {
		margin-top: 4px
	}

	.hfui-m-b-4\@S {
		margin-bottom: 4px
	}

	.hfui-m-8\@S {
		margin: 8px
	}

	.hfui-m-h-8\@S {
		margin-left: 8px;
		margin-right: 8px
	}

	.hfui-m-v-8\@S {
		margin-bottom: 8px;
		margin-top: 8px
	}

	.hfui-m-l-8\@S {
		margin-left: 8px
	}

	.hfui-m-r-8\@S {
		margin-right: 8px
	}

	.hfui-m-t-8\@S {
		margin-top: 8px
	}

	.hfui-m-b-8\@S {
		margin-bottom: 8px
	}

	.hfui-m-12\@S {
		margin: 12px
	}

	.hfui-m-h-12\@S {
		margin-left: 12px;
		margin-right: 12px
	}

	.hfui-m-v-12\@S {
		margin-bottom: 12px;
		margin-top: 12px
	}

	.hfui-m-l-12\@S {
		margin-left: 12px
	}

	.hfui-m-r-12\@S {
		margin-right: 12px
	}

	.hfui-m-t-12\@S {
		margin-top: 12px
	}

	.hfui-m-b-12\@S {
		margin-bottom: 12px
	}

	.hfui-m-16\@S {
		margin: 16px
	}

	.hfui-m-h-16\@S {
		margin-left: 16px;
		margin-right: 16px
	}

	.hfui-m-v-16\@S {
		margin-bottom: 16px;
		margin-top: 16px
	}

	.hfui-m-l-16\@S {
		margin-left: 16px
	}

	.hfui-m-r-16\@S {
		margin-right: 16px
	}

	.hfui-m-t-16\@S {
		margin-top: 16px
	}

	.hfui-m-b-16\@S {
		margin-bottom: 16px
	}

	.hfui-m-20\@S {
		margin: 20px
	}

	.hfui-m-h-20\@S {
		margin-left: 20px;
		margin-right: 20px
	}

	.hfui-m-v-20\@S {
		margin-bottom: 20px;
		margin-top: 20px
	}

	.hfui-m-l-20\@S {
		margin-left: 20px
	}

	.hfui-m-r-20\@S {
		margin-right: 20px
	}

	.hfui-m-t-20\@S {
		margin-top: 20px
	}

	.hfui-m-b-20\@S {
		margin-bottom: 20px
	}

	.hfui-m-24\@S {
		margin: 24px
	}

	.hfui-m-h-24\@S {
		margin-left: 24px;
		margin-right: 24px
	}

	.hfui-m-v-24\@S {
		margin-bottom: 24px;
		margin-top: 24px
	}

	.hfui-m-l-24\@S {
		margin-left: 24px
	}

	.hfui-m-r-24\@S {
		margin-right: 24px
	}

	.hfui-m-t-24\@S {
		margin-top: 24px
	}

	.hfui-m-b-24\@S {
		margin-bottom: 24px
	}

	.hfui-m-32\@S {
		margin: 32px
	}

	.hfui-m-h-32\@S {
		margin-left: 32px;
		margin-right: 32px
	}

	.hfui-m-v-32\@S {
		margin-bottom: 32px;
		margin-top: 32px
	}

	.hfui-m-l-32\@S {
		margin-left: 32px
	}

	.hfui-m-r-32\@S {
		margin-right: 32px
	}

	.hfui-m-t-32\@S {
		margin-top: 32px
	}

	.hfui-m-b-32\@S {
		margin-bottom: 32px
	}

	.hfui-m-36\@S {
		margin: 36px
	}

	.hfui-m-h-36\@S {
		margin-left: 36px;
		margin-right: 36px
	}

	.hfui-m-v-36\@S {
		margin-bottom: 36px;
		margin-top: 36px
	}

	.hfui-m-l-36\@S {
		margin-left: 36px
	}

	.hfui-m-r-36\@S {
		margin-right: 36px
	}

	.hfui-m-t-36\@S {
		margin-top: 36px
	}

	.hfui-m-b-36\@S {
		margin-bottom: 36px
	}

	.hfui-m-40\@S {
		margin: 40px
	}

	.hfui-m-h-40\@S {
		margin-left: 40px;
		margin-right: 40px
	}

	.hfui-m-v-40\@S {
		margin-bottom: 40px;
		margin-top: 40px
	}

	.hfui-m-l-40\@S {
		margin-left: 40px
	}

	.hfui-m-r-40\@S {
		margin-right: 40px
	}

	.hfui-m-t-40\@S {
		margin-top: 40px
	}

	.hfui-m-b-40\@S {
		margin-bottom: 40px
	}

	.hfui-m-48\@S {
		margin: 48px
	}

	.hfui-m-h-48\@S {
		margin-left: 48px;
		margin-right: 48px
	}

	.hfui-m-v-48\@S {
		margin-bottom: 48px;
		margin-top: 48px
	}

	.hfui-m-l-48\@S {
		margin-left: 48px
	}

	.hfui-m-r-48\@S {
		margin-right: 48px
	}

	.hfui-m-t-48\@S {
		margin-top: 48px
	}

	.hfui-m-b-48\@S {
		margin-bottom: 48px
	}

	.hfui-m-56\@S {
		margin: 56px
	}

	.hfui-m-h-56\@S {
		margin-left: 56px;
		margin-right: 56px
	}

	.hfui-m-v-56\@S {
		margin-bottom: 56px;
		margin-top: 56px
	}

	.hfui-m-l-56\@S {
		margin-left: 56px
	}

	.hfui-m-r-56\@S {
		margin-right: 56px
	}

	.hfui-m-t-56\@S {
		margin-top: 56px
	}

	.hfui-m-b-56\@S {
		margin-bottom: 56px
	}

	.hfui-m-64\@S {
		margin: 64px
	}

	.hfui-m-h-64\@S {
		margin-left: 64px;
		margin-right: 64px
	}

	.hfui-m-v-64\@S {
		margin-bottom: 64px;
		margin-top: 64px
	}

	.hfui-m-l-64\@S {
		margin-left: 64px
	}

	.hfui-m-r-64\@S {
		margin-right: 64px
	}

	.hfui-m-t-64\@S {
		margin-top: 64px
	}

	.hfui-m-b-64\@S {
		margin-bottom: 64px
	}

	.hfui-m-72\@S {
		margin: 72px
	}

	.hfui-m-h-72\@S {
		margin-left: 72px;
		margin-right: 72px
	}

	.hfui-m-v-72\@S {
		margin-bottom: 72px;
		margin-top: 72px
	}

	.hfui-m-l-72\@S {
		margin-left: 72px
	}

	.hfui-m-r-72\@S {
		margin-right: 72px
	}

	.hfui-m-t-72\@S {
		margin-top: 72px
	}

	.hfui-m-b-72\@S {
		margin-bottom: 72px
	}

	.hfui-m-80\@S {
		margin: 80px
	}

	.hfui-m-h-80\@S {
		margin-left: 80px;
		margin-right: 80px
	}

	.hfui-m-v-80\@S {
		margin-bottom: 80px;
		margin-top: 80px
	}

	.hfui-m-l-80\@S {
		margin-left: 80px
	}

	.hfui-m-r-80\@S {
		margin-right: 80px
	}

	.hfui-m-t-80\@S {
		margin-top: 80px
	}

	.hfui-m-b-80\@S {
		margin-bottom: 80px
	}

	.hfui-m-96\@S {
		margin: 96px
	}

	.hfui-m-h-96\@S {
		margin-left: 96px;
		margin-right: 96px
	}

	.hfui-m-v-96\@S {
		margin-bottom: 96px;
		margin-top: 96px
	}

	.hfui-m-l-96\@S {
		margin-left: 96px
	}

	.hfui-m-r-96\@S {
		margin-right: 96px
	}

	.hfui-m-t-96\@S {
		margin-top: 96px
	}

	.hfui-m-b-96\@S {
		margin-bottom: 96px
	}

	.hfui-m-128\@S {
		margin: 128px
	}

	.hfui-m-h-128\@S {
		margin-left: 128px;
		margin-right: 128px
	}

	.hfui-m-v-128\@S {
		margin-bottom: 128px;
		margin-top: 128px
	}

	.hfui-m-l-128\@S {
		margin-left: 128px
	}

	.hfui-m-r-128\@S {
		margin-right: 128px
	}

	.hfui-m-t-128\@S {
		margin-top: 128px
	}

	.hfui-m-b-128\@S {
		margin-bottom: 128px
	}

	.hfui-m-v-a\@S {
		margin-top: auto;
		margin-bottom: auto
	}

	.hfui-m-h-a\@S {
		margin-left: auto;
		margin-right: auto
	}
}

@media only screen and (min-width: 1280px) {
	.hfui-m-0\@M {
		margin: 0px
	}

	.hfui-m-h-0\@M {
		margin-left: 0px;
		margin-right: 0px
	}

	.hfui-m-v-0\@M {
		margin-bottom: 0px;
		margin-top: 0px
	}

	.hfui-m-l-0\@M {
		margin-left: 0px
	}

	.hfui-m-r-0\@M {
		margin-right: 0px
	}

	.hfui-m-t-0\@M {
		margin-top: 0px
	}

	.hfui-m-b-0\@M {
		margin-bottom: 0px
	}

	.hfui-m-2\@M {
		margin: 2px
	}

	.hfui-m-h-2\@M {
		margin-left: 2px;
		margin-right: 2px
	}

	.hfui-m-v-2\@M {
		margin-bottom: 2px;
		margin-top: 2px
	}

	.hfui-m-l-2\@M {
		margin-left: 2px
	}

	.hfui-m-r-2\@M {
		margin-right: 2px
	}

	.hfui-m-t-2\@M {
		margin-top: 2px
	}

	.hfui-m-b-2\@M {
		margin-bottom: 2px
	}

	.hfui-m-4\@M {
		margin: 4px
	}

	.hfui-m-h-4\@M {
		margin-left: 4px;
		margin-right: 4px
	}

	.hfui-m-v-4\@M {
		margin-bottom: 4px;
		margin-top: 4px
	}

	.hfui-m-l-4\@M {
		margin-left: 4px
	}

	.hfui-m-r-4\@M {
		margin-right: 4px
	}

	.hfui-m-t-4\@M {
		margin-top: 4px
	}

	.hfui-m-b-4\@M {
		margin-bottom: 4px
	}

	.hfui-m-8\@M {
		margin: 8px
	}

	.hfui-m-h-8\@M {
		margin-left: 8px;
		margin-right: 8px
	}

	.hfui-m-v-8\@M {
		margin-bottom: 8px;
		margin-top: 8px
	}

	.hfui-m-l-8\@M {
		margin-left: 8px
	}

	.hfui-m-r-8\@M {
		margin-right: 8px
	}

	.hfui-m-t-8\@M {
		margin-top: 8px
	}

	.hfui-m-b-8\@M {
		margin-bottom: 8px
	}

	.hfui-m-12\@M {
		margin: 12px
	}

	.hfui-m-h-12\@M {
		margin-left: 12px;
		margin-right: 12px
	}

	.hfui-m-v-12\@M {
		margin-bottom: 12px;
		margin-top: 12px
	}

	.hfui-m-l-12\@M {
		margin-left: 12px
	}

	.hfui-m-r-12\@M {
		margin-right: 12px
	}

	.hfui-m-t-12\@M {
		margin-top: 12px
	}

	.hfui-m-b-12\@M {
		margin-bottom: 12px
	}

	.hfui-m-16\@M {
		margin: 16px
	}

	.hfui-m-h-16\@M {
		margin-left: 16px;
		margin-right: 16px
	}

	.hfui-m-v-16\@M {
		margin-bottom: 16px;
		margin-top: 16px
	}

	.hfui-m-l-16\@M {
		margin-left: 16px
	}

	.hfui-m-r-16\@M {
		margin-right: 16px
	}

	.hfui-m-t-16\@M {
		margin-top: 16px
	}

	.hfui-m-b-16\@M {
		margin-bottom: 16px
	}

	.hfui-m-20\@M {
		margin: 20px
	}

	.hfui-m-h-20\@M {
		margin-left: 20px;
		margin-right: 20px
	}

	.hfui-m-v-20\@M {
		margin-bottom: 20px;
		margin-top: 20px
	}

	.hfui-m-l-20\@M {
		margin-left: 20px
	}

	.hfui-m-r-20\@M {
		margin-right: 20px
	}

	.hfui-m-t-20\@M {
		margin-top: 20px
	}

	.hfui-m-b-20\@M {
		margin-bottom: 20px
	}

	.hfui-m-24\@M {
		margin: 24px
	}

	.hfui-m-h-24\@M {
		margin-left: 24px;
		margin-right: 24px
	}

	.hfui-m-v-24\@M {
		margin-bottom: 24px;
		margin-top: 24px
	}

	.hfui-m-l-24\@M {
		margin-left: 24px
	}

	.hfui-m-r-24\@M {
		margin-right: 24px
	}

	.hfui-m-t-24\@M {
		margin-top: 24px
	}

	.hfui-m-b-24\@M {
		margin-bottom: 24px
	}

	.hfui-m-32\@M {
		margin: 32px
	}

	.hfui-m-h-32\@M {
		margin-left: 32px;
		margin-right: 32px
	}

	.hfui-m-v-32\@M {
		margin-bottom: 32px;
		margin-top: 32px
	}

	.hfui-m-l-32\@M {
		margin-left: 32px
	}

	.hfui-m-r-32\@M {
		margin-right: 32px
	}

	.hfui-m-t-32\@M {
		margin-top: 32px
	}

	.hfui-m-b-32\@M {
		margin-bottom: 32px
	}

	.hfui-m-36\@M {
		margin: 36px
	}

	.hfui-m-h-36\@M {
		margin-left: 36px;
		margin-right: 36px
	}

	.hfui-m-v-36\@M {
		margin-bottom: 36px;
		margin-top: 36px
	}

	.hfui-m-l-36\@M {
		margin-left: 36px
	}

	.hfui-m-r-36\@M {
		margin-right: 36px
	}

	.hfui-m-t-36\@M {
		margin-top: 36px
	}

	.hfui-m-b-36\@M {
		margin-bottom: 36px
	}

	.hfui-m-40\@M {
		margin: 40px
	}

	.hfui-m-h-40\@M {
		margin-left: 40px;
		margin-right: 40px
	}

	.hfui-m-v-40\@M {
		margin-bottom: 40px;
		margin-top: 40px
	}

	.hfui-m-l-40\@M {
		margin-left: 40px
	}

	.hfui-m-r-40\@M {
		margin-right: 40px
	}

	.hfui-m-t-40\@M {
		margin-top: 40px
	}

	.hfui-m-b-40\@M {
		margin-bottom: 40px
	}

	.hfui-m-48\@M {
		margin: 48px
	}

	.hfui-m-h-48\@M {
		margin-left: 48px;
		margin-right: 48px
	}

	.hfui-m-v-48\@M {
		margin-bottom: 48px;
		margin-top: 48px
	}

	.hfui-m-l-48\@M {
		margin-left: 48px
	}

	.hfui-m-r-48\@M {
		margin-right: 48px
	}

	.hfui-m-t-48\@M {
		margin-top: 48px
	}

	.hfui-m-b-48\@M {
		margin-bottom: 48px
	}

	.hfui-m-56\@M {
		margin: 56px
	}

	.hfui-m-h-56\@M {
		margin-left: 56px;
		margin-right: 56px
	}

	.hfui-m-v-56\@M {
		margin-bottom: 56px;
		margin-top: 56px
	}

	.hfui-m-l-56\@M {
		margin-left: 56px
	}

	.hfui-m-r-56\@M {
		margin-right: 56px
	}

	.hfui-m-t-56\@M {
		margin-top: 56px
	}

	.hfui-m-b-56\@M {
		margin-bottom: 56px
	}

	.hfui-m-64\@M {
		margin: 64px
	}

	.hfui-m-h-64\@M {
		margin-left: 64px;
		margin-right: 64px
	}

	.hfui-m-v-64\@M {
		margin-bottom: 64px;
		margin-top: 64px
	}

	.hfui-m-l-64\@M {
		margin-left: 64px
	}

	.hfui-m-r-64\@M {
		margin-right: 64px
	}

	.hfui-m-t-64\@M {
		margin-top: 64px
	}

	.hfui-m-b-64\@M {
		margin-bottom: 64px
	}

	.hfui-m-72\@M {
		margin: 72px
	}

	.hfui-m-h-72\@M {
		margin-left: 72px;
		margin-right: 72px
	}

	.hfui-m-v-72\@M {
		margin-bottom: 72px;
		margin-top: 72px
	}

	.hfui-m-l-72\@M {
		margin-left: 72px
	}

	.hfui-m-r-72\@M {
		margin-right: 72px
	}

	.hfui-m-t-72\@M {
		margin-top: 72px
	}

	.hfui-m-b-72\@M {
		margin-bottom: 72px
	}

	.hfui-m-80\@M {
		margin: 80px
	}

	.hfui-m-h-80\@M {
		margin-left: 80px;
		margin-right: 80px
	}

	.hfui-m-v-80\@M {
		margin-bottom: 80px;
		margin-top: 80px
	}

	.hfui-m-l-80\@M {
		margin-left: 80px
	}

	.hfui-m-r-80\@M {
		margin-right: 80px
	}

	.hfui-m-t-80\@M {
		margin-top: 80px
	}

	.hfui-m-b-80\@M {
		margin-bottom: 80px
	}

	.hfui-m-96\@M {
		margin: 96px
	}

	.hfui-m-h-96\@M {
		margin-left: 96px;
		margin-right: 96px
	}

	.hfui-m-v-96\@M {
		margin-bottom: 96px;
		margin-top: 96px
	}

	.hfui-m-l-96\@M {
		margin-left: 96px
	}

	.hfui-m-r-96\@M {
		margin-right: 96px
	}

	.hfui-m-t-96\@M {
		margin-top: 96px
	}

	.hfui-m-b-96\@M {
		margin-bottom: 96px
	}

	.hfui-m-128\@M {
		margin: 128px
	}

	.hfui-m-h-128\@M {
		margin-left: 128px;
		margin-right: 128px
	}

	.hfui-m-v-128\@M {
		margin-bottom: 128px;
		margin-top: 128px
	}

	.hfui-m-l-128\@M {
		margin-left: 128px
	}

	.hfui-m-r-128\@M {
		margin-right: 128px
	}

	.hfui-m-t-128\@M {
		margin-top: 128px
	}

	.hfui-m-b-128\@M {
		margin-bottom: 128px
	}

	.hfui-m-v-a\@M {
		margin-top: auto;
		margin-bottom: auto
	}

	.hfui-m-h-a\@M {
		margin-left: auto;
		margin-right: auto
	}
}

@media only screen and (min-width: 1600px) {
	.hfui-m-0\@L {
		margin: 0px
	}

	.hfui-m-h-0\@L {
		margin-left: 0px;
		margin-right: 0px
	}

	.hfui-m-v-0\@L {
		margin-bottom: 0px;
		margin-top: 0px
	}

	.hfui-m-l-0\@L {
		margin-left: 0px
	}

	.hfui-m-r-0\@L {
		margin-right: 0px
	}

	.hfui-m-t-0\@L {
		margin-top: 0px
	}

	.hfui-m-b-0\@L {
		margin-bottom: 0px
	}

	.hfui-m-2\@L {
		margin: 2px
	}

	.hfui-m-h-2\@L {
		margin-left: 2px;
		margin-right: 2px
	}

	.hfui-m-v-2\@L {
		margin-bottom: 2px;
		margin-top: 2px
	}

	.hfui-m-l-2\@L {
		margin-left: 2px
	}

	.hfui-m-r-2\@L {
		margin-right: 2px
	}

	.hfui-m-t-2\@L {
		margin-top: 2px
	}

	.hfui-m-b-2\@L {
		margin-bottom: 2px
	}

	.hfui-m-4\@L {
		margin: 4px
	}

	.hfui-m-h-4\@L {
		margin-left: 4px;
		margin-right: 4px
	}

	.hfui-m-v-4\@L {
		margin-bottom: 4px;
		margin-top: 4px
	}

	.hfui-m-l-4\@L {
		margin-left: 4px
	}

	.hfui-m-r-4\@L {
		margin-right: 4px
	}

	.hfui-m-t-4\@L {
		margin-top: 4px
	}

	.hfui-m-b-4\@L {
		margin-bottom: 4px
	}

	.hfui-m-8\@L {
		margin: 8px
	}

	.hfui-m-h-8\@L {
		margin-left: 8px;
		margin-right: 8px
	}

	.hfui-m-v-8\@L {
		margin-bottom: 8px;
		margin-top: 8px
	}

	.hfui-m-l-8\@L {
		margin-left: 8px
	}

	.hfui-m-r-8\@L {
		margin-right: 8px
	}

	.hfui-m-t-8\@L {
		margin-top: 8px
	}

	.hfui-m-b-8\@L {
		margin-bottom: 8px
	}

	.hfui-m-12\@L {
		margin: 12px
	}

	.hfui-m-h-12\@L {
		margin-left: 12px;
		margin-right: 12px
	}

	.hfui-m-v-12\@L {
		margin-bottom: 12px;
		margin-top: 12px
	}

	.hfui-m-l-12\@L {
		margin-left: 12px
	}

	.hfui-m-r-12\@L {
		margin-right: 12px
	}

	.hfui-m-t-12\@L {
		margin-top: 12px
	}

	.hfui-m-b-12\@L {
		margin-bottom: 12px
	}

	.hfui-m-16\@L {
		margin: 16px
	}

	.hfui-m-h-16\@L {
		margin-left: 16px;
		margin-right: 16px
	}

	.hfui-m-v-16\@L {
		margin-bottom: 16px;
		margin-top: 16px
	}

	.hfui-m-l-16\@L {
		margin-left: 16px
	}

	.hfui-m-r-16\@L {
		margin-right: 16px
	}

	.hfui-m-t-16\@L {
		margin-top: 16px
	}

	.hfui-m-b-16\@L {
		margin-bottom: 16px
	}

	.hfui-m-20\@L {
		margin: 20px
	}

	.hfui-m-h-20\@L {
		margin-left: 20px;
		margin-right: 20px
	}

	.hfui-m-v-20\@L {
		margin-bottom: 20px;
		margin-top: 20px
	}

	.hfui-m-l-20\@L {
		margin-left: 20px
	}

	.hfui-m-r-20\@L {
		margin-right: 20px
	}

	.hfui-m-t-20\@L {
		margin-top: 20px
	}

	.hfui-m-b-20\@L {
		margin-bottom: 20px
	}

	.hfui-m-24\@L {
		margin: 24px
	}

	.hfui-m-h-24\@L {
		margin-left: 24px;
		margin-right: 24px
	}

	.hfui-m-v-24\@L {
		margin-bottom: 24px;
		margin-top: 24px
	}

	.hfui-m-l-24\@L {
		margin-left: 24px
	}

	.hfui-m-r-24\@L {
		margin-right: 24px
	}

	.hfui-m-t-24\@L {
		margin-top: 24px
	}

	.hfui-m-b-24\@L {
		margin-bottom: 24px
	}

	.hfui-m-32\@L {
		margin: 32px
	}

	.hfui-m-h-32\@L {
		margin-left: 32px;
		margin-right: 32px
	}

	.hfui-m-v-32\@L {
		margin-bottom: 32px;
		margin-top: 32px
	}

	.hfui-m-l-32\@L {
		margin-left: 32px
	}

	.hfui-m-r-32\@L {
		margin-right: 32px
	}

	.hfui-m-t-32\@L {
		margin-top: 32px
	}

	.hfui-m-b-32\@L {
		margin-bottom: 32px
	}

	.hfui-m-36\@L {
		margin: 36px
	}

	.hfui-m-h-36\@L {
		margin-left: 36px;
		margin-right: 36px
	}

	.hfui-m-v-36\@L {
		margin-bottom: 36px;
		margin-top: 36px
	}

	.hfui-m-l-36\@L {
		margin-left: 36px
	}

	.hfui-m-r-36\@L {
		margin-right: 36px
	}

	.hfui-m-t-36\@L {
		margin-top: 36px
	}

	.hfui-m-b-36\@L {
		margin-bottom: 36px
	}

	.hfui-m-40\@L {
		margin: 40px
	}

	.hfui-m-h-40\@L {
		margin-left: 40px;
		margin-right: 40px
	}

	.hfui-m-v-40\@L {
		margin-bottom: 40px;
		margin-top: 40px
	}

	.hfui-m-l-40\@L {
		margin-left: 40px
	}

	.hfui-m-r-40\@L {
		margin-right: 40px
	}

	.hfui-m-t-40\@L {
		margin-top: 40px
	}

	.hfui-m-b-40\@L {
		margin-bottom: 40px
	}

	.hfui-m-48\@L {
		margin: 48px
	}

	.hfui-m-h-48\@L {
		margin-left: 48px;
		margin-right: 48px
	}

	.hfui-m-v-48\@L {
		margin-bottom: 48px;
		margin-top: 48px
	}

	.hfui-m-l-48\@L {
		margin-left: 48px
	}

	.hfui-m-r-48\@L {
		margin-right: 48px
	}

	.hfui-m-t-48\@L {
		margin-top: 48px
	}

	.hfui-m-b-48\@L {
		margin-bottom: 48px
	}

	.hfui-m-56\@L {
		margin: 56px
	}

	.hfui-m-h-56\@L {
		margin-left: 56px;
		margin-right: 56px
	}

	.hfui-m-v-56\@L {
		margin-bottom: 56px;
		margin-top: 56px
	}

	.hfui-m-l-56\@L {
		margin-left: 56px
	}

	.hfui-m-r-56\@L {
		margin-right: 56px
	}

	.hfui-m-t-56\@L {
		margin-top: 56px
	}

	.hfui-m-b-56\@L {
		margin-bottom: 56px
	}

	.hfui-m-64\@L {
		margin: 64px
	}

	.hfui-m-h-64\@L {
		margin-left: 64px;
		margin-right: 64px
	}

	.hfui-m-v-64\@L {
		margin-bottom: 64px;
		margin-top: 64px
	}

	.hfui-m-l-64\@L {
		margin-left: 64px
	}

	.hfui-m-r-64\@L {
		margin-right: 64px
	}

	.hfui-m-t-64\@L {
		margin-top: 64px
	}

	.hfui-m-b-64\@L {
		margin-bottom: 64px
	}

	.hfui-m-72\@L {
		margin: 72px
	}

	.hfui-m-h-72\@L {
		margin-left: 72px;
		margin-right: 72px
	}

	.hfui-m-v-72\@L {
		margin-bottom: 72px;
		margin-top: 72px
	}

	.hfui-m-l-72\@L {
		margin-left: 72px
	}

	.hfui-m-r-72\@L {
		margin-right: 72px
	}

	.hfui-m-t-72\@L {
		margin-top: 72px
	}

	.hfui-m-b-72\@L {
		margin-bottom: 72px
	}

	.hfui-m-80\@L {
		margin: 80px
	}

	.hfui-m-h-80\@L {
		margin-left: 80px;
		margin-right: 80px
	}

	.hfui-m-v-80\@L {
		margin-bottom: 80px;
		margin-top: 80px
	}

	.hfui-m-l-80\@L {
		margin-left: 80px
	}

	.hfui-m-r-80\@L {
		margin-right: 80px
	}

	.hfui-m-t-80\@L {
		margin-top: 80px
	}

	.hfui-m-b-80\@L {
		margin-bottom: 80px
	}

	.hfui-m-96\@L {
		margin: 96px
	}

	.hfui-m-h-96\@L {
		margin-left: 96px;
		margin-right: 96px
	}

	.hfui-m-v-96\@L {
		margin-bottom: 96px;
		margin-top: 96px
	}

	.hfui-m-l-96\@L {
		margin-left: 96px
	}

	.hfui-m-r-96\@L {
		margin-right: 96px
	}

	.hfui-m-t-96\@L {
		margin-top: 96px
	}

	.hfui-m-b-96\@L {
		margin-bottom: 96px
	}

	.hfui-m-128\@L {
		margin: 128px
	}

	.hfui-m-h-128\@L {
		margin-left: 128px;
		margin-right: 128px
	}

	.hfui-m-v-128\@L {
		margin-bottom: 128px;
		margin-top: 128px
	}

	.hfui-m-l-128\@L {
		margin-left: 128px
	}

	.hfui-m-r-128\@L {
		margin-right: 128px
	}

	.hfui-m-t-128\@L {
		margin-top: 128px
	}

	.hfui-m-b-128\@L {
		margin-bottom: 128px
	}

	.hfui-m-v-a\@L {
		margin-top: auto;
		margin-bottom: auto
	}

	.hfui-m-h-a\@L {
		margin-left: auto;
		margin-right: auto
	}
}

@media only screen and (min-width: 1920px) {
	.hfui-m-0\@H {
		margin: 0px
	}

	.hfui-m-h-0\@H {
		margin-left: 0px;
		margin-right: 0px
	}

	.hfui-m-v-0\@H {
		margin-bottom: 0px;
		margin-top: 0px
	}

	.hfui-m-l-0\@H {
		margin-left: 0px
	}

	.hfui-m-r-0\@H {
		margin-right: 0px
	}

	.hfui-m-t-0\@H {
		margin-top: 0px
	}

	.hfui-m-b-0\@H {
		margin-bottom: 0px
	}

	.hfui-m-2\@H {
		margin: 2px
	}

	.hfui-m-h-2\@H {
		margin-left: 2px;
		margin-right: 2px
	}

	.hfui-m-v-2\@H {
		margin-bottom: 2px;
		margin-top: 2px
	}

	.hfui-m-l-2\@H {
		margin-left: 2px
	}

	.hfui-m-r-2\@H {
		margin-right: 2px
	}

	.hfui-m-t-2\@H {
		margin-top: 2px
	}

	.hfui-m-b-2\@H {
		margin-bottom: 2px
	}

	.hfui-m-4\@H {
		margin: 4px
	}

	.hfui-m-h-4\@H {
		margin-left: 4px;
		margin-right: 4px
	}

	.hfui-m-v-4\@H {
		margin-bottom: 4px;
		margin-top: 4px
	}

	.hfui-m-l-4\@H {
		margin-left: 4px
	}

	.hfui-m-r-4\@H {
		margin-right: 4px
	}

	.hfui-m-t-4\@H {
		margin-top: 4px
	}

	.hfui-m-b-4\@H {
		margin-bottom: 4px
	}

	.hfui-m-8\@H {
		margin: 8px
	}

	.hfui-m-h-8\@H {
		margin-left: 8px;
		margin-right: 8px
	}

	.hfui-m-v-8\@H {
		margin-bottom: 8px;
		margin-top: 8px
	}

	.hfui-m-l-8\@H {
		margin-left: 8px
	}

	.hfui-m-r-8\@H {
		margin-right: 8px
	}

	.hfui-m-t-8\@H {
		margin-top: 8px
	}

	.hfui-m-b-8\@H {
		margin-bottom: 8px
	}

	.hfui-m-12\@H {
		margin: 12px
	}

	.hfui-m-h-12\@H {
		margin-left: 12px;
		margin-right: 12px
	}

	.hfui-m-v-12\@H {
		margin-bottom: 12px;
		margin-top: 12px
	}

	.hfui-m-l-12\@H {
		margin-left: 12px
	}

	.hfui-m-r-12\@H {
		margin-right: 12px
	}

	.hfui-m-t-12\@H {
		margin-top: 12px
	}

	.hfui-m-b-12\@H {
		margin-bottom: 12px
	}

	.hfui-m-16\@H {
		margin: 16px
	}

	.hfui-m-h-16\@H {
		margin-left: 16px;
		margin-right: 16px
	}

	.hfui-m-v-16\@H {
		margin-bottom: 16px;
		margin-top: 16px
	}

	.hfui-m-l-16\@H {
		margin-left: 16px
	}

	.hfui-m-r-16\@H {
		margin-right: 16px
	}

	.hfui-m-t-16\@H {
		margin-top: 16px
	}

	.hfui-m-b-16\@H {
		margin-bottom: 16px
	}

	.hfui-m-20\@H {
		margin: 20px
	}

	.hfui-m-h-20\@H {
		margin-left: 20px;
		margin-right: 20px
	}

	.hfui-m-v-20\@H {
		margin-bottom: 20px;
		margin-top: 20px
	}

	.hfui-m-l-20\@H {
		margin-left: 20px
	}

	.hfui-m-r-20\@H {
		margin-right: 20px
	}

	.hfui-m-t-20\@H {
		margin-top: 20px
	}

	.hfui-m-b-20\@H {
		margin-bottom: 20px
	}

	.hfui-m-24\@H {
		margin: 24px
	}

	.hfui-m-h-24\@H {
		margin-left: 24px;
		margin-right: 24px
	}

	.hfui-m-v-24\@H {
		margin-bottom: 24px;
		margin-top: 24px
	}

	.hfui-m-l-24\@H {
		margin-left: 24px
	}

	.hfui-m-r-24\@H {
		margin-right: 24px
	}

	.hfui-m-t-24\@H {
		margin-top: 24px
	}

	.hfui-m-b-24\@H {
		margin-bottom: 24px
	}

	.hfui-m-32\@H {
		margin: 32px
	}

	.hfui-m-h-32\@H {
		margin-left: 32px;
		margin-right: 32px
	}

	.hfui-m-v-32\@H {
		margin-bottom: 32px;
		margin-top: 32px
	}

	.hfui-m-l-32\@H {
		margin-left: 32px
	}

	.hfui-m-r-32\@H {
		margin-right: 32px
	}

	.hfui-m-t-32\@H {
		margin-top: 32px
	}

	.hfui-m-b-32\@H {
		margin-bottom: 32px
	}

	.hfui-m-36\@H {
		margin: 36px
	}

	.hfui-m-h-36\@H {
		margin-left: 36px;
		margin-right: 36px
	}

	.hfui-m-v-36\@H {
		margin-bottom: 36px;
		margin-top: 36px
	}

	.hfui-m-l-36\@H {
		margin-left: 36px
	}

	.hfui-m-r-36\@H {
		margin-right: 36px
	}

	.hfui-m-t-36\@H {
		margin-top: 36px
	}

	.hfui-m-b-36\@H {
		margin-bottom: 36px
	}

	.hfui-m-40\@H {
		margin: 40px
	}

	.hfui-m-h-40\@H {
		margin-left: 40px;
		margin-right: 40px
	}

	.hfui-m-v-40\@H {
		margin-bottom: 40px;
		margin-top: 40px
	}

	.hfui-m-l-40\@H {
		margin-left: 40px
	}

	.hfui-m-r-40\@H {
		margin-right: 40px
	}

	.hfui-m-t-40\@H {
		margin-top: 40px
	}

	.hfui-m-b-40\@H {
		margin-bottom: 40px
	}

	.hfui-m-48\@H {
		margin: 48px
	}

	.hfui-m-h-48\@H {
		margin-left: 48px;
		margin-right: 48px
	}

	.hfui-m-v-48\@H {
		margin-bottom: 48px;
		margin-top: 48px
	}

	.hfui-m-l-48\@H {
		margin-left: 48px
	}

	.hfui-m-r-48\@H {
		margin-right: 48px
	}

	.hfui-m-t-48\@H {
		margin-top: 48px
	}

	.hfui-m-b-48\@H {
		margin-bottom: 48px
	}

	.hfui-m-56\@H {
		margin: 56px
	}

	.hfui-m-h-56\@H {
		margin-left: 56px;
		margin-right: 56px
	}

	.hfui-m-v-56\@H {
		margin-bottom: 56px;
		margin-top: 56px
	}

	.hfui-m-l-56\@H {
		margin-left: 56px
	}

	.hfui-m-r-56\@H {
		margin-right: 56px
	}

	.hfui-m-t-56\@H {
		margin-top: 56px
	}

	.hfui-m-b-56\@H {
		margin-bottom: 56px
	}

	.hfui-m-64\@H {
		margin: 64px
	}

	.hfui-m-h-64\@H {
		margin-left: 64px;
		margin-right: 64px
	}

	.hfui-m-v-64\@H {
		margin-bottom: 64px;
		margin-top: 64px
	}

	.hfui-m-l-64\@H {
		margin-left: 64px
	}

	.hfui-m-r-64\@H {
		margin-right: 64px
	}

	.hfui-m-t-64\@H {
		margin-top: 64px
	}

	.hfui-m-b-64\@H {
		margin-bottom: 64px
	}

	.hfui-m-72\@H {
		margin: 72px
	}

	.hfui-m-h-72\@H {
		margin-left: 72px;
		margin-right: 72px
	}

	.hfui-m-v-72\@H {
		margin-bottom: 72px;
		margin-top: 72px
	}

	.hfui-m-l-72\@H {
		margin-left: 72px
	}

	.hfui-m-r-72\@H {
		margin-right: 72px
	}

	.hfui-m-t-72\@H {
		margin-top: 72px
	}

	.hfui-m-b-72\@H {
		margin-bottom: 72px
	}

	.hfui-m-80\@H {
		margin: 80px
	}

	.hfui-m-h-80\@H {
		margin-left: 80px;
		margin-right: 80px
	}

	.hfui-m-v-80\@H {
		margin-bottom: 80px;
		margin-top: 80px
	}

	.hfui-m-l-80\@H {
		margin-left: 80px
	}

	.hfui-m-r-80\@H {
		margin-right: 80px
	}

	.hfui-m-t-80\@H {
		margin-top: 80px
	}

	.hfui-m-b-80\@H {
		margin-bottom: 80px
	}

	.hfui-m-96\@H {
		margin: 96px
	}

	.hfui-m-h-96\@H {
		margin-left: 96px;
		margin-right: 96px
	}

	.hfui-m-v-96\@H {
		margin-bottom: 96px;
		margin-top: 96px
	}

	.hfui-m-l-96\@H {
		margin-left: 96px
	}

	.hfui-m-r-96\@H {
		margin-right: 96px
	}

	.hfui-m-t-96\@H {
		margin-top: 96px
	}

	.hfui-m-b-96\@H {
		margin-bottom: 96px
	}

	.hfui-m-128\@H {
		margin: 128px
	}

	.hfui-m-h-128\@H {
		margin-left: 128px;
		margin-right: 128px
	}

	.hfui-m-v-128\@H {
		margin-bottom: 128px;
		margin-top: 128px
	}

	.hfui-m-l-128\@H {
		margin-left: 128px
	}

	.hfui-m-r-128\@H {
		margin-right: 128px
	}

	.hfui-m-t-128\@H {
		margin-top: 128px
	}

	.hfui-m-b-128\@H {
		margin-bottom: 128px
	}

	.hfui-m-v-a\@H {
		margin-top: auto;
		margin-bottom: auto
	}

	.hfui-m-h-a\@H {
		margin-left: auto;
		margin-right: auto
	}
}

.hfui-p-0 {
	padding: 0px
}

.hfui-p-h-0 {
	padding-left: 0px;
	padding-right: 0px
}

.hfui-p-v-0 {
	padding-bottom: 0px;
	padding-top: 0px
}

.hfui-p-l-0 {
	padding-left: 0px
}

.hfui-p-r-0 {
	padding-right: 0px
}

.hfui-p-t-0 {
	padding-top: 0px
}

.hfui-p-b-0 {
	padding-bottom: 0px
}

.hfui-p-2 {
	padding: 2px
}

.hfui-p-h-2 {
	padding-left: 2px;
	padding-right: 2px
}

.hfui-p-v-2 {
	padding-bottom: 2px;
	padding-top: 2px
}

.hfui-p-l-2 {
	padding-left: 2px
}

.hfui-p-r-2 {
	padding-right: 2px
}

.hfui-p-t-2 {
	padding-top: 2px
}

.hfui-p-b-2 {
	padding-bottom: 2px
}

.hfui-p-4 {
	padding: 4px
}

.hfui-p-h-4 {
	padding-left: 4px;
	padding-right: 4px
}

.hfui-p-v-4 {
	padding-bottom: 4px;
	padding-top: 4px
}

.hfui-p-l-4 {
	padding-left: 4px
}

.hfui-p-r-4 {
	padding-right: 4px
}

.hfui-p-t-4 {
	padding-top: 4px
}

.hfui-p-b-4 {
	padding-bottom: 4px
}

.hfui-p-8 {
	padding: 8px
}

.hfui-p-h-8 {
	padding-left: 8px;
	padding-right: 8px
}

.hfui-p-v-8 {
	padding-bottom: 8px;
	padding-top: 8px
}

.hfui-p-l-8 {
	padding-left: 8px
}

.hfui-p-r-8 {
	padding-right: 8px
}

.hfui-p-t-8 {
	padding-top: 8px
}

.hfui-p-b-8 {
	padding-bottom: 8px
}

.hfui-p-10 {
	padding: 10px
}

.hfui-p-h-10 {
	padding-left: 10px;
	padding-right: 10px
}

.hfui-p-v-10 {
	padding-bottom: 10px;
	padding-top: 10px
}

.hfui-p-l-10 {
	padding-left: 10px
}

.hfui-p-r-10 {
	padding-right: 10px
}

.hfui-p-t-10 {
	padding-top: 10px
}

.hfui-p-b-10 {
	padding-bottom: 10px
}

.hfui-p-12 {
	padding: 12px
}

.hfui-p-h-12 {
	padding-left: 12px;
	padding-right: 12px
}

.hfui-p-v-12 {
	padding-bottom: 12px;
	padding-top: 12px
}

.hfui-p-l-12 {
	padding-left: 12px
}

.hfui-p-r-12 {
	padding-right: 12px
}

.hfui-p-t-12 {
	padding-top: 12px
}

.hfui-p-b-12 {
	padding-bottom: 12px
}

.hfui-p-16 {
	padding: 16px
}

.hfui-p-h-16 {
	padding-left: 16px;
	padding-right: 16px
}

.hfui-p-v-16 {
	padding-bottom: 16px;
	padding-top: 16px
}

.hfui-p-l-16 {
	padding-left: 16px
}

.hfui-p-r-16 {
	padding-right: 16px
}

.hfui-p-t-16 {
	padding-top: 16px
}

.hfui-p-b-16 {
	padding-bottom: 16px
}

.hfui-p-20 {
	padding: 20px
}

.hfui-p-h-20 {
	padding-left: 20px;
	padding-right: 20px
}

.hfui-p-v-20 {
	padding-bottom: 20px;
	padding-top: 20px
}

.hfui-p-l-20 {
	padding-left: 20px
}

.hfui-p-r-20 {
	padding-right: 20px
}

.hfui-p-t-20 {
	padding-top: 20px
}

.hfui-p-b-20 {
	padding-bottom: 20px
}

.hfui-p-24 {
	padding: 24px
}

.hfui-p-h-24 {
	padding-left: 24px;
	padding-right: 24px
}

.hfui-p-v-24 {
	padding-bottom: 24px;
	padding-top: 24px
}

.hfui-p-l-24 {
	padding-left: 24px
}

.hfui-p-r-24 {
	padding-right: 24px
}

.hfui-p-t-24 {
	padding-top: 24px
}

.hfui-p-b-24 {
	padding-bottom: 24px
}

.hfui-p-32 {
	padding: 32px
}

.hfui-p-h-32 {
	padding-left: 32px;
	padding-right: 32px
}

.hfui-p-v-32 {
	padding-bottom: 32px;
	padding-top: 32px
}

.hfui-p-l-32 {
	padding-left: 32px
}

.hfui-p-r-32 {
	padding-right: 32px
}

.hfui-p-t-32 {
	padding-top: 32px
}

.hfui-p-b-32 {
	padding-bottom: 32px
}

.hfui-p-36 {
	padding: 36px
}

.hfui-p-h-36 {
	padding-left: 36px;
	padding-right: 36px
}

.hfui-p-v-36 {
	padding-bottom: 36px;
	padding-top: 36px
}

.hfui-p-l-36 {
	padding-left: 36px
}

.hfui-p-r-36 {
	padding-right: 36px
}

.hfui-p-t-36 {
	padding-top: 36px
}

.hfui-p-b-36 {
	padding-bottom: 36px
}

.hfui-p-40 {
	padding: 40px
}

.hfui-p-h-40 {
	padding-left: 40px;
	padding-right: 40px
}

.hfui-p-v-40 {
	padding-bottom: 40px;
	padding-top: 40px
}

.hfui-p-l-40 {
	padding-left: 40px
}

.hfui-p-r-40 {
	padding-right: 40px
}

.hfui-p-t-40 {
	padding-top: 40px
}

.hfui-p-b-40 {
	padding-bottom: 40px
}

.hfui-p-48 {
	padding: 48px
}

.hfui-p-h-48 {
	padding-left: 48px;
	padding-right: 48px
}

.hfui-p-v-48 {
	padding-bottom: 48px;
	padding-top: 48px
}

.hfui-p-l-48 {
	padding-left: 48px
}

.hfui-p-r-48 {
	padding-right: 48px
}

.hfui-p-t-48 {
	padding-top: 48px
}

.hfui-p-b-48 {
	padding-bottom: 48px
}

.hfui-p-56 {
	padding: 56px
}

.hfui-p-h-56 {
	padding-left: 56px;
	padding-right: 56px
}

.hfui-p-v-56 {
	padding-bottom: 56px;
	padding-top: 56px
}

.hfui-p-l-56 {
	padding-left: 56px
}

.hfui-p-r-56 {
	padding-right: 56px
}

.hfui-p-t-56 {
	padding-top: 56px
}

.hfui-p-b-56 {
	padding-bottom: 56px
}

.hfui-p-64 {
	padding: 64px
}

.hfui-p-h-64 {
	padding-left: 64px;
	padding-right: 64px
}

.hfui-p-v-64 {
	padding-bottom: 64px;
	padding-top: 64px
}

.hfui-p-l-64 {
	padding-left: 64px
}

.hfui-p-r-64 {
	padding-right: 64px
}

.hfui-p-t-64 {
	padding-top: 64px
}

.hfui-p-b-64 {
	padding-bottom: 64px
}

.hfui-p-72 {
	padding: 72px
}

.hfui-p-h-72 {
	padding-left: 72px;
	padding-right: 72px
}

.hfui-p-v-72 {
	padding-bottom: 72px;
	padding-top: 72px
}

.hfui-p-l-72 {
	padding-left: 72px
}

.hfui-p-r-72 {
	padding-right: 72px
}

.hfui-p-t-72 {
	padding-top: 72px
}

.hfui-p-b-72 {
	padding-bottom: 72px
}

.hfui-p-80 {
	padding: 80px
}

.hfui-p-h-80 {
	padding-left: 80px;
	padding-right: 80px
}

.hfui-p-v-80 {
	padding-bottom: 80px;
	padding-top: 80px
}

.hfui-p-l-80 {
	padding-left: 80px
}

.hfui-p-r-80 {
	padding-right: 80px
}

.hfui-p-t-80 {
	padding-top: 80px
}

.hfui-p-b-80 {
	padding-bottom: 80px
}

.hfui-p-96 {
	padding: 96px
}

.hfui-p-h-96 {
	padding-left: 96px;
	padding-right: 96px
}

.hfui-p-v-96 {
	padding-bottom: 96px;
	padding-top: 96px
}

.hfui-p-l-96 {
	padding-left: 96px
}

.hfui-p-r-96 {
	padding-right: 96px
}

.hfui-p-t-96 {
	padding-top: 96px
}

.hfui-p-b-96 {
	padding-bottom: 96px
}

.hfui-p-128 {
	padding: 128px
}

.hfui-p-h-128 {
	padding-left: 128px;
	padding-right: 128px
}

.hfui-p-v-128 {
	padding-bottom: 128px;
	padding-top: 128px
}

.hfui-p-l-128 {
	padding-left: 128px
}

.hfui-p-r-128 {
	padding-right: 128px
}

.hfui-p-t-128 {
	padding-top: 128px
}

.hfui-p-b-128 {
	padding-bottom: 128px
}

@media only screen and (min-width: 768px) {
	.hfui-p-0\@T {
		padding: 0px
	}

	.hfui-p-h-0\@T {
		padding-left: 0px;
		padding-right: 0px
	}

	.hfui-p-v-0\@T {
		padding-bottom: 0px;
		padding-top: 0px
	}

	.hfui-p-l-0\@T {
		padding-left: 0px
	}

	.hfui-p-r-0\@T {
		padding-right: 0px
	}

	.hfui-p-t-0\@T {
		padding-top: 0px
	}

	.hfui-p-b-0\@T {
		padding-bottom: 0px
	}

	.hfui-p-2\@T {
		padding: 2px
	}

	.hfui-p-h-2\@T {
		padding-left: 2px;
		padding-right: 2px
	}

	.hfui-p-v-2\@T {
		padding-bottom: 2px;
		padding-top: 2px
	}

	.hfui-p-l-2\@T {
		padding-left: 2px
	}

	.hfui-p-r-2\@T {
		padding-right: 2px
	}

	.hfui-p-t-2\@T {
		padding-top: 2px
	}

	.hfui-p-b-2\@T {
		padding-bottom: 2px
	}

	.hfui-p-4\@T {
		padding: 4px
	}

	.hfui-p-h-4\@T {
		padding-left: 4px;
		padding-right: 4px
	}

	.hfui-p-v-4\@T {
		padding-bottom: 4px;
		padding-top: 4px
	}

	.hfui-p-l-4\@T {
		padding-left: 4px
	}

	.hfui-p-r-4\@T {
		padding-right: 4px
	}

	.hfui-p-t-4\@T {
		padding-top: 4px
	}

	.hfui-p-b-4\@T {
		padding-bottom: 4px
	}

	.hfui-p-8\@T {
		padding: 8px
	}

	.hfui-p-h-8\@T {
		padding-left: 8px;
		padding-right: 8px
	}

	.hfui-p-v-8\@T {
		padding-bottom: 8px;
		padding-top: 8px
	}

	.hfui-p-l-8\@T {
		padding-left: 8px
	}

	.hfui-p-r-8\@T {
		padding-right: 8px
	}

	.hfui-p-t-8\@T {
		padding-top: 8px
	}

	.hfui-p-b-8\@T {
		padding-bottom: 8px
	}

	.hfui-p-12\@T {
		padding: 12px
	}

	.hfui-p-h-12\@T {
		padding-left: 12px;
		padding-right: 12px
	}

	.hfui-p-v-12\@T {
		padding-bottom: 12px;
		padding-top: 12px
	}

	.hfui-p-l-12\@T {
		padding-left: 12px
	}

	.hfui-p-r-12\@T {
		padding-right: 12px
	}

	.hfui-p-t-12\@T {
		padding-top: 12px
	}

	.hfui-p-b-12\@T {
		padding-bottom: 12px
	}

	.hfui-p-16\@T {
		padding: 16px
	}

	.hfui-p-h-16\@T {
		padding-left: 16px;
		padding-right: 16px
	}

	.hfui-p-v-16\@T {
		padding-bottom: 16px;
		padding-top: 16px
	}

	.hfui-p-l-16\@T {
		padding-left: 16px
	}

	.hfui-p-r-16\@T {
		padding-right: 16px
	}

	.hfui-p-t-16\@T {
		padding-top: 16px
	}

	.hfui-p-b-16\@T {
		padding-bottom: 16px
	}

	.hfui-p-20\@T {
		padding: 20px
	}

	.hfui-p-h-20\@T {
		padding-left: 20px;
		padding-right: 20px
	}

	.hfui-p-v-20\@T {
		padding-bottom: 20px;
		padding-top: 20px
	}

	.hfui-p-l-20\@T {
		padding-left: 20px
	}

	.hfui-p-r-20\@T {
		padding-right: 20px
	}

	.hfui-p-t-20\@T {
		padding-top: 20px
	}

	.hfui-p-b-20\@T {
		padding-bottom: 20px
	}

	.hfui-p-24\@T {
		padding: 24px
	}

	.hfui-p-h-24\@T {
		padding-left: 24px;
		padding-right: 24px
	}

	.hfui-p-v-24\@T {
		padding-bottom: 24px;
		padding-top: 24px
	}

	.hfui-p-l-24\@T {
		padding-left: 24px
	}

	.hfui-p-r-24\@T {
		padding-right: 24px
	}

	.hfui-p-t-24\@T {
		padding-top: 24px
	}

	.hfui-p-b-24\@T {
		padding-bottom: 24px
	}

	.hfui-p-32\@T {
		padding: 32px
	}

	.hfui-p-h-32\@T {
		padding-left: 32px;
		padding-right: 32px
	}

	.hfui-p-v-32\@T {
		padding-bottom: 32px;
		padding-top: 32px
	}

	.hfui-p-l-32\@T {
		padding-left: 32px
	}

	.hfui-p-r-32\@T {
		padding-right: 32px
	}

	.hfui-p-t-32\@T {
		padding-top: 32px
	}

	.hfui-p-b-32\@T {
		padding-bottom: 32px
	}

	.hfui-p-36\@T {
		padding: 36px
	}

	.hfui-p-h-36\@T {
		padding-left: 36px;
		padding-right: 36px
	}

	.hfui-p-v-36\@T {
		padding-bottom: 36px;
		padding-top: 36px
	}

	.hfui-p-l-36\@T {
		padding-left: 36px
	}

	.hfui-p-r-36\@T {
		padding-right: 36px
	}

	.hfui-p-t-36\@T {
		padding-top: 36px
	}

	.hfui-p-b-36\@T {
		padding-bottom: 36px
	}

	.hfui-p-40\@T {
		padding: 40px
	}

	.hfui-p-h-40\@T {
		padding-left: 40px;
		padding-right: 40px
	}

	.hfui-p-v-40\@T {
		padding-bottom: 40px;
		padding-top: 40px
	}

	.hfui-p-l-40\@T {
		padding-left: 40px
	}

	.hfui-p-r-40\@T {
		padding-right: 40px
	}

	.hfui-p-t-40\@T {
		padding-top: 40px
	}

	.hfui-p-b-40\@T {
		padding-bottom: 40px
	}

	.hfui-p-48\@T {
		padding: 48px
	}

	.hfui-p-h-48\@T {
		padding-left: 48px;
		padding-right: 48px
	}

	.hfui-p-v-48\@T {
		padding-bottom: 48px;
		padding-top: 48px
	}

	.hfui-p-l-48\@T {
		padding-left: 48px
	}

	.hfui-p-r-48\@T {
		padding-right: 48px
	}

	.hfui-p-t-48\@T {
		padding-top: 48px
	}

	.hfui-p-b-48\@T {
		padding-bottom: 48px
	}

	.hfui-p-56\@T {
		padding: 56px
	}

	.hfui-p-h-56\@T {
		padding-left: 56px;
		padding-right: 56px
	}

	.hfui-p-v-56\@T {
		padding-bottom: 56px;
		padding-top: 56px
	}

	.hfui-p-l-56\@T {
		padding-left: 56px
	}

	.hfui-p-r-56\@T {
		padding-right: 56px
	}

	.hfui-p-t-56\@T {
		padding-top: 56px
	}

	.hfui-p-b-56\@T {
		padding-bottom: 56px
	}

	.hfui-p-64\@T {
		padding: 64px
	}

	.hfui-p-h-64\@T {
		padding-left: 64px;
		padding-right: 64px
	}

	.hfui-p-v-64\@T {
		padding-bottom: 64px;
		padding-top: 64px
	}

	.hfui-p-l-64\@T {
		padding-left: 64px
	}

	.hfui-p-r-64\@T {
		padding-right: 64px
	}

	.hfui-p-t-64\@T {
		padding-top: 64px
	}

	.hfui-p-b-64\@T {
		padding-bottom: 64px
	}

	.hfui-p-72\@T {
		padding: 72px
	}

	.hfui-p-h-72\@T {
		padding-left: 72px;
		padding-right: 72px
	}

	.hfui-p-v-72\@T {
		padding-bottom: 72px;
		padding-top: 72px
	}

	.hfui-p-l-72\@T {
		padding-left: 72px
	}

	.hfui-p-r-72\@T {
		padding-right: 72px
	}

	.hfui-p-t-72\@T {
		padding-top: 72px
	}

	.hfui-p-b-72\@T {
		padding-bottom: 72px
	}

	.hfui-p-80\@T {
		padding: 80px
	}

	.hfui-p-h-80\@T {
		padding-left: 80px;
		padding-right: 80px
	}

	.hfui-p-v-80\@T {
		padding-bottom: 80px;
		padding-top: 80px
	}

	.hfui-p-l-80\@T {
		padding-left: 80px
	}

	.hfui-p-r-80\@T {
		padding-right: 80px
	}

	.hfui-p-t-80\@T {
		padding-top: 80px
	}

	.hfui-p-b-80\@T {
		padding-bottom: 80px
	}

	.hfui-p-96\@T {
		padding: 96px
	}

	.hfui-p-h-96\@T {
		padding-left: 96px;
		padding-right: 96px
	}

	.hfui-p-v-96\@T {
		padding-bottom: 96px;
		padding-top: 96px
	}

	.hfui-p-l-96\@T {
		padding-left: 96px
	}

	.hfui-p-r-96\@T {
		padding-right: 96px
	}

	.hfui-p-t-96\@T {
		padding-top: 96px
	}

	.hfui-p-b-96\@T {
		padding-bottom: 96px
	}

	.hfui-p-128\@T {
		padding: 128px
	}

	.hfui-p-h-128\@T {
		padding-left: 128px;
		padding-right: 128px
	}

	.hfui-p-v-128\@T {
		padding-bottom: 128px;
		padding-top: 128px
	}

	.hfui-p-l-128\@T {
		padding-left: 128px
	}

	.hfui-p-r-128\@T {
		padding-right: 128px
	}

	.hfui-p-t-128\@T {
		padding-top: 128px
	}

	.hfui-p-b-128\@T {
		padding-bottom: 128px
	}
}

@media only screen and (min-width: 1024px) {
	.hfui-p-0\@S {
		padding: 0px
	}

	.hfui-p-h-0\@S {
		padding-left: 0px;
		padding-right: 0px
	}

	.hfui-p-v-0\@S {
		padding-bottom: 0px;
		padding-top: 0px
	}

	.hfui-p-l-0\@S {
		padding-left: 0px
	}

	.hfui-p-r-0\@S {
		padding-right: 0px
	}

	.hfui-p-t-0\@S {
		padding-top: 0px
	}

	.hfui-p-b-0\@S {
		padding-bottom: 0px
	}

	.hfui-p-2\@S {
		padding: 2px
	}

	.hfui-p-h-2\@S {
		padding-left: 2px;
		padding-right: 2px
	}

	.hfui-p-v-2\@S {
		padding-bottom: 2px;
		padding-top: 2px
	}

	.hfui-p-l-2\@S {
		padding-left: 2px
	}

	.hfui-p-r-2\@S {
		padding-right: 2px
	}

	.hfui-p-t-2\@S {
		padding-top: 2px
	}

	.hfui-p-b-2\@S {
		padding-bottom: 2px
	}

	.hfui-p-4\@S {
		padding: 4px
	}

	.hfui-p-h-4\@S {
		padding-left: 4px;
		padding-right: 4px
	}

	.hfui-p-v-4\@S {
		padding-bottom: 4px;
		padding-top: 4px
	}

	.hfui-p-l-4\@S {
		padding-left: 4px
	}

	.hfui-p-r-4\@S {
		padding-right: 4px
	}

	.hfui-p-t-4\@S {
		padding-top: 4px
	}

	.hfui-p-b-4\@S {
		padding-bottom: 4px
	}

	.hfui-p-8\@S {
		padding: 8px
	}

	.hfui-p-h-8\@S {
		padding-left: 8px;
		padding-right: 8px
	}

	.hfui-p-v-8\@S {
		padding-bottom: 8px;
		padding-top: 8px
	}

	.hfui-p-l-8\@S {
		padding-left: 8px
	}

	.hfui-p-r-8\@S {
		padding-right: 8px
	}

	.hfui-p-t-8\@S {
		padding-top: 8px
	}

	.hfui-p-b-8\@S {
		padding-bottom: 8px
	}

	.hfui-p-10\@S {
		padding: 10px
	}

	.hfui-p-h-10\@S {
		padding-left: 10px;
		padding-right: 10px
	}

	.hfui-p-v-10\@S {
		padding-bottom: 10px;
		padding-top: 10px
	}

	.hfui-p-l-10\@S {
		padding-left: 10px
	}

	.hfui-p-r-10\@S {
		padding-right: 10px
	}

	.hfui-p-t-10\@S {
		padding-top: 10px
	}

	.hfui-p-b-10\@S {
		padding-bottom: 10px
	}

	.hfui-p-12\@S {
		padding: 12px
	}

	.hfui-p-h-12\@S {
		padding-left: 12px;
		padding-right: 12px
	}

	.hfui-p-v-12\@S {
		padding-bottom: 12px;
		padding-top: 12px
	}

	.hfui-p-l-12\@S {
		padding-left: 12px
	}

	.hfui-p-r-12\@S {
		padding-right: 12px
	}

	.hfui-p-t-12\@S {
		padding-top: 12px
	}

	.hfui-p-b-12\@S {
		padding-bottom: 12px
	}

	.hfui-p-16\@S {
		padding: 16px
	}

	.hfui-p-h-16\@S {
		padding-left: 16px;
		padding-right: 16px
	}

	.hfui-p-v-16\@S {
		padding-bottom: 16px;
		padding-top: 16px
	}

	.hfui-p-l-16\@S {
		padding-left: 16px
	}

	.hfui-p-r-16\@S {
		padding-right: 16px
	}

	.hfui-p-t-16\@S {
		padding-top: 16px
	}

	.hfui-p-b-16\@S {
		padding-bottom: 16px
	}

	.hfui-p-20\@S {
		padding: 20px
	}

	.hfui-p-h-20\@S {
		padding-left: 20px;
		padding-right: 20px
	}

	.hfui-p-v-20\@S {
		padding-bottom: 20px;
		padding-top: 20px
	}

	.hfui-p-l-20\@S {
		padding-left: 20px
	}

	.hfui-p-r-20\@S {
		padding-right: 20px
	}

	.hfui-p-t-20\@S {
		padding-top: 20px
	}

	.hfui-p-b-20\@S {
		padding-bottom: 20px
	}

	.hfui-p-24\@S {
		padding: 24px
	}

	.hfui-p-h-24\@S {
		padding-left: 24px;
		padding-right: 24px
	}

	.hfui-p-v-24\@S {
		padding-bottom: 24px;
		padding-top: 24px
	}

	.hfui-p-l-24\@S {
		padding-left: 24px
	}

	.hfui-p-r-24\@S {
		padding-right: 24px
	}

	.hfui-p-t-24\@S {
		padding-top: 24px
	}

	.hfui-p-b-24\@S {
		padding-bottom: 24px
	}

	.hfui-p-32\@S {
		padding: 32px
	}

	.hfui-p-h-32\@S {
		padding-left: 32px;
		padding-right: 32px
	}

	.hfui-p-v-32\@S {
		padding-bottom: 32px;
		padding-top: 32px
	}

	.hfui-p-l-32\@S {
		padding-left: 32px
	}

	.hfui-p-r-32\@S {
		padding-right: 32px
	}

	.hfui-p-t-32\@S {
		padding-top: 32px
	}

	.hfui-p-b-32\@S {
		padding-bottom: 32px
	}

	.hfui-p-36\@S {
		padding: 36px
	}

	.hfui-p-h-36\@S {
		padding-left: 36px;
		padding-right: 36px
	}

	.hfui-p-v-36\@S {
		padding-bottom: 36px;
		padding-top: 36px
	}

	.hfui-p-l-36\@S {
		padding-left: 36px
	}

	.hfui-p-r-36\@S {
		padding-right: 36px
	}

	.hfui-p-t-36\@S {
		padding-top: 36px
	}

	.hfui-p-b-36\@S {
		padding-bottom: 36px
	}

	.hfui-p-40\@S {
		padding: 40px
	}

	.hfui-p-h-40\@S {
		padding-left: 40px;
		padding-right: 40px
	}

	.hfui-p-v-40\@S {
		padding-bottom: 40px;
		padding-top: 40px
	}

	.hfui-p-l-40\@S {
		padding-left: 40px
	}

	.hfui-p-r-40\@S {
		padding-right: 40px
	}

	.hfui-p-t-40\@S {
		padding-top: 40px
	}

	.hfui-p-b-40\@S {
		padding-bottom: 40px
	}

	.hfui-p-48\@S {
		padding: 48px
	}

	.hfui-p-h-48\@S {
		padding-left: 48px;
		padding-right: 48px
	}

	.hfui-p-v-48\@S {
		padding-bottom: 48px;
		padding-top: 48px
	}

	.hfui-p-l-48\@S {
		padding-left: 48px
	}

	.hfui-p-r-48\@S {
		padding-right: 48px
	}

	.hfui-p-t-48\@S {
		padding-top: 48px
	}

	.hfui-p-b-48\@S {
		padding-bottom: 48px
	}

	.hfui-p-56\@S {
		padding: 56px
	}

	.hfui-p-h-56\@S {
		padding-left: 56px;
		padding-right: 56px
	}

	.hfui-p-v-56\@S {
		padding-bottom: 56px;
		padding-top: 56px
	}

	.hfui-p-l-56\@S {
		padding-left: 56px
	}

	.hfui-p-r-56\@S {
		padding-right: 56px
	}

	.hfui-p-t-56\@S {
		padding-top: 56px
	}

	.hfui-p-b-56\@S {
		padding-bottom: 56px
	}

	.hfui-p-64\@S {
		padding: 64px
	}

	.hfui-p-h-64\@S {
		padding-left: 64px;
		padding-right: 64px
	}

	.hfui-p-v-64\@S {
		padding-bottom: 64px;
		padding-top: 64px
	}

	.hfui-p-l-64\@S {
		padding-left: 64px
	}

	.hfui-p-r-64\@S {
		padding-right: 64px
	}

	.hfui-p-t-64\@S {
		padding-top: 64px
	}

	.hfui-p-b-64\@S {
		padding-bottom: 64px
	}

	.hfui-p-72\@S {
		padding: 72px
	}

	.hfui-p-h-72\@S {
		padding-left: 72px;
		padding-right: 72px
	}

	.hfui-p-v-72\@S {
		padding-bottom: 72px;
		padding-top: 72px
	}

	.hfui-p-l-72\@S {
		padding-left: 72px
	}

	.hfui-p-r-72\@S {
		padding-right: 72px
	}

	.hfui-p-t-72\@S {
		padding-top: 72px
	}

	.hfui-p-b-72\@S {
		padding-bottom: 72px
	}

	.hfui-p-80\@S {
		padding: 80px
	}

	.hfui-p-h-80\@S {
		padding-left: 80px;
		padding-right: 80px
	}

	.hfui-p-v-80\@S {
		padding-bottom: 80px;
		padding-top: 80px
	}

	.hfui-p-l-80\@S {
		padding-left: 80px
	}

	.hfui-p-r-80\@S {
		padding-right: 80px
	}

	.hfui-p-t-80\@S {
		padding-top: 80px
	}

	.hfui-p-b-80\@S {
		padding-bottom: 80px
	}

	.hfui-p-96\@S {
		padding: 96px
	}

	.hfui-p-h-96\@S {
		padding-left: 96px;
		padding-right: 96px
	}

	.hfui-p-v-96\@S {
		padding-bottom: 96px;
		padding-top: 96px
	}

	.hfui-p-l-96\@S {
		padding-left: 96px
	}

	.hfui-p-r-96\@S {
		padding-right: 96px
	}

	.hfui-p-t-96\@S {
		padding-top: 96px
	}

	.hfui-p-b-96\@S {
		padding-bottom: 96px
	}

	.hfui-p-128\@S {
		padding: 128px
	}

	.hfui-p-h-128\@S {
		padding-left: 128px;
		padding-right: 128px
	}

	.hfui-p-v-128\@S {
		padding-bottom: 128px;
		padding-top: 128px
	}

	.hfui-p-l-128\@S {
		padding-left: 128px
	}

	.hfui-p-r-128\@S {
		padding-right: 128px
	}

	.hfui-p-t-128\@S {
		padding-top: 128px
	}

	.hfui-p-b-128\@S {
		padding-bottom: 128px
	}
}

@media only screen and (min-width: 1280px) {
	.hfui-p-0\@M {
		padding: 0px
	}

	.hfui-p-h-0\@M {
		padding-left: 0px;
		padding-right: 0px
	}

	.hfui-p-v-0\@M {
		padding-bottom: 0px;
		padding-top: 0px
	}

	.hfui-p-l-0\@M {
		padding-left: 0px
	}

	.hfui-p-r-0\@M {
		padding-right: 0px
	}

	.hfui-p-t-0\@M {
		padding-top: 0px
	}

	.hfui-p-b-0\@M {
		padding-bottom: 0px
	}

	.hfui-p-2\@M {
		padding: 2px
	}

	.hfui-p-h-2\@M {
		padding-left: 2px;
		padding-right: 2px
	}

	.hfui-p-v-2\@M {
		padding-bottom: 2px;
		padding-top: 2px
	}

	.hfui-p-l-2\@M {
		padding-left: 2px
	}

	.hfui-p-r-2\@M {
		padding-right: 2px
	}

	.hfui-p-t-2\@M {
		padding-top: 2px
	}

	.hfui-p-b-2\@M {
		padding-bottom: 2px
	}

	.hfui-p-4\@M {
		padding: 4px
	}

	.hfui-p-h-4\@M {
		padding-left: 4px;
		padding-right: 4px
	}

	.hfui-p-v-4\@M {
		padding-bottom: 4px;
		padding-top: 4px
	}

	.hfui-p-l-4\@M {
		padding-left: 4px
	}

	.hfui-p-r-4\@M {
		padding-right: 4px
	}

	.hfui-p-t-4\@M {
		padding-top: 4px
	}

	.hfui-p-b-4\@M {
		padding-bottom: 4px
	}

	.hfui-p-8\@M {
		padding: 8px
	}

	.hfui-p-h-8\@M {
		padding-left: 8px;
		padding-right: 8px
	}

	.hfui-p-v-8\@M {
		padding-bottom: 8px;
		padding-top: 8px
	}

	.hfui-p-l-8\@M {
		padding-left: 8px
	}

	.hfui-p-r-8\@M {
		padding-right: 8px
	}

	.hfui-p-t-8\@M {
		padding-top: 8px
	}

	.hfui-p-b-8\@M {
		padding-bottom: 8px
	}
	
	.hfui-p-10\@M {
		padding: 10px
	}	
	
	.hfui-p-h-10\@M {
		padding-left: 10px;
		padding-right: 10px
	}

	.hfui-p-v-10\@M {
		padding-bottom: 10px;
		padding-top: 10px
	}

	.hfui-p-l-10\@M {
		padding-left: 10px
	}

	.hfui-p-r-10\@M {
		padding-right: 10px
	}

	.hfui-p-t-10\@M {
		padding-top: 10px
	}

	.hfui-p-b-10\@M {
		padding-bottom: 10px
	}	

	.hfui-p-12\@M {
		padding: 12px
	}

	.hfui-p-h-12\@M {
		padding-left: 12px;
		padding-right: 12px
	}

	.hfui-p-v-12\@M {
		padding-bottom: 12px;
		padding-top: 12px
	}

	.hfui-p-l-12\@M {
		padding-left: 12px
	}

	.hfui-p-r-12\@M {
		padding-right: 12px
	}

	.hfui-p-t-12\@M {
		padding-top: 12px
	}

	.hfui-p-b-12\@M {
		padding-bottom: 12px
	}

	.hfui-p-16\@M {
		padding: 16px
	}

	.hfui-p-h-16\@M {
		padding-left: 16px;
		padding-right: 16px
	}

	.hfui-p-v-16\@M {
		padding-bottom: 16px;
		padding-top: 16px
	}

	.hfui-p-l-16\@M {
		padding-left: 16px
	}

	.hfui-p-r-16\@M {
		padding-right: 16px
	}

	.hfui-p-t-16\@M {
		padding-top: 16px
	}

	.hfui-p-b-16\@M {
		padding-bottom: 16px
	}

	.hfui-p-20\@M {
		padding: 20px
	}

	.hfui-p-h-20\@M {
		padding-left: 20px;
		padding-right: 20px
	}

	.hfui-p-v-20\@M {
		padding-bottom: 20px;
		padding-top: 20px
	}

	.hfui-p-l-20\@M {
		padding-left: 20px
	}

	.hfui-p-r-20\@M {
		padding-right: 20px
	}

	.hfui-p-t-20\@M {
		padding-top: 20px
	}

	.hfui-p-b-20\@M {
		padding-bottom: 20px
	}

	.hfui-p-24\@M {
		padding: 24px
	}

	.hfui-p-h-24\@M {
		padding-left: 24px;
		padding-right: 24px
	}

	.hfui-p-v-24\@M {
		padding-bottom: 24px;
		padding-top: 24px
	}

	.hfui-p-l-24\@M {
		padding-left: 24px
	}

	.hfui-p-r-24\@M {
		padding-right: 24px
	}

	.hfui-p-t-24\@M {
		padding-top: 24px
	}

	.hfui-p-b-24\@M {
		padding-bottom: 24px
	}

	.hfui-p-32\@M {
		padding: 32px
	}

	.hfui-p-h-32\@M {
		padding-left: 32px;
		padding-right: 32px
	}

	.hfui-p-v-32\@M {
		padding-bottom: 32px;
		padding-top: 32px
	}

	.hfui-p-l-32\@M {
		padding-left: 32px
	}

	.hfui-p-r-32\@M {
		padding-right: 32px
	}

	.hfui-p-t-32\@M {
		padding-top: 32px
	}

	.hfui-p-b-32\@M {
		padding-bottom: 32px
	}

	.hfui-p-36\@M {
		padding: 36px
	}

	.hfui-p-h-36\@M {
		padding-left: 36px;
		padding-right: 36px
	}

	.hfui-p-v-36\@M {
		padding-bottom: 36px;
		padding-top: 36px
	}

	.hfui-p-l-36\@M {
		padding-left: 36px
	}

	.hfui-p-r-36\@M {
		padding-right: 36px
	}

	.hfui-p-t-36\@M {
		padding-top: 36px
	}

	.hfui-p-b-36\@M {
		padding-bottom: 36px
	}

	.hfui-p-40\@M {
		padding: 40px
	}

	.hfui-p-h-40\@M {
		padding-left: 40px;
		padding-right: 40px
	}

	.hfui-p-v-40\@M {
		padding-bottom: 40px;
		padding-top: 40px
	}

	.hfui-p-l-40\@M {
		padding-left: 40px
	}

	.hfui-p-r-40\@M {
		padding-right: 40px
	}

	.hfui-p-t-40\@M {
		padding-top: 40px
	}

	.hfui-p-b-40\@M {
		padding-bottom: 40px
	}

	.hfui-p-48\@M {
		padding: 48px
	}

	.hfui-p-h-48\@M {
		padding-left: 48px;
		padding-right: 48px
	}

	.hfui-p-v-48\@M {
		padding-bottom: 48px;
		padding-top: 48px
	}

	.hfui-p-l-48\@M {
		padding-left: 48px
	}

	.hfui-p-r-48\@M {
		padding-right: 48px
	}

	.hfui-p-t-48\@M {
		padding-top: 48px
	}

	.hfui-p-b-48\@M {
		padding-bottom: 48px
	}

	.hfui-p-56\@M {
		padding: 56px
	}

	.hfui-p-h-56\@M {
		padding-left: 56px;
		padding-right: 56px
	}

	.hfui-p-v-56\@M {
		padding-bottom: 56px;
		padding-top: 56px
	}

	.hfui-p-l-56\@M {
		padding-left: 56px
	}

	.hfui-p-r-56\@M {
		padding-right: 56px
	}

	.hfui-p-t-56\@M {
		padding-top: 56px
	}

	.hfui-p-b-56\@M {
		padding-bottom: 56px
	}

	.hfui-p-64\@M {
		padding: 64px
	}

	.hfui-p-h-64\@M {
		padding-left: 64px;
		padding-right: 64px
	}

	.hfui-p-v-64\@M {
		padding-bottom: 64px;
		padding-top: 64px
	}

	.hfui-p-l-64\@M {
		padding-left: 64px
	}

	.hfui-p-r-64\@M {
		padding-right: 64px
	}

	.hfui-p-t-64\@M {
		padding-top: 64px
	}

	.hfui-p-b-64\@M {
		padding-bottom: 64px
	}

	.hfui-p-72\@M {
		padding: 72px
	}

	.hfui-p-h-72\@M {
		padding-left: 72px;
		padding-right: 72px
	}

	.hfui-p-v-72\@M {
		padding-bottom: 72px;
		padding-top: 72px
	}

	.hfui-p-l-72\@M {
		padding-left: 72px
	}

	.hfui-p-r-72\@M {
		padding-right: 72px
	}

	.hfui-p-t-72\@M {
		padding-top: 72px
	}

	.hfui-p-b-72\@M {
		padding-bottom: 72px
	}

	.hfui-p-80\@M {
		padding: 80px
	}

	.hfui-p-h-80\@M {
		padding-left: 80px;
		padding-right: 80px
	}

	.hfui-p-v-80\@M {
		padding-bottom: 80px;
		padding-top: 80px
	}

	.hfui-p-l-80\@M {
		padding-left: 80px
	}

	.hfui-p-r-80\@M {
		padding-right: 80px
	}

	.hfui-p-t-80\@M {
		padding-top: 80px
	}

	.hfui-p-b-80\@M {
		padding-bottom: 80px
	}

	.hfui-p-96\@M {
		padding: 96px
	}

	.hfui-p-h-96\@M {
		padding-left: 96px;
		padding-right: 96px
	}

	.hfui-p-v-96\@M {
		padding-bottom: 96px;
		padding-top: 96px
	}

	.hfui-p-l-96\@M {
		padding-left: 96px
	}

	.hfui-p-r-96\@M {
		padding-right: 96px
	}

	.hfui-p-t-96\@M {
		padding-top: 96px
	}

	.hfui-p-b-96\@M {
		padding-bottom: 96px
	}

	.hfui-p-128\@M {
		padding: 128px
	}

	.hfui-p-h-128\@M {
		padding-left: 128px;
		padding-right: 128px
	}

	.hfui-p-v-128\@M {
		padding-bottom: 128px;
		padding-top: 128px
	}

	.hfui-p-l-128\@M {
		padding-left: 128px
	}

	.hfui-p-r-128\@M {
		padding-right: 128px
	}

	.hfui-p-t-128\@M {
		padding-top: 128px
	}

	.hfui-p-b-128\@M {
		padding-bottom: 128px
	}
}

@media only screen and (min-width: 1600px) {
	.hfui-p-0\@L {
		padding: 0px
	}

	.hfui-p-h-0\@L {
		padding-left: 0px;
		padding-right: 0px
	}

	.hfui-p-v-0\@L {
		padding-bottom: 0px;
		padding-top: 0px
	}

	.hfui-p-l-0\@L {
		padding-left: 0px
	}

	.hfui-p-r-0\@L {
		padding-right: 0px
	}

	.hfui-p-t-0\@L {
		padding-top: 0px
	}

	.hfui-p-b-0\@L {
		padding-bottom: 0px
	}

	.hfui-p-2\@L {
		padding: 2px
	}

	.hfui-p-h-2\@L {
		padding-left: 2px;
		padding-right: 2px
	}

	.hfui-p-v-2\@L {
		padding-bottom: 2px;
		padding-top: 2px
	}

	.hfui-p-l-2\@L {
		padding-left: 2px
	}

	.hfui-p-r-2\@L {
		padding-right: 2px
	}

	.hfui-p-t-2\@L {
		padding-top: 2px
	}

	.hfui-p-b-2\@L {
		padding-bottom: 2px
	}

	.hfui-p-4\@L {
		padding: 4px
	}

	.hfui-p-h-4\@L {
		padding-left: 4px;
		padding-right: 4px
	}

	.hfui-p-v-4\@L {
		padding-bottom: 4px;
		padding-top: 4px
	}

	.hfui-p-l-4\@L {
		padding-left: 4px
	}

	.hfui-p-r-4\@L {
		padding-right: 4px
	}

	.hfui-p-t-4\@L {
		padding-top: 4px
	}

	.hfui-p-b-4\@L {
		padding-bottom: 4px
	}

	.hfui-p-8\@L {
		padding: 8px
	}

	.hfui-p-h-8\@L {
		padding-left: 8px;
		padding-right: 8px
	}

	.hfui-p-v-8\@L {
		padding-bottom: 8px;
		padding-top: 8px
	}

	.hfui-p-l-8\@L {
		padding-left: 8px
	}

	.hfui-p-r-8\@L {
		padding-right: 8px
	}

	.hfui-p-t-8\@L {
		padding-top: 8px
	}

	.hfui-p-b-8\@L {
		padding-bottom: 8px
	}
	
	.hfui-p-10\@L {
		padding: 10px
	}

	.hfui-p-h-10\@L {
		padding-left: 10px;
		padding-right: 10px
	}

	.hfui-p-v-10\@L {
		padding-bottom: 10px;
		padding-top: 10px
	}

	.hfui-p-l-10\@L {
		padding-left: 10px
	}

	.hfui-p-r-10\@L {
		padding-right: 10px
	}

	.hfui-p-t-10\@L {
		padding-top: 10px
	}

	.hfui-p-b-10\@L {
		padding-bottom: 10px
	}	

	.hfui-p-12\@L {
		padding: 12px
	}

	.hfui-p-h-12\@L {
		padding-left: 12px;
		padding-right: 12px
	}

	.hfui-p-v-12\@L {
		padding-bottom: 12px;
		padding-top: 12px
	}

	.hfui-p-l-12\@L {
		padding-left: 12px
	}

	.hfui-p-r-12\@L {
		padding-right: 12px
	}

	.hfui-p-t-12\@L {
		padding-top: 12px
	}

	.hfui-p-b-12\@L {
		padding-bottom: 12px
	}

	.hfui-p-16\@L {
		padding: 16px
	}

	.hfui-p-h-16\@L {
		padding-left: 16px;
		padding-right: 16px
	}

	.hfui-p-v-16\@L {
		padding-bottom: 16px;
		padding-top: 16px
	}

	.hfui-p-l-16\@L {
		padding-left: 16px
	}

	.hfui-p-r-16\@L {
		padding-right: 16px
	}

	.hfui-p-t-16\@L {
		padding-top: 16px
	}

	.hfui-p-b-16\@L {
		padding-bottom: 16px
	}

	.hfui-p-20\@L {
		padding: 20px
	}

	.hfui-p-h-20\@L {
		padding-left: 20px;
		padding-right: 20px
	}

	.hfui-p-v-20\@L {
		padding-bottom: 20px;
		padding-top: 20px
	}

	.hfui-p-l-20\@L {
		padding-left: 20px
	}

	.hfui-p-r-20\@L {
		padding-right: 20px
	}

	.hfui-p-t-20\@L {
		padding-top: 20px
	}

	.hfui-p-b-20\@L {
		padding-bottom: 20px
	}

	.hfui-p-24\@L {
		padding: 24px
	}

	.hfui-p-h-24\@L {
		padding-left: 24px;
		padding-right: 24px
	}

	.hfui-p-v-24\@L {
		padding-bottom: 24px;
		padding-top: 24px
	}

	.hfui-p-l-24\@L {
		padding-left: 24px
	}

	.hfui-p-r-24\@L {
		padding-right: 24px
	}

	.hfui-p-t-24\@L {
		padding-top: 24px
	}

	.hfui-p-b-24\@L {
		padding-bottom: 24px
	}

	.hfui-p-32\@L {
		padding: 32px
	}

	.hfui-p-h-32\@L {
		padding-left: 32px;
		padding-right: 32px
	}

	.hfui-p-v-32\@L {
		padding-bottom: 32px;
		padding-top: 32px
	}

	.hfui-p-l-32\@L {
		padding-left: 32px
	}

	.hfui-p-r-32\@L {
		padding-right: 32px
	}

	.hfui-p-t-32\@L {
		padding-top: 32px
	}

	.hfui-p-b-32\@L {
		padding-bottom: 32px
	}

	.hfui-p-36\@L {
		padding: 36px
	}

	.hfui-p-h-36\@L {
		padding-left: 36px;
		padding-right: 36px
	}

	.hfui-p-v-36\@L {
		padding-bottom: 36px;
		padding-top: 36px
	}

	.hfui-p-l-36\@L {
		padding-left: 36px
	}

	.hfui-p-r-36\@L {
		padding-right: 36px
	}

	.hfui-p-t-36\@L {
		padding-top: 36px
	}

	.hfui-p-b-36\@L {
		padding-bottom: 36px
	}

	.hfui-p-40\@L {
		padding: 40px
	}

	.hfui-p-h-40\@L {
		padding-left: 40px;
		padding-right: 40px
	}

	.hfui-p-v-40\@L {
		padding-bottom: 40px;
		padding-top: 40px
	}

	.hfui-p-l-40\@L {
		padding-left: 40px
	}

	.hfui-p-r-40\@L {
		padding-right: 40px
	}

	.hfui-p-t-40\@L {
		padding-top: 40px
	}

	.hfui-p-b-40\@L {
		padding-bottom: 40px
	}

	.hfui-p-48\@L {
		padding: 48px
	}

	.hfui-p-h-48\@L {
		padding-left: 48px;
		padding-right: 48px
	}

	.hfui-p-v-48\@L {
		padding-bottom: 48px;
		padding-top: 48px
	}

	.hfui-p-l-48\@L {
		padding-left: 48px
	}

	.hfui-p-r-48\@L {
		padding-right: 48px
	}

	.hfui-p-t-48\@L {
		padding-top: 48px
	}

	.hfui-p-b-48\@L {
		padding-bottom: 48px
	}

	.hfui-p-56\@L {
		padding: 56px
	}

	.hfui-p-h-56\@L {
		padding-left: 56px;
		padding-right: 56px
	}

	.hfui-p-v-56\@L {
		padding-bottom: 56px;
		padding-top: 56px
	}

	.hfui-p-l-56\@L {
		padding-left: 56px
	}

	.hfui-p-r-56\@L {
		padding-right: 56px
	}

	.hfui-p-t-56\@L {
		padding-top: 56px
	}

	.hfui-p-b-56\@L {
		padding-bottom: 56px
	}

	.hfui-p-64\@L {
		padding: 64px
	}

	.hfui-p-h-64\@L {
		padding-left: 64px;
		padding-right: 64px
	}

	.hfui-p-v-64\@L {
		padding-bottom: 64px;
		padding-top: 64px
	}

	.hfui-p-l-64\@L {
		padding-left: 64px
	}

	.hfui-p-r-64\@L {
		padding-right: 64px
	}

	.hfui-p-t-64\@L {
		padding-top: 64px
	}

	.hfui-p-b-64\@L {
		padding-bottom: 64px
	}

	.hfui-p-72\@L {
		padding: 72px
	}

	.hfui-p-h-72\@L {
		padding-left: 72px;
		padding-right: 72px
	}

	.hfui-p-v-72\@L {
		padding-bottom: 72px;
		padding-top: 72px
	}

	.hfui-p-l-72\@L {
		padding-left: 72px
	}

	.hfui-p-r-72\@L {
		padding-right: 72px
	}

	.hfui-p-t-72\@L {
		padding-top: 72px
	}

	.hfui-p-b-72\@L {
		padding-bottom: 72px
	}

	.hfui-p-80\@L {
		padding: 80px
	}

	.hfui-p-h-80\@L {
		padding-left: 80px;
		padding-right: 80px
	}

	.hfui-p-v-80\@L {
		padding-bottom: 80px;
		padding-top: 80px
	}

	.hfui-p-l-80\@L {
		padding-left: 80px
	}

	.hfui-p-r-80\@L {
		padding-right: 80px
	}

	.hfui-p-t-80\@L {
		padding-top: 80px
	}

	.hfui-p-b-80\@L {
		padding-bottom: 80px
	}

	.hfui-p-96\@L {
		padding: 96px
	}

	.hfui-p-h-96\@L {
		padding-left: 96px;
		padding-right: 96px
	}

	.hfui-p-v-96\@L {
		padding-bottom: 96px;
		padding-top: 96px
	}

	.hfui-p-l-96\@L {
		padding-left: 96px
	}

	.hfui-p-r-96\@L {
		padding-right: 96px
	}

	.hfui-p-t-96\@L {
		padding-top: 96px
	}

	.hfui-p-b-96\@L {
		padding-bottom: 96px
	}

	.hfui-p-128\@L {
		padding: 128px
	}

	.hfui-p-h-128\@L {
		padding-left: 128px;
		padding-right: 128px
	}

	.hfui-p-v-128\@L {
		padding-bottom: 128px;
		padding-top: 128px
	}

	.hfui-p-l-128\@L {
		padding-left: 128px
	}

	.hfui-p-r-128\@L {
		padding-right: 128px
	}

	.hfui-p-t-128\@L {
		padding-top: 128px
	}

	.hfui-p-b-128\@L {
		padding-bottom: 128px
	}
}

@media only screen and (min-width: 1920px) {
	.hfui-p-0\@H {
		padding: 0px
	}

	.hfui-p-h-0\@H {
		padding-left: 0px;
		padding-right: 0px
	}

	.hfui-p-v-0\@H {
		padding-bottom: 0px;
		padding-top: 0px
	}

	.hfui-p-l-0\@H {
		padding-left: 0px
	}

	.hfui-p-r-0\@H {
		padding-right: 0px
	}

	.hfui-p-t-0\@H {
		padding-top: 0px
	}

	.hfui-p-b-0\@H {
		padding-bottom: 0px
	}

	.hfui-p-2\@H {
		padding: 2px
	}

	.hfui-p-h-2\@H {
		padding-left: 2px;
		padding-right: 2px
	}

	.hfui-p-v-2\@H {
		padding-bottom: 2px;
		padding-top: 2px
	}

	.hfui-p-l-2\@H {
		padding-left: 2px
	}

	.hfui-p-r-2\@H {
		padding-right: 2px
	}

	.hfui-p-t-2\@H {
		padding-top: 2px
	}

	.hfui-p-b-2\@H {
		padding-bottom: 2px
	}

	.hfui-p-4\@H {
		padding: 4px
	}

	.hfui-p-h-4\@H {
		padding-left: 4px;
		padding-right: 4px
	}

	.hfui-p-v-4\@H {
		padding-bottom: 4px;
		padding-top: 4px
	}

	.hfui-p-l-4\@H {
		padding-left: 4px
	}

	.hfui-p-r-4\@H {
		padding-right: 4px
	}

	.hfui-p-t-4\@H {
		padding-top: 4px
	}

	.hfui-p-b-4\@H {
		padding-bottom: 4px
	}

	.hfui-p-8\@H {
		padding: 8px
	}

	.hfui-p-h-8\@H {
		padding-left: 8px;
		padding-right: 8px
	}

	.hfui-p-v-8\@H {
		padding-bottom: 8px;
		padding-top: 8px
	}

	.hfui-p-l-8\@H {
		padding-left: 8px
	}

	.hfui-p-r-8\@H {
		padding-right: 8px
	}

	.hfui-p-t-8\@H {
		padding-top: 8px
	}

	.hfui-p-b-8\@H {
		padding-bottom: 8px
	}

	.hfui-p-12\@H {
		padding: 12px
	}

	.hfui-p-h-12\@H {
		padding-left: 12px;
		padding-right: 12px
	}

	.hfui-p-v-12\@H {
		padding-bottom: 12px;
		padding-top: 12px
	}

	.hfui-p-l-12\@H {
		padding-left: 12px
	}

	.hfui-p-r-12\@H {
		padding-right: 12px
	}

	.hfui-p-t-12\@H {
		padding-top: 12px
	}

	.hfui-p-b-12\@H {
		padding-bottom: 12px
	}

	.hfui-p-16\@H {
		padding: 16px
	}

	.hfui-p-h-16\@H {
		padding-left: 16px;
		padding-right: 16px
	}

	.hfui-p-v-16\@H {
		padding-bottom: 16px;
		padding-top: 16px
	}

	.hfui-p-l-16\@H {
		padding-left: 16px
	}

	.hfui-p-r-16\@H {
		padding-right: 16px
	}

	.hfui-p-t-16\@H {
		padding-top: 16px
	}

	.hfui-p-b-16\@H {
		padding-bottom: 16px
	}

	.hfui-p-20\@H {
		padding: 20px
	}

	.hfui-p-h-20\@H {
		padding-left: 20px;
		padding-right: 20px
	}

	.hfui-p-v-20\@H {
		padding-bottom: 20px;
		padding-top: 20px
	}

	.hfui-p-l-20\@H {
		padding-left: 20px
	}

	.hfui-p-r-20\@H {
		padding-right: 20px
	}

	.hfui-p-t-20\@H {
		padding-top: 20px
	}

	.hfui-p-b-20\@H {
		padding-bottom: 20px
	}

	.hfui-p-24\@H {
		padding: 24px
	}

	.hfui-p-h-24\@H {
		padding-left: 24px;
		padding-right: 24px
	}

	.hfui-p-v-24\@H {
		padding-bottom: 24px;
		padding-top: 24px
	}

	.hfui-p-l-24\@H {
		padding-left: 24px
	}

	.hfui-p-r-24\@H {
		padding-right: 24px
	}

	.hfui-p-t-24\@H {
		padding-top: 24px
	}

	.hfui-p-b-24\@H {
		padding-bottom: 24px
	}

	.hfui-p-32\@H {
		padding: 32px
	}

	.hfui-p-h-32\@H {
		padding-left: 32px;
		padding-right: 32px
	}

	.hfui-p-v-32\@H {
		padding-bottom: 32px;
		padding-top: 32px
	}

	.hfui-p-l-32\@H {
		padding-left: 32px
	}

	.hfui-p-r-32\@H {
		padding-right: 32px
	}

	.hfui-p-t-32\@H {
		padding-top: 32px
	}

	.hfui-p-b-32\@H {
		padding-bottom: 32px
	}

	.hfui-p-36\@H {
		padding: 36px
	}

	.hfui-p-h-36\@H {
		padding-left: 36px;
		padding-right: 36px
	}

	.hfui-p-v-36\@H {
		padding-bottom: 36px;
		padding-top: 36px
	}

	.hfui-p-l-36\@H {
		padding-left: 36px
	}

	.hfui-p-r-36\@H {
		padding-right: 36px
	}

	.hfui-p-t-36\@H {
		padding-top: 36px
	}

	.hfui-p-b-36\@H {
		padding-bottom: 36px
	}

	.hfui-p-40\@H {
		padding: 40px
	}

	.hfui-p-h-40\@H {
		padding-left: 40px;
		padding-right: 40px
	}

	.hfui-p-v-40\@H {
		padding-bottom: 40px;
		padding-top: 40px
	}

	.hfui-p-l-40\@H {
		padding-left: 40px
	}

	.hfui-p-r-40\@H {
		padding-right: 40px
	}

	.hfui-p-t-40\@H {
		padding-top: 40px
	}

	.hfui-p-b-40\@H {
		padding-bottom: 40px
	}

	.hfui-p-48\@H {
		padding: 48px
	}

	.hfui-p-h-48\@H {
		padding-left: 48px;
		padding-right: 48px
	}

	.hfui-p-v-48\@H {
		padding-bottom: 48px;
		padding-top: 48px
	}

	.hfui-p-l-48\@H {
		padding-left: 48px
	}

	.hfui-p-r-48\@H {
		padding-right: 48px
	}

	.hfui-p-t-48\@H {
		padding-top: 48px
	}

	.hfui-p-b-48\@H {
		padding-bottom: 48px
	}

	.hfui-p-56\@H {
		padding: 56px
	}

	.hfui-p-h-56\@H {
		padding-left: 56px;
		padding-right: 56px
	}

	.hfui-p-v-56\@H {
		padding-bottom: 56px;
		padding-top: 56px
	}

	.hfui-p-l-56\@H {
		padding-left: 56px
	}

	.hfui-p-r-56\@H {
		padding-right: 56px
	}

	.hfui-p-t-56\@H {
		padding-top: 56px
	}

	.hfui-p-b-56\@H {
		padding-bottom: 56px
	}

	.hfui-p-64\@H {
		padding: 64px
	}

	.hfui-p-h-64\@H {
		padding-left: 64px;
		padding-right: 64px
	}

	.hfui-p-v-64\@H {
		padding-bottom: 64px;
		padding-top: 64px
	}

	.hfui-p-l-64\@H {
		padding-left: 64px
	}

	.hfui-p-r-64\@H {
		padding-right: 64px
	}

	.hfui-p-t-64\@H {
		padding-top: 64px
	}

	.hfui-p-b-64\@H {
		padding-bottom: 64px
	}

	.hfui-p-72\@H {
		padding: 72px
	}

	.hfui-p-h-72\@H {
		padding-left: 72px;
		padding-right: 72px
	}

	.hfui-p-v-72\@H {
		padding-bottom: 72px;
		padding-top: 72px
	}

	.hfui-p-l-72\@H {
		padding-left: 72px
	}

	.hfui-p-r-72\@H {
		padding-right: 72px
	}

	.hfui-p-t-72\@H {
		padding-top: 72px
	}

	.hfui-p-b-72\@H {
		padding-bottom: 72px
	}

	.hfui-p-80\@H {
		padding: 80px
	}

	.hfui-p-h-80\@H {
		padding-left: 80px;
		padding-right: 80px
	}

	.hfui-p-v-80\@H {
		padding-bottom: 80px;
		padding-top: 80px
	}

	.hfui-p-l-80\@H {
		padding-left: 80px
	}

	.hfui-p-r-80\@H {
		padding-right: 80px
	}

	.hfui-p-t-80\@H {
		padding-top: 80px
	}

	.hfui-p-b-80\@H {
		padding-bottom: 80px
	}

	.hfui-p-96\@H {
		padding: 96px
	}

	.hfui-p-h-96\@H {
		padding-left: 96px;
		padding-right: 96px
	}

	.hfui-p-v-96\@H {
		padding-bottom: 96px;
		padding-top: 96px
	}

	.hfui-p-l-96\@H {
		padding-left: 96px
	}

	.hfui-p-r-96\@H {
		padding-right: 96px
	}

	.hfui-p-t-96\@H {
		padding-top: 96px
	}

	.hfui-p-b-96\@H {
		padding-bottom: 96px
	}

	.hfui-p-128\@H {
		padding: 128px
	}

	.hfui-p-h-128\@H {
		padding-left: 128px;
		padding-right: 128px
	}

	.hfui-p-v-128\@H {
		padding-bottom: 128px;
		padding-top: 128px
	}

	.hfui-p-l-128\@H {
		padding-left: 128px
	}

	.hfui-p-r-128\@H {
		padding-right: 128px
	}

	.hfui-p-t-128\@H {
		padding-top: 128px
	}

	.hfui-p-b-128\@H {
		padding-bottom: 128px
	}
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-1-2>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 50%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-1-3>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 33.3333333333%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-2-3>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 66.6666666667%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-1-4>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 25%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-3-4>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 75%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-1-5>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 20%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-2-5>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 40%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-3-5>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 60%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-4-5>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 80%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-1-6>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 16.6666666667%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-4-6>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 66.6666666667%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-5-6>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 83.3333333333%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-1-7>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 14.2857142857%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-2-7>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 28.5714285714%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-3-7>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 42.8571428571%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-4-7>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 57.1428571429%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-5-7>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 71.4285714286%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-6-7>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 85.7142857143%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-1-8>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 12.5%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-3-8>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 37.5%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-5-8>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 62.5%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-6-8>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 75%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-7-8>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 87.5%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-1-9>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 11.1111111111%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-2-9>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 22.2222222222%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-4-9>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 44.4444444444%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-5-9>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 55.5555555556%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-6-9>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 66.6666666667%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-7-9>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 77.7777777778%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-8-9>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 88.8888888889%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-1-10>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 10%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-3-10>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 30%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-4-10>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 40%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-6-10>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 60%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-7-10>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 70%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-8-10>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 80%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-9-10>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 90%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-1-11>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 9.0909090909%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-2-11>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 18.1818181818%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-3-11>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 27.2727272727%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-4-11>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 36.3636363636%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-5-11>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 45.4545454545%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-6-11>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 54.5454545455%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-7-11>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 63.6363636364%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-8-11>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 72.7272727273%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-9-11>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 81.8181818182%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-10-11>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 90.9090909091%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-1-12>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 8.3333333333%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-5-12>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 41.6666666667%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-7-12>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 58.3333333333%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-8-12>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 66.6666666667%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-9-12>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 75%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-10-12>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 83.3333333333%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-11-12>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 91.6666666667%
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-auto>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: auto
}

.hfui-grid>.hfui-grid-row.hfui-grid-child-match>.hfui-grid-col:not([class*='hfui-grid-col-']) {
	width: 100%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col {
	width: 100%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-2 {
	width: 50%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-3 {
	width: 33.3333333333%
}

.service .hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-3 {
	width: calc(33.3333333333% - 24px)
}	

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-3 {
	width: 66.6666666667%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-4 {
	width: 25%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-4 {
	width: 75%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-5 {
	width: 20%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-5 {
	width: 40%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-5 {
	width: 60%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-5 {
	width: 80%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-6 {
	width: 16.6666666667%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-6 {
	width: 66.6666666667%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-6 {
	width: 83.3333333333%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-7 {
	width: 14.2857142857%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-7 {
	width: 28.5714285714%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-7 {
	width: 42.8571428571%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-7 {
	width: 57.1428571429%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-7 {
	width: 71.4285714286%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-7 {
	width: 85.7142857143%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-8 {
	width: 12.5%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-8 {
	width: 37.5%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-8 {
	width: 62.5%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-8 {
	width: 75%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-8 {
	width: 87.5%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-9 {
	width: 11.1111111111%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-9 {
	width: 22.2222222222%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-9 {
	width: 44.4444444444%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-9 {
	width: 55.5555555556%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-9 {
	width: 66.6666666667%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-9 {
	width: 77.7777777778%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-9 {
	width: 88.8888888889%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-10 {
	width: 10%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-10 {
	width: 30%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-10 {
	width: 40%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-10 {
	width: 60%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-10 {
	width: 70%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-10 {
	width: 80%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-10 {
	width: 90%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-11 {
	width: 9.0909090909%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-11 {
	width: 18.1818181818%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-11 {
	width: 27.2727272727%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-11 {
	width: 36.3636363636%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-11 {
	width: 45.4545454545%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-11 {
	width: 54.5454545455%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-11 {
	width: 63.6363636364%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-11 {
	width: 72.7272727273%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-11 {
	width: 81.8181818182%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-10-11 {
	width: 90.9090909091%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-12 {
	width: 8.3333333333%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-12 {
	width: 41.6666666667%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-12 {
	width: 58.3333333333%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-12 {
	width: 66.6666666667%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-12 {
	width: 75%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-10-12 {
	width: 83.3333333333%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-11-12 {
	width: 91.6666666667%
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-auto {
	width: auto
}

.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-match {
	width: 100%
}

.hfui-grid.hfui-grid-xs>.hfui-grid-row {
	margin: -8px 0 0 -8px
}

.hfui-grid.hfui-grid-xs>.hfui-grid-row>.hfui-grid-col {
	padding: 8px 0 0 8px
}

.hfui-grid.hfui-grid-sm>.hfui-grid-row {
	margin: -16px 0 0 -16px
}

.hfui-grid.hfui-grid-sm>.hfui-grid-row>.hfui-grid-col {
	padding: 16px 0 0 16px
}

.hfui-grid.hfui-grid-md>.hfui-grid-row {
	margin: -24px 0 0 -24px
}

.hfui-grid.hfui-grid-md>.hfui-grid-row>.hfui-grid-col {
	padding: 24px 0 0 24px
}

.hfui-grid.hfui-grid-lg>.hfui-grid-row {
	margin: -32px 0 0 -32px
}

.hfui-grid.hfui-grid-lg>.hfui-grid-row>.hfui-grid-col {
	padding: 32px 0 0 32px
}

.hfui-grid.hfui-grid-hr>.hfui-grid-row {
	margin: -40px 0 0 -40px
}

.hfui-grid.hfui-grid-hr>.hfui-grid-row>.hfui-grid-col {
	padding: 40px 0 0 40px
}


.hfui-grid.hfui-grid-2hr>.hfui-grid-row {
	margin: -80px 0 0 -80px
}

.hfui-grid.hfui-grid-2hr>.hfui-grid-row>.hfui-grid-col {
	padding: 80px 0 0 80px
}

.hfui-grid.hfui-grid-auto>.hfui-grid-row {
	margin: unset
}


.hfui-grid.hfui-grid-auto>.hfui-grid-row>.hfui-grid-col {
	padding: unset
}

@media only screen and (min-width: 768px) {
	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-2\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 50%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-3\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 33.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-3\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-4\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 25%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-4\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-5\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 20%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-5\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-5\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-5\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-6\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 16.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-6\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-6\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-7\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 14.2857142857%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-7\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 28.5714285714%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-7\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 42.8571428571%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-7\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 57.1428571429%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-7\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 71.4285714286%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-7\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 85.7142857143%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-8\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 12.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-8\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 37.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-8\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 62.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-8\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-8\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 87.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-9\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 11.1111111111%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-9\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 22.2222222222%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-9\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 44.4444444444%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-9\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 55.5555555556%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-9\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-9\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 77.7777777778%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-9\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 88.8888888889%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-10\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 10%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-10\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 30%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-10\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-10\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-10\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 70%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-10\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-9-10\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 90%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-11\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 9.0909090909%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-11\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 18.1818181818%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-11\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 27.2727272727%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-11\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 36.3636363636%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-11\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 45.4545454545%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-11\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 54.5454545455%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-11\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 63.6363636364%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-11\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 72.7272727273%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-9-11\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 81.8181818182%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-10-11\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 90.9090909091%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-12\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 8.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-12\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 41.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-12\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 58.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-12\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-9-12\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-10-12\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-11-12\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 91.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-auto\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: auto
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-match\@T>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 100%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-2\@T {
		width: 50%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-3\@T {
		width: 33.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-3\@T {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-4\@T {
		width: 25%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-4\@T {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-5\@T {
		width: 20%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-5\@T {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-5\@T {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-5\@T {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-6\@T {
		width: 16.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-6\@T {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-6\@T {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-7\@T {
		width: 14.2857142857%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-7\@T {
		width: 28.5714285714%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-7\@T {
		width: 42.8571428571%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-7\@T {
		width: 57.1428571429%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-7\@T {
		width: 71.4285714286%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-7\@T {
		width: 85.7142857143%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-8\@T {
		width: 12.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-8\@T {
		width: 37.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-8\@T {
		width: 62.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-8\@T {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-8\@T {
		width: 87.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-9\@T {
		width: 11.1111111111%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-9\@T {
		width: 22.2222222222%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-9\@T {
		width: 44.4444444444%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-9\@T {
		width: 55.5555555556%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-9\@T {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-9\@T {
		width: 77.7777777778%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-9\@T {
		width: 88.8888888889%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-10\@T {
		width: 10%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-10\@T {
		width: 30%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-10\@T {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-10\@T {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-10\@T {
		width: 70%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-10\@T {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-10\@T {
		width: 90%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-11\@T {
		width: 9.0909090909%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-11\@T {
		width: 18.1818181818%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-11\@T {
		width: 27.2727272727%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-11\@T {
		width: 36.3636363636%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-11\@T {
		width: 45.4545454545%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-11\@T {
		width: 54.5454545455%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-11\@T {
		width: 63.6363636364%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-11\@T {
		width: 72.7272727273%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-11\@T {
		width: 81.8181818182%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-10-11\@T {
		width: 90.9090909091%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-12\@T {
		width: 8.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-12\@T {
		width: 41.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-12\@T {
		width: 58.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-12\@T {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-12\@T {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-10-12\@T {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-11-12\@T {
		width: 91.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-auto\@T {
		width: auto
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-match\@T {
		width: 100%
	}

	.hfui-grid.hfui-grid-xs\@T>.hfui-grid-row {
		margin: -8px 0 0 -8px
	}

	.hfui-grid.hfui-grid-xs\@T>.hfui-grid-row>.hfui-grid-col {
		padding: 8px 0 0 8px
	}

	.hfui-grid.hfui-grid-sm\@T>.hfui-grid-row {
		margin: -16px 0 0 -16px
	}

	.hfui-grid.hfui-grid-sm\@T>.hfui-grid-row>.hfui-grid-col {
		padding: 16px 0 0 16px
	}

	.hfui-grid.hfui-grid-md\@T>.hfui-grid-row {
		margin: -24px 0 0 -24px
	}

	.hfui-grid.hfui-grid-md\@T>.hfui-grid-row>.hfui-grid-col {
		padding: 24px 0 0 24px
	}

	.hfui-grid.hfui-grid-lg\@T>.hfui-grid-row {
		margin: -32px 0 0 -32px
	}

	.hfui-grid.hfui-grid-lg\@T>.hfui-grid-row>.hfui-grid-col {
		padding: 32px 0 0 32px
	}

	.hfui-grid.hfui-grid-hr\@T>.hfui-grid-row {
		margin: -40px 0 0 -40px
	}

	.hfui-grid.hfui-grid-hr\@T>.hfui-grid-row>.hfui-grid-col {
		padding: 40px 0 0 40px
	}

	.hfui-grid.hfui-grid-2hr\@T>.hfui-grid-row {
		margin: -80px 0 0 -80px
	}
	
	.hfui-grid.hfui-grid-2hr\@T>.hfui-grid-row>.hfui-grid-col {
		padding: 80px 0 0 80px
	}

	.hfui-grid.hfui-grid-auto\@T>.hfui-grid-row {
		margin: unset
	}
	
	.hfui-grid.hfui-grid-auto\@T>.hfui-grid-row>.hfui-grid-col {
		padding: usnet
	}
}

@media only screen and (min-width: 1024px) {
	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-2\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 50%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-3\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 33.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-3\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-4\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 25%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-4\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-5\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 20%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-5\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-5\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-5\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-6\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 16.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-6\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-6\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-7\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 14.2857142857%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-7\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 28.5714285714%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-7\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 42.8571428571%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-7\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 57.1428571429%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-7\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 71.4285714286%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-7\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 85.7142857143%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-8\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 12.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-8\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 37.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-8\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 62.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-8\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-8\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 87.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-9\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 11.1111111111%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-9\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 22.2222222222%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-9\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 44.4444444444%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-9\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 55.5555555556%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-9\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-9\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 77.7777777778%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-9\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 88.8888888889%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-10\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 10%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-10\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 30%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-10\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-10\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-10\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 70%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-10\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-9-10\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 90%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-11\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 9.0909090909%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-11\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 18.1818181818%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-11\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 27.2727272727%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-11\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 36.3636363636%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-11\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 45.4545454545%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-11\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 54.5454545455%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-11\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 63.6363636364%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-11\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 72.7272727273%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-9-11\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 81.8181818182%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-10-11\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 90.9090909091%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-12\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 8.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-12\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 41.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-12\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 58.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-12\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-9-12\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-10-12\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-11-12\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 91.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-auto\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: auto
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-match\@S>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 100%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-2\@S {
		width: 50%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-3\@S {
		width: 33.3333333333%
	}
	
	.service .hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-3\@S {
		width: calc(33.3333333333% - 24px)
	}	

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-3\@S {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-4\@S {
		width: 25%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-4\@S {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-5\@S {
		width: 20%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-5\@S {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-5\@S {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-5\@S {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-6\@S {
		width: 16.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-6\@S {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-6\@S {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-7\@S {
		width: 14.2857142857%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-7\@S {
		width: 28.5714285714%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-7\@S {
		width: 42.8571428571%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-7\@S {
		width: 57.1428571429%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-7\@S {
		width: 71.4285714286%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-7\@S {
		width: 85.7142857143%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-8\@S {
		width: 12.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-8\@S {
		width: 37.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-8\@S {
		width: 62.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-8\@S {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-8\@S {
		width: 87.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-9\@S {
		width: 11.1111111111%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-9\@S {
		width: 22.2222222222%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-9\@S {
		width: 44.4444444444%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-9\@S {
		width: 55.5555555556%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-9\@S {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-9\@S {
		width: 77.7777777778%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-9\@S {
		width: 88.8888888889%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-10\@S {
		width: 10%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-10\@S {
		width: 30%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-10\@S {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-10\@S {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-10\@S {
		width: 70%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-10\@S {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-10\@S {
		width: 90%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-11\@S {
		width: 9.0909090909%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-11\@S {
		width: 18.1818181818%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-11\@S {
		width: 27.2727272727%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-11\@S {
		width: 36.3636363636%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-11\@S {
		width: 45.4545454545%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-11\@S {
		width: 54.5454545455%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-11\@S {
		width: 63.6363636364%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-11\@S {
		width: 72.7272727273%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-11\@S {
		width: 81.8181818182%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-10-11\@S {
		width: 90.9090909091%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-12\@S {
		width: 8.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-12\@S {
		width: 41.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-12\@S {
		width: 58.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-12\@S {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-12\@S {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-10-12\@S {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-11-12\@S {
		width: 91.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-auto\@S {
		width: auto
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-match\@S {
		width: 100%
	}

	.hfui-grid.hfui-grid-xs\@S>.hfui-grid-row {
		margin: -8px 0 0 -8px
	}

	.hfui-grid.hfui-grid-xs\@S>.hfui-grid-row>.hfui-grid-col {
		padding: 8px 0 0 8px
	}

	.hfui-grid.hfui-grid-sm\@S>.hfui-grid-row {
		margin: -16px 0 0 -16px
	}

	.hfui-grid.hfui-grid-sm\@S>.hfui-grid-row>.hfui-grid-col {
		padding: 16px 0 0 16px
	}

	.hfui-grid.hfui-grid-md\@S>.hfui-grid-row {
		margin: -24px 0 0 -24px
	}

	.hfui-grid.hfui-grid-md\@S>.hfui-grid-row>.hfui-grid-col {
		padding: 24px 0 0 24px
	}

	.hfui-grid.hfui-grid-lg\@S>.hfui-grid-row {
		margin: -32px 0 0 -32px
	}

	.hfui-grid.hfui-grid-lg\@S>.hfui-grid-row>.hfui-grid-col {
		padding: 32px 0 0 32px
	}

	.hfui-grid.hfui-grid-hr\@S>.hfui-grid-row {
		margin: -40px 0 0 -40px
	}

	.hfui-grid.hfui-grid-hr\@S>.hfui-grid-row>.hfui-grid-col {
		padding: 40px 0 0 40px
	}

	.hfui-grid.hfui-grid-2hr\@S>.hfui-grid-row {
		margin: -80px 0 0 -80px
	}
	
	.hfui-grid.hfui-grid-2hr\@S>.hfui-grid-row>.hfui-grid-col {
		padding: 80px 0 0 80px
	}

	.hfui-grid.hfui-grid-auto\@S>.hfui-grid-row {
		margin: usnet
	}
	

	.hfui-grid.hfui-grid-auto\@S>.hfui-grid-row>.hfui-grid-col {
		padding: unset
	}	
}

@media only screen and (min-width: 1280px) {
	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-2\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 50%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-3\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 33.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-3\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-4\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 25%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-4\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-5\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 20%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-5\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-5\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-5\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-6\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 16.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-6\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-6\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-7\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 14.2857142857%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-7\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 28.5714285714%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-7\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 42.8571428571%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-7\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 57.1428571429%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-7\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 71.4285714286%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-7\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 85.7142857143%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-8\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 12.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-8\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 37.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-8\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 62.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-8\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-8\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 87.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-9\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 11.1111111111%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-9\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 22.2222222222%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-9\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 44.4444444444%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-9\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 55.5555555556%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-9\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-9\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 77.7777777778%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-9\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 88.8888888889%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-10\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 10%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-10\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 30%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-10\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-10\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-10\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 70%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-10\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-9-10\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 90%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-11\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 9.0909090909%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-11\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 18.1818181818%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-11\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 27.2727272727%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-11\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 36.3636363636%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-11\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 45.4545454545%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-11\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 54.5454545455%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-11\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 63.6363636364%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-11\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 72.7272727273%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-9-11\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 81.8181818182%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-10-11\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 90.9090909091%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-12\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 8.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-12\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 41.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-12\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 58.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-12\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-9-12\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-10-12\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-11-12\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 91.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-auto\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: auto
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-match\@M>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 100%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-2\@M {
		width: 50%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-3\@M {
		width: 33.3333333333%
	}
	
	.service .hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-3\@M {
		width: calc(33.3333333333% - 24px)
	}		

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-3\@M {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-4\@M {
		width: 25%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-4\@M {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-5\@M {
		width: 20%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-5\@M {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-5\@M {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-5\@M {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-6\@M {
		width: 16.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-6\@M {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-6\@M {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-7\@M {
		width: 14.2857142857%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-7\@M {
		width: 28.5714285714%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-7\@M {
		width: 42.8571428571%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-7\@M {
		width: 57.1428571429%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-7\@M {
		width: 71.4285714286%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-7\@M {
		width: 85.7142857143%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-8\@M {
		width: 12.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-8\@M {
		width: 37.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-8\@M {
		width: 62.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-8\@M {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-8\@M {
		width: 87.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-9\@M {
		width: 11.1111111111%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-9\@M {
		width: 22.2222222222%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-9\@M {
		width: 44.4444444444%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-9\@M {
		width: 55.5555555556%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-9\@M {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-9\@M {
		width: 77.7777777778%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-9\@M {
		width: 88.8888888889%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-10\@M {
		width: 10%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-10\@M {
		width: 30%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-10\@M {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-10\@M {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-10\@M {
		width: 70%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-10\@M {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-10\@M {
		width: 90%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-11\@M {
		width: 9.0909090909%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-11\@M {
		width: 18.1818181818%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-11\@M {
		width: 27.2727272727%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-11\@M {
		width: 36.3636363636%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-11\@M {
		width: 45.4545454545%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-11\@M {
		width: 54.5454545455%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-11\@M {
		width: 63.6363636364%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-11\@M {
		width: 72.7272727273%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-11\@M {
		width: 81.8181818182%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-10-11\@M {
		width: 90.9090909091%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-12\@M {
		width: 8.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-12\@M {
		width: 41.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-12\@M {
		width: 58.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-12\@M {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-12\@M {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-10-12\@M {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-11-12\@M {
		width: 91.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-auto\@M {
		width: auto
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-match\@M {
		width: 100%
	}

	.hfui-grid.hfui-grid-xs\@M>.hfui-grid-row {
		margin: -8px 0 0 -8px
	}

	.hfui-grid.hfui-grid-xs\@M>.hfui-grid-row>.hfui-grid-col {
		padding: 8px 0 0 8px
	}

	.hfui-grid.hfui-grid-sm\@M>.hfui-grid-row {
		margin: -16px 0 0 -16px
	}

	.hfui-grid.hfui-grid-sm\@M>.hfui-grid-row>.hfui-grid-col {
		padding: 16px 0 0 16px
	}

	.hfui-grid.hfui-grid-md\@M>.hfui-grid-row {
		margin: -24px 0 0 -24px
	}

	.hfui-grid.hfui-grid-md\@M>.hfui-grid-row>.hfui-grid-col {
		padding: 24px 0 0 24px
	}

	.hfui-grid.hfui-grid-lg\@M>.hfui-grid-row {
		margin: -32px 0 0 -32px
	}

	.hfui-grid.hfui-grid-lg\@M>.hfui-grid-row>.hfui-grid-col {
		padding: 32px 0 0 32px
	}

	.hfui-grid.hfui-grid-hr\@M>.hfui-grid-row {
		margin: -40px 0 0 -40px
	}

	.hfui-grid.hfui-grid-hr\@M>.hfui-grid-row>.hfui-grid-col {
		padding: 40px 0 0 40px
	}

	.hfui-grid.hfui-grid-2hr\@M>.hfui-grid-row {
		margin: -80px 0 0 -80px
	}
	
	.hfui-grid.hfui-grid-2hr\@M>.hfui-grid-row>.hfui-grid-col {
		padding: 80px 0 0 80px
	}

	.hfui-grid.hfui-grid-auto\@M>.hfui-grid-row {
		margin: unset
	}
	

	.hfui-grid.hfui-grid-auto\@M>.hfui-grid-row>.hfui-grid-col {
		padding: unset
	}	
}

@media only screen and (min-width: 1600px) {
	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-2\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 50%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-3\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 33.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-3\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-4\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 25%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-4\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-5\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 20%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-5\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-5\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-5\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-6\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 16.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-6\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-6\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-7\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 14.2857142857%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-7\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 28.5714285714%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-7\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 42.8571428571%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-7\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 57.1428571429%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-7\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 71.4285714286%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-7\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 85.7142857143%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-8\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 12.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-8\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 37.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-8\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 62.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-8\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-8\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 87.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-9\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 11.1111111111%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-9\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 22.2222222222%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-9\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 44.4444444444%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-9\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 55.5555555556%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-9\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-9\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 77.7777777778%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-9\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 88.8888888889%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-10\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 10%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-10\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 30%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-10\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-10\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-10\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 70%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-10\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-9-10\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 90%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-11\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 9.0909090909%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-11\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 18.1818181818%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-11\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 27.2727272727%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-11\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 36.3636363636%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-11\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 45.4545454545%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-11\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 54.5454545455%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-11\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 63.6363636364%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-11\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 72.7272727273%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-9-11\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 81.8181818182%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-10-11\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 90.9090909091%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-12\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 8.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-12\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 41.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-12\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 58.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-12\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-9-12\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-10-12\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-11-12\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 91.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-auto\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: auto
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-match\@L>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 100%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-2\@L {
		width: 50%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-3\@L {
		width: 33.3333333333%
	}
	
	.service .hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-3\@L {
		width: calc(33.3333333333% - 24px)
	}		

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-3\@L {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-4\@L {
		width: 25%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-4\@L {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-5\@L {
		width: 20%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-5\@L {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-5\@L {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-5\@L {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-6\@L {
		width: 16.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-6\@L {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-6\@L {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-7\@L {
		width: 14.2857142857%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-7\@L {
		width: 28.5714285714%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-7\@L {
		width: 42.8571428571%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-7\@L {
		width: 57.1428571429%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-7\@L {
		width: 71.4285714286%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-7\@L {
		width: 85.7142857143%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-8\@L {
		width: 12.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-8\@L {
		width: 37.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-8\@L {
		width: 62.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-8\@L {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-8\@L {
		width: 87.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-9\@L {
		width: 11.1111111111%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-9\@L {
		width: 22.2222222222%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-9\@L {
		width: 44.4444444444%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-9\@L {
		width: 55.5555555556%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-9\@L {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-9\@L {
		width: 77.7777777778%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-9\@L {
		width: 88.8888888889%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-10\@L {
		width: 10%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-10\@L {
		width: 30%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-10\@L {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-10\@L {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-10\@L {
		width: 70%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-10\@L {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-10\@L {
		width: 90%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-11\@L {
		width: 9.0909090909%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-11\@L {
		width: 18.1818181818%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-11\@L {
		width: 27.2727272727%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-11\@L {
		width: 36.3636363636%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-11\@L {
		width: 45.4545454545%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-11\@L {
		width: 54.5454545455%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-11\@L {
		width: 63.6363636364%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-11\@L {
		width: 72.7272727273%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-11\@L {
		width: 81.8181818182%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-10-11\@L {
		width: 90.9090909091%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-12\@L {
		width: 8.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-12\@L {
		width: 41.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-12\@L {
		width: 58.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-12\@L {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-12\@L {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-10-12\@L {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-11-12\@L {
		width: 91.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-auto\@L {
		width: auto
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-match\@L {
		width: 100%
	}

	.hfui-grid.hfui-grid-xs\@L>.hfui-grid-row {
		margin: -8px 0 0 -8px
	}

	.hfui-grid.hfui-grid-xs\@L>.hfui-grid-row>.hfui-grid-col {
		padding: 8px 0 0 8px
	}

	.hfui-grid.hfui-grid-sm\@L>.hfui-grid-row {
		margin: -16px 0 0 -16px
	}

	.hfui-grid.hfui-grid-sm\@L>.hfui-grid-row>.hfui-grid-col {
		padding: 16px 0 0 16px
	}

	.hfui-grid.hfui-grid-md\@L>.hfui-grid-row {
		margin: -24px 0 0 -24px
	}

	.hfui-grid.hfui-grid-md\@L>.hfui-grid-row>.hfui-grid-col {
		padding: 24px 0 0 24px
	}

	.hfui-grid.hfui-grid-lg\@L>.hfui-grid-row {
		margin: -32px 0 0 -32px
	}

	.hfui-grid.hfui-grid-lg\@L>.hfui-grid-row>.hfui-grid-col {
		padding: 32px 0 0 32px
	}

	.hfui-grid.hfui-grid-hr\@L>.hfui-grid-row {
		margin: -40px 0 0 -40px
	}

	.hfui-grid.hfui-grid-hr\@L>.hfui-grid-row>.hfui-grid-col {
		padding: 40px 0 0 40px
	}

	.hfui-grid.hfui-grid-2hr\@L>.hfui-grid-row {
		margin: -80px 0 0 -80px
	}
	
	.hfui-grid.hfui-grid-2hr\@L>.hfui-grid-row>.hfui-grid-col {
		padding: 80px 0 0 80px
	}

	.hfui-grid.hfui-grid-auto\@L>.hfui-grid-row {
		margin: unset
	}
	

	.hfui-grid.hfui-grid-auto\@L>.hfui-grid-row>.hfui-grid-col {
		padding: unset
	}	
}

@media only screen and (min-width: 1920px) {
	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-2\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 50%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-3\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 33.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-3\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-4\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 25%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-4\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-5\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 20%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-5\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-5\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-5\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-6\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 16.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-6\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-6\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-7\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 14.2857142857%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-7\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 28.5714285714%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-7\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 42.8571428571%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-7\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 57.1428571429%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-7\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 71.4285714286%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-7\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 85.7142857143%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-8\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 12.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-8\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 37.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-8\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 62.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-8\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-8\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 87.5%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-9\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 11.1111111111%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-9\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 22.2222222222%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-9\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 44.4444444444%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-9\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 55.5555555556%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-9\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-9\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 77.7777777778%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-9\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 88.8888888889%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-10\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 10%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-10\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 30%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-10\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-10\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-10\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 70%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-10\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-9-10\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 90%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-11\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 9.0909090909%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-2-11\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 18.1818181818%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-3-11\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 27.2727272727%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-4-11\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 36.3636363636%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-11\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 45.4545454545%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-6-11\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 54.5454545455%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-11\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 63.6363636364%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-11\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 72.7272727273%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-9-11\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 81.8181818182%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-10-11\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 90.9090909091%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-1-12\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 8.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-5-12\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 41.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-7-12\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 58.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-8-12\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-9-12\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-10-12\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-11-12\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 91.6666666667%
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-auto\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: auto
	}

	.hfui-grid>.hfui-grid-row.hfui-grid-child-match\@H>.hfui-grid-col:not([class*='hfui-grid-col-']) {
		width: 100%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-2\@H {
		width: 50%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-3\@H {
		width: 33.3333333333%
	}
	
	.service .hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-3\@H {
		width: calc(33.3333333333% - 24px)
	}		

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-3\@H {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-4\@H {
		width: 25%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-4\@H {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-5\@H {
		width: 20%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-5\@H {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-5\@H {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-5\@H {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-6\@H {
		width: 16.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-6\@H {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-6\@H {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-7\@H {
		width: 14.2857142857%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-7\@H {
		width: 28.5714285714%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-7\@H {
		width: 42.8571428571%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-7\@H {
		width: 57.1428571429%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-7\@H {
		width: 71.4285714286%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-7\@H {
		width: 85.7142857143%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-8\@H {
		width: 12.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-8\@H {
		width: 37.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-8\@H {
		width: 62.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-8\@H {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-8\@H {
		width: 87.5%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-9\@H {
		width: 11.1111111111%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-9\@H {
		width: 22.2222222222%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-9\@H {
		width: 44.4444444444%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-9\@H {
		width: 55.5555555556%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-9\@H {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-9\@H {
		width: 77.7777777778%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-9\@H {
		width: 88.8888888889%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-10\@H {
		width: 10%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-10\@H {
		width: 30%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-10\@H {
		width: 40%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-10\@H {
		width: 60%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-10\@H {
		width: 70%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-10\@H {
		width: 80%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-10\@H {
		width: 90%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-11\@H {
		width: 9.0909090909%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-2-11\@H {
		width: 18.1818181818%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-3-11\@H {
		width: 27.2727272727%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-4-11\@H {
		width: 36.3636363636%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-11\@H {
		width: 45.4545454545%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-6-11\@H {
		width: 54.5454545455%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-11\@H {
		width: 63.6363636364%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-11\@H {
		width: 72.7272727273%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-11\@H {
		width: 81.8181818182%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-10-11\@H {
		width: 90.9090909091%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-1-12\@H {
		width: 8.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-5-12\@H {
		width: 41.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-7-12\@H {
		width: 58.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-8-12\@H {
		width: 66.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-9-12\@H {
		width: 75%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-10-12\@H {
		width: 83.3333333333%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-11-12\@H {
		width: 91.6666666667%
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-auto\@H {
		width: auto
	}

	.hfui-grid>.hfui-grid-row>.hfui-grid-col.hfui-grid-col-match\@H {
		width: 100%
	}

	.hfui-grid.hfui-grid-xs\@H>.hfui-grid-row {
		margin: -8px 0 0 -8px
	}

	.hfui-grid.hfui-grid-xs\@H>.hfui-grid-row>.hfui-grid-col {
		padding: 8px 0 0 8px
	}

	.hfui-grid.hfui-grid-sm\@H>.hfui-grid-row {
		margin: -16px 0 0 -16px
	}

	.hfui-grid.hfui-grid-sm\@H>.hfui-grid-row>.hfui-grid-col {
		padding: 16px 0 0 16px
	}

	.hfui-grid.hfui-grid-md\@H>.hfui-grid-row {
		margin: -24px 0 0 -24px
	}

	.hfui-grid.hfui-grid-md\@H>.hfui-grid-row>.hfui-grid-col {
		padding: 24px 0 0 24px
	}

	.hfui-grid.hfui-grid-lg\@H>.hfui-grid-row {
		margin: -32px 0 0 -32px
	}

	.hfui-grid.hfui-grid-lg\@H>.hfui-grid-row>.hfui-grid-col {
		padding: 32px 0 0 32px
	}

	.hfui-grid.hfui-grid-hr\@H>.hfui-grid-row {
		margin: -40px 0 0 -40px
	}

	.hfui-grid.hfui-grid-hr\@H>.hfui-grid-row>.hfui-grid-col {
		padding: 40px 0 0 40px
	}

	.hfui-grid.hfui-grid-2hr\@H>.hfui-grid-row {
		margin: -80px 0 0 -80px
	}
	
	.hfui-grid.hfui-grid-2hr\@H>.hfui-grid-row>.hfui-grid-col {
		padding: 80px 0 0 80px
	}

	.hfui-grid.hfui-grid-auto\@H>.hfui-grid-row {
		margin: unset
	}
	

	.hfui-grid.hfui-grid-auto\@H>.hfui-grid-row>.hfui-grid-col {
		padding: unset
	}	
}

.hfui-flex.hfui-flex-column {
	-webkit-flex-direction: column;
	flex-direction: column
}

.hfui-flex.hfui-flex-wrap {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap
}

.hfui-flex.hfui-flex-nowrap {
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap
}

.hfui-flex.hfui-flex-middle {
	-webkit-align-items: "center";
	align-items: center
}

.hfui-flex.hfui-flex-between {
	-webkit-justify-content: space-between;
	justify-content: space-between
}

.hfui-flex.hfui-flex-center {
	-webkit-justify-content: center;
	justify-content: center
}

.hfui-flex.hfui-flex-right {
	-webkit-justify-content: flex-end;
	justify-content: flex-end
}


.hfui-flex.hfui-flex-end {
    -webkit-flex-align: end !important;
    align-items: flex-end !important;
}

.hfui-flex.hfui-flex-row-reverse {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse
}

.hfui-flex.hfui-flex-col-reverse {
	-webkit-flex-direction: column-reverse;
	flex-direction: column-reverse
}

.hfui-flex>.hfui-flex-order-1 {
	order: -1
}

.hfui-flex>.hfui-flex-order-2 {
	order: -2
}

.hfui-flex>.hfui-flex-order-3 {
	order: -3
}

.hfui-flex>.hfui-flex-order-4 {
	order: -4
}

.hfui-flex>.hfui-flex-order-5 {
	order: -5
}

.hfui-flex>.hfui-flex-order-6 {
	order: -6
}

.hfui-flex>.hfui-flex-order-7 {
	order: -7
}

.hfui-flex>.hfui-flex-order-8 {
	order: -8
}

.hfui-flex>.hfui-flex-order-9 {
	order: -9
}

.hfui-flex>.hfui-flex-order-10 {
	order: -10
}

.hfui-flex>.hfui-flex-order-11 {
	order: -11
}

.hfui-flex>.hfui-flex-order-12 {
	order: -12
}

@media only screen and (min-width: 768px) {
	.hfui-flex>.hfui-flex-auto\@T {
		-webkit-flex: auto;
		flex: auto
	}

	.hfui-flex>.hfui-flex-none\@T {
		-webkit-flex: none;
		flex: none
	}

	.hfui-flex.hfui-flex-column\@T {
		-webkit-flex-direction: column;
		flex-direction: column
	}

	.hfui-flex.hfui-flex-wrap\@T {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.hfui-flex.hfui-flex-nowrap\@T {
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap
	}

	.hfui-flex.hfui-flex-middle\@T {
		-webkit-align-items: "center";
		align-items: center
	}

	.hfui-flex.hfui-flex-between\@T {
		-webkit-justify-content: space-between;
		justify-content: space-between
	}

	.hfui-flex.hfui-flex-center\@T {
		-webkit-justify-content: center;
		justify-content: center
	}

	.hfui-flex.hfui-flex-right\@T {
		-webkit-justify-content: flex-end;
		justify-content: flex-end
	}

	.hfui-flex.hfui-flex-row-reverse\@T {
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse
	}

	.hfui-flex.hfui-flex-col-reverse\@T {
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse
	}

	.hfui-flex>.hfui-flex-order-1\@T {
		order: -1
	}

	.hfui-flex>.hfui-flex-order-2\@T {
		order: -2
	}

	.hfui-flex>.hfui-flex-order-3\@T {
		order: -3
	}

	.hfui-flex>.hfui-flex-order-4\@T {
		order: -4
	}

	.hfui-flex>.hfui-flex-order-5\@T {
		order: -5
	}

	.hfui-flex>.hfui-flex-order-6\@T {
		order: -6
	}

	.hfui-flex>.hfui-flex-order-7\@T {
		order: -7
	}

	.hfui-flex>.hfui-flex-order-8\@T {
		order: -8
	}

	.hfui-flex>.hfui-flex-order-9\@T {
		order: -9
	}

	.hfui-flex>.hfui-flex-order-10\@T {
		order: -10
	}

	.hfui-flex>.hfui-flex-order-11\@T {
		order: -11
	}

	.hfui-flex>.hfui-flex-order-12\@T {
		order: -12
	}
}

@media only screen and (min-width: 1024px) {
	.hfui-flex>.hfui-flex-auto\@S {
		-webkit-flex: auto;
		flex: auto
	}

	.hfui-flex>.hfui-flex-none\@S {
		-webkit-flex: none;
		flex: none
	}

	.hfui-flex.hfui-flex-column\@S {
		-webkit-flex-direction: column;
		flex-direction: column
	}

	.hfui-flex.hfui-flex-wrap\@S {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.hfui-flex.hfui-flex-nowrap\@S {
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap
	}

	.hfui-flex.hfui-flex-middle\@S {
		-webkit-align-items: "center";
		align-items: center
	}

	.hfui-flex.hfui-flex-between\@S {
		-webkit-justify-content: space-between;
		justify-content: space-between
	}

	.hfui-flex.hfui-flex-center\@S {
		-webkit-justify-content: center;
		justify-content: center
	}

	.hfui-flex.hfui-flex-right\@S {
		-webkit-justify-content: flex-end;
		justify-content: flex-end
	}

	.hfui-flex.hfui-flex-row-reverse\@S {
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse
	}

	.hfui-flex.hfui-flex-col-reverse\@S {
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse
	}

	.hfui-flex>.hfui-flex-order-1\@S {
		order: -1
	}

	.hfui-flex>.hfui-flex-order-2\@S {
		order: -2
	}

	.hfui-flex>.hfui-flex-order-3\@S {
		order: -3
	}

	.hfui-flex>.hfui-flex-order-4\@S {
		order: -4
	}

	.hfui-flex>.hfui-flex-order-5\@S {
		order: -5
	}

	.hfui-flex>.hfui-flex-order-6\@S {
		order: -6
	}

	.hfui-flex>.hfui-flex-order-7\@S {
		order: -7
	}

	.hfui-flex>.hfui-flex-order-8\@S {
		order: -8
	}

	.hfui-flex>.hfui-flex-order-9\@S {
		order: -9
	}

	.hfui-flex>.hfui-flex-order-10\@S {
		order: -10
	}

	.hfui-flex>.hfui-flex-order-11\@S {
		order: -11
	}

	.hfui-flex>.hfui-flex-order-12\@S {
		order: -12
	}
}

@media only screen and (min-width: 1280px) {
	.hfui-flex>.hfui-flex-auto\@M {
		-webkit-flex: auto;
		flex: auto
	}

	.hfui-flex>.hfui-flex-none\@M {
		-webkit-flex: none;
		flex: none
	}

	.hfui-flex.hfui-flex-column\@M {
		-webkit-flex-direction: column;
		flex-direction: column
	}

	.hfui-flex.hfui-flex-wrap\@M {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.hfui-flex.hfui-flex-nowrap\@M {
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap
	}

	.hfui-flex.hfui-flex-middle\@M {
		-webkit-align-items: "center";
		align-items: center
	}

	.hfui-flex.hfui-flex-between\@M {
		-webkit-justify-content: space-between;
		justify-content: space-between
	}

	.hfui-flex.hfui-flex-center\@M {
		-webkit-justify-content: center;
		justify-content: center
	}

	.hfui-flex.hfui-flex-right\@M {
		-webkit-justify-content: flex-end;
		justify-content: flex-end
	}

	.hfui-flex.hfui-flex-row-reverse\@M {
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse
	}

	.hfui-flex.hfui-flex-col-reverse\@M {
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse
	}

	.hfui-flex>.hfui-flex-order-1\@M {
		order: -1
	}

	.hfui-flex>.hfui-flex-order-2\@M {
		order: -2
	}

	.hfui-flex>.hfui-flex-order-3\@M {
		order: -3
	}

	.hfui-flex>.hfui-flex-order-4\@M {
		order: -4
	}

	.hfui-flex>.hfui-flex-order-5\@M {
		order: -5
	}

	.hfui-flex>.hfui-flex-order-6\@M {
		order: -6
	}

	.hfui-flex>.hfui-flex-order-7\@M {
		order: -7
	}

	.hfui-flex>.hfui-flex-order-8\@M {
		order: -8
	}

	.hfui-flex>.hfui-flex-order-9\@M {
		order: -9
	}

	.hfui-flex>.hfui-flex-order-10\@M {
		order: -10
	}

	.hfui-flex>.hfui-flex-order-11\@M {
		order: -11
	}

	.hfui-flex>.hfui-flex-order-12\@M {
		order: -12
	}
}

@media only screen and (min-width: 1600px) {
	.hfui-flex>.hfui-flex-auto\@L {
		-webkit-flex: auto;
		flex: auto
	}

	.hfui-flex>.hfui-flex-none\@L {
		-webkit-flex: none;
		flex: none
	}

	.hfui-flex.hfui-flex-column\@L {
		-webkit-flex-direction: column;
		flex-direction: column
	}

	.hfui-flex.hfui-flex-wrap\@L {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.hfui-flex.hfui-flex-nowrap\@L {
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap
	}

	.hfui-flex.hfui-flex-middle\@L {
		-webkit-align-items: "center";
		align-items: center
	}

	.hfui-flex.hfui-flex-between\@L {
		-webkit-justify-content: space-between;
		justify-content: space-between
	}

	.hfui-flex.hfui-flex-center\@L {
		-webkit-justify-content: center;
		justify-content: center
	}

	.hfui-flex.hfui-flex-right\@L {
		-webkit-justify-content: flex-end;
		justify-content: flex-end
	}

	.hfui-flex.hfui-flex-row-reverse\@L {
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse
	}

	.hfui-flex.hfui-flex-col-reverse\@L {
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse
	}

	.hfui-flex>.hfui-flex-order-1\@L {
		order: -1
	}

	.hfui-flex>.hfui-flex-order-2\@L {
		order: -2
	}

	.hfui-flex>.hfui-flex-order-3\@L {
		order: -3
	}

	.hfui-flex>.hfui-flex-order-4\@L {
		order: -4
	}

	.hfui-flex>.hfui-flex-order-5\@L {
		order: -5
	}

	.hfui-flex>.hfui-flex-order-6\@L {
		order: -6
	}

	.hfui-flex>.hfui-flex-order-7\@L {
		order: -7
	}

	.hfui-flex>.hfui-flex-order-8\@L {
		order: -8
	}

	.hfui-flex>.hfui-flex-order-9\@L {
		order: -9
	}

	.hfui-flex>.hfui-flex-order-10\@L {
		order: -10
	}

	.hfui-flex>.hfui-flex-order-11\@L {
		order: -11
	}

	.hfui-flex>.hfui-flex-order-12\@L {
		order: -12
	}
}

@media only screen and (min-width: 1920px) {
	.hfui-flex>.hfui-flex-auto\@H {
		-webkit-flex: auto;
		flex: auto
	}

	.hfui-flex>.hfui-flex-none\@H {
		-webkit-flex: none;
		flex: none
	}

	.hfui-flex.hfui-flex-column\@H {
		-webkit-flex-direction: column;
		flex-direction: column
	}

	.hfui-flex.hfui-flex-wrap\@H {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.hfui-flex.hfui-flex-nowrap\@H {
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap
	}

	.hfui-flex.hfui-flex-middle\@H {
		-webkit-align-items: "center";
		align-items: center
	}

	.hfui-flex.hfui-flex-between\@H {
		-webkit-justify-content: space-between;
		justify-content: space-between
	}

	.hfui-flex.hfui-flex-center\@H {
		-webkit-justify-content: center;
		justify-content: center
	}

	.hfui-flex.hfui-flex-right\@H {
		-webkit-justify-content: flex-end;
		justify-content: flex-end
	}

	.hfui-flex.hfui-flex-row-reverse\@H {
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse
	}

	.hfui-flex.hfui-flex-col-reverse\@H {
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse
	}

	.hfui-flex>.hfui-flex-order-1\@H {
		order: -1
	}

	.hfui-flex>.hfui-flex-order-2\@H {
		order: -2
	}

	.hfui-flex>.hfui-flex-order-3\@H {
		order: -3
	}

	.hfui-flex>.hfui-flex-order-4\@H {
		order: -4
	}

	.hfui-flex>.hfui-flex-order-5\@H {
		order: -5
	}

	.hfui-flex>.hfui-flex-order-6\@H {
		order: -6
	}

	.hfui-flex>.hfui-flex-order-7\@H {
		order: -7
	}

	.hfui-flex>.hfui-flex-order-8\@H {
		order: -8
	}

	.hfui-flex>.hfui-flex-order-9\@H {
		order: -9
	}

	.hfui-flex>.hfui-flex-order-10\@H {
		order: -10
	}

	.hfui-flex>.hfui-flex-order-11\@H {
		order: -11
	}

	.hfui-flex>.hfui-flex-order-12\@H {
		order: -12
	}
}

.hfui-media {
	position: relative;
	width: 100%;
	font-size: 0;
	overflow: hidden;
	background-color: #e6e6e6
}

.hfui-media.hfui-media-1-1 {
	height: 0;
	padding-bottom: 100%
}

.hfui-media.hfui-media-1-1 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-1-2 {
	height: 0;
	padding-bottom: 200%
}

.hfui-media.hfui-media-1-2 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-1-4 {
	height: 0;
	padding-bottom: 400%
}

.hfui-media.hfui-media-1-4 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-1-5 {
	height: 0;
	padding-bottom: 500%
}

.hfui-media.hfui-media-1-5 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-1-6 {
	height: 0;
	padding-bottom: 600%
}

.hfui-media.hfui-media-1-6 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-2-1 {
	height: 0;
	padding-bottom: 50%
}

.hfui-media.hfui-media-2-1 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-2-3 {
	height: 0;
	padding-bottom: 150%
}

.hfui-media.hfui-media-2-3 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-2-5 {
	height: 0;
	padding-bottom: 250%
}

.hfui-media.hfui-media-2-5 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-3-1 {
	height: 0;
	padding-bottom: 33.3333333333%
}

.hfui-media.hfui-media-3-1 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-3-2 {
	height: 0;
	padding-bottom: 66.6666666667%
}

.hfui-media.hfui-media-3-2 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-3-4 {
	height: 0;
	padding-bottom: 133.3333333333%
}

.hfui-media.hfui-media-3-4 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-3-5 {
	height: 0;
	padding-bottom: 166.6666666667%
}

.hfui-media.hfui-media-3-5 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-4-1 {
	height: 0;
	padding-bottom: 25%
}

.hfui-media.hfui-media-4-1 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-4-3 {
	height: 0;
	padding-bottom: 75%
}

.hfui-media.hfui-media-4-3 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-4-5 {
	height: 0;
	padding-bottom: 125%
}

.hfui-media.hfui-media-4-5 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-5-1 {
	height: 0;
	padding-bottom: 20%
}

.hfui-media.hfui-media-5-1 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-5-2 {
	height: 0;
	padding-bottom: 40%
}

.hfui-media.hfui-media-5-2 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-5-3 {
	height: 0;
	padding-bottom: 60%
}

.hfui-media.hfui-media-5-3 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-5-4 {
	height: 0;
	padding-bottom: 80%
}

.hfui-media.hfui-media-5-4 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-5-6 {
	height: 0;
	padding-bottom: 120%
}

.hfui-media.hfui-media-5-6 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-6-1 {
	height: 0;
	padding-bottom: 16.6666666667%
}

.hfui-media.hfui-media-6-1 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-6-5 {
	height: 0;
	padding-bottom: 83.3333333333%
}

.hfui-media.hfui-media-6-5 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-9-16 {
	height: 0;
	padding-bottom: 177.7777777778%
}

.hfui-media.hfui-media-9-16 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

.hfui-media.hfui-media-16-9 {
	height: 0;
	padding-bottom: 56.25%
}

.hfui-media.hfui-media-16-9 .hfui-media-wrap {
	position: absolute;
	height: 100%
}

@media only screen and (min-width: 768px) {
	.hfui-media.hfui-media-1-1\@T {
		height: 0;
		padding-bottom: 100%
	}

	.hfui-media.hfui-media-1-1\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-2\@T {
		height: 0;
		padding-bottom: 200%
	}

	.hfui-media.hfui-media-1-2\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-4\@T {
		height: 0;
		padding-bottom: 400%
	}

	.hfui-media.hfui-media-1-4\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-5\@T {
		height: 0;
		padding-bottom: 500%
	}

	.hfui-media.hfui-media-1-5\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-6\@T {
		height: 0;
		padding-bottom: 600%
	}

	.hfui-media.hfui-media-1-6\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-2-1\@T {
		height: 0;
		padding-bottom: 50%
	}

	.hfui-media.hfui-media-2-1\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-2-3\@T {
		height: 0;
		padding-bottom: 150%
	}

	.hfui-media.hfui-media-2-3\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-2-5\@T {
		height: 0;
		padding-bottom: 250%
	}

	.hfui-media.hfui-media-2-5\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-1\@T {
		height: 0;
		padding-bottom: 33.3333333333%
	}

	.hfui-media.hfui-media-3-1\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-2\@T {
		height: 0;
		padding-bottom: 66.6666666667%
	}

	.hfui-media.hfui-media-3-2\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-4\@T {
		height: 0;
		padding-bottom: 133.3333333333%
	}

	.hfui-media.hfui-media-3-4\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-5\@T {
		height: 0;
		padding-bottom: 166.6666666667%
	}

	.hfui-media.hfui-media-3-5\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-4-1\@T {
		height: 0;
		padding-bottom: 25%
	}

	.hfui-media.hfui-media-4-1\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-4-3\@T {
		height: 0;
		padding-bottom: 75%
	}

	.hfui-media.hfui-media-4-3\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-4-5\@T {
		height: 0;
		padding-bottom: 125%
	}

	.hfui-media.hfui-media-4-5\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-1\@T {
		height: 0;
		padding-bottom: 20%
	}

	.hfui-media.hfui-media-5-1\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-2\@T {
		height: 0;
		padding-bottom: 40%
	}

	.hfui-media.hfui-media-5-2\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-3\@T {
		height: 0;
		padding-bottom: 60%
	}

	.hfui-media.hfui-media-5-3\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-4\@T {
		height: 0;
		padding-bottom: 80%
	}

	.hfui-media.hfui-media-5-4\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-6\@T {
		height: 0;
		padding-bottom: 120%
	}

	.hfui-media.hfui-media-5-6\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-6-1\@T {
		height: 0;
		padding-bottom: 16.6666666667%
	}

	.hfui-media.hfui-media-6-1\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-6-5\@T {
		height: 0;
		padding-bottom: 83.3333333333%
	}

	.hfui-media.hfui-media-6-5\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-9-16\@T {
		height: 0;
		padding-bottom: 177.7777777778%
	}

	.hfui-media.hfui-media-9-16\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-16-9\@T {
		height: 0;
		padding-bottom: 56.25%
	}

	.hfui-media.hfui-media-16-9\@T .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@T {
		padding-bottom: 0;
		height: 100%
	}
}

@media only screen and (min-width: 1024px) {
	.hfui-media.hfui-media-1-1\@S {
		height: 0;
		padding-bottom: 100%
	}

	.hfui-media.hfui-media-1-1\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-2\@S {
		height: 0;
		padding-bottom: 200%
	}

	.hfui-media.hfui-media-1-2\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-4\@S {
		height: 0;
		padding-bottom: 400%
	}

	.hfui-media.hfui-media-1-4\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-5\@S {
		height: 0;
		padding-bottom: 500%
	}

	.hfui-media.hfui-media-1-5\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-6\@S {
		height: 0;
		padding-bottom: 600%
	}

	.hfui-media.hfui-media-1-6\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-2-1\@S {
		height: 0;
		padding-bottom: 50%
	}

	.hfui-media.hfui-media-2-1\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-2-3\@S {
		height: 0;
		padding-bottom: 150%
	}

	.hfui-media.hfui-media-2-3\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-2-5\@S {
		height: 0;
		padding-bottom: 250%
	}

	.hfui-media.hfui-media-2-5\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-1\@S {
		height: 0;
		padding-bottom: 33.3333333333%
	}

	.hfui-media.hfui-media-3-1\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-2\@S {
		height: 0;
		padding-bottom: 66.6666666667%
	}

	.hfui-media.hfui-media-3-2\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-4\@S {
		height: 0;
		padding-bottom: 133.3333333333%
	}

	.hfui-media.hfui-media-3-4\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-5\@S {
		height: 0;
		padding-bottom: 166.6666666667%
	}

	.hfui-media.hfui-media-3-5\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-4-1\@S {
		height: 0;
		padding-bottom: 25%
	}

	.hfui-media.hfui-media-4-1\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-4-3\@S {
		height: 0;
		padding-bottom: 75%
	}

	.hfui-media.hfui-media-4-3\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-4-5\@S {
		height: 0;
		padding-bottom: 125%
	}

	.hfui-media.hfui-media-4-5\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-1\@S {
		height: 0;
		padding-bottom: 20%
	}

	.hfui-media.hfui-media-5-1\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-2\@S {
		height: 0;
		padding-bottom: 40%
	}

	.hfui-media.hfui-media-5-2\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-3\@S {
		height: 0;
		padding-bottom: 60%
	}

	.hfui-media.hfui-media-5-3\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-4\@S {
		height: 0;
		padding-bottom: 80%
	}

	.hfui-media.hfui-media-5-4\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-6\@S {
		height: 0;
		padding-bottom: 120%
	}

	.hfui-media.hfui-media-5-6\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-6-1\@S {
		height: 0;
		padding-bottom: 16.6666666667%
	}

	.hfui-media.hfui-media-6-1\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-6-5\@S {
		height: 0;
		padding-bottom: 83.3333333333%
	}

	.hfui-media.hfui-media-6-5\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-9-16\@S {
		height: 0;
		padding-bottom: 177.7777777778%
	}

	.hfui-media.hfui-media-9-16\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-16-9\@S {
		height: 0;
		padding-bottom: 56.25%
	}

	.hfui-media.hfui-media-16-9\@S .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@S {
		padding-bottom: 0;
		height: 100%
	}
}

@media only screen and (min-width: 1280px) {
	.hfui-media.hfui-media-1-1\@M {
		height: 0;
		padding-bottom: 100%
	}

	.hfui-media.hfui-media-1-1\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-2\@M {
		height: 0;
		padding-bottom: 200%
	}

	.hfui-media.hfui-media-1-2\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-4\@M {
		height: 0;
		padding-bottom: 400%
	}

	.hfui-media.hfui-media-1-4\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-5\@M {
		height: 0;
		padding-bottom: 500%
	}

	.hfui-media.hfui-media-1-5\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-6\@M {
		height: 0;
		padding-bottom: 600%
	}

	.hfui-media.hfui-media-1-6\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-2-1\@M {
		height: 0;
		padding-bottom: 50%
	}

	.hfui-media.hfui-media-2-1\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-2-3\@M {
		height: 0;
		padding-bottom: 150%
	}

	.hfui-media.hfui-media-2-3\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-2-5\@M {
		height: 0;
		padding-bottom: 250%
	}

	.hfui-media.hfui-media-2-5\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-1\@M {
		height: 0;
		padding-bottom: 33.3333333333%
	}

	.hfui-media.hfui-media-3-1\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-2\@M {
		height: 0;
		padding-bottom: 66.6666666667%
	}

	.hfui-media.hfui-media-3-2\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-4\@M {
		height: 0;
		padding-bottom: 133.3333333333%
	}

	.hfui-media.hfui-media-3-4\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-5\@M {
		height: 0;
		padding-bottom: 166.6666666667%
	}

	.hfui-media.hfui-media-3-5\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-4-1\@M {
		height: 0;
		padding-bottom: 25%
	}

	.hfui-media.hfui-media-4-1\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-4-3\@M {
		height: 0;
		padding-bottom: 75%
	}

	.hfui-media.hfui-media-4-3\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-4-5\@M {
		height: 0;
		padding-bottom: 125%
	}

	.hfui-media.hfui-media-4-5\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-1\@M {
		height: 0;
		padding-bottom: 20%
	}

	.hfui-media.hfui-media-5-1\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-2\@M {
		height: 0;
		padding-bottom: 40%
	}

	.hfui-media.hfui-media-5-2\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-3\@M {
		height: 0;
		padding-bottom: 60%
	}

	.hfui-media.hfui-media-5-3\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-4\@M {
		height: 0;
		padding-bottom: 80%
	}

	.hfui-media.hfui-media-5-4\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-6\@M {
		height: 0;
		padding-bottom: 120%
	}

	.hfui-media.hfui-media-5-6\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-6-1\@M {
		height: 0;
		padding-bottom: 16.6666666667%
	}

	.hfui-media.hfui-media-6-1\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-6-5\@M {
		height: 0;
		padding-bottom: 83.3333333333%
	}

	.hfui-media.hfui-media-6-5\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-9-16\@M {
		height: 0;
		padding-bottom: 177.7777777778%
	}

	.hfui-media.hfui-media-9-16\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-16-9\@M {
		height: 0;
		padding-bottom: 56.25%
	}

	.hfui-media.hfui-media-16-9\@M .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@M {
		padding-bottom: 0;
		height: 100%
	}
}

@media only screen and (min-width: 1600px) {
	.hfui-media.hfui-media-1-1\@L {
		height: 0;
		padding-bottom: 100%
	}

	.hfui-media.hfui-media-1-1\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-2\@L {
		height: 0;
		padding-bottom: 200%
	}

	.hfui-media.hfui-media-1-2\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-4\@L {
		height: 0;
		padding-bottom: 400%
	}

	.hfui-media.hfui-media-1-4\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-5\@L {
		height: 0;
		padding-bottom: 500%
	}

	.hfui-media.hfui-media-1-5\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-6\@L {
		height: 0;
		padding-bottom: 600%
	}

	.hfui-media.hfui-media-1-6\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-2-1\@L {
		height: 0;
		padding-bottom: 50%
	}

	.hfui-media.hfui-media-2-1\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-2-3\@L {
		height: 0;
		padding-bottom: 150%
	}

	.hfui-media.hfui-media-2-3\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-2-5\@L {
		height: 0;
		padding-bottom: 250%
	}

	.hfui-media.hfui-media-2-5\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-1\@L {
		height: 0;
		padding-bottom: 33.3333333333%
	}

	.hfui-media.hfui-media-3-1\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-2\@L {
		height: 0;
		padding-bottom: 66.6666666667%
	}

	.hfui-media.hfui-media-3-2\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-4\@L {
		height: 0;
		padding-bottom: 133.3333333333%
	}

	.hfui-media.hfui-media-3-4\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-5\@L {
		height: 0;
		padding-bottom: 166.6666666667%
	}

	.hfui-media.hfui-media-3-5\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-4-1\@L {
		height: 0;
		padding-bottom: 25%
	}

	.hfui-media.hfui-media-4-1\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-4-3\@L {
		height: 0;
		padding-bottom: 75%
	}

	.hfui-media.hfui-media-4-3\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-4-5\@L {
		height: 0;
		padding-bottom: 125%
	}

	.hfui-media.hfui-media-4-5\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-1\@L {
		height: 0;
		padding-bottom: 20%
	}

	.hfui-media.hfui-media-5-1\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-2\@L {
		height: 0;
		padding-bottom: 40%
	}

	.hfui-media.hfui-media-5-2\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-3\@L {
		height: 0;
		padding-bottom: 60%
	}

	.hfui-media.hfui-media-5-3\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-4\@L {
		height: 0;
		padding-bottom: 80%
	}

	.hfui-media.hfui-media-5-4\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-6\@L {
		height: 0;
		padding-bottom: 120%
	}

	.hfui-media.hfui-media-5-6\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-6-1\@L {
		height: 0;
		padding-bottom: 16.6666666667%
	}

	.hfui-media.hfui-media-6-1\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-6-5\@L {
		height: 0;
		padding-bottom: 83.3333333333%
	}

	.hfui-media.hfui-media-6-5\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-9-16\@L {
		height: 0;
		padding-bottom: 177.7777777778%
	}

	.hfui-media.hfui-media-9-16\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-16-9\@L {
		height: 0;
		padding-bottom: 56.25%
	}

	.hfui-media.hfui-media-16-9\@L .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@L {
		padding-bottom: 0;
		height: 100%
	}
}

@media only screen and (min-width: 1920px) {
	.hfui-media.hfui-media-1-1\@H {
		height: 0;
		padding-bottom: 100%
	}

	.hfui-media.hfui-media-1-1\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-2\@H {
		height: 0;
		padding-bottom: 200%
	}

	.hfui-media.hfui-media-1-2\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-4\@H {
		height: 0;
		padding-bottom: 400%
	}

	.hfui-media.hfui-media-1-4\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-5\@H {
		height: 0;
		padding-bottom: 500%
	}

	.hfui-media.hfui-media-1-5\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-1-6\@H {
		height: 0;
		padding-bottom: 600%
	}

	.hfui-media.hfui-media-1-6\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-2-1\@H {
		height: 0;
		padding-bottom: 50%
	}

	.hfui-media.hfui-media-2-1\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-2-3\@H {
		height: 0;
		padding-bottom: 150%
	}

	.hfui-media.hfui-media-2-3\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-2-5\@H {
		height: 0;
		padding-bottom: 250%
	}

	.hfui-media.hfui-media-2-5\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-1\@H {
		height: 0;
		padding-bottom: 33.3333333333%
	}

	.hfui-media.hfui-media-3-1\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-2\@H {
		height: 0;
		padding-bottom: 66.6666666667%
	}

	.hfui-media.hfui-media-3-2\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-4\@H {
		height: 0;
		padding-bottom: 133.3333333333%
	}

	.hfui-media.hfui-media-3-4\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-3-5\@H {
		height: 0;
		padding-bottom: 166.6666666667%
	}

	.hfui-media.hfui-media-3-5\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-4-1\@H {
		height: 0;
		padding-bottom: 25%
	}

	.hfui-media.hfui-media-4-1\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-4-3\@H {
		height: 0;
		padding-bottom: 75%
	}

	.hfui-media.hfui-media-4-3\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-4-5\@H {
		height: 0;
		padding-bottom: 125%
	}

	.hfui-media.hfui-media-4-5\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-1\@H {
		height: 0;
		padding-bottom: 20%
	}

	.hfui-media.hfui-media-5-1\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-2\@H {
		height: 0;
		padding-bottom: 40%
	}

	.hfui-media.hfui-media-5-2\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-3\@H {
		height: 0;
		padding-bottom: 60%
	}

	.hfui-media.hfui-media-5-3\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-4\@H {
		height: 0;
		padding-bottom: 80%
	}

	.hfui-media.hfui-media-5-4\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-5-6\@H {
		height: 0;
		padding-bottom: 120%
	}

	.hfui-media.hfui-media-5-6\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-6-1\@H {
		height: 0;
		padding-bottom: 16.6666666667%
	}

	.hfui-media.hfui-media-6-1\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-6-5\@H {
		height: 0;
		padding-bottom: 83.3333333333%
	}

	.hfui-media.hfui-media-6-5\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-9-16\@H {
		height: 0;
		padding-bottom: 177.7777777778%
	}

	.hfui-media.hfui-media-9-16\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}

	.hfui-media.hfui-media-16-9\@H {
		height: 0;
		padding-bottom: 56.25%
	}

	.hfui-media.hfui-media-16-9\@H .hfui-media-wrap {
		position: absolute;
		height: 100%
	}

	.hfui-media.hfui-media-match\@H {
		padding-bottom: 0;
		height: 100%
	}
}

.hfui-media .hfui-media-wrap {
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s
}

.hfui-media .hfui-media-wrap .hfui-media-inner,
.hfui-media .hfui-media-wrap .hfui-media-img {
	width: 100%;
	height: 100%
}

.hfui-media .hfui-media-wrap .hfui-media-inner {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center
}

.hfui-media .hfui-media-wrap .hfui-media-img {
	border: 0;
	background: none;
	object-fit: cover;
	object-position: center
}

.hfui-media .hfui-media-mask {
	line-height: 1;
	pointer-events: none;
	text-align: center;
	color: #FFF;
	background-color: rgba(0, 0, 0, 0.4)
}

.hfui-media .hfui-media-mask .hfui-media-play {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../images/icon_play.png")
}

.hfui-media .hfui-media-mask:after {
	content: ''
}

.hfui-media.hfui-media-border {
	border: 1px solid #ccc
}

.hfui-media.hfui-media-video {
	cursor: pointer
}

.hfui-media.hfui-media-video .hfui-media-mask {
	display: block
}

.hfui-media.hfui-media-auto .hfui-media-wrap .hfui-media-inner {
	background-size: contain
}

.hfui-media.hfui-media-auto .hfui-media-wrap .hfui-media-img {
	object-fit: contain
}

.hfui-media.hfui-media-match {
	padding-bottom: 0;
	height: 100%
}

.hfui-media.hfui-media-hover:hover {
	border-color: #f80d4a
}

.hfui-media.hfui-media-hover:hover .hfui-media-wrap {
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1)
}

.hfui-media.hfui-media-hover:hover .hfui-media-mask {
	color: #f80d4a
}

.hfui-media.hfui-media-tran {
	background-color: transparent
}

.hfui-media.hfui-media-alpha {
	background-color: #ddd;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")
}

.hfui-comment .hfui-comment-profile {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap
}

.hfui-comment .hfui-comment-profile .hfui-comment-avatar {
	-webkit-flex: none;
	flex: none;
	width: 64px;
	height: 64px;
	background-color: #e6e6e6
}

.hfui-comment .hfui-comment-profile .hfui-comment-avatar .hfui-comment-avatar-img {
	display: block;
	border: none;
	width: 100%;
	height: 100%
}

.hfui-comment .hfui-comment-profile .hfui-comment-info {
	-webkit-flex: auto;
	flex: auto;
	width: 1px
}

.hfui-comment .hfui-comment-content {
	background-color: #fff;
	height: 120px;
	margin-top: 24px;
	position: relative;
	padding: 24px;
	-webkit-transition: background .3s ease 0s;
	transition: background .3s ease 0s
}

.hfui-comment .hfui-comment-content:after {
	content: '';
	display: block;
	position: absolute;
	top: -12px;
	left: 20px;
	width: 0;
	height: 0;
	border-width: 0 12px 12px 12px;
	border-style: solid;
	border-color: transparent transparent #fff transparent
}

.hfui-comment .hfui-comment-content .hfui-comment-content-inner {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: break-word;
	white-space: normal;
	-webkit-line-clamp: 3;
	font-size: 16px;
	line-height: 24px;
	height: 72px;
	text-align: justify
}

.hfui-btn {
	-webkit-transition: background-color .3s ease 0s;
	transition: background-color .3s ease 0s;
	background-image: none;
	outline: none;
	cursor: pointer;
	appearance: none;
	text-decoration: none;
	user-select: none;
	text-align: center;
	font-weight: 500;
	word-spacing: normal;
	white-space: nowrap;
	color: #333;
	border: 1px solid #ccc;
	background-color: #FFF;
	height: 40px;
	line-height: 38px;
	border-radius: 20px;
	padding: 0 24px;
	font-size: 16px
}

.hfui-btn:hover,
.hfui-btn:focus,
.hfui-btn:active {
	color: #000;
	border-color: #e6e6e6;
	background-color: #e6e6e6
}

.hfui-btn:disabled {
	color: #b3b3b3;
	border-color: #ccc;
	background-color: #FFF;
	cursor: default
}

.hfui-btn.hfui-btn-animate:hover:before {
	width: 38px;
	opacity: 1
}

.hfui-btn.hfui-btn-animate:hover>i {
	-webkit-transform: translate(13px, 0);
	transform: translate(13px, 0)
}

.hfui-btn.hfui-btn-primary {
	color: #FFF;
	border-color: #f80d4a;
	background-color: #f80d4a
}

.hfui-btn.hfui-btn-primary.hfui-btn-animate:before {
	background-color: #f80d4a
}

.hfui-btn.hfui-btn-primary:hover,
.hfui-btn.hfui-btn-primary:focus,
.hfui-btn.hfui-btn-primary:active {
	color: #FFF;
	border-color: #cc6300;
	background-color: #cc6300
}

.hfui-btn.hfui-btn-primary:disabled {
	color: #FFF;
	border-color: #ff9633;
	background-color: #ff9633
}

.hfui-btn.hfui-btn-gray {
	color: #FFF;
	border-color: gray;
	background-color: gray
}

.hfui-btn.hfui-btn-gray.hfui-btn-animate:before {
	background-color: gray
}

.hfui-btn.hfui-btn-gray:hover,
.hfui-btn.hfui-btn-gray:focus,
.hfui-btn.hfui-btn-gray:active {
	color: #FFF;
	border-color: #5a5a5a;
	background-color: #5a5a5a
}

.hfui-btn.hfui-btn-gray:disabled {
	color: #FFF;
	border-color: #a6a6a6;
	background-color: #a6a6a6
}

.hfui-btn.hfui-btn-accents {
	color: #FFF;
	border-color: #FF0603;
	background-color: #FF0603
}

.hfui-btn.hfui-btn-accents.hfui-btn-animate:before {
	background-color: #FF0603
}

.hfui-btn.hfui-btn-accents:hover,
.hfui-btn.hfui-btn-accents:focus,
.hfui-btn.hfui-btn-accents:active {
	color: #FFF;
	border-color: #cc0502;
	background-color: #cc0502
}

.hfui-btn.hfui-btn-accents:disabled {
	color: #FFF;
	border-color: #ff3835;
	background-color: #ff3835
}

.hfui-btn.hfui-btn-dangers {
	color: #FFF;
	border-color: #FE5050;
	background-color: #FE5050
}

.hfui-btn.hfui-btn-dangers.hfui-btn-animate:before {
	background-color: #FE5050
}

.hfui-btn.hfui-btn-dangers:hover,
.hfui-btn.hfui-btn-dangers:focus,
.hfui-btn.hfui-btn-dangers:active {
	color: #FFF;
	border-color: #d84444;
	background-color: #d84444
}

.hfui-btn.hfui-btn-dangers:disabled {
	color: #FFF;
	border-color: #fe6a6a;
	background-color: #fe6a6a
}

.hfui-btn.hfui-btn-blue {
	color: #FFF;
	border-color: #305cdf;
	background-color: #305cdf
}

.hfui-btn.hfui-btn-blue.hfui-btn-animate:before {
	background-color: #305cdf
}

.hfui-btn.hfui-btn-blue:hover,
.hfui-btn.hfui-btn-blue:focus,
.hfui-btn.hfui-btn-blue:active {
	color: #FFF;
	border-color: #0043f3;
	background-color: #0043f3
}

.hfui-btn.hfui-btn-blue:disabled {
	color: #FFF;
	border-color: #305cdf;
	background-color: #305cdf
}

.hfui-btn.hfui-btn-block {
	display: block;
	width: 100%
}

.hfui-btn.hfui-btn-square {
	border-radius: 0 !important
}

.hfui-btn.hfui-btn-animate {
	position: relative
}

.hfui-btn.hfui-btn-animate>i {
	display: inline-block;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s
}

.hfui-btn.hfui-btn-animate:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	opacity: 0;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s
}

.hfui-btn.hfui-btn-loading>i {
	display: none;
	-webkit-animation: btn-loading 0.6s linear infinite both;
	animation: btn-loading 0.6s linear infinite both
}

.hfui-btn.hfui-btn-loading.loading>i {
	display: inline-block
}

.hfui-btn.hfui-btn-sm {
	height: 32px;
	line-height: 30px;
	border-radius: 16px;
	padding: 0 16px;
	font-size: 14px
}

.hfui-btn.hfui-btn-sm.hfui-btn-animate:hover:before {
	width: 30px;
	opacity: 1
}

.hfui-btn.hfui-btn-sm.hfui-btn-animate:hover>i {
	-webkit-transform: translate(8px, 0);
	transform: translate(8px, 0)
}

.hfui-btn.hfui-btn-md {
	height: 40px;
	line-height: 38px;
	border-radius: 20px;
	padding: 0 24px;
	font-size: 16px
}

.hfui-btn.hfui-btn-md.hfui-btn-animate:hover:before {
	width: 38px;
	opacity: 1
}

.hfui-btn.hfui-btn-md.hfui-btn-animate:hover>i {
	-webkit-transform: translate(13px, 0);
	transform: translate(13px, 0)
}

.hfui-btn.hfui-btn-lg {
	height: 48px;
	line-height: 46px;
	border-radius: 24px;
	padding: 0 32px;
	font-size: 18px
}

.hfui-btn.hfui-btn-lg.hfui-btn-animate:hover:before {
	width: 46px;
	opacity: 1
}

.hfui-btn.hfui-btn-lg.hfui-btn-animate:hover>i {
	-webkit-transform: translate(18px, 0);
	transform: translate(18px, 0)
}

@media only screen and (min-width: 768px) {
	.hfui-btn.hfui-btn-block\@T {
		display: block;
		width: 100%
	}

	.hfui-btn.hfui-btn-sm\@T {
		height: 32px;
		line-height: 30px;
		border-radius: 16px;
		padding: 0 16px;
		font-size: 14px
	}

	.hfui-btn.hfui-btn-sm\@T.hfui-btn-animate:hover:before {
		width: 30px;
		opacity: 1
	}

	.hfui-btn.hfui-btn-sm\@T.hfui-btn-animate:hover>i {
		-webkit-transform: translate(8px, 0);
		transform: translate(8px, 0)
	}

	.hfui-btn.hfui-btn-md\@T {
		height: 40px;
		line-height: 38px;
		border-radius: 20px;
		padding: 0 24px;
		font-size: 16px
	}

	.hfui-btn.hfui-btn-md\@T.hfui-btn-animate:hover:before {
		width: 38px;
		opacity: 1
	}

	.hfui-btn.hfui-btn-md\@T.hfui-btn-animate:hover>i {
		-webkit-transform: translate(13px, 0);
		transform: translate(13px, 0)
	}

	.hfui-btn.hfui-btn-lg\@T {
		height: 48px;
		line-height: 46px;
		border-radius: 24px;
		padding: 0 32px;
		font-size: 18px
	}

	.hfui-btn.hfui-btn-lg\@T.hfui-btn-animate:hover:before {
		width: 46px;
		opacity: 1
	}

	.hfui-btn.hfui-btn-lg\@T.hfui-btn-animate:hover>i {
		-webkit-transform: translate(18px, 0);
		transform: translate(18px, 0)
	}
}

@media only screen and (min-width: 1024px) {
	.hfui-btn.hfui-btn-block\@S {
		display: block;
		width: 100%
	}

	.hfui-btn.hfui-btn-sm\@S {
		height: 32px;
		line-height: 30px;
		border-radius: 16px;
		padding: 0 16px;
		font-size: 14px
	}

	.hfui-btn.hfui-btn-sm\@S.hfui-btn-animate:hover:before {
		width: 30px;
		opacity: 1
	}

	.hfui-btn.hfui-btn-sm\@S.hfui-btn-animate:hover>i {
		-webkit-transform: translate(8px, 0);
		transform: translate(8px, 0)
	}

	.hfui-btn.hfui-btn-md\@S {
		height: 40px;
		line-height: 38px;
		border-radius: 20px;
		padding: 0 24px;
		font-size: 16px
	}

	.hfui-btn.hfui-btn-md\@S.hfui-btn-animate:hover:before {
		width: 38px;
		opacity: 1
	}

	.hfui-btn.hfui-btn-md\@S.hfui-btn-animate:hover>i {
		-webkit-transform: translate(13px, 0);
		transform: translate(13px, 0)
	}

	.hfui-btn.hfui-btn-lg\@S {
		height: 48px;
		line-height: 46px;
		border-radius: 24px;
		padding: 0 32px;
		font-size: 18px
	}

	.hfui-btn.hfui-btn-lg\@S.hfui-btn-animate:hover:before {
		width: 46px;
		opacity: 1
	}

	.hfui-btn.hfui-btn-lg\@S.hfui-btn-animate:hover>i {
		-webkit-transform: translate(18px, 0);
		transform: translate(18px, 0)
	}
}

@media only screen and (min-width: 1280px) {
	.hfui-btn.hfui-btn-block\@M {
		display: block;
		width: 100%
	}

	.hfui-btn.hfui-btn-sm\@M {
		height: 32px;
		line-height: 30px;
		border-radius: 16px;
		padding: 0 16px;
		font-size: 14px
	}

	.hfui-btn.hfui-btn-sm\@M.hfui-btn-animate:hover:before {
		width: 30px;
		opacity: 1
	}

	.hfui-btn.hfui-btn-sm\@M.hfui-btn-animate:hover>i {
		-webkit-transform: translate(8px, 0);
		transform: translate(8px, 0)
	}

	.hfui-btn.hfui-btn-md\@M {
		height: 40px;
		line-height: 38px;
		border-radius: 20px;
		padding: 0 24px;
		font-size: 16px
	}

	.hfui-btn.hfui-btn-md\@M.hfui-btn-animate:hover:before {
		width: 38px;
		opacity: 1
	}

	.hfui-btn.hfui-btn-md\@M.hfui-btn-animate:hover>i {
		-webkit-transform: translate(13px, 0);
		transform: translate(13px, 0)
	}

	.hfui-btn.hfui-btn-lg\@M {
		height: 48px;
		line-height: 46px;
		border-radius: 24px;
		padding: 0 32px;
		font-size: 18px
	}

	.hfui-btn.hfui-btn-lg\@M.hfui-btn-animate:hover:before {
		width: 46px;
		opacity: 1
	}

	.hfui-btn.hfui-btn-lg\@M.hfui-btn-animate:hover>i {
		-webkit-transform: translate(18px, 0);
		transform: translate(18px, 0)
	}
}

@media only screen and (min-width: 1600px) {
	.hfui-btn.hfui-btn-block\@L {
		display: block;
		width: 100%
	}

	.hfui-btn.hfui-btn-sm\@L {
		height: 32px;
		line-height: 30px;
		border-radius: 16px;
		padding: 0 16px;
		font-size: 14px
	}

	.hfui-btn.hfui-btn-sm\@L.hfui-btn-animate:hover:before {
		width: 30px;
		opacity: 1
	}

	.hfui-btn.hfui-btn-sm\@L.hfui-btn-animate:hover>i {
		-webkit-transform: translate(8px, 0);
		transform: translate(8px, 0)
	}

	.hfui-btn.hfui-btn-md\@L {
		height: 40px;
		line-height: 38px;
		border-radius: 20px;
		padding: 0 24px;
		font-size: 16px
	}

	.hfui-btn.hfui-btn-md\@L.hfui-btn-animate:hover:before {
		width: 38px;
		opacity: 1
	}

	.hfui-btn.hfui-btn-md\@L.hfui-btn-animate:hover>i {
		-webkit-transform: translate(13px, 0);
		transform: translate(13px, 0)
	}

	.hfui-btn.hfui-btn-lg\@L {
		height: 48px;
		line-height: 46px;
		border-radius: 24px;
		padding: 0 32px;
		font-size: 18px
	}

	.hfui-btn.hfui-btn-lg\@L.hfui-btn-animate:hover:before {
		width: 46px;
		opacity: 1
	}

	.hfui-btn.hfui-btn-lg\@L.hfui-btn-animate:hover>i {
		-webkit-transform: translate(18px, 0);
		transform: translate(18px, 0)
	}
}

@media only screen and (min-width: 1920px) {
	.hfui-btn.hfui-btn-block\@H {
		display: block;
		width: 100%
	}

	.hfui-btn.hfui-btn-sm\@H {
		height: 32px;
		line-height: 30px;
		border-radius: 16px;
		padding: 0 16px;
		font-size: 14px
	}

	.hfui-btn.hfui-btn-sm\@H.hfui-btn-animate:hover:before {
		width: 30px;
		opacity: 1
	}

	.hfui-btn.hfui-btn-sm\@H.hfui-btn-animate:hover>i {
		-webkit-transform: translate(8px, 0);
		transform: translate(8px, 0)
	}

	.hfui-btn.hfui-btn-md\@H {
		height: 40px;
		line-height: 38px;
		border-radius: 20px;
		padding: 0 24px;
		font-size: 16px
	}

	.hfui-btn.hfui-btn-md\@H.hfui-btn-animate:hover:before {
		width: 38px;
		opacity: 1
	}

	.hfui-btn.hfui-btn-md\@H.hfui-btn-animate:hover>i {
		-webkit-transform: translate(13px, 0);
		transform: translate(13px, 0)
	}

	.hfui-btn.hfui-btn-lg\@H {
		height: 48px;
		line-height: 46px;
		border-radius: 24px;
		padding: 0 32px;
		font-size: 18px
	}

	.hfui-btn.hfui-btn-lg\@H.hfui-btn-animate:hover:before {
		width: 46px;
		opacity: 1
	}

	.hfui-btn.hfui-btn-lg\@H.hfui-btn-animate:hover>i {
		-webkit-transform: translate(18px, 0);
		transform: translate(18px, 0)
	}
}

@-webkit-keyframes btn-loading {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes btn-loading {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.hfui-form .hfui-form-item {
	position: relative
}

.hfui-form .hfui-form-item .hfui-form-message {
	display: block;
	position: absolute;
	max-width: 100%;
	overflow: hidden;
	font-size: 12px;
	line-height: 20px;
	color: #FE5050
}

.hfui-form .hfui-form-item.error .hfui-input,
.hfui-form .hfui-form-item.error .hfui-textarea,
.hfui-form .hfui-form-item.error .hfui-select>.select-input,
.hfui-form .hfui-form-item.error .hfui-tags>.select-input {
	border-color: #FE5050
}

.hfui-form .hfui-form-item.error .hfui-input:focus,
.hfui-form .hfui-form-item.error .hfui-textarea:focus,
.hfui-form .hfui-form-item.error .hfui-select>.select-input:focus,
.hfui-form .hfui-form-item.error .hfui-tags>.select-input:focus {
	-webkit-box-shadow: 0 0 0 3px #fee;
	box-shadow: 0 0 0 3px #fee
}

.hfui-input {
	-webkit-transition: border-color .3s ease 0s;
	transition: border-color .3s ease 0s;
	background-image: none;
	outline: none;
	text-align: left;
	border-width: 1px;
	border-style: solid;
	background-color: #FFF;
	border-color: #ccc;
	color: #333;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	height: 40px;
	line-height: 38px;
	padding: 0 12px;
	font-size: 16px
}

.hfui-input:hover {
	border-color: #f80d4a
}

.hfui-input:focus {
	border-color: #f80d4a;
	-webkit-box-shadow: 0 0 0 3px #fff2e6;
	box-shadow: 0 0 0 3px #fff2e6
}

.hfui-input.success:hover {
	border-color: #38C976
}

.hfui-input.success:focus {
	border-color: #38C976;
	-webkit-box-shadow: 0 0 0 3px #ebfaf1;
	box-shadow: 0 0 0 3px #ebfaf1
}

.hfui-input.warning:hover {
	border-color: #FFA23A
}

.hfui-input.warning:focus {
	border-color: #FFA23A;
	-webkit-box-shadow: 0 0 0 3px #fff6eb;
	box-shadow: 0 0 0 3px #fff6eb
}

.hfui-input.error:hover {
	border-color: #FE5050
}

.hfui-input.error:focus {
	border-color: #FE5050;
	-webkit-box-shadow: 0 0 0 3px #fee;
	box-shadow: 0 0 0 3px #fee
}

.hfui-input.hfui-input-block {
	display: block;
	width: 100%
}

.hfui-input:disabled {
	background-color: #e6e6e6 !important;
	color: #b3b3b3 !important;
	cursor:not-allowed !important;
	border-color: #ccc !important
}

.hfui-input.hfui-input-sm {
	height: 32px;
	line-height: 30px;
	padding: 0 8px;
	font-size: 14px
}

.hfui-input.hfui-input-md {
	height: 40px;
	line-height: 38px;
	padding: 0 12px;
	font-size: 16px
}

.hfui-input.hfui-input-lg {
	height: 48px;
	line-height: 46px;
	padding: 0 16px;
	font-size: 16px
}

@media only screen and (min-width: 768px) {
	.hfui-input.hfui-input-block\@T {
		display: block;
		width: 100%
	}

	.hfui-input.hfui-input-sm\@T {
		height: 32px;
		line-height: 30px;
		padding: 0 16px;
		font-size: 14px
	}

	.hfui-input.hfui-input-md\@T {
		height: 40px;
		line-height: 38px;
		padding: 0 24px;
		font-size: 16px
	}

	.hfui-input.hfui-input-lg\@T {
		height: 48px;
		line-height: 46px;
		padding: 0 32px;
		font-size: 18px
	}
}

@media only screen and (min-width: 1024px) {
	.hfui-input.hfui-input-block\@S {
		display: block;
		width: 100%
	}

	.hfui-input.hfui-input-sm\@S {
		height: 32px;
		line-height: 30px;
		padding: 0 16px;
		font-size: 14px
	}

	.hfui-input.hfui-input-md\@S {
		height: 40px;
		line-height: 38px;
		padding: 0 24px;
		font-size: 16px
	}

	.hfui-input.hfui-input-lg\@S {
		height: 48px;
		line-height: 46px;
		padding: 0 32px;
		font-size: 18px
	}
}

@media only screen and (min-width: 1280px) {
	.hfui-input.hfui-input-block\@M {
		display: block;
		width: 100%
	}

	.hfui-input.hfui-input-sm\@M {
		height: 32px;
		line-height: 30px;
		padding: 0 16px;
		font-size: 14px
	}

	.hfui-input.hfui-input-md\@M {
		height: 40px;
		line-height: 38px;
		padding: 0 24px;
		font-size: 16px
	}

	.hfui-input.hfui-input-lg\@M {
		height: 48px;
		line-height: 46px;
		padding: 0 32px;
		font-size: 18px
	}
}

@media only screen and (min-width: 1600px) {
	.hfui-input.hfui-input-block\@L {
		display: block;
		width: 100%
	}

	.hfui-input.hfui-input-sm\@L {
		height: 32px;
		line-height: 30px;
		padding: 0 16px;
		font-size: 14px
	}

	.hfui-input.hfui-input-md\@L {
		height: 40px;
		line-height: 38px;
		padding: 0 24px;
		font-size: 16px
	}

	.hfui-input.hfui-input-lg\@L {
		height: 48px;
		line-height: 46px;
		padding: 0 32px;
		font-size: 18px
	}
}

@media only screen and (min-width: 1920px) {
	.hfui-input.hfui-input-block\@H {
		display: block;
		width: 100%
	}

	.hfui-input.hfui-input-sm\@H {
		height: 32px;
		line-height: 30px;
		padding: 0 16px;
		font-size: 14px
	}

	.hfui-input.hfui-input-md\@H {
		height: 40px;
		line-height: 38px;
		padding: 0 24px;
		font-size: 16px
	}

	.hfui-input.hfui-input-lg\@H {
		height: 48px;
		line-height: 46px;
		padding: 0 32px;
		font-size: 18px
	}
}

.hfui-textarea {
	display: block;
	border: 1px solid #ccc;
	font-size: 16px;
	color: #333;
	line-height: 24px;
	resize: none;
	outline: none;
	width: 100%;
	padding: 8px 12px;
	background-color: #FFF;
	overflow-y: auto;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s
}

.hfui-textarea:focus {
	border-color: #f80d4a;
	-webkit-box-shadow: 0 0 0 3px #fff2e6;
	box-shadow: 0 0 0 3px #fff2e6
}

.hfui-textarea.error {
	border-color: #FE5050
}

.hfui-textarea.error:focus {
	-webkit-box-shadow: 0 0 0 3px #fee;
	box-shadow: 0 0 0 3px #fee
}

.hfui-backing-dark {
	background-color: #000
}

.hfui-backing-tiny-dark-1 {
	background-color: #1a1a1a
}

.hfui-backing-shade-dark-1 {
	background-color: #000
}

.hfui-backing-tiny-dark-2 {
	background-color: #333
}

.hfui-backing-shade-dark-2 {
	background-color: #000
}

.hfui-backing-tiny-dark-3 {
	background-color: #4d4d4d
}

.hfui-backing-shade-dark-3 {
	background-color: #000
}

.hfui-backing-tiny-dark-4 {
	background-color: #666
}

.hfui-backing-shade-dark-4 {
	background-color: #000
}

.hfui-backing-tiny-dark-5 {
	background-color: gray
}

.hfui-backing-shade-dark-5 {
	background-color: #000
}

.hfui-backing-tiny-dark-6 {
	background-color: #999
}

.hfui-backing-shade-dark-6 {
	background-color: #000
}

.hfui-backing-tiny-dark-7 {
	background-color: #b3b3b3
}

.hfui-backing-shade-dark-7 {
	background-color: #000
}

.hfui-backing-tiny-dark-8 {
	background-color: #ccc
}

.hfui-backing-shade-dark-8 {
	background-color: #000
}

.hfui-backing-tiny-dark-9 {
	background-color: #e6e6e6
}

.hfui-backing-shade-dark-9 {
	background-color: #000
}

.hfui-backing-light {
	background-color: #FFF
}

.hfui-backing-tiny-light-1 {
	background-color: #fff
}

.hfui-backing-shade-light-1 {
	background-color: #e6e6e6
}

.hfui-backing-tiny-light-2 {
	background-color: #fff
}

.hfui-backing-shade-light-2 {
	background-color: #ccc
}

.hfui-backing-tiny-light-3 {
	background-color: #fff
}

.hfui-backing-shade-light-3 {
	background-color: #b3b3b3
}

.hfui-backing-tiny-light-4 {
	background-color: #fff
}

.hfui-backing-shade-light-4 {
	background-color: #999
}

.hfui-backing-tiny-light-5 {
	background-color: #fff
}

.hfui-backing-shade-light-5 {
	background-color: gray
}

.hfui-backing-tiny-light-6 {
	background-color: #fff
}

.hfui-backing-shade-light-6 {
	background-color: #666
}

.hfui-backing-tiny-light-7 {
	background-color: #fff
}

.hfui-backing-shade-light-7 {
	background-color: #4d4d4d
}

.hfui-backing-tiny-light-8 {
	background-color: #fff
}

.hfui-backing-shade-light-8 {
	background-color: #333
}

.hfui-backing-tiny-light-9 {
	background-color: #fff
}

.hfui-backing-shade-light-9 {
	background-color: #1a1a1a
}

.hfui-backing-gray {
	background-color: #b3b3b3
}

.hfui-backing-tiny-gray-1 {
	background-color: #bbb
}

.hfui-backing-shade-gray-1 {
	background-color: #a1a1a1
}

.hfui-backing-tiny-gray-2 {
	background-color: #c2c2c2
}

.hfui-backing-shade-gray-2 {
	background-color: #8f8f8f
}

.hfui-backing-tiny-gray-3 {
	background-color: #cacaca
}

.hfui-backing-shade-gray-3 {
	background-color: #7d7d7d
}

.hfui-backing-tiny-gray-4 {
	background-color: #d1d1d1
}

.hfui-backing-shade-gray-4 {
	background-color: #6b6b6b
}

.hfui-backing-tiny-gray-5 {
	background-color: #d9d9d9
}

.hfui-backing-shade-gray-5 {
	background-color: #5a5a5a
}

.hfui-backing-tiny-gray-6 {
	background-color: #e1e1e1
}

.hfui-backing-shade-gray-6 {
	background-color: #484848
}

.hfui-backing-tiny-gray-7 {
	background-color: #e8e8e8
}

.hfui-backing-shade-gray-7 {
	background-color: #363636
}

.hfui-backing-tiny-gray-8 {
	background-color: #f0f0f0
}

.hfui-backing-shade-gray-8 {
	background-color: #242424
}

.hfui-backing-tiny-gray-9 {
	background-color: #f7f7f7
}

.hfui-backing-shade-gray-9 {
	background-color: #121212
}

.hfui-backing-primary {
	background-color: #f80d4a
}

.hfui-backing-tiny-primary-1 {
	background-color: #ff891a
}

.hfui-backing-shade-primary-1 {
	background-color: #e67000
}

.hfui-backing-tiny-primary-2 {
	background-color: #ff9633
}

.hfui-backing-shade-primary-2 {
	background-color: #cc6300
}

.hfui-backing-tiny-primary-3 {
	background-color: #ffa34d
}

.hfui-backing-shade-primary-3 {
	background-color: #b35700
}

.hfui-backing-tiny-primary-4 {
	background-color: #ffb066
}

.hfui-backing-shade-primary-4 {
	background-color: #994a00
}

.hfui-backing-tiny-primary-5 {
	background-color: #ffbe80
}

.hfui-backing-shade-primary-5 {
	background-color: #803e00
}

.hfui-backing-tiny-primary-6 {
	background-color: #ffcb99
}

.hfui-backing-shade-primary-6 {
	background-color: #663200
}

.hfui-backing-tiny-primary-7 {
	background-color: #ffd8b3
}

.hfui-backing-shade-primary-7 {
	background-color: #4d2500
}

.hfui-backing-tiny-primary-8 {
	background-color: #ffe5cc
}

.hfui-backing-shade-primary-8 {
	background-color: #331900
}

.hfui-backing-tiny-primary-9 {
	background-color: #fff2e6
}

.hfui-backing-shade-primary-9 {
	background-color: #1a0c00
}

.hfui-backing-accents {
	background-color: #FF0603
}

.hfui-backing-tiny-accents-1 {
	background-color: #ff1f1c
}

.hfui-backing-shade-accents-1 {
	background-color: #e60503
}

.hfui-backing-tiny-accents-2 {
	background-color: #ff3835
}

.hfui-backing-shade-accents-2 {
	background-color: #cc0502
}

.hfui-backing-tiny-accents-3 {
	background-color: #ff514f
}

.hfui-backing-shade-accents-3 {
	background-color: #b30402
}

.hfui-backing-tiny-accents-4 {
	background-color: #ff6a68
}

.hfui-backing-shade-accents-4 {
	background-color: #990402
}

.hfui-backing-tiny-accents-5 {
	background-color: #ff8381
}

.hfui-backing-shade-accents-5 {
	background-color: #800302
}

.hfui-backing-tiny-accents-6 {
	background-color: #ff9b9a
}

.hfui-backing-shade-accents-6 {
	background-color: #660201
}

.hfui-backing-tiny-accents-7 {
	background-color: #ffb4b3
}

.hfui-backing-shade-accents-7 {
	background-color: #4d0201
}

.hfui-backing-tiny-accents-8 {
	background-color: #ffcdcd
}

.hfui-backing-shade-accents-8 {
	background-color: #330101
}

.hfui-backing-tiny-accents-9 {
	background-color: #ffe6e6
}

.hfui-backing-shade-accents-9 {
	background-color: #1a0100
}

.hfui-backing-warning {
	background-color: #FFA23A
}

.hfui-backing-tiny-warning-1 {
	background-color: #ffab4e
}

.hfui-backing-shade-warning-1 {
	background-color: #e69234
}

.hfui-backing-tiny-warning-2 {
	background-color: #ffb561
}

.hfui-backing-shade-warning-2 {
	background-color: #cc822e
}

.hfui-backing-tiny-warning-3 {
	background-color: #ffbe75
}

.hfui-backing-shade-warning-3 {
	background-color: #b37129
}

.hfui-backing-tiny-warning-4 {
	background-color: #ffc789
}

.hfui-backing-shade-warning-4 {
	background-color: #996123
}

.hfui-backing-tiny-warning-5 {
	background-color: #ffd19d
}

.hfui-backing-shade-warning-5 {
	background-color: #80511d
}

.hfui-backing-tiny-warning-6 {
	background-color: #ffdab0
}

.hfui-backing-shade-warning-6 {
	background-color: #664117
}

.hfui-backing-tiny-warning-7 {
	background-color: #ffe3c4
}

.hfui-backing-shade-warning-7 {
	background-color: #4d3111
}

.hfui-backing-tiny-warning-8 {
	background-color: #ffecd8
}

.hfui-backing-shade-warning-8 {
	background-color: #33200c
}

.hfui-backing-tiny-warning-9 {
	background-color: #fff6eb
}

.hfui-backing-shade-warning-9 {
	background-color: #1a1006
}

.hfui-backing-success {
	background-color: #38C976
}

.hfui-backing-tiny-success-1 {
	background-color: #4cce84
}

.hfui-backing-shade-success-1 {
	background-color: #32b56a
}

.hfui-backing-tiny-success-2 {
	background-color: #60d491
}

.hfui-backing-shade-success-2 {
	background-color: #2da15e
}

.hfui-backing-tiny-success-3 {
	background-color: #74d99f
}

.hfui-backing-shade-success-3 {
	background-color: #278d53
}

.hfui-backing-tiny-success-4 {
	background-color: #88dfad
}

.hfui-backing-shade-success-4 {
	background-color: #227947
}

.hfui-backing-tiny-success-5 {
	background-color: #9ce4bb
}

.hfui-backing-shade-success-5 {
	background-color: #1c653b
}

.hfui-backing-tiny-success-6 {
	background-color: #afe9c8
}

.hfui-backing-shade-success-6 {
	background-color: #16502f
}

.hfui-backing-tiny-success-7 {
	background-color: #c3efd6
}

.hfui-backing-shade-success-7 {
	background-color: #113c23
}

.hfui-backing-tiny-success-8 {
	background-color: #d7f4e4
}

.hfui-backing-shade-success-8 {
	background-color: #0b2818
}

.hfui-backing-tiny-success-9 {
	background-color: #ebfaf1
}

.hfui-backing-shade-success-9 {
	background-color: #06140c
}

.hfui-backing-dangers {
	background-color: #FE5050
}

.hfui-backing-tiny-dangers-1 {
	background-color: #fe6262
}

.hfui-backing-shade-dangers-1 {
	background-color: #e54848
}

.hfui-backing-tiny-dangers-2 {
	background-color: #fe7373
}

.hfui-backing-shade-dangers-2 {
	background-color: #cb4040
}

.hfui-backing-tiny-dangers-3 {
	background-color: #fe8585
}

.hfui-backing-shade-dangers-3 {
	background-color: #b23838
}

.hfui-backing-tiny-dangers-4 {
	background-color: #fe9696
}

.hfui-backing-shade-dangers-4 {
	background-color: #983030
}

.hfui-backing-tiny-dangers-5 {
	background-color: #ffa8a8
}

.hfui-backing-shade-dangers-5 {
	background-color: #7f2828
}

.hfui-backing-tiny-dangers-6 {
	background-color: #ffb9b9
}

.hfui-backing-shade-dangers-6 {
	background-color: #662020
}

.hfui-backing-tiny-dangers-7 {
	background-color: #ffcbcb
}

.hfui-backing-shade-dangers-7 {
	background-color: #4c1818
}

.hfui-backing-tiny-dangers-8 {
	background-color: #ffdcdc
}

.hfui-backing-shade-dangers-8 {
	background-color: #331010
}

.hfui-backing-tiny-dangers-9 {
	background-color: #fee
}

.hfui-backing-shade-dangers-9 {
	background-color: #190808
}


.hfui-backing-blue-8 {
	background-color: #2846ff
}

.hfui-backing-blue-9 {
	background-color: #1daaff
}

.hfui-dropdown {
	position: relative
}

.hfui-dropdown>.hfui-dropdown-toggle {
	cursor: pointer;
	position: relative;
	padding-right: 20px
}

.hfui-dropdown>.hfui-dropdown-toggle:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 2px;
	margin-top: -6px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	width: 9px;
	height: 9px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg)
}

.hfui-dropdown>.hfui-dropdown-content {
	display: none;
	position: absolute;
	z-index: 10006;
	left: 0;
	right: auto;
	min-width: 180px;
	max-width: 240px
}

.hfui-dropdown>.hfui-dropdown-content>.hfui-dropdown-list {
	background-color: rgba(0, 0, 0, 0.4);
	border-top: 2px solid #f80d4a
}

.hfui-dropdown>.hfui-dropdown-content>.hfui-dropdown-list::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: transparent
}

.hfui-dropdown>.hfui-dropdown-content>.hfui-dropdown-list::-webkit-scrollbar-track {
	background-color: transparent
}

.hfui-dropdown>.hfui-dropdown-content>.hfui-dropdown-list::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.4)
}

.hfui-dropdown>.hfui-dropdown-content>.hfui-dropdown-list::-webkit-scrollbar-thumb:hover {
	background-color: rgba(255, 255, 255, 0.6)
}

.hfui-dropdown>.hfui-dropdown-content>.hfui-dropdown-list>.hfui-dropdown-item {
	display: block;
	white-space: nowrap;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	color: #FFF;
	text-align: left
}

.hfui-dropdown>.hfui-dropdown-content>.hfui-dropdown-list>.hfui-dropdown-item:last-child {
	border: 0
}

.hfui-dropdown>.hfui-dropdown-content>.hfui-dropdown-list>.hfui-dropdown-item:hover {
	background-color: rgba(255, 124, 0, 0.5)
}

.hfui-dropdown.hfui-dropdown-right>.hfui-dropdown-toggle:after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	right: 10px;
	margin-top: -5px
}

.hfui-dropdown.hfui-dropdown-right>.hfui-dropdown-content {
	left: 100%;
	top: 0
}

.hfui-dropdown.hfui-dropdown-overflow>.hfui-dropdown-content>.hfui-dropdown-list {
	max-height: 400px;
	overflow-y: auto
}

.hfui-dropdown:hover>.hfui-dropdown-content {
	display: block
}

.hfui-lang {
	display: block;
	width: 24px;
	height: 24px;
	background-size: 24px auto;
	background-repeat: no-repeat;
	background-position: 0 24px;
	background-image: url("../images/icon_flag.png")
}

.hfui-lang.hfui-lang-ar {
	background-position: 0 0
}

.hfui-lang.hfui-lang-bn {
	background-position: 0 -24px
}

.hfui-lang.hfui-lang-bul {
	background-position: 0 -48px
}

.hfui-lang.hfui-lang-cn {
	background-position: 0 -72px
}

.hfui-lang.hfui-lang-cs {
	background-position: 0 -96px
}

.hfui-lang.hfui-lang-dan {
	background-position: 0 -120px
}

.hfui-lang.hfui-lang-de {
	background-position: 0 -144px
}

.hfui-lang.hfui-lang-el {
	background-position: 0 -168px
}

.hfui-lang.hfui-lang-en {
	background-position: 0 -192px
}

.hfui-lang.hfui-lang-es {
	background-position: 0 -216px
}

.hfui-lang.hfui-lang-est {
	background-position: 0 -240px
}

.hfui-lang.hfui-lang-fa {
	background-position: 0 -264px
}

.hfui-lang.hfui-lang-fin {
	background-position: 0 -288px
}

.hfui-lang.hfui-lang-fr {
	background-position: 0 -312px
}

.hfui-lang.hfui-lang-he {
	background-position: 0 -336px
}

.hfui-lang.hfui-lang-hi {
	background-position: 0 -360px
}

.hfui-lang.hfui-lang-hr {
	background-position: 0 -384px
}

.hfui-lang.hfui-lang-hu {
	background-position: 0 -408px
}

.hfui-lang.hfui-lang-id {
	background-position: 0 -432px
}

.hfui-lang.hfui-lang-it {
	background-position: 0 -456px
}

.hfui-lang.hfui-lang-ja {
	background-position: 0 -480px
}

.hfui-lang.hfui-lang-ko {
	background-position: 0 -504px
}

.hfui-lang.hfui-lang-lt {
	background-position: 0 -528px
}

.hfui-lang.hfui-lang-ms {
	background-position: 0 -552px
}

.hfui-lang.hfui-lang-nl {
	background-position: 0 -576px
}

.hfui-lang.hfui-lang-no {
	background-position: 0 -600px
}

.hfui-lang.hfui-lang-pl {
	background-position: 0 -624px
}

.hfui-lang.hfui-lang-pt {
	background-position: 0 -648px
}

.hfui-lang.hfui-lang-rom {
	background-position: 0 -672px
}

.hfui-lang.hfui-lang-ru {
	background-position: 0 -696px
}

.hfui-lang.hfui-lang-sk {
	background-position: 0 -720px
}

.hfui-lang.hfui-lang-slo {
	background-position: 0 -744px
}

.hfui-lang.hfui-lang-swe {
	background-position: 0 -768px
}

.hfui-lang.hfui-lang-th {
	background-position: 0 -792px
}

.hfui-lang.hfui-lang-tr {
	background-position: 0 -816px
}

.hfui-lang.hfui-lang-tw {
	background-position: 0 -840px
}

.hfui-lang.hfui-lang-uk {
	background-position: 0 -864px
}

.hfui-lang.hfui-lang-ur {
	background-position: 0 -888px
}

.hfui-lang.hfui-lang-vi {
	background-position: 0 -912px
}

.hfui-lang.hfui-lang-te {
	background-position: 0 -936px
}

.hfui-lang.hfui-lang-ta {
	background-position: 0 -960px
}

.hfui-lang.hfui-lang-sr {
	background-position: 0 -984px
}

.hfui-lang.hfui-lang-tl {
	background-position: 0 -1008px
}

.hfui-lang.hfui-lang-is {
	background-position: 0 -1032px
}

.hfui-lang.hfui-lang-ca {
	background-position: 0 -1056px
}

.hfui-lang.hfui-lang-lv {
	background-position: 0 -1080px
}

.hfui-w-1x {
	width: 64px
}

.hfui-w-min-1x {
	min-width: 64px
}

.hfui-w-max-1x {
	max-width: 64px
}

.hfui-w-2x {
	width: 128px
}

.hfui-w-min-2x {
	min-width: 128px
}

.hfui-w-max-2x {
	max-width: 128px
}

.hfui-w-3x {
	width: 192px
}

.hfui-w-min-3x {
	min-width: 192px
}

.hfui-w-max-3x {
	max-width: 192px
}

.hfui-w-4x {
	width: 256px
}

.hfui-w-min-4x {
	min-width: 256px
}

.hfui-w-max-4x {
	max-width: 256px
}

.hfui-w-5x {
	width: 320px
}

.hfui-w-min-5x {
	min-width: 320px
}

.hfui-w-max-5x {
	max-width: 320px
}

.hfui-w-6x {
	width: 384px
}

.hfui-w-min-6x {
	min-width: 384px
}

.hfui-w-max-6x {
	max-width: 384px
}

.hfui-w-7x {
	width: 448px
}

.hfui-w-min-7x {
	min-width: 448px
}

.hfui-w-max-7x {
	max-width: 448px
}

.hfui-w-8x {
	width: 512px
}

.hfui-w-min-8x {
	min-width: 512px
}

.hfui-w-max-8x {
	max-width: 512px
}

.hfui-w-9x {
	width: 576px
}

.hfui-w-min-9x {
	min-width: 576px
}

.hfui-w-max-9x {
	max-width: 576px
}

.hfui-w-10x {
	width: 640px
}

.hfui-w-min-10x {
	min-width: 640px
}

.hfui-w-max-10x {
	max-width: 640px
}

.hfui-w-11x {
	width: 704px
}

.hfui-w-min-11x {
	min-width: 704px
}

.hfui-w-max-11x {
	max-width: 704px
}

.hfui-w-12x {
	width: 768px
}

.hfui-w-min-12x {
	min-width: 768px
}

.hfui-w-max-12x {
	max-width: 768px
}

.hfui-w-min-auto {
	min-width: auto
}

.hfui-w-max-none {
	max-width: none
}

.hfui-w-none {
	width: 0
}

.hfui-w-match {
	width: 100%
}

.hfui-w-min-match {
	min-width: 100%
}

.hfui-w-max-match {
	max-width: 100%
}

@media only screen and (min-width: 768px) {
	.hfui-w-1x\@T {
		width: 64px
	}

	.hfui-w-min-1x\@T {
		min-width: 64px
	}

	.hfui-w-max-1x\@T {
		max-width: 64px
	}

	.hfui-w-2x\@T {
		width: 128px
	}

	.hfui-w-min-2x\@T {
		min-width: 128px
	}

	.hfui-w-max-2x\@T {
		max-width: 128px
	}

	.hfui-w-3x\@T {
		width: 192px
	}

	.hfui-w-min-3x\@T {
		min-width: 192px
	}

	.hfui-w-max-3x\@T {
		max-width: 192px
	}

	.hfui-w-4x\@T {
		width: 256px
	}

	.hfui-w-min-4x\@T {
		min-width: 256px
	}

	.hfui-w-max-4x\@T {
		max-width: 256px
	}

	.hfui-w-5x\@T {
		width: 320px
	}

	.hfui-w-min-5x\@T {
		min-width: 320px
	}

	.hfui-w-max-5x\@T {
		max-width: 320px
	}

	.hfui-w-6x\@T {
		width: 384px
	}

	.hfui-w-min-6x\@T {
		min-width: 384px
	}

	.hfui-w-max-6x\@T {
		max-width: 384px
	}

	.hfui-w-7x\@T {
		width: 448px
	}

	.hfui-w-min-7x\@T {
		min-width: 448px
	}

	.hfui-w-max-7x\@T {
		max-width: 448px
	}

	.hfui-w-8x\@T {
		width: 512px
	}

	.hfui-w-min-8x\@T {
		min-width: 512px
	}

	.hfui-w-max-8x\@T {
		max-width: 512px
	}

	.hfui-w-9x\@T {
		width: 576px
	}

	.hfui-w-min-9x\@T {
		min-width: 576px
	}

	.hfui-w-max-9x\@T {
		max-width: 576px
	}

	.hfui-w-10x\@T {
		width: 640px
	}

	.hfui-w-min-10x\@T {
		min-width: 640px
	}

	.hfui-w-max-10x\@T {
		max-width: 640px
	}

	.hfui-w-11x\@T {
		width: 704px
	}

	.hfui-w-min-11x\@T {
		min-width: 704px
	}

	.hfui-w-max-11x\@T {
		max-width: 704px
	}

	.hfui-w-12x\@T {
		width: 768px
	}

	.hfui-w-min-12x\@T {
		min-width: 768px
	}

	.hfui-w-max-12x\@T {
		max-width: 768px
	}

	.hfui-w-min-auto\@T {
		min-width: auto
	}

	.hfui-w-max-none\@T {
		max-width: none
	}

	.hfui-w-none\@T {
		width: 0
	}

	.hfui-w-match\@T {
		width: 100%
	}

	.hfui-w-min-match\@T {
		min-width: 100%
	}

	.hfui-w-max-match\@T {
		max-width: 100%
	}
}

@media only screen and (min-width: 1024px) {
	.hfui-w-1x\@S {
		width: 64px
	}

	.hfui-w-min-1x\@S {
		min-width: 64px
	}

	.hfui-w-max-1x\@S {
		max-width: 64px
	}

	.hfui-w-2x\@S {
		width: 128px
	}

	.hfui-w-min-2x\@S {
		min-width: 128px
	}

	.hfui-w-max-2x\@S {
		max-width: 128px
	}

	.hfui-w-3x\@S {
		width: 192px
	}

	.hfui-w-min-3x\@S {
		min-width: 192px
	}

	.hfui-w-max-3x\@S {
		max-width: 192px
	}

	.hfui-w-4x\@S {
		width: 256px
	}

	.hfui-w-min-4x\@S {
		min-width: 256px
	}

	.hfui-w-max-4x\@S {
		max-width: 256px
	}

	.hfui-w-5x\@S {
		width: 320px
	}

	.hfui-w-min-5x\@S {
		min-width: 320px
	}

	.hfui-w-max-5x\@S {
		max-width: 320px
	}

	.hfui-w-6x\@S {
		width: 384px
	}

	.hfui-w-min-6x\@S {
		min-width: 384px
	}

	.hfui-w-max-6x\@S {
		max-width: 384px
	}

	.hfui-w-7x\@S {
		width: 448px
	}

	.hfui-w-min-7x\@S {
		min-width: 448px
	}

	.hfui-w-max-7x\@S {
		max-width: 448px
	}

	.hfui-w-8x\@S {
		width: 512px
	}

	.hfui-w-min-8x\@S {
		min-width: 512px
	}

	.hfui-w-max-8x\@S {
		max-width: 512px
	}

	.hfui-w-9x\@S {
		width: 576px
	}

	.hfui-w-min-9x\@S {
		min-width: 576px
	}

	.hfui-w-max-9x\@S {
		max-width: 576px
	}

	.hfui-w-10x\@S {
		width: 640px
	}

	.hfui-w-min-10x\@S {
		min-width: 640px
	}

	.hfui-w-max-10x\@S {
		max-width: 640px
	}

	.hfui-w-11x\@S {
		width: 704px
	}

	.hfui-w-min-11x\@S {
		min-width: 704px
	}

	.hfui-w-max-11x\@S {
		max-width: 704px
	}

	.hfui-w-12x\@S {
		width: 768px
	}

	.hfui-w-min-12x\@S {
		min-width: 768px
	}

	.hfui-w-max-12x\@S {
		max-width: 768px
	}

	.hfui-w-min-auto\@S {
		min-width: auto
	}

	.hfui-w-max-none\@S {
		max-width: none
	}

	.hfui-w-none\@S {
		width: 0
	}

	.hfui-w-match\@S {
		width: 100%
	}

	.hfui-w-min-match\@S {
		min-width: 100%
	}

	.hfui-w-max-match\@S {
		max-width: 100%
	}
}

@media only screen and (min-width: 1280px) {
	.hfui-w-1x\@M {
		width: 64px
	}

	.hfui-w-min-1x\@M {
		min-width: 64px
	}

	.hfui-w-max-1x\@M {
		max-width: 64px
	}

	.hfui-w-2x\@M {
		width: 128px
	}

	.hfui-w-min-2x\@M {
		min-width: 128px
	}

	.hfui-w-max-2x\@M {
		max-width: 128px
	}

	.hfui-w-3x\@M {
		width: 192px
	}

	.hfui-w-min-3x\@M {
		min-width: 192px
	}

	.hfui-w-max-3x\@M {
		max-width: 192px
	}

	.hfui-w-4x\@M {
		width: 256px
	}

	.hfui-w-min-4x\@M {
		min-width: 256px
	}

	.hfui-w-max-4x\@M {
		max-width: 256px
	}

	.hfui-w-5x\@M {
		width: 320px
	}

	.hfui-w-min-5x\@M {
		min-width: 320px
	}

	.hfui-w-max-5x\@M {
		max-width: 320px
	}

	.hfui-w-6x\@M {
		width: 384px
	}

	.hfui-w-min-6x\@M {
		min-width: 384px
	}

	.hfui-w-max-6x\@M {
		max-width: 384px
	}

	.hfui-w-7x\@M {
		width: 448px
	}

	.hfui-w-min-7x\@M {
		min-width: 448px
	}

	.hfui-w-max-7x\@M {
		max-width: 448px
	}

	.hfui-w-8x\@M {
		width: 512px
	}

	.hfui-w-min-8x\@M {
		min-width: 512px
	}

	.hfui-w-max-8x\@M {
		max-width: 512px
	}

	.hfui-w-9x\@M {
		width: 576px
	}

	.hfui-w-min-9x\@M {
		min-width: 576px
	}

	.hfui-w-max-9x\@M {
		max-width: 576px
	}

	.hfui-w-10x\@M {
		width: 640px
	}

	.hfui-w-min-10x\@M {
		min-width: 640px
	}

	.hfui-w-max-10x\@M {
		max-width: 640px
	}

	.hfui-w-11x\@M {
		width: 704px
	}

	.hfui-w-min-11x\@M {
		min-width: 704px
	}

	.hfui-w-max-11x\@M {
		max-width: 704px
	}

	.hfui-w-12x\@M {
		width: 768px
	}

	.hfui-w-min-12x\@M {
		min-width: 768px
	}

	.hfui-w-max-12x\@M {
		max-width: 768px
	}

	.hfui-w-min-auto\@M {
		min-width: auto
	}

	.hfui-w-max-none\@M {
		max-width: none
	}

	.hfui-w-none\@M {
		width: 0
	}

	.hfui-w-match\@M {
		width: 100%
	}

	.hfui-w-min-match\@M {
		min-width: 100%
	}

	.hfui-w-max-match\@M {
		max-width: 100%
	}
}

@media only screen and (min-width: 1600px) {
	.hfui-w-1x\@L {
		width: 64px
	}

	.hfui-w-min-1x\@L {
		min-width: 64px
	}

	.hfui-w-max-1x\@L {
		max-width: 64px
	}

	.hfui-w-2x\@L {
		width: 128px
	}

	.hfui-w-min-2x\@L {
		min-width: 128px
	}

	.hfui-w-max-2x\@L {
		max-width: 128px
	}

	.hfui-w-3x\@L {
		width: 192px
	}

	.hfui-w-min-3x\@L {
		min-width: 192px
	}

	.hfui-w-max-3x\@L {
		max-width: 192px
	}

	.hfui-w-4x\@L {
		width: 256px
	}

	.hfui-w-min-4x\@L {
		min-width: 256px
	}

	.hfui-w-max-4x\@L {
		max-width: 256px
	}

	.hfui-w-5x\@L {
		width: 320px
	}

	.hfui-w-min-5x\@L {
		min-width: 320px
	}

	.hfui-w-max-5x\@L {
		max-width: 320px
	}

	.hfui-w-6x\@L {
		width: 384px
	}

	.hfui-w-min-6x\@L {
		min-width: 384px
	}

	.hfui-w-max-6x\@L {
		max-width: 384px
	}

	.hfui-w-7x\@L {
		width: 448px
	}

	.hfui-w-min-7x\@L {
		min-width: 448px
	}

	.hfui-w-max-7x\@L {
		max-width: 448px
	}

	.hfui-w-8x\@L {
		width: 512px
	}

	.hfui-w-min-8x\@L {
		min-width: 512px
	}

	.hfui-w-max-8x\@L {
		max-width: 512px
	}

	.hfui-w-9x\@L {
		width: 576px
	}

	.hfui-w-min-9x\@L {
		min-width: 576px
	}

	.hfui-w-max-9x\@L {
		max-width: 576px
	}

	.hfui-w-10x\@L {
		width: 640px
	}

	.hfui-w-min-10x\@L {
		min-width: 640px
	}

	.hfui-w-max-10x\@L {
		max-width: 640px
	}

	.hfui-w-11x\@L {
		width: 704px
	}

	.hfui-w-min-11x\@L {
		min-width: 704px
	}

	.hfui-w-max-11x\@L {
		max-width: 704px
	}

	.hfui-w-12x\@L {
		width: 768px
	}

	.hfui-w-min-12x\@L {
		min-width: 768px
	}

	.hfui-w-max-12x\@L {
		max-width: 768px
	}

	.hfui-w-min-auto\@L {
		min-width: auto
	}

	.hfui-w-max-none\@L {
		max-width: none
	}

	.hfui-w-none\@L {
		width: 0
	}

	.hfui-w-match\@L {
		width: 100%
	}

	.hfui-w-min-match\@L {
		min-width: 100%
	}

	.hfui-w-max-match\@L {
		max-width: 100%
	}
}

@media only screen and (min-width: 1920px) {
	.hfui-w-1x\@H {
		width: 64px
	}

	.hfui-w-min-1x\@H {
		min-width: 64px
	}

	.hfui-w-max-1x\@H {
		max-width: 64px
	}

	.hfui-w-2x\@H {
		width: 128px
	}

	.hfui-w-min-2x\@H {
		min-width: 128px
	}

	.hfui-w-max-2x\@H {
		max-width: 128px
	}

	.hfui-w-3x\@H {
		width: 192px
	}

	.hfui-w-min-3x\@H {
		min-width: 192px
	}

	.hfui-w-max-3x\@H {
		max-width: 192px
	}

	.hfui-w-4x\@H {
		width: 256px
	}

	.hfui-w-min-4x\@H {
		min-width: 256px
	}

	.hfui-w-max-4x\@H {
		max-width: 256px
	}

	.hfui-w-5x\@H {
		width: 320px
	}

	.hfui-w-min-5x\@H {
		min-width: 320px
	}

	.hfui-w-max-5x\@H {
		max-width: 320px
	}

	.hfui-w-6x\@H {
		width: 384px
	}

	.hfui-w-min-6x\@H {
		min-width: 384px
	}

	.hfui-w-max-6x\@H {
		max-width: 384px
	}

	.hfui-w-7x\@H {
		width: 448px
	}

	.hfui-w-min-7x\@H {
		min-width: 448px
	}

	.hfui-w-max-7x\@H {
		max-width: 448px
	}

	.hfui-w-8x\@H {
		width: 512px
	}

	.hfui-w-min-8x\@H {
		min-width: 512px
	}

	.hfui-w-max-8x\@H {
		max-width: 512px
	}

	.hfui-w-9x\@H {
		width: 576px
	}

	.hfui-w-min-9x\@H {
		min-width: 576px
	}

	.hfui-w-max-9x\@H {
		max-width: 576px
	}

	.hfui-w-10x\@H {
		width: 640px
	}

	.hfui-w-min-10x\@H {
		min-width: 640px
	}

	.hfui-w-max-10x\@H {
		max-width: 640px
	}

	.hfui-w-11x\@H {
		width: 704px
	}

	.hfui-w-min-11x\@H {
		min-width: 704px
	}

	.hfui-w-max-11x\@H {
		max-width: 704px
	}

	.hfui-w-12x\@H {
		width: 768px
	}

	.hfui-w-min-12x\@H {
		min-width: 768px
	}

	.hfui-w-max-12x\@H {
		max-width: 768px
	}

	.hfui-w-min-auto\@H {
		min-width: auto
	}

	.hfui-w-max-none\@H {
		max-width: none
	}

	.hfui-w-none\@H {
		width: 0
	}

	.hfui-w-match\@H {
		width: 100%
	}

	.hfui-w-min-match\@H {
		min-width: 100%
	}

	.hfui-w-max-match\@H {
		max-width: 100%
	}
}

.hfui-modal-wrap {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 10001;
	overflow: hidden auto
}

.hfui-modal-wrap .hfui-modal-close {
	display: block;
	position: absolute;
	top: 24px;
	right: 24px;
	width: 24px;
	height: 24px;
	cursor: pointer
}

.hfui-modal-wrap .hfui-modal-close:before,
.hfui-modal-wrap .hfui-modal-close:after {
	content: '';
	display: block;
	width: 2px;
	height: 32px;
	background-color: #f80d4a;
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	margin-top: -16px
}

.hfui-modal-wrap .hfui-modal-close:before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

.hfui-modal-wrap .hfui-modal-close:after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.hfui-modal-wrap .hfui-modal-close:hover:before,
.hfui-modal-wrap .hfui-modal-close:hover:after {
	background-color: #FFF
}

.hfui-modal-wrap.behind {
	background-color: transparent
}

.hfui-modal-wrap .hfui-modal {
	max-width: 640px;
	width: 100%;
	padding: 0 24px;
	margin: 0 auto;
	position: relative;
	top: 0;
	bottom: 0;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center
}

.hfui-modal-wrap .hfui-modal.hfui-modal-xs {
	max-width: 640px
}

.hfui-modal-wrap .hfui-modal.hfui-modal-sm {
	max-width: 768px
}

.hfui-modal-wrap .hfui-modal.hfui-modal-md {
	max-width: 1024px
}

.hfui-modal-wrap .hfui-modal.hfui-modal-lg {
	max-width: 1280px
}

.hfui-modal-wrap .hfui-modal.hfui-modal-hr {
	max-width: 1440px
}

.hfui-modal-wrap.modal-in {
	-webkit-animation: fade-in .3s ease 0s both;
	animation: fade-in .3s ease 0s both
}

.hfui-modal-wrap.modal-in .hfui-modal {
	-webkit-animation: modal-in .2s ease 0s both;
	animation: modal-in .2s ease 0s both
}

.hfui-modal-wrap.modal-out {
	-webkit-animation: fade-out .3s ease 0s both;
	animation: fade-out .3s ease 0s both
}

.hfui-modal-wrap.modal-out .hfui-modal {
	-webkit-animation: modal-out .3s ease 0s both;
	animation: modal-out .3s ease 0s both
}

.hfui-drawer-wrap {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 10001;
	overflow: hidden auto
}

.hfui-drawer-wrap .hfui-drawer {
	max-width: 400px;
	width: 80%;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0
}

.hfui-drawer-wrap .hfui-drawer .hfui-drawer-content {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	height: 100%;
	background-color: #333333
}

.hfui-drawer-wrap .hfui-drawer .hfui-drawer-content .hfui-drawer-hd {
	-webkit-flex: none;
	flex: none;
	position: relative
}

.hfui-drawer-wrap .hfui-drawer .hfui-drawer-content .hfui-drawer-hd .hfui-drawer-title {
	display: block;
	font-size: 18px;
	line-height: 32px;
	height: 64px;
	padding: 16px 48px 16px 16px;
	color: #FFF
}

.hfui-drawer-wrap .hfui-drawer .hfui-drawer-content .hfui-drawer-hd .hfui-drawer-close {
	display: block;
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	cursor: pointer
}

.hfui-drawer-wrap .hfui-drawer .hfui-drawer-content .hfui-drawer-hd .hfui-drawer-close:before,
.hfui-drawer-wrap .hfui-drawer .hfui-drawer-content .hfui-drawer-hd .hfui-drawer-close:after {
	content: '';
	display: block;
	width: 1px;
	height: 20px;
	background-color: #FFF;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -10px
}

.hfui-drawer-wrap .hfui-drawer .hfui-drawer-content .hfui-drawer-hd .hfui-drawer-close:before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

.hfui-drawer-wrap .hfui-drawer .hfui-drawer-content .hfui-drawer-hd .hfui-drawer-close:after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.hfui-drawer-wrap .hfui-drawer .hfui-drawer-content .hfui-drawer-hd .hfui-drawer-close:hover:before,
.hfui-drawer-wrap .hfui-drawer .hfui-drawer-content .hfui-drawer-hd .hfui-drawer-close:hover:after {
	background-color: #f80d4a
}

.hfui-drawer-wrap .hfui-drawer .hfui-drawer-content .hfui-drawer-hd .hfui-drawer-filter {
	padding: 0 16px 8px
}

.hfui-drawer-wrap .hfui-drawer .hfui-drawer-content .hfui-drawer-bd {
	-webkit-flex: auto;
	flex: auto;
	padding: 0 16px;
	overflow: hidden auto
}

.hfui-drawer-wrap .hfui-drawer .hfui-drawer-content .hfui-drawer-ft {
	-webkit-flex: none;
	flex: none;
	border-top: 1px solid #ccc;
	padding: 16px
}

.hfui-drawer-wrap .hfui-drawer.hfui-drawer-left {
	right: auto;
	left: 0
}

.hfui-drawer-wrap.drawer-in {
	-webkit-animation: fade-in .3s ease 0s both;
	animation: fade-in .3s ease 0s both
}

.hfui-drawer-wrap.drawer-in .hfui-drawer {
	-webkit-animation: drawer-in-right .3s ease .2s both;
	animation: drawer-in-right .3s ease .2s both
}

.hfui-drawer-wrap.drawer-in .hfui-drawer.hfui-drawer-left {
	-webkit-animation: drawer-in-left .3s ease .2s both;
	animation: drawer-in-left .3s ease .2s both
}

.hfui-drawer-wrap.drawer-out {
	-webkit-animation: fade-out .3s ease .2s both;
	animation: fade-out .3s ease .2s both
}

.hfui-drawer-wrap.drawer-out .hfui-drawer {
	-webkit-animation: drawer-out-right .3s ease 0s both;
	animation: drawer-out-right .3s ease 0s both
}

.hfui-drawer-wrap.drawer-out .hfui-drawer.hfui-drawer-left {
	-webkit-animation: drawer-out-left .3s ease 0s both;
	animation: drawer-out-left .3s ease 0s both
}

.hfui-alert {
	padding: 12px;
	background-color: #f3f3f3;
	color: #000;
	border-left: 4px solid #f80d4a
}

.hfui-alert .hfui-alert-content {
	font-size: 14px;
	line-height: 24px
}

.hfui-alert.hfui-alert-primary {
	background-color: #fff2e6;
	color: #f80d4a;
	border-color: #f80d4a
}

.hfui-alert.hfui-alert-accents {
	background-color: #ffe6e6;
	color: #FF0603;
	border-color: #FF0603
}

.hfui-alert.hfui-alert-success {
	background-color: #ebfaf1;
	color: #38C976;
	border-color: #38C976
}

.hfui-alert.hfui-alert-warning {
	background-color: #fff6eb;
	color: #FFA23A;
	border-color: #FFA23A
}

.hfui-alert.hfui-alert-dangers {
	background-color: #fee;
	color: #FE5050;
	border-color: #FE5050
}

.hfui-crumb {
	position: relative
}

.hfui-crumb .hfui-crumb-item:hover {
	color: #f80d4a
}

.hfui-crumb .hfui-crumb-item:last-child {
	pointer-events: none
}

.hfui-crumb .hfui-crumb-item:last-child.hfui-crumb-separator {
	display: none
}

.hfui-crumb .hfui-crumb-separator {
	margin: 0 8px;
	cursor: default;
	color: inherit
}

.hfui-border {
	border-style: solid;
	border-width: 1px;
	border-color: #ccc
}

.hfui-border.hfui-border-xs {
	border-width: 1px
}

.hfui-border.hfui-border-t-xs {
	border-width: 1px 0 0 0
}

.hfui-border.hfui-border-r-xs {
	border-width: 0 1px 0 0
}

.hfui-border.hfui-border-b-xs {
	border-width: 0 0 1px 0
}

.hfui-border.hfui-border-l-xs {
	border-width: 0 0 0 1px
}

.hfui-border.hfui-border-v-xs {
	border-width: 1px 0
}

.hfui-border.hfui-border-h-xs {
	border-width: 0 1px
}

.hfui-border.hfui-border-sm {
	border-width: 2px
}

.hfui-border.hfui-border-t-sm {
	border-width: 2px 0 0 0
}

.hfui-border.hfui-border-r-sm {
	border-width: 0 2px 0 0
}

.hfui-border.hfui-border-b-sm {
	border-width: 0 0 2px 0
}

.hfui-border.hfui-border-l-sm {
	border-width: 0 0 0 2px
}

.hfui-border.hfui-border-v-sm {
	border-width: 2px 0
}

.hfui-border.hfui-border-h-sm {
	border-width: 0 2px
}

.hfui-border.hfui-border-md {
	border-width: 3px
}

.hfui-border.hfui-border-t-md {
	border-width: 3px 0 0 0
}

.hfui-border.hfui-border-r-md {
	border-width: 0 3px 0 0
}

.hfui-border.hfui-border-b-md {
	border-width: 0 0 3px 0
}

.hfui-border.hfui-border-l-md {
	border-width: 0 0 0 3px
}

.hfui-border.hfui-border-v-md {
	border-width: 3px 0
}

.hfui-border.hfui-border-h-md {
	border-width: 0 3px
}

.hfui-border.hfui-border-lg {
	border-width: 4px
}

.hfui-border.hfui-border-t-lg {
	border-width: 4px 0 0 0
}

.hfui-border.hfui-border-r-lg {
	border-width: 0 4px 0 0
}

.hfui-border.hfui-border-b-lg {
	border-width: 0 0 4px 0
}

.hfui-border.hfui-border-l-lg {
	border-width: 0 0 0 4px
}

.hfui-border.hfui-border-v-lg {
	border-width: 4px 0
}

.hfui-border.hfui-border-h-lg {
	border-width: 0 4px
}

.hfui-border.hfui-border-hr {
	border-width: 5px
}

.hfui-border.hfui-border-t-hr {
	border-width: 5px 0 0 0
}

.hfui-border.hfui-border-r-hr {
	border-width: 0 5px 0 0
}

.hfui-border.hfui-border-b-hr {
	border-width: 0 0 5px 0
}

.hfui-border.hfui-border-l-hr {
	border-width: 0 0 0 5px
}

.hfui-border.hfui-border-v-hr {
	border-width: 5px 0
}

.hfui-border.hfui-border-h-hr {
	border-width: 0 5px
}

.hfui-border.hfui-border-primary {
	border-color: #f80d4a
}

.hfui-border.hfui-border-accents {
	border-color: #FF0603
}

.hfui-border.hfui-border-success {
	border-color: #38C976
}

.hfui-border.hfui-border-warning {
	border-color: #FFA23A
}

.hfui-border.hfui-border-dangers {
	border-color: #FE5050
}

.hfui-border.hfui-border-light {
	border-color: #FFF
}

.hfui-border.hfui-border-dark {
	border-color: #000
}

.hfui-menu.hfui-menu-prefix>.hfui-menu-item>.hfui-menu-link {
	padding-left: 16px
}

.hfui-menu.hfui-menu-prefix>.hfui-menu-item>.hfui-menu-link:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -3px;
	width: 0;
	height: 0;
	border: 3px solid
}

.hfui-menu.hfui-menu-border>.hfui-menu-item {
	border-bottom: 1px solid #ccc
}

.hfui-menu.hfui-menu-suffix>.hfui-menu-item>.hfui-menu-link {
	padding-right: 24px
}

.hfui-menu.hfui-menu-suffix>.hfui-menu-item>.hfui-menu-arrow {
	display: block
}

.hfui-menu>.hfui-menu-item {
	padding-top: 6px;
	padding-bottom: 6px;
	position: relative
}

.hfui-menu>.hfui-menu-item>.hfui-menu-arrow {
	display: none;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 6px;
	right: 0;
	color: #999;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s
}

.hfui-menu>.hfui-menu-item>.hfui-menu-arrow:hover {
	cursor: pointer;
	color: #f80d4a
}

.hfui-menu>.hfui-menu-item>.hfui-menu-link {
	color: #333;
	position: relative;
	font-size: 16px;
	line-height: 24px
}

.hfui-menu>.hfui-menu-item>.hfui-menu-link:hover {
	color: #f80d4a
}

.hfui-menu>.hfui-menu-item>.hfui-menu-sublist {
	padding: 4px 0;
	display: none
}

.hfui-menu>.hfui-menu-item.open>.hfui-menu-link,
.hfui-menu>.hfui-menu-item.open>.hfui-menu-arrow {
	color: #f80d4a
}

.hfui-menu>.hfui-menu-item.open>.hfui-menu-sublist {
	display: block
}

.hfui-menu>.hfui-menu-item.open>.hfui-menu-arrow {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}

.hfui-menu>.hfui-menu-item.active>.hfui-menu-link,
.hfui-menu>.hfui-menu-item.active>.hfui-menu-arrow {
	color: #f80d4a
}

.hfui-tags .hfui-tags-item {
	height: 40px;
	line-height: 40px;
	padding: 0 24px;
	font-size: 16px;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	max-width: 220px;
	background-color: #e6e6e6;
	color: #333
}

.hfui-tags .hfui-tags-item:hover {
	background-color: #f80d4a;
	color: #FFF
}

.hfui-tags .hfui-tags-item.hfui-tags-primary {
	color: #FFF;
	background-color: #f80d4a
}

.hfui-tags .hfui-tags-item.hfui-tags-primary:hover,
.hfui-tags .hfui-tags-item.hfui-tags-primary:active {
	color: #FFF;
	background-color: #cc6300
}

.hfui-tags .hfui-tags-item.hfui-tags-success {
	color: #FFF;
	background-color: #38C976
}

.hfui-tags .hfui-tags-item.hfui-tags-success:hover,
.hfui-tags .hfui-tags-item.hfui-tags-success:active {
	color: #FFF;
	background-color: #2da15e
}

.hfui-tags .hfui-tags-item.hfui-tags-warning {
	color: #FFF;
	background-color: #FFA23A
}

.hfui-tags .hfui-tags-item.hfui-tags-warning:hover,
.hfui-tags .hfui-tags-item.hfui-tags-warning:active {
	color: #FFF;
	background-color: #cc822e
}

.hfui-tags .hfui-tags-item.hfui-tags-dangers {
	color: #FFF;
	background-color: #FE5050
}

.hfui-tags .hfui-tags-item.hfui-tags-dangers:hover,
.hfui-tags .hfui-tags-item.hfui-tags-dangers:active {
	color: #FFF;
	background-color: #cb4040
}

.hfui-tags.hfui-tags-sm .hfui-tags-item {
	height: 32px;
	line-height: 32px;
	padding: 0 16px;
	font-size: 14px
}

.hfui-tags.hfui-tags-md .hfui-tags-item {
	height: 40px;
	line-height: 40px;
	padding: 0 24px;
	font-size: 16px
}

.hfui-tags.hfui-tags-lg .hfui-tags-item {
	height: 48px;
	line-height: 48px;
	padding: 0 32px;
	font-size: 18px
}

@media only screen and (min-width: 768px) {
	.hfui-tags.hfui-tags-sm\@T .hfui-tags-item {
		height: 32px;
		line-height: 32px;
		padding: 0 16px;
		font-size: 14px
	}

	.hfui-tags.hfui-tags-md\@T .hfui-tags-item {
		height: 40px;
		line-height: 40px;
		padding: 0 24px;
		font-size: 16px
	}

	.hfui-tags.hfui-tags-lg\@T .hfui-tags-item {
		height: 48px;
		line-height: 48px;
		padding: 0 32px;
		font-size: 18px
	}
}

@media only screen and (min-width: 1024px) {
	.hfui-tags.hfui-tags-sm\@S .hfui-tags-item {
		height: 32px;
		line-height: 32px;
		padding: 0 16px;
		font-size: 14px
	}

	.hfui-tags.hfui-tags-md\@S .hfui-tags-item {
		height: 40px;
		line-height: 40px;
		padding: 0 24px;
		font-size: 16px
	}

	.hfui-tags.hfui-tags-lg\@S .hfui-tags-item {
		height: 48px;
		line-height: 48px;
		padding: 0 32px;
		font-size: 18px
	}
}

@media only screen and (min-width: 1280px) {
	.hfui-tags.hfui-tags-sm\@M .hfui-tags-item {
		height: 32px;
		line-height: 32px;
		padding: 0 16px;
		font-size: 14px
	}

	.hfui-tags.hfui-tags-md\@M .hfui-tags-item {
		height: 40px;
		line-height: 40px;
		padding: 0 24px;
		font-size: 16px
	}

	.hfui-tags.hfui-tags-lg\@M .hfui-tags-item {
		height: 48px;
		line-height: 48px;
		padding: 0 32px;
		font-size: 18px
	}
}

@media only screen and (min-width: 1600px) {
	.hfui-tags.hfui-tags-sm\@L .hfui-tags-item {
		height: 32px;
		line-height: 32px;
		padding: 0 16px;
		font-size: 14px
	}

	.hfui-tags.hfui-tags-md\@L .hfui-tags-item {
		height: 40px;
		line-height: 40px;
		padding: 0 24px;
		font-size: 16px
	}

	.hfui-tags.hfui-tags-lg\@L .hfui-tags-item {
		height: 48px;
		line-height: 48px;
		padding: 0 32px;
		font-size: 18px
	}
}

@media only screen and (min-width: 1920px) {
	.hfui-tags.hfui-tags-sm\@H .hfui-tags-item {
		height: 32px;
		line-height: 32px;
		padding: 0 16px;
		font-size: 14px
	}

	.hfui-tags.hfui-tags-md\@H .hfui-tags-item {
		height: 40px;
		line-height: 40px;
		padding: 0 24px;
		font-size: 16px
	}

	.hfui-tags.hfui-tags-lg\@H .hfui-tags-item {
		height: 48px;
		line-height: 48px;
		padding: 0 32px;
		font-size: 18px
	}
}

.hfui-cabinet {
	min-width: 120px
}

.hfui-cabinet .hfui-cabinet-preview {
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	background-color: #ddd;
	border: 1px solid #ccc;
	position: relative
}

.hfui-cabinet .hfui-cabinet-preview .hfui-cabinet-preview-wrapper .hfui-cabinet-preview-image {
	display: block;
	width: 100%;
	height: 100%;
	outline: none;
	border: 0;
	object-fit: contain;
	object-position: center
}

.hfui-cabinet .hfui-cabinet-preview .hfui-cabinet-preview-wrapper .hfui-cabinet-preview-video {
	display: none;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
	line-height: 1;
	text-align: center;
	color: #FFF;
	cursor: pointer
}

.hfui-cabinet .hfui-cabinet-preview .hfui-cabinet-preview-wrapper .hfui-cabinet-preview-video .hfui-cabinet-preview-play {
	display: inline-block;
	vertical-align: middle
}

.hfui-cabinet .hfui-cabinet-preview .hfui-cabinet-preview-wrapper .hfui-cabinet-preview-video:after {
	content: '';
	height: 100%;
	width: 0;
	display: inline-block;
	vertical-align: middle
}

.hfui-cabinet .hfui-cabinet-preview .hfui-cabinet-preview-wrapper .hfui-cabinet-preview-video:hover {
	color: #f80d4a
}

.hfui-cabinet .hfui-cabinet-preview.hfui-cabinet-video .hfui-cabinet-preview-wrapper .hfui-cabinet-preview-video {
	display: block
}

.hfui-cabinet .hfui-cabinet-thumb {
	position: relative;
	margin-top: 10px;
	width: 100%
}

.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-container {
	width: 100%;
	padding: 0 30px 0 30px;
	overflow: hidden
}

.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-container .hfui-cabinet-thumb-list {
	display: block;
	width: 100%;
	line-height: 1;
	font-size: 0;
	white-space: nowrap;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s
}

.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-container .hfui-cabinet-thumb-list .hfui-cabinet-thumb-item {
	display: inline-block;
	width: 25%;
	padding-bottom: 25%;
	height: 0;
	cursor: pointer;
	position: relative
}

.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-container .hfui-cabinet-thumb-list .hfui-cabinet-thumb-item .hfui-cabinet-thumb-wrap {
	display: block;
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border: 2px solid #ccc
}

.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-container .hfui-cabinet-thumb-list .hfui-cabinet-thumb-item .hfui-cabinet-thumb-wrap .hfui-cabinet-thumb-image {
	display: block;
	width: 100%;
	height: 100%;
	outline: none;
	border: 0;
	object-fit: contain;
	object-position: center
}

.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-container .hfui-cabinet-thumb-list .hfui-cabinet-thumb-item .hfui-cabinet-thumb-wrap .hfui-cabinet-thumb-video {
	display: none;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
	line-height: 1;
	text-align: center;
	color: #FFF;
	cursor: pointer
}

.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-container .hfui-cabinet-thumb-list .hfui-cabinet-thumb-item .hfui-cabinet-thumb-wrap .hfui-cabinet-thumb-video .hfui-cabinet-thumb-play {
	display: inline-block;
	vertical-align: middle
}

.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-container .hfui-cabinet-thumb-list .hfui-cabinet-thumb-item .hfui-cabinet-thumb-wrap .hfui-cabinet-thumb-video:after {
	content: '';
	height: 100%;
	width: 0;
	display: inline-block;
	vertical-align: middle
}

.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-container .hfui-cabinet-thumb-list .hfui-cabinet-thumb-item.hfui-cabinet-video .hfui-cabinet-thumb-wrap .hfui-cabinet-thumb-video {
	display: block
}

.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-container .hfui-cabinet-thumb-list .hfui-cabinet-thumb-item:hover .hfui-cabinet-thumb-wrap,
.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-container .hfui-cabinet-thumb-list .hfui-cabinet-thumb-item.active .hfui-cabinet-thumb-wrap {
	border-color: #f80d4a
}

.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-controls .hfui-cabinet-thumb-button {
	display: block;
	position: absolute;
	top: 5px;
	bottom: 5px;
	width: 25px;
	background-color: #e6e6e6;
	border: 0;
	background-image: none;
	outline: none;
	cursor: pointer;
	font-size: 16px;
	text-align: center;
	color: #333
}

.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-controls .hfui-cabinet-thumb-button.hfui-cabinet-thumb-prev {
	left: 0
}

.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-controls .hfui-cabinet-thumb-button.hfui-cabinet-thumb-next {
	right: 0
}

.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-controls .hfui-cabinet-thumb-button:hover {
	background-color: #f80d4a;
	color: #FFF
}

.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-controls .hfui-cabinet-thumb-button:disabled,
.hfui-cabinet .hfui-cabinet-thumb .hfui-cabinet-thumb-controls .hfui-cabinet-thumb-button.disabled {
	pointer-events: none
}

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	z-index: 1
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	touch-action: manipulation;
	-moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0px, 0px, 0px)
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
	display: none
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	outline: none
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
	border: none;
	padding: 0 !important
}

.owl-carousel.owl-loaded {
	display: block
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block
}

.owl-carousel.owl-hidden {
	opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: hidden;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab
}

.owl-carousel.owl-rtl {
	direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
	float: right
}

.no-js .owl-carousel {
	display: block
}

.owl-carousel .animated {
	animation-duration: 1000ms;
	animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
	z-index: 0
}

.owl-carousel .owl-animated-out {
	z-index: 1
}

.owl-carousel .fadeOut {
	animation-name: fadeOut
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.owl-height {
	transition: height 500ms ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity 400ms ease
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
	max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
	transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url("../images/owl.video.play.png") no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: transform 100ms ease
}

.owl-carousel .owl-video-play-icon:hover {
	transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 400ms ease
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%
}

.owl-theme-banner .owl-nav {
	position: absolute;
	top: 50%;
	left: 7%;
	right: 7%;
	margin-top: -25px;
	text-align: center;
	-webkit-tap-highlight-color: transparent
}

.owl-theme-banner .owl-nav [class*='owl-'] {
	display: block;
	cursor: pointer;
	position: absolute;
	top: 0;
	width: 50px;
	height: 50px;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 0;
	background-position: 0 50px;
	background-repeat: no-repeat;
	background-size: 50px auto;
	background-image: url("../images/owl.nav.png")
}

.owl-theme-banner .owl-nav [class*='owl-']>span {
	display: none
}

.owl-theme-banner .owl-nav [class*='owl-'].owl-prev {
	left: 0;
	right: auto;
	background-position: 0 0
}

.owl-theme-banner .owl-nav [class*='owl-'].owl-next {
	left: auto;
	right: 0;
	background-position: 0 -50px
}

.owl-theme-banner .owl-nav [class*='owl-']:hover {
	background-color: rgba(0, 0, 0, 0.5);
	text-decoration: none
}

.owl-theme-banner .owl-nav .disabled {
	opacity: .5;
	cursor: default
}

.owl-theme-banner .owl-dots {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
	position: absolute;
	bottom: 16px;
	left: 0;
	right: 0;
	line-height: 1 !important
}

.owl-theme-banner .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	*display: inline;
	background-color: transparent
}

.owl-theme-banner .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	background: #fff;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 30px
}

.owl-theme-banner .owl-dots .owl-dot.active span,
.owl-theme-banner .owl-dots .owl-dot:hover span {
	background: #FF0603
}

.owl-theme-gallery .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin-top: -20px;
	text-align: center;
	-webkit-tap-highlight-color: transparent
}

.owl-theme-gallery .owl-nav [class*='owl-'] {
	display: block;
	cursor: pointer;
	position: absolute;
	top: 0;
	width: 40px;
	height: 40px;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 0;
	background-position: 0 40px;
	background-repeat: no-repeat;
	background-size: 40px auto;
	background-image: url("../images/owl.nav.png")
}

.owl-theme-gallery .owl-nav [class*='owl-']>span {
	display: none
}

.owl-theme-gallery .owl-nav [class*='owl-'].owl-prev {
	left: 0;
	right: auto;
	background-position: 0 0
}

.owl-theme-gallery .owl-nav [class*='owl-'].owl-next {
	left: auto;
	right: 0;
	background-position: 0 -40px
}

.owl-theme-gallery .owl-nav [class*='owl-']:hover {
	background-color: rgba(0, 0, 0, 0.5);
	text-decoration: none
}

.owl-theme-gallery .owl-nav .disabled {
	opacity: .1;
	cursor: default
}

.owl-theme-gallery .owl-dots {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
	position: absolute;
	bottom: -24px;
	left: 0;
	right: 0;
	line-height: 1 !important
}

.owl-theme-gallery .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	*display: inline;
	background-color: transparent
}

.owl-theme-gallery .owl-dots .owl-dot span {
	width: 24px;
	height: 6px;
	margin: 5px 7px;
	background: #999;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 0px
}

.owl-theme-gallery .owl-dots .owl-dot.active span,
.owl-theme-gallery .owl-dots .owl-dot:hover span {
	background: #f80d4a
}

:root {
	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1
}

.animated {
	animation-duration: var(--animate-duration);
	animation-fill-mode: both
}

.animated.infinite {
	animation-iteration-count: infinite
}

.animated.repeat-1 {
	animation-iteration-count: var(--animate-repeat)
}

.animated.repeat-2 {
	animation-iteration-count: calc(var(--animate-repeat) * 2)
}

.animated.repeat-3 {
	animation-iteration-count: calc(var(--animate-repeat) * 3)
}

.animated.delay-1s {
	animation-delay: var(--animate-delay)
}

.animated.delay-2s {
	animation-delay: calc(var(--animate-delay) * 2)
}

.animated.delay-3s {
	animation-delay: calc(var(--animate-delay) * 3)
}

.animated.delay-4s {
	animation-delay: calc(var(--animate-delay) * 4)
}

.animated.delay-5s {
	animation-delay: calc(var(--animate-delay) * 5)
}

.animated.faster {
	animation-duration: calc(var(--animate-duration) / 2)
}

.animated.fast {
	animation-duration: calc(var(--animate-duration) * 0.8)
}

.animated.slow {
	animation-duration: calc(var(--animate-duration) * 2)
}

.animated.slower {
	animation-duration: calc(var(--animate-duration) * 3)
}

@media print,
(prefers-reduced-motion: reduce) {
	.animated {
		animation-duration: 1ms !important;
		transition-duration: 1ms !important;
		animation-iteration-count: 1 !important
	}

	.animated[class*='Out'] {
		opacity: 0
	}
}

@keyframes backInUp {
	0% {
		transform: translateY(1200px) scale(0.7);
		opacity: 0.7
	}

	80% {
		transform: translateY(0px) scale(0.7);
		opacity: 0.7
	}

	100% {
		transform: scale(1);
		opacity: 1
	}
}

.backInUp {
	animation-name: backInUp
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40%, 0);
    transform: translate3d(0, 40%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40%, 0);
    transform: translate3d(0, 40%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes flipInX {
	from {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		animation-timing-function: ease-in
	}

	60% {
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}

	80% {
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
	}

	to {
		transform: perspective(400px)
	}
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}


@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3)
	}

	50% {
		opacity: 1
	}
}

.zoomIn {
	animation-name: zoomIn
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
