
[class*='uk-animation-'] {
	animation-duration: .5s;
	animation-timing-function: ease-out;
	animation-fill-mode: both;
}

.uk-animation-toggle:not(:hover):not(:focus) [class*='uk-animation-'] {
	animation-name: none;
}

.uk-animation-slide-top {
	animation-name: uk-fade-top;
}

.uk-animation-slide-top-small {
	animation-name: uk-fade-top-small;
}

.uk-animation-slide-top-medium {
	animation-name: uk-fade-top-medium;
}

@keyframes uk-fade {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@keyframes uk-fade-top {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes uk-fade-bottom {
	0% {
		opacity: 0;
		transform: translateY(100%);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes uk-fade-left {
	0% {
		opacity: 0;
		transform: translateX(-100%);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes uk-fade-right {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes uk-fade-top-small {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes uk-fade-bottom-small {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes uk-fade-left-small {
	0% {
		opacity: 0;
		transform: translateX(-10px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes uk-fade-right-small {
	0% {
		opacity: 0;
		transform: translateX(10px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes uk-fade-top-medium {
	0% {
		opacity: 0;
		transform: translateY(-50px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes uk-fade-bottom-medium {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes uk-fade-left-medium {
	0% {
		opacity: 0;
		transform: translateX(-50px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes uk-fade-right-medium {
	0% {
		opacity: 0;
		transform: translateX(50px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes uk-fade-scale-02 {
	0% {
		opacity: 0;
		transform: scale(.2);
	}
	
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes uk-fade-scale-18 {
	0% {
		opacity: 0;
		transform: scale(1.8);
	}
	
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes uk-scale-kenburns {
	0% {
		transform: scale(1);
	}
	
	100% {
		transform: scale(1.2);
	}
}

@keyframes uk-shake {
	0%, 100% {
		transform: translateX(0);
	}
	
	10% {
		transform: translateX(-9px);
	}
	
	20% {
		transform: translateX(8px);
	}
	
	30% {
		transform: translateX(-7px);
	}
	
	40% {
		transform: translateX(6px);
	}
	
	50% {
		transform: translateX(-5px);
	}
	
	60% {
		transform: translateX(4px);
	}
	
	70% {
		transform: translateX(-3px);
	}
	
	80% {
		transform: translateX(2px);
	}
	
	90% {
		transform: translateX(-1px);
	}
}

.uk-background-secondary {
	background-color: #222;
}

.uk-background-cover {
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.uk-background-cover {
	background-size: cover;
}

.uk-background-top-left {
	background-position: 0 0;
}

.uk-background-fixed {
	background-attachment: fixed;
	backface-visibility: hidden;
}

@media (pointer: coarse) {
	.uk-background-fixed {
		background-attachment: scroll;
	}
}

html {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-size: 16px;
	font-weight: normal;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	background: #fff;
	color: #666;
}

body {
	margin: 0;
}

a {
	-webkit-text-decoration-skip: objects;
}

a {
	color: #1e87f0;
	text-decoration: none;
	cursor: pointer;
}

strong {
	font-weight: bolder;
}

em {
	color: #f0506e;
}

iframe, img, svg {
	vertical-align: middle;
}

img {
	max-width: 100%;
	height: auto;
	box-sizing: border-box;
}

iframe {
	border: 0;
}

p, ul, ol {
	margin: 0 0 20px 0;
}

* + p, * + ul, * + ol {
	margin-top: 20px;
}

h1, h2, h3, h4, .uk-h4, h5, .uk-h5 {
	margin: 0 0 20px 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-weight: normal;
	color: #333;
	text-transform: none;
}

* + h1, * + h2, * + h3, * + h4, * + .uk-h4, * + h5, * + .uk-h5 {
	margin-top: 40px;
}

h1 {
	font-size: 2.23125rem;
	line-height: 1.2;
}

h2 {
	font-size: 1.7rem;
	line-height: 1.3;
}

h3 {
	font-size: 1.5rem;
	line-height: 1.4;
}

h4, .uk-h4 {
	font-size: 1.25rem;
	line-height: 1.4;
}

h5, .uk-h5 {
	font-size: 16px;
	line-height: 1.4;
}

@media (min-width: 960px) {
	h1 {
		font-size: 2.625rem;
	}
	
	h2 {
		font-size: 2rem;
	}
}

ul, ol {
	padding-left: 30px;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
	text-align: inherit;
	margin: 0 0 20px 0;
	border: 0;
	border-top: 1px solid #e5e5e5;
}

* + hr {
	margin-top: 20px;
}

.uk-button {
	margin: 0;
	border: none;
	overflow: visible;
	font: inherit;
	color: inherit;
	text-transform: none;
	display: inline-block;
	box-sizing: border-box;
	padding: 0 30px;
	vertical-align: middle;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
	text-decoration: none;
}

.uk-button:not(:disabled) {
	cursor: pointer;
}

.uk-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.uk-button:hover {
	text-decoration: none;
}

.uk-button:focus {
	outline: none;
}

.uk-button-default {
	background-color: #f8f8f8;
	color: #333;
}

.uk-button-default:hover, .uk-button-default:focus {
	background-color: #ebebeb;
	color: #333;
}

.uk-button-default:active, .uk-button-default.uk-active {
	background-color: #dfdfdf;
	color: #333;
}

.uk-button-primary {
	background-color: #1e87f0;
	color: #fff;
}

.uk-button-primary:hover, .uk-button-primary:focus {
	background-color: #0f7ae5;
	color: #fff;
}

.uk-button-primary:active, .uk-button-primary.uk-active {
	background-color: #0e6ecd;
	color: #fff;
}

.uk-button-secondary {
	background-color: #222;
	color: #fff;
}

.uk-button-secondary:hover, .uk-button-secondary:focus {
	background-color: #151515;
	color: #fff;
}

.uk-button-secondary:active, .uk-button-secondary.uk-active {
	background-color: #090909;
	color: #fff;
}

.uk-button-danger {
	background-color: #f0506e;
	color: #fff;
}

.uk-button-danger:hover, .uk-button-danger:focus {
	background-color: #ee395b;
	color: #fff;
}

.uk-button-danger:active, .uk-button-danger.uk-active {
	background-color: #ec2147;
	color: #fff;
}

.uk-button-default:disabled, .uk-button-primary:disabled, .uk-button-secondary:disabled, .uk-button-danger:disabled {
	background-color: #f8f8f8;
	color: #999;
}

.uk-button-small {
	padding: 0 15px;
	line-height: 30px;
	font-size: .875rem;
}

.uk-button-large {
	padding: 0 40px;
	line-height: 55px;
	font-size: 1.25rem;
}

.uk-button-text {
	padding: 0;
	line-height: 1.5;
	background: none;
	color: #999;
}

.uk-button-text:hover, .uk-button-text:focus {
	color: #666;
}

.uk-button-text:disabled {
	color: #999;
}

.uk-button-link {
	padding: 0;
	line-height: 1.5;
	background: none;
	color: #1e87f0;
}

.uk-button-link:hover, .uk-button-link:focus {
	color: #0f6ecd;
	text-decoration: underline;
}

.uk-button-link:disabled {
	color: #999;
	text-decoration: none;
}

.uk-button-group {
	display: inline-flex;
	vertical-align: middle;
	position: relative;
}

.uk-container {
	box-sizing: content-box;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

@media (min-width: 640px) {
	.uk-container {
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media (min-width: 960px) {
	.uk-container {
		padding-left: 40px;
		padding-right: 40px;
	}
}

.uk-container::before, .uk-container::after {
	content: "";
	display: table;
}

.uk-container::after {
	clear: both;
}

.uk-container > :last-child {
	margin-bottom: 0;
}

.uk-container .uk-container {
	padding-left: 0;
	padding-right: 0;
}

.uk-container-xsmall {
	max-width: 750px;
}

.uk-container-small {
	max-width: 900px;
}

.uk-container-large {
	max-width: 1600px;
}

.uk-container-expand {
	max-width: none;
}

.uk-container-expand-left {
	margin-left: 0;
}

.uk-container-expand-right {
	margin-right: 0;
}

@media (min-width: 640px) {
	.uk-container-expand-left.uk-container-xsmall, .uk-container-expand-right.uk-container-xsmall {
		max-width: calc(50% + ( 750px / 2 ) - 30px);
	}
	
	.uk-container-expand-left.uk-container-small, .uk-container-expand-right.uk-container-small {
		max-width: calc(50% + ( 900px / 2 ) - 30px);
	}
}

@media (min-width: 960px) {
	.uk-container-expand-left, .uk-container-expand-right {
		max-width: calc(50% + ( 1200px / 2 ) - 40px);
	}
	
	.uk-container-expand-left.uk-container-xsmall, .uk-container-expand-right.uk-container-xsmall {
		max-width: calc(50% + ( 750px / 2 ) - 40px);
	}
	
	.uk-container-expand-left.uk-container-small, .uk-container-expand-right.uk-container-small {
		max-width: calc(50% + ( 900px / 2 ) - 40px);
	}
	
	.uk-container-expand-left.uk-container-large, .uk-container-expand-right.uk-container-large {
		max-width: calc(50% + ( 1600px / 2 ) - 40px);
	}
}

.uk-container-item-padding-remove-left, .uk-container-item-padding-remove-right {
	width: calc(100% + 15px);
}

.uk-container-item-padding-remove-left {
	margin-left: -15px;
}

.uk-container-item-padding-remove-right {
	margin-right: -15px;
}

@media (min-width: 640px) {
	.uk-container-item-padding-remove-left, .uk-container-item-padding-remove-right {
		width: calc(100% + 30px);
	}
	
	.uk-container-item-padding-remove-left {
		margin-left: -30px;
	}
	
	.uk-container-item-padding-remove-right {
		margin-right: -30px;
	}
}

@media (min-width: 960px) {
	.uk-container-item-padding-remove-left, .uk-container-item-padding-remove-right {
		width: calc(100% + 40px);
	}
	
	.uk-container-item-padding-remove-left {
		margin-left: -40px;
	}
	
	.uk-container-item-padding-remove-right {
		margin-right: -40px;
	}
}

.uk-dropdown-nav > li.uk-active > a {
	color: #666;
}

.uk-dropdown-nav .uk-nav-header {
	color: #333;
}

.uk-dropdown-nav .uk-nav-divider {
	border-top: 1px solid #e5e5e5;
}

.uk-dropdown-nav .uk-nav-sub a {
	color: #999;
}

.uk-dropdown-nav .uk-nav-sub a:hover, .uk-dropdown-nav .uk-nav-sub a:focus, .uk-dropdown-nav .uk-nav-sub li.uk-active > a {
	color: #666;
}

.uk-flex {
	display: flex;
}

.uk-flex-inline {
	display: inline-flex;
}

.uk-flex::before, .uk-flex::after, .uk-flex-inline::before, .uk-flex-inline::after {
	display: none;
}

.uk-flex-left {
	justify-content: flex-start;
}

.uk-flex-center {
	justify-content: center;
}

.uk-flex-right {
	justify-content: flex-end;
}

.uk-flex-between {
	justify-content: space-between;
}

.uk-flex-around {
	justify-content: space-around;
}

@media (min-width: 640px) {
	.uk-flex-left\@s {
		justify-content: flex-start;
	}
	
	.uk-flex-center\@s {
		justify-content: center;
	}
	
	.uk-flex-right\@s {
		justify-content: flex-end;
	}
	
	.uk-flex-between\@s {
		justify-content: space-between;
	}
	
	.uk-flex-around\@s {
		justify-content: space-around;
	}
}

@media (min-width: 960px) {
	.uk-flex-left\@m {
		justify-content: flex-start;
	}
	
	.uk-flex-center\@m {
		justify-content: center;
	}
	
	.uk-flex-right\@m {
		justify-content: flex-end;
	}
	
	.uk-flex-between\@m {
		justify-content: space-between;
	}
	
	.uk-flex-around\@m {
		justify-content: space-around;
	}
}

@media (min-width: 1200px) {
	.uk-flex-left\@l {
		justify-content: flex-start;
	}
	
	.uk-flex-center\@l {
		justify-content: center;
	}
	
	.uk-flex-right\@l {
		justify-content: flex-end;
	}
	
	.uk-flex-between\@l {
		justify-content: space-between;
	}
	
	.uk-flex-around\@l {
		justify-content: space-around;
	}
}

@media (min-width: 1600px) {
	.uk-flex-left\@xl {
		justify-content: flex-start;
	}
	
	.uk-flex-center\@xl {
		justify-content: center;
	}
	
	.uk-flex-right\@xl {
		justify-content: flex-end;
	}
	
	.uk-flex-between\@xl {
		justify-content: space-between;
	}
	
	.uk-flex-around\@xl {
		justify-content: space-around;
	}
}

.uk-flex-stretch {
	align-items: stretch;
}

.uk-flex-top {
	align-items: flex-start;
}

.uk-flex-middle {
	align-items: center;
}

.uk-flex-bottom {
	align-items: flex-end;
}

.uk-flex-row {
	flex-direction: row;
}

.uk-flex-row-reverse {
	flex-direction: row-reverse;
}

.uk-flex-column {
	flex-direction: column;
}

.uk-flex-column-reverse {
	flex-direction: column-reverse;
}

.uk-flex-nowrap {
	flex-wrap: nowrap;
}

.uk-flex-wrap {
	flex-wrap: wrap;
}

.uk-flex-wrap-reverse {
	flex-wrap: wrap-reverse;
}

.uk-flex-wrap-stretch {
	align-content: stretch;
}

.uk-flex-wrap-top {
	align-content: flex-start;
}

.uk-flex-wrap-middle {
	align-content: center;
}

.uk-flex-wrap-bottom {
	align-content: flex-end;
}

.uk-flex-wrap-between {
	align-content: space-between;
}

.uk-flex-wrap-around {
	align-content: space-around;
}

.uk-flex-first {
	order: -1;
}

.uk-flex-last {
	order: 99;
}

@media (min-width: 640px) {
	.uk-flex-first\@s {
		order: -1;
	}
	
	.uk-flex-last\@s {
		order: 99;
	}
}

@media (min-width: 960px) {
	.uk-flex-first\@m {
		order: -1;
	}
	
	.uk-flex-last\@m {
		order: 99;
	}
}

@media (min-width: 1200px) {
	.uk-flex-first\@l {
		order: -1;
	}
	
	.uk-flex-last\@l {
		order: 99;
	}
}

@media (min-width: 1600px) {
	.uk-flex-first\@xl {
		order: -1;
	}
	
	.uk-flex-last\@xl {
		order: 99;
	}
}

.uk-flex-none {
	flex: none;
}

.uk-flex-auto {
	flex: auto;
}

.uk-flex-1 {
	flex: 1;
}

.uk-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}

.uk-grid > * {
	margin: 0;
}

.uk-grid > * > :last-child {
	margin-bottom: 0;
}

.uk-grid {
	margin-left: -30px;
}

.uk-grid > * {
	padding-left: 30px;
}

.uk-grid + .uk-grid, .uk-grid > .uk-grid-margin, * + .uk-grid-margin {
	margin-top: 30px;
}

@media (min-width: 1200px) {
	.uk-grid {
		margin-left: -40px;
	}
	
	.uk-grid > * {
		padding-left: 40px;
	}
	
	.uk-grid + .uk-grid, .uk-grid > .uk-grid-margin, * + .uk-grid-margin {
		margin-top: 40px;
	}
}

.uk-grid-small {
	margin-left: -15px;
}

.uk-grid-small > * {
	padding-left: 15px;
}

.uk-grid + .uk-grid-small, .uk-grid-small > .uk-grid-margin, * + .uk-grid-margin-small {
	margin-top: 15px;
}

.uk-grid-medium {
	margin-left: -30px;
}

.uk-grid-medium > * {
	padding-left: 30px;
}

.uk-grid + .uk-grid-medium, .uk-grid-medium > .uk-grid-margin, * + .uk-grid-margin-medium {
	margin-top: 30px;
}

.uk-grid-large {
	margin-left: -40px;
}

.uk-grid-large > * {
	padding-left: 40px;
}

.uk-grid + .uk-grid-large, .uk-grid-large > .uk-grid-margin, * + .uk-grid-margin-large {
	margin-top: 40px;
}

@media (min-width: 1200px) {
	.uk-grid-large {
		margin-left: -70px;
	}
	
	.uk-grid-large > * {
		padding-left: 70px;
	}
	
	.uk-grid + .uk-grid-large, .uk-grid-large > .uk-grid-margin, * + .uk-grid-margin-large {
		margin-top: 70px;
	}
}

.uk-grid-collapse {
	margin-left: 0;
}

.uk-grid-collapse > * {
	padding-left: 0;
}

.uk-grid + .uk-grid-collapse, .uk-grid-collapse > .uk-grid-margin {
	margin-top: 0;
}

.uk-grid-divider > * {
	position: relative;
}

.uk-grid-divider > :not(.uk-first-column)::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	border-left: 1px solid #e5e5e5;
}

.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	border-top: 1px solid #e5e5e5;
}

.uk-grid-divider {
	margin-left: -60px;
}

.uk-grid-divider > * {
	padding-left: 60px;
}

.uk-grid-divider > :not(.uk-first-column)::before {
	left: 30px;
}

.uk-grid-divider.uk-grid-stack > .uk-grid-margin {
	margin-top: 60px;
}

.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
	top: -30px;
	left: 60px;
}

@media (min-width: 1200px) {
	.uk-grid-divider {
		margin-left: -80px;
	}
	
	.uk-grid-divider > * {
		padding-left: 80px;
	}
	
	.uk-grid-divider > :not(.uk-first-column)::before {
		left: 40px;
	}
	
	.uk-grid-divider.uk-grid-stack > .uk-grid-margin {
		margin-top: 80px;
	}
	
	.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
		top: -40px;
		left: 80px;
	}
}

.uk-grid-divider.uk-grid-small {
	margin-left: -30px;
}

.uk-grid-divider.uk-grid-small > * {
	padding-left: 30px;
}

.uk-grid-divider.uk-grid-small > :not(.uk-first-column)::before {
	left: 15px;
}

.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin {
	margin-top: 30px;
}

.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before {
	top: -15px;
	left: 30px;
}

.uk-grid-divider.uk-grid-medium {
	margin-left: -60px;
}

.uk-grid-divider.uk-grid-medium > * {
	padding-left: 60px;
}

.uk-grid-divider.uk-grid-medium > :not(.uk-first-column)::before {
	left: 30px;
}

.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin {
	margin-top: 60px;
}

.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before {
	top: -30px;
	left: 60px;
}

.uk-grid-divider.uk-grid-large {
	margin-left: -80px;
}

.uk-grid-divider.uk-grid-large > * {
	padding-left: 80px;
}

.uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before {
	left: 40px;
}

.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin {
	margin-top: 80px;
}

.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
	top: -40px;
	left: 80px;
}

@media (min-width: 1200px) {
	.uk-grid-divider.uk-grid-large {
		margin-left: -140px;
	}
	
	.uk-grid-divider.uk-grid-large > * {
		padding-left: 140px;
	}
	
	.uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before {
		left: 70px;
	}
	
	.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin {
		margin-top: 140px;
	}
	
	.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
		top: -70px;
		left: 140px;
	}
}

.uk-grid-match > *, .uk-grid-item-match {
	display: flex;
	flex-wrap: wrap;
}

.uk-grid-match > * > :not([class*='uk-width']), .uk-grid-item-match > :not([class*='uk-width']) {
	box-sizing: border-box;
	width: 100%;
	flex: auto;
}

[class*='uk-height'] {
	box-sizing: border-box;
}

.uk-height-1-1 {
	height: 100%;
}

.uk-lightbox {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1010;
	background: #000;
	opacity: 0;
	transition: opacity .15s linear;
}

.uk-lightbox.uk-open {
	display: block;
	opacity: 1;
}

.uk-lightbox-page {
	overflow: hidden;
}

.uk-lightbox-items > * {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	justify-content: center;
	align-items: center;
	color: rgba(255, 255, 255, .7);
	will-change: transform, opacity;
}

.uk-lightbox-items > * > * {
	max-width: 100vw;
	max-height: 100vh;
}

.uk-lightbox-items > * > :not(iframe) {
	width: auto;
	height: auto;
}

.uk-lightbox-items > .uk-active {
	display: flex;
}

.uk-lightbox-toolbar {
	padding: 10px 10px;
	background: rgba(0, 0, 0, .3);
	color: rgba(255, 255, 255, .7);
}

.uk-lightbox-toolbar > * {
	color: rgba(255, 255, 255, .7);
}

.uk-lightbox-toolbar-icon {
	padding: 5px;
	color: rgba(255, 255, 255, .7);
}

.uk-lightbox-toolbar-icon:hover {
	color: #fff;
}

.uk-lightbox-button {
	box-sizing: border-box;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, .3);
	color: rgba(255, 255, 255, .7);
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.uk-lightbox-button:hover {
	color: #fff;
}

.uk-lightbox-iframe {
	width: 80%;
	height: 80%;
}

.uk-margin-top {
	margin-top: 20px !important;
}

.uk-margin-medium-top {
	margin-top: 40px !important;
}

.uk-margin-medium-bottom {
	margin-bottom: 40px !important;
}

.uk-margin-large-top {
	margin-top: 40px !important;
}

.uk-margin-large-bottom {
	margin-bottom: 40px !important;
}

@media (min-width: 1200px) {
	.uk-margin-large-top {
		margin-top: 70px !important;
	}
	
	.uk-margin-large-bottom {
		margin-bottom: 70px !important;
	}
}

.uk-margin-remove {
	margin: 0 !important;
}

.uk-margin-remove-top {
	margin-top: 0 !important;
}

.uk-margin-remove-bottom {
	margin-bottom: 0 !important;
}

.uk-margin-remove-left {
	margin-left: 0 !important;
}

.uk-margin-remove-right {
	margin-right: 0 !important;
}

.uk-margin-remove-vertical {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.uk-margin-remove-adjacent + * {
	margin-top: 0 !important;
}

.uk-modal {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1010;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 15px 15px;
	background: rgba(0, 0, 0, .6);
	opacity: 0;
	transition: opacity .15s linear;
}

@media (min-width: 640px) {
	.uk-modal {
		padding: 50px 30px;
	}
}

@media (min-width: 960px) {
	.uk-modal {
		padding-left: 40px;
		padding-right: 40px;
	}
}

.uk-modal.uk-open {
	opacity: 1;
}

.uk-modal-page {
	overflow: hidden;
}

.uk-modal-dialog {
	position: relative;
	box-sizing: border-box;
	margin: 0 auto;
	width: 600px;
	max-width: calc(100% - .01px) !important;
	background: #fff;
	opacity: 0;
	transform: translateY(-100px);
	transition: .3s linear;
	transition-property: opacity, transform;
}

.uk-open > .uk-modal-dialog {
	opacity: 1;
	transform: translateY(0);
}

.uk-modal-container .uk-modal-dialog {
	width: 1200px;
}

.uk-modal-full {
	padding: 0;
	background: none;
}

.uk-modal-full .uk-modal-dialog {
	margin: 0;
	width: 100%;
	max-width: 100%;
	transform: translateY(0);
}

.uk-modal-body {
	padding: 30px 30px;
}

.uk-modal-header {
	padding: 15px 30px;
	background: #f8f8f8;
}

.uk-modal-footer {
	padding: 15px 30px;
	background: #f8f8f8;
}

.uk-modal-body::before, .uk-modal-body::after, .uk-modal-header::before, .uk-modal-header::after, .uk-modal-footer::before, .uk-modal-footer::after {
	content: "";
	display: table;
}

.uk-modal-body::after, .uk-modal-header::after, .uk-modal-footer::after {
	clear: both;
}

.uk-modal-body > :last-child, .uk-modal-header > :last-child, .uk-modal-footer > :last-child {
	margin-bottom: 0;
}

.uk-modal-title {
	font-size: 2rem;
	line-height: 1.3;
}

[class*='uk-modal-close-'] {
	position: absolute;
	z-index: 1010;
	top: 10px;
	right: 10px;
	padding: 5px;
}

[class*='uk-modal-close-']:first-child + * {
	margin-top: 0;
}

.uk-modal-close-outside {
	top: 0;
	right: -5px;
	transform: translate(0, -100%);
	color: #fff;
}

.uk-modal-close-outside:hover {
	color: #fff;
}

@media (min-width: 960px) {
	.uk-modal-close-outside {
		right: 0;
		transform: translate(100%, -100%);
	}
}

.uk-nav, .uk-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.uk-nav li > a {
	display: block;
	text-decoration: none;
}

.uk-nav li > a:focus {
	outline: none;
}

.uk-nav > li > a {
	padding: 5px 0;
}

ul.uk-nav-sub {
	padding: 5px 0 5px 15px;
}

.uk-nav-sub ul {
	padding-left: 15px;
}

.uk-nav-sub a {
	padding: 2px 0;
}

.uk-nav-parent-icon > .uk-parent > a::after {
	content: "";
	width: 1.5em;
	height: 1.5em;
	float: right;
	background-image: url("data:image/svg+xml;\A    charset=UTF-8;\A    ;\A    base64, PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwb2x5bGluZSBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4xIiBwb2ludHM9IjEwIDEgNCA3IDEwIDEzIiAvPgo8L3N2Zz4=");
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.uk-nav-parent-icon > .uk-parent.uk-open > a::after {
	background-image: url("data:image/svg+xml;\A    charset=UTF-8;\A    ;\A    base64, PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwb2x5bGluZSBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4xIiBwb2ludHM9IjEgNCA3IDEwIDEzIDQiIC8+Cjwvc3ZnPg==");
}

.uk-nav-header {
	padding: 5px 0;
	text-transform: uppercase;
	font-size: .875rem;
}

.uk-nav-header:not(:first-child) {
	margin-top: 20px;
}

.uk-nav-divider {
	margin: 5px 0;
}

.uk-nav-default > li > a {
	color: #999;
}

.uk-nav-default > li > a:hover, .uk-nav-default > li > a:focus {
	color: #666;
}

.uk-nav-default > li.uk-active > a {
	color: #333;
}

.uk-nav-default .uk-nav-header {
	color: #333;
}

.uk-nav-default .uk-nav-divider {
	border-top: 1px solid #e5e5e5;
}

.uk-nav-default .uk-nav-sub a {
	color: #999;
}

.uk-nav-default .uk-nav-sub a:hover, .uk-nav-default .uk-nav-sub a:focus {
	color: #666;
}

.uk-nav-default .uk-nav-sub li.uk-active > a {
	color: #333;
}

.uk-nav-primary > li > a {
	font-size: 1.5rem;
	line-height: 1.5;
	color: #999;
}

.uk-nav-primary > li > a:hover, .uk-nav-primary > li > a:focus {
	color: #666;
}

.uk-nav-primary > li.uk-active > a {
	color: #333;
}

.uk-nav-primary .uk-nav-header {
	color: #333;
}

.uk-nav-primary .uk-nav-divider {
	border-top: 1px solid #e5e5e5;
}

.uk-nav-primary .uk-nav-sub a {
	color: #999;
}

.uk-nav-primary .uk-nav-sub a:hover, .uk-nav-primary .uk-nav-sub a:focus {
	color: #666;
}

.uk-nav-primary .uk-nav-sub li.uk-active > a {
	color: #333;
}

.uk-nav-center {
	text-align: center;
}

.uk-nav-center .uk-nav-sub, .uk-nav-center .uk-nav-sub ul {
	padding-left: 0;
}

.uk-nav-center.uk-nav-parent-icon > .uk-parent > a::after {
	position: absolute;
}

.uk-navbar {
	display: flex;
	position: relative;
}

.uk-navbar-container:not(.uk-navbar-transparent) {
	background: #f8f8f8;
}

.uk-navbar-container > ::before, .uk-navbar-container > ::after {
	display: none !important;
}

.uk-navbar-left, .uk-navbar-right, .uk-navbar-center, .uk-navbar-center-left > *, .uk-navbar-center-right > * {
	display: flex;
	align-items: center;
}

.uk-navbar-right {
	margin-left: auto;
}

.uk-navbar-center:only-child {
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.uk-navbar-center:not(:only-child) {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 990;
}

.uk-navbar-center:not(:only-child) .uk-navbar-nav > li > a, .uk-navbar-center:not(:only-child) .uk-navbar-item, .uk-navbar-center:not(:only-child) .uk-navbar-toggle {
	white-space: nowrap;
}

.uk-navbar-center-left, .uk-navbar-center-right {
	position: absolute;
	top: 0;
}

.uk-navbar-center-left {
	right: 100%;
}

.uk-navbar-center-right {
	left: 100%;
}

.uk-navbar-nav {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.uk-navbar-left, .uk-navbar-right, .uk-navbar-center:only-child {
	flex-wrap: wrap;
}

.uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	min-height: 80px;
	padding: 0 15px;
	font-size: 16px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	text-decoration: none;
}

.uk-navbar-nav > li > a {
	color: #999;
}

.uk-navbar-nav > li:hover > a, .uk-navbar-nav > li > a:focus, .uk-navbar-nav > li > a.uk-open {
	color: #666;
	outline: none;
}

.uk-navbar-nav > li > a:active {
	color: #333;
}

.uk-navbar-nav > li.uk-active > a {
	color: #333;
}

.uk-navbar-item {
	color: #666;
}

.uk-navbar-toggle {
	color: #999;
}

.uk-navbar-toggle:hover, .uk-navbar-toggle:focus, .uk-navbar-toggle.uk-open {
	color: #666;
	outline: none;
	text-decoration: none;
}

.uk-navbar-subtitle {
	font-size: .875rem;
}

.uk-navbar-dropdown {
	display: none;
	position: absolute;
	z-index: 1020;
	box-sizing: border-box;
	width: 200px;
	padding: 15px;
	background: #f8f8f8;
	color: #666;
}

.uk-navbar-dropdown.uk-open {
	display: block;
}

.uk-navbar-dropdown-grid {
	margin-left: -30px;
}

.uk-navbar-dropdown-grid > * {
	padding-left: 30px;
}

.uk-navbar-dropdown-grid > .uk-grid-margin {
	margin-top: 30px;
}

.uk-navbar-dropdown-stack .uk-navbar-dropdown-grid > * {
	width: 100% !important;
}

.uk-navbar-dropdown-width-2:not(.uk-navbar-dropdown-stack) {
	width: 400px;
}

.uk-navbar-dropdown-width-3:not(.uk-navbar-dropdown-stack) {
	width: 600px;
}

.uk-navbar-dropdown-width-4:not(.uk-navbar-dropdown-stack) {
	width: 800px;
}

.uk-navbar-dropdown-width-5:not(.uk-navbar-dropdown-stack) {
	width: 1000px;
}

.uk-navbar-dropdown-dropbar {
	margin-top: 0;
	margin-bottom: 0;
}

.uk-navbar-dropdown-nav > li > a {
	color: #999;
}

.uk-navbar-dropdown-nav > li > a:hover, .uk-navbar-dropdown-nav > li > a:focus {
	color: #666;
}

.uk-navbar-dropdown-nav > li.uk-active > a {
	color: #333;
}

.uk-navbar-dropdown-nav .uk-nav-header {
	color: #333;
}

.uk-navbar-dropdown-nav .uk-nav-divider {
	border-top: 1px solid #e5e5e5;
}

.uk-navbar-dropdown-nav .uk-nav-sub a {
	color: #999;
}

.uk-navbar-dropdown-nav .uk-nav-sub a:hover, .uk-navbar-dropdown-nav .uk-nav-sub a:focus {
	color: #666;
}

.uk-navbar-dropdown-nav .uk-nav-sub li.uk-active > a {
	color: #333;
}

.uk-navbar-dropbar {
	background: #f8f8f8;
}

.uk-navbar-dropbar-slide {
	position: absolute;
	z-index: 980;
	left: 0;
	right: 0;
}

.uk-offcanvas {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
}

.uk-offcanvas-flip .uk-offcanvas {
	right: 0;
	left: auto;
}

.uk-offcanvas-bar {
	position: absolute;
	top: 0;
	bottom: 0;
	left: -270px;
	box-sizing: border-box;
	width: 270px;
	padding: 20px 20px;
	background: #222;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

@media (min-width: 960px) {
	.uk-offcanvas-bar {
		left: -350px;
		width: 350px;
		padding: 40px 40px;
	}
}

.uk-offcanvas-flip .uk-offcanvas-bar {
	left: auto;
	right: -270px;
}

@media (min-width: 960px) {
	.uk-offcanvas-flip .uk-offcanvas-bar {
		right: -350px;
	}
}

.uk-open > .uk-offcanvas-bar {
	left: 0;
}

.uk-offcanvas-flip .uk-open > .uk-offcanvas-bar {
	left: auto;
	right: 0;
}

.uk-offcanvas-bar-animation {
	transition: left .3s ease-out;
}

.uk-offcanvas-flip .uk-offcanvas-bar-animation {
	transition-property: right;
}

.uk-offcanvas-reveal {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0;
	overflow: hidden;
	transition: width .3s ease-out;
}

.uk-offcanvas-reveal .uk-offcanvas-bar {
	left: 0;
}

.uk-offcanvas-flip .uk-offcanvas-reveal .uk-offcanvas-bar {
	left: auto;
	right: 0;
}

.uk-open > .uk-offcanvas-reveal {
	width: 270px;
}

@media (min-width: 960px) {
	.uk-open > .uk-offcanvas-reveal {
		width: 350px;
	}
}

.uk-offcanvas-flip .uk-offcanvas-reveal {
	right: 0;
	left: auto;
}

.uk-offcanvas-close {
	position: absolute;
	z-index: 1000;
	top: 20px;
	right: 20px;
	padding: 5px;
}

.uk-offcanvas-overlay {
	width: 100vw;
	touch-action: none;
}

.uk-offcanvas-overlay::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, .1);
	opacity: 0;
	transition: opacity .15s linear;
}

.uk-offcanvas-overlay.uk-open::before {
	opacity: 1;
}

.uk-offcanvas-page, .uk-offcanvas-container {
	overflow-x: hidden;
}

.uk-offcanvas-container {
	position: relative;
	left: 0;
	transition: left .3s ease-out;
	box-sizing: border-box;
	width: 100%;
}

:not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
	left: 270px;
}

.uk-offcanvas-flip.uk-offcanvas-container-animation {
	left: -270px;
}

@media (min-width: 960px) {
	:not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
		left: 350px;
	}
	
	.uk-offcanvas-flip.uk-offcanvas-container-animation {
		left: -350px;
	}
}

.uk-padding-large {
	padding: 30px;
}

@media (min-width: 1200px) {
	.uk-padding-large {
		padding: 70px;
	}
}

.uk-padding-remove-left {
	padding-left: 0 !important;
}

.uk-padding-remove-right {
	padding-right: 0 !important;
}

[class*='uk-position-top'], [class*='uk-position-center'] {
	position: absolute !important;
}

.uk-position-top {
	top: 0;
	left: 0;
	right: 0;
}

.uk-position-top-left {
	top: 0;
	left: 0;
}

.uk-position-top-right {
	top: 0;
	right: 0;
}

.uk-position-center {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: -moz-max-content;
	width: max-content;
	max-width: 100%;
	box-sizing: border-box;
}

[class*='uk-position-center-left'], [class*='uk-position-center-right'] {
	top: 50%;
	transform: translateY(-50%);
}

.uk-position-center-left {
	left: 0;
}

.uk-position-center-right {
	right: 0;
}

.uk-position-center-left-out {
	right: 100%;
	width: -moz-max-content;
	width: max-content;
}

.uk-position-center-right-out {
	left: 100%;
	width: -moz-max-content;
	width: max-content;
}

.uk-position-top-center {
	left: 50%;
	transform: translateX(-50%);
	width: -moz-max-content;
	width: max-content;
	max-width: 100%;
	box-sizing: border-box;
}

.uk-position-top-center {
	top: 0;
}

.uk-position-relative {
	position: relative !important;
}

.uk-position-small {
	max-width: calc(100% - ( 15px * 2 ));
	margin: 15px;
}

.uk-position-small.uk-position-center {
	transform: translate(-50%, -50%) translate(-15px, -15px);
}

.uk-position-small[class*='uk-position-center-left'], .uk-position-small[class*='uk-position-center-right'] {
	transform: translateY(-50%) translateY(-15px);
}

.uk-position-small.uk-position-top-center, .uk-position-small.uk-position-bottom-center {
	transform: translateX(-50%) translateX(-15px);
}

.uk-position-medium.uk-position-center {
	transform: translate(-50%, -50%) translate(-30px, -30px);
}

.uk-position-medium[class*='uk-position-center-left'], .uk-position-medium[class*='uk-position-center-right'] {
	transform: translateY(-50%) translateY(-30px);
}

.uk-position-medium.uk-position-top-center {
	transform: translateX(-50%) translateX(-30px);
}

.uk-position-large.uk-position-center {
	transform: translate(-50%, -50%) translate(-30px, -30px);
}

.uk-position-large[class*='uk-position-center-left'], .uk-position-large[class*='uk-position-center-right'] {
	transform: translateY(-50%) translateY(-30px);
}

.uk-position-large.uk-position-top-center {
	transform: translateX(-50%) translateX(-30px);
}

@media (min-width: 1200px) {
	.uk-position-large.uk-position-center {
		transform: translate(-50%, -50%) translate(-50px, -50px);
	}
	
	.uk-position-large[class*='uk-position-center-left'], .uk-position-large[class*='uk-position-center-right'] {
		transform: translateY(-50%) translateY(-50px);
	}
	
	.uk-position-large.uk-position-top-center {
		transform: translateX(-50%) translateX(-50px);
	}
}

.uk-slideshow {
	-webkit-tap-highlight-color: transparent;
}

.uk-slideshow-items {
	position: relative;
	z-index: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	-webkit-touch-callout: none;
}

.uk-slideshow-items > * {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	will-change: transform, opacity;
	touch-action: pan-y;
}

.uk-slideshow-items > :not(.uk-active) {
	display: none;
}

.uk-sticky-fixed {
	z-index: 980;
	box-sizing: border-box;
	margin: 0 !important;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.uk-sticky[class*='uk-animation-'] {
	animation-duration: .2s;
}

.uk-sticky.uk-animation-reverse {
	animation-duration: .2s;
}

.uk-subnav > .uk-active > a {
	color: #333;
}

.uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
	content: "";
	height: 1.5em;
	margin-left: 0px;
	margin-right: 20px;
	border-left: 1px solid #e5e5e5;
}

.uk-subnav-pill > .uk-active > a {
	background-color: #1e87f0;
	color: #fff;
}

.uk-text-center {
	text-align: center !important;
}

@media (min-width: 640px) {
	.uk-text-center\@s {
		text-align: center !important;
	}
}

@media (min-width: 960px) {
	.uk-text-center\@m {
		text-align: center !important;
	}
}

@media (min-width: 1200px) {
	.uk-text-center\@l {
		text-align: center !important;
	}
}

@media (min-width: 1600px) {
	.uk-text-center\@xl {
		text-align: center !important;
	}
}

.uk-transition-active.uk-active .uk-transition-fade {
	opacity: 1;
}

.uk-transition-active.uk-active .uk-transition-scale-up {
	opacity: 1;
	transform: scale3d(1.1, 1.1, 1);
}

.uk-transition-active.uk-active .uk-transition-scale-down {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

@media (min-width: 960px) {
	.uk-hidden\@m {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.uk-hidden\@l {
		display: none !important;
	}
}

@media (max-width: 1199px) {
	.uk-visible\@l {
		display: none !important;
	}
}

.uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-within) {
	position: absolute !important;
	width: 0 !important;
	height: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden !important;
}

.uk-visible-toggle:not(:hover):not(:focus) .uk-invisible-hover:not(:focus-within) {
	opacity: 0 !important;
}

.uk-visible-toggle {
	-webkit-tap-highlight-color: transparent;
}

.uk-visible-toggle:focus {
	outline: none;
}

[class*='uk-child-width'] > * {
	box-sizing: border-box;
	width: 100%;
}

.uk-child-width-1-2 > * {
	width: 50%;
}

.uk-child-width-1-3 > * {
	width: calc(100% * 1 / 3.001);
}

.uk-child-width-1-4 > * {
	width: 25%;
}

.uk-child-width-1-5 > * {
	width: 20%;
}

.uk-child-width-1-6 > * {
	width: calc(100% * 1 / 6.001);
}

.uk-child-width-auto > * {
	width: auto;
}

.uk-child-width-expand > :not([class*='uk-width']) {
	flex: 1;
	min-width: 1px;
}

@media (min-width: 640px) {
	.uk-child-width-1-1\@s > * {
		width: 100%;
	}
	
	.uk-child-width-1-2\@s > * {
		width: 50%;
	}
	
	.uk-child-width-1-3\@s > * {
		width: calc(100% * 1 / 3.001);
	}
	
	.uk-child-width-1-4\@s > * {
		width: 25%;
	}
	
	.uk-child-width-1-5\@s > * {
		width: 20%;
	}
	
	.uk-child-width-1-6\@s > * {
		width: calc(100% * 1 / 6.001);
	}
	
	.uk-child-width-auto\@s > * {
		width: auto;
	}
	
	.uk-child-width-expand\@s > : not([class*='uk-width']) {
		flex: 1;
		min-width: 1px;
	}
}

@media (min-width: 960px) {
	.uk-child-width-1-1\@m > * {
		width: 100%;
	}
	
	.uk-child-width-1-2\@m > * {
		width: 50%;
	}
	
	.uk-child-width-1-3\@m > * {
		width: calc(100% * 1 / 3.001);
	}
	
	.uk-child-width-1-4\@m > * {
		width: 25%;
	}
	
	.uk-child-width-1-5\@m > * {
		width: 20%;
	}
	
	.uk-child-width-1-6\@m > * {
		width: calc(100% * 1 / 6.001);
	}
	
	.uk-child-width-auto\@m > * {
		width: auto;
	}
	
	.uk-child-width-expand\@m > : not([class*='uk-width']) {
		flex: 1;
		min-width: 1px;
	}
}

@media (min-width: 1200px) {
	.uk-child-width-1-1\@l > * {
		width: 100%;
	}
	
	.uk-child-width-1-2\@l > * {
		width: 50%;
	}
	
	.uk-child-width-1-3\@l > * {
		width: calc(100% * 1 / 3.001);
	}
	
	.uk-child-width-1-4\@l > * {
		width: 25%;
	}
	
	.uk-child-width-1-5\@l > * {
		width: 20%;
	}
	
	.uk-child-width-1-6\@l > * {
		width: calc(100% * 1 / 6.001);
	}
	
	.uk-child-width-auto\@l > * {
		width: auto;
	}
	
	.uk-child-width-expand\@l > : not([class*='uk-width']) {
		flex: 1;
		min-width: 1px;
	}
}

@media (min-width: 1600px) {
	.uk-child-width-1-1\@xl > * {
		width: 100%;
	}
	
	.uk-child-width-1-2\@xl > * {
		width: 50%;
	}
	
	.uk-child-width-1-3\@xl > * {
		width: calc(100% * 1 / 3.001);
	}
	
	.uk-child-width-1-4\@xl > * {
		width: 25%;
	}
	
	.uk-child-width-1-5\@xl > * {
		width: 20%;
	}
	
	.uk-child-width-1-6\@xl > * {
		width: calc(100% * 1 / 6.001);
	}
	
	.uk-child-width-auto\@xl > * {
		width: auto;
	}
	
	.uk-child-width-expand\@xl > : not([class*='uk-width']) {
		flex: 1;
		min-width: 1px;
	}
}

[class*='uk-width'] {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
}

.uk-width-1-2 {
	width: 50%;
}

.uk-width-1-3 {
	width: calc(100% * 1 / 3.001);
}

.uk-width-2-3 {
	width: calc(100% * 2 / 3.001);
}

.uk-width-1-4 {
	width: 25%;
}

.uk-width-3-4 {
	width: 75%;
}

.uk-width-1-5 {
	width: 20%;
}

.uk-width-2-5 {
	width: 40%;
}

.uk-width-3-5 {
	width: 60%;
}

.uk-width-4-5 {
	width: 80%;
}

.uk-width-1-6 {
	width: calc(100% * 1 / 6.001);
}

.uk-width-5-6 {
	width: calc(100% * 5 / 6.001);
}

.uk-width-small {
	width: 150px;
}

.uk-width-medium {
	width: 300px;
}

.uk-width-large {
	width: 450px;
}

.uk-width-xlarge {
	width: 600px;
}

.uk-width-xxlarge {
	width: 750px;
}

.uk-width-auto {
	width: auto;
}

.uk-width-expand {
	flex: 1;
	min-width: 1px;
}

@media (min-width: 640px) {
	.uk-width-1-1\@s {
		width: 100%;
	}
	
	.uk-width-1-2\@s {
		width: 50%;
	}
	
	.uk-width-1-3\@s {
		width: calc(100% * 1 / 3.001);
	}
	
	.uk-width-2-3\@s {
		width: calc(100% * 2 / 3.001);
	}
	
	.uk-width-1-4\@s {
		width: 25%;
	}
	
	.uk-width-3-4\@s {
		width: 75%;
	}
	
	.uk-width-1-5\@s {
		width: 20%;
	}
	
	.uk-width-2-5\@s {
		width: 40%;
	}
	
	.uk-width-3-5\@s {
		width: 60%;
	}
	
	.uk-width-4-5\@s {
		width: 80%;
	}
	
	.uk-width-1-6\@s {
		width: calc(100% * 1 / 6.001);
	}
	
	.uk-width-5-6\@s {
		width: calc(100% * 5 / 6.001);
	}
	
	.uk-width-small\@s {
		width: 150px;
	}
	
	.uk-width-medium\@s {
		width: 300px;
	}
	
	.uk-width-large\@s {
		width: 450px;
	}
	
	.uk-width-xlarge\@s {
		width: 600px;
	}
	
	.uk-width-xxlarge\@s {
		width: 750px;
	}
	
	.uk-width-auto\@s {
		width: auto;
	}
	
	.uk-width-expand\@s {
		flex: 1;
		min-width: 1px;
	}
}

@media (min-width: 960px) {
	.uk-width-1-1\@m {
		width: 100%;
	}
	
	.uk-width-1-2\@m {
		width: 50%;
	}
	
	.uk-width-1-3\@m {
		width: calc(100% * 1 / 3.001);
	}
	
	.uk-width-2-3\@m {
		width: calc(100% * 2 / 3.001);
	}
	
	.uk-width-1-4\@m {
		width: 25%;
	}
	
	.uk-width-3-4\@m {
		width: 75%;
	}
	
	.uk-width-1-5\@m {
		width: 20%;
	}
	
	.uk-width-2-5\@m {
		width: 40%;
	}
	
	.uk-width-3-5\@m {
		width: 60%;
	}
	
	.uk-width-4-5\@m {
		width: 80%;
	}
	
	.uk-width-1-6\@m {
		width: calc(100% * 1 / 6.001);
	}
	
	.uk-width-5-6\@m {
		width: calc(100% * 5 / 6.001);
	}
	
	.uk-width-small\@m {
		width: 150px;
	}
	
	.uk-width-medium\@m {
		width: 300px;
	}
	
	.uk-width-large\@m {
		width: 450px;
	}
	
	.uk-width-xlarge\@m {
		width: 600px;
	}
	
	.uk-width-xxlarge\@m {
		width: 750px;
	}
	
	.uk-width-auto\@m {
		width: auto;
	}
	
	.uk-width-expand\@m {
		flex: 1;
		min-width: 1px;
	}
}

@media (min-width: 1200px) {
	.uk-width-1-1\@l {
		width: 100%;
	}
	
	.uk-width-1-2\@l {
		width: 50%;
	}
	
	.uk-width-1-3\@l {
		width: calc(100% * 1 / 3.001);
	}
	
	.uk-width-2-3\@l {
		width: calc(100% * 2 / 3.001);
	}
	
	.uk-width-1-4\@l {
		width: 25%;
	}
	
	.uk-width-3-4\@l {
		width: 75%;
	}
	
	.uk-width-1-5\@l {
		width: 20%;
	}
	
	.uk-width-2-5\@l {
		width: 40%;
	}
	
	.uk-width-3-5\@l {
		width: 60%;
	}
	
	.uk-width-4-5\@l {
		width: 80%;
	}
	
	.uk-width-1-6\@l {
		width: calc(100% * 1 / 6.001);
	}
	
	.uk-width-5-6\@l {
		width: calc(100% * 5 / 6.001);
	}
	
	.uk-width-small\@l {
		width: 150px;
	}
	
	.uk-width-medium\@l {
		width: 300px;
	}
	
	.uk-width-large\@l {
		width: 450px;
	}
	
	.uk-width-xlarge\@l {
		width: 600px;
	}
	
	.uk-width-xxlarge\@l {
		width: 750px;
	}
	
	.uk-width-auto\@l {
		width: auto;
	}
	
	.uk-width-expand\@l {
		flex: 1;
		min-width: 1px;
	}
}

@media (min-width: 1600px) {
	.uk-width-1-1\@xl {
		width: 100%;
	}
	
	.uk-width-1-2\@xl {
		width: 50%;
	}
	
	.uk-width-1-3\@xl {
		width: calc(100% * 1 / 3.001);
	}
	
	.uk-width-2-3\@xl {
		width: calc(100% * 2 / 3.001);
	}
	
	.uk-width-1-4\@xl {
		width: 25%;
	}
	
	.uk-width-3-4\@xl {
		width: 75%;
	}
	
	.uk-width-1-5\@xl {
		width: 20%;
	}
	
	.uk-width-2-5\@xl {
		width: 40%;
	}
	
	.uk-width-3-5\@xl {
		width: 60%;
	}
	
	.uk-width-4-5\@xl {
		width: 80%;
	}
	
	.uk-width-1-6\@xl {
		width: calc(100% * 1 / 6.001);
	}
	
	.uk-width-5-6\@xl {
		width: calc(100% * 5 / 6.001);
	}
	
	.uk-width-small\@xl {
		width: 150px;
	}
	
	.uk-width-medium\@xl {
		width: 300px;
	}
	
	.uk-width-large\@xl {
		width: 450px;
	}
	
	.uk-width-xlarge\@xl {
		width: 600px;
	}
	
	.uk-width-xxlarge\@xl {
		width: 750px;
	}
	
	.uk-width-auto\@xl {
		width: auto;
	}
	
	.uk-width-expand\@xl {
		flex: 1;
		min-width: 1px;
	}
}
