:root {
	/* Base theme colors */
	--primary-color: #3a9600;/*#6fd42f;*/
	--secondary-color: #4caf50;
	--accent-color: #bcffb4;
	--accent-light: #dcf5dc;  /* Changed: more greenish light shade */
	--accent-dark: #008807;
	--light-color: #f5fff2;
	--dark-color: #2c3e2e;
	
	/* Additional accent variations */
	--accent-hover: #eaf5ea;  /* Changed: lighter hover state */
	--accent-active: #a5d6a7;
	
	/* Accordion specific colors */
	--accordion-hover-bg: #e8f5e9;
	--accordion-hover-text: var(--dark-color);
	--accordion-expanded-bg: var(--accent-color);
	--accordion-expanded-text: var(--dark-color);
	
	/* Navigation colors */
	--nav-bg: var(--light-color);
	--nav-text: var(--dark-color);
	--nav-selected-bg: var(--accent-light);
	--nav-selected-text: var(--dark-color);
	--nav-hover-bg: #e8f5e9;
	--nav-hover-text: var(--dark-color);
	--nav-disabled-bg: #f0f0f0;
	--nav-disabled-text: #999999;
	
	/* Content colors */
	--content-bg: var(--light-color);
	--content-text: var(--dark-color);
	--content-selected-bg: var(--accent-light);
	--content-selected-text: var(--dark-color);
	--content-hover-bg: #e8f5e9;
	--content-hover-text: var(--dark-color);
	--content-header-bg: var(--secondary-color);
	--content-header-text: var(--light-color);
	
	/* Header/Toolbar colors - updated to light background */
	--header-bg: var(--accent-light);
	--header-text: var(--dark-color);
	--header-hover-bg: var(--accent-color);
	--header-hover-text: var(--dark-color);
	--header-active-bg: var(--accent-dark);
	--header-active-text: var(--dark-color);
	
	/* Control colors (buttons, inputs, etc) */
	--control-bg: var(--light-color);
	--control-text: var(--dark-color);
	--control-border: var(--accent-color);
	--control-hover-bg: #e8f5e9;
	--control-hover-text: var(--dark-color);
	--control-active-bg: var(--accent-color);
	--control-active-text: var(--dark-color);
	--control-focus-border: var(--primary-color);
	
	/* Overlay colors */
	--overlay-bg: rgba(44, 62, 46, 0.1);
	--overlay-text: var(--dark-color);
	--modal-bg: rgba(44, 62, 46, 0.7);
	--modal-text: var(--light-color);
	--loading-bg: rgba(44, 62, 46, 0.1);
	--loading-text: var(--dark-color);
	
	/* Message colors */
	--message-info-bg: var(--info-color);
	--message-info-text: white;
	--message-success-bg: var(--success-color);
	--message-success-text: --dark-color;
	--message-warning-bg: var(--warning-color);
	--message-warning-text: --dark-color;
	--message-error-bg: var(--error-color);
	--message-error-text: white;
	
	/* State colors - updated for consistency */
	--state-selected-bg: var(--accent-light);  /* Using same greenish shade */
	--state-selected-text: var(--dark-color);
	--state-hover-bg: var(--accent-hover);     /* Using same hover shade */
	--state-hover-text: var(--dark-color);
	--state-active-bg: var(--accent-color);
	--state-active-text: var(--dark-color);
	--state-disabled-bg: #f0f0f0;
	--state-disabled-text: #999999;
	
	/* Tooltip colors */
	--tooltip-bg: var(--accent-color);
	--tooltip-text: var(--dark-color);
	--tooltip-border: var(--dark-color);
	
	/* Form colors */
	--form-bg: var(--light-color);
	--form-text: var(--dark-color);
	--form-border: var(--accent-color);
	--form-label-text: var(--dark-color);
	--form-placeholder-text: rgba(44, 62, 46, 0.5);
	
	/* Table colors - updated for clearer states */
	--table-header-bg: var(--accent-light);
	--table-header-text: var(--dark-color);
	--table-cell-bg: var(--light-color);
	--table-cell-text: var(--dark-color);
	--table-selected-bg: var(--accent-light);  /* Using more greenish shade */
	--table-selected-text: var(--dark-color);
	--table-hover-bg: var(--accent-hover);     /* Using lighter shade for hover */
	--table-hover-text: var(--dark-color);
	--table-border: var(--accent-color);
	
	/* Dark mode colors */
	--dark-mode-bg: #1a291c;
	--dark-mode-text: #f5fff2;
	--dark-mode-border: #324634;
	--dark-mode-hover: #2a3a2c;
	--dark-mode-active: #3a513d;
	
	/* Special colors - unchanged */
	--error-color: #ff5252;
	--warning-color: #ffc107;
	--success-color: #4caf50;
	--info-color: #2196f3;
	
	/* Adding sidebar specific variable */
	--sidebar-item-radius: 0 30px 30px 0;
	--sidebar-right-margin: 2px;  /* Margin for right side spacing */
	
	/* Segmented UI control colors */
	--segment-bg: var(--light-color);
	--segment-text: var(--dark-color);
	--segment-border: var(--accent-color);
	--segment-hover-bg: var(--accent-hover);
	--segment-hover-text: var(--dark-color);
	--segment-active-bg: var(--accent-color);
	--segment-active-text: var(--dark-color);
	--segment-selected-bg: var(--secondary-color);
	--segment-selected-text: var(--light-color);
	--segment-selected-hover-bg: var(--accent-light);
	--segment-selected-hover-text: var(--light-color);
	--segment-selected-active-bg: var(--accent-light);
	--segment-selected-active-text: var(--light-color);
	--tab-hover-highlight-bottom: #0eff0d;
	--tab-text-color: var(--secondary-color);
	--tab-hover-bg: var(--control-hover-bg);
	--tab-selected-color: var(--secondary-color);
	--tab-selected-shadow: var(--secondary-color);
	--tab-close-icon-color: var(--text-color);
}
  
/* Dark mode overrides */
@media (prefers-color-scheme: dark) {
	:root {
		/* Invert main colors */
		--nav-bg: var(--dark-mode-bg);
		--nav-text: var(--dark-mode-text);
		--content-bg: var(--dark-mode-bg);
		--content-text: var(--dark-mode-text);
		--control-bg: var(--dark-mode-bg);
		--control-text: var(--dark-mode-text);
		
		/* Adjust state colors */
		--state-hover-bg: var(--dark-mode-hover);
		--state-hover-text: var(--dark-mode-text);
		--state-active-bg: var(--dark-mode-active);
		--state-active-text: var(--dark-mode-text);
		
		/* Adjust other elements */
		--tooltip-bg: var(--dark-mode-bg);
		--tooltip-text: var(--dark-mode-text);
		--form-bg: var(--dark-mode-bg);
		--form-text: var(--dark-mode-text);
		--table-cell-bg: var(--dark-mode-bg);
		--table-cell-text: var(--dark-mode-text);
		
		/* Update header colors for dark mode */
		--header-bg: var(--dark-mode-hover);
		--header-text: var(--dark-mode-text);
		--header-hover-bg: var(--dark-mode-active);
		--header-hover-text: var(--dark-mode-text);
		--header-active-bg: var(--dark-mode-active);
		--header-active-text: var(--dark-mode-text);
		
		/* Update table header colors for dark mode */
		--table-header-bg: var(--dark-mode-hover);
		--table-header-text: var(--dark-mode-text);
	}
}
 

.webix_view {
	-webkit-appearance: none;
	-webkit-font-smoothing: antialiased;
	background-color: #fff;
	border: 0 solid #dadee0;
	color: #475466;
	cursor: default;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 400;
	letter-spacing: .2px;
	overflow: hidden;
	white-space: normal
}

	.webix_view.webix_form {
		background-color: #fff
	}

body {
	-webkit-tap-highlight-color: transparent !important
}

.webix_abslayout {
	position: relative
}

	.webix_abslayout > .webix_view {
		position: absolute !important
	}

.webix_layout_space, .webix_layout_wide {
	background-color: #ebedf0
}

.webix_layout_accordion, .webix_layout_clean, .webix_layout_line, .webix_multiview {
	background: transparent
}

.webix_overlay {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 100%;
	padding-top: 10px;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: 10
}

.webix_view > .webix_disabled {
	cursor: not-allowed;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40);
	height: 100%;
	left: 0;
	opacity: .4;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1
}

.webix_disabled_view {
	overflow: hidden !important;
	position: relative
}

body.webix_full_screen {
	margin: 0;
	overflow: hidden;
	padding: 0
}

.webix_noselect, .webix_noselect div {
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none
}

.webix_selectable {
	-moz-user-select: text;
	-webkit-user-select: text;
	user-select: text
}

.webix_template {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 100%;
	padding: 4px 9pt
}

.webix_clean {
	background: transparent
}

	.webix_clean .webix_template {
		padding: 0
	}

.webix_section {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background-color: transparent;
	box-sizing: border-box;
	color: #444;
	font-size: 10px;
	line-height: 36px;
	position: relative;
	text-transform: uppercase
}

	.webix_section:before {
		background-color: #dadee0;
		content: "";
		display: block;
		height: 1px;
		position: absolute;
		top: 50%;
		width: 100%
	}

	.webix_section > .webix_template {
		background-color: #fff;
		display: inline;
		margin-left: 30px;
		padding: 0 8px;
		position: relative
	}

.webix_layout_space > .webix_section > .webix_template, .webix_layout_wide > .webix_section > .webix_template {
	background-color: #ebedf0;
	padding: 0 8px
}

.webix_layout_clean > .webix_section > .webix_template, .webix_layout_line > .webix_section > .webix_template {
	background-color: #fff;
	padding: 0 8px
}

.webix_header {
	color: #475466;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 34px
}

	.webix_header .webix_el_label .webix_el_box {
		color: #475466;
		font-family: Roboto,sans-serif;
		font-size: 14px;
		font-weight: 500;
		letter-spacing: 0
	}

	.webix_header.webix_dark {
		background: #657584;
		border-color: #657584
	}

		.webix_header.webix_dark .webix_el_button, .webix_header.webix_dark .webix_el_label .webix_el_box, .webix_header.webix_dark .webix_inp_label, .webix_header.webix_dark .webix_secondary .webix_icon, .webix_header.webix_dark .webix_secondary .webix_icon_btn, .webix_header.webix_dark .webix_secondary .webix_img_btn_text, .webix_header.webix_dark .webix_transparent .webix_icon, .webix_header.webix_dark .webix_transparent .webix_icon_btn, .webix_header.webix_dark .webix_transparent .webix_img_btn_text, .webix_header.webix_dark .webix_transparent button {
			color: #fff
		}

			.webix_header.webix_dark .webix_transparent button:focus, .webix_header.webix_dark .webix_transparent button:hover {
				background-color: rgba(0,0,0,.2)
			}

			.webix_header.webix_dark .webix_transparent button:active {
				background-color: rgba(0,0,0,.4)
			}

		.webix_header.webix_dark .webix_inp_counter_next, .webix_header.webix_dark .webix_inp_counter_prev, .webix_header.webix_dark .webix_menu-x .webix_list_item, .webix_header.webix_dark .webix_secondary button, .webix_header.webix_dark .webix_segment_0, .webix_header.webix_dark .webix_segment_1, .webix_header.webix_dark .webix_segment_N {
			background-color: rgba(0,0,0,.2);
			border-color: transparent;
			color: #fff
		}

		.webix_header.webix_dark .webix_view > .webix_template {
			background-color: #657584;
			color: #fff
		}

		.webix_header.webix_dark .webix_inp_counter_next:focus, .webix_header.webix_dark .webix_inp_counter_next:hover, .webix_header.webix_dark .webix_inp_counter_prev:focus, .webix_header.webix_dark .webix_inp_counter_prev:hover, .webix_header.webix_dark .webix_menu-x .webix_list_item:focus, .webix_header.webix_dark .webix_menu-x .webix_list_item:hover, .webix_header.webix_dark .webix_secondary button:focus, .webix_header.webix_dark .webix_secondary button:hover, .webix_header.webix_dark .webix_segment_0:focus, .webix_header.webix_dark .webix_segment_0:hover, .webix_header.webix_dark .webix_segment_1:focus, .webix_header.webix_dark .webix_segment_1:hover, .webix_header.webix_dark .webix_segment_N:focus, .webix_header.webix_dark .webix_segment_N:hover {
			background-color: rgba(0,0,0,.4);
			color: #fff
		}

		.webix_header.webix_dark .webix_inp_counter_next:active, .webix_header.webix_dark .webix_inp_counter_prev:active, .webix_header.webix_dark .webix_menu-x .webix_list_item:active, .webix_header.webix_dark .webix_secondary button:active, .webix_header.webix_dark .webix_segment_0:active, .webix_header.webix_dark .webix_segment_1:active, .webix_header.webix_dark .webix_segment_N:active {
			background-color: rgba(0,0,0,.5);
			color: #fff
		}

		.webix_header.webix_dark .webix_inp_static, .webix_header.webix_dark input[type=combo], .webix_header.webix_dark input[type=text] {
			background-color: rgba(0,0,0,.2);
			border-color: transparent;
			color: hsla(0,0%,100%,.7)
		}

			.webix_header.webix_dark .webix_inp_static:focus, .webix_header.webix_dark input[type=combo]:focus, .webix_header.webix_dark input[type=text]:focus {
				border-color: #fff;
				box-shadow: none
			}

		.webix_header.webix_dark .webix_el_counter button {
			background-color: rgba(0,0,0,.3)
		}

		.webix_header.webix_dark .webix_el_counter input[type=text]:focus {
			border-color: transparent
		}

		.webix_header.webix_dark .webix_placeholder, .webix_header.webix_dark :-moz-placeholder, .webix_header.webix_dark :-ms-input-placeholder, .webix_header.webix_dark ::-moz-placeholder, .webix_header.webix_dark ::-webkit-input-placeholder {
			color: hsla(0,0%,100%,.4)
		}

		.webix_header.webix_dark .webix_input_icon {
			color: hsla(0,0%,100%,.7)
		}

		.webix_header.webix_dark .webix_selected.webix_segment_0, .webix_header.webix_dark .webix_selected.webix_segment_1, .webix_header.webix_dark .webix_selected.webix_segment_N {
			background: #1ca1c1;
			color: #fff
		}

			.webix_header.webix_dark .webix_selected.webix_segment_0:focus, .webix_header.webix_dark .webix_selected.webix_segment_0:hover, .webix_header.webix_dark .webix_selected.webix_segment_1:focus, .webix_header.webix_dark .webix_selected.webix_segment_1:hover, .webix_header.webix_dark .webix_selected.webix_segment_N:focus, .webix_header.webix_dark .webix_selected.webix_segment_N:hover {
				background-color: #1992af
			}

			.webix_header.webix_dark .webix_selected.webix_segment_0:active, .webix_header.webix_dark .webix_selected.webix_segment_1:active, .webix_header.webix_dark .webix_selected.webix_segment_N:active {
				background-color: #17839d
			}

		.webix_header.webix_dark .webix_el_icon, .webix_header.webix_dark .webix_icon_btn, .webix_header.webix_dark .webix_icon_button, .webix_header.webix_dark .webix_img_btn, .webix_header.webix_dark .webix_img_btn_top .webix_icon, .webix_header.webix_dark .webix_img_btn_top .webix_img_btn_text {
			color: #fff
		}

		.webix_header.webix_dark .webix_control {
			border-color: #1ca1c1
		}

		.webix_header.webix_dark .webix_icon_button:hover:before {
			background-color: rgba(0,0,0,.2)
		}

		.webix_header.webix_dark .webix_icon_button:hover .webix_icon {
			opacity: 1
		}

		.webix_header.webix_dark .webix_icon_button .webix_icon {
			color: #fff;
			opacity: .7
		}

		.webix_header.webix_dark .webix_img_btn, .webix_header.webix_dark .webix_img_btn_top {
			border-width: 0
		}

		.webix_header.webix_dark .webix_custom_checkbox, .webix_header.webix_dark .webix_custom_radio {
			color: #fff
		}

			.webix_header.webix_dark .webix_custom_checkbox:focus, .webix_header.webix_dark .webix_custom_radio:focus {
				color: #f0f0f0
			}

		.webix_header.webix_dark .webix_label_right {
			color: #fff
		}

		.webix_header.webix_dark .webix_view.webix_control .webix_disabled_box button {
			background: rgba(0,0,0,.1);
			color: hsla(0,0%,100%,.4);
			text-shadow: none
		}

		.webix_header.webix_dark .webix_disabled_view.webix_control .webix_icon, .webix_header.webix_dark .webix_disabled_view.webix_control .webix_icon_btn, .webix_header.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_disabled_box .webix_img_btn_text, .webix_header.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon, .webix_header.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon_btn, .webix_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_img_btn_text, .webix_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_input_icon, .webix_header.webix_dark .webix_view.webix_control .webix_disabled_box button, .webix_header.webix_dark .webix_view.webix_control .webix_disabled_box label {
			color: hsla(0,0%,100%,.4)
		}

		.webix_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_static, .webix_header.webix_dark .webix_view.webix_control .webix_disabled_box input, .webix_header.webix_dark .webix_view.webix_control .webix_disabled_box select, .webix_header.webix_dark .webix_view.webix_control .webix_disabled_box textarea {
			background: rgba(0,0,0,.1);
			color: hsla(0,0%,100%,.4)
		}

		.webix_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_counter_next, .webix_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_counter_prev, .webix_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_item_tab, .webix_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_0, .webix_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_1, .webix_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_N {
			background: rgba(0,0,0,.1);
			color: hsla(0,0%,100%,.4);
			text-shadow: none
		}

		.webix_header.webix_dark .webix_disabled_top_label {
			color: hsla(0,0%,100%,.4)
		}

	.webix_header.webix_dark {
		color: #fff
	}

	.webix_header > div {
		line-height: 36px;
		padding-bottom: 0;
		padding-top: 0
	}

.webix_spacer {
	background: transparent
}

.webix_view_animate {
	height: 100%;
	position: relative;
	width: 100%
}

x\:ui {
	display: none
}

.webix_view.webix_flexlayout {
	box-sizing: border-box;
	display: flex !important;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden
}

.webix_flexlayout > div {
	display: block !important
}

.webix_view_align {
	background: transparent
}

.webix_view a.webix_list_item, .webix_view div, .webix_view div.webix_inp_static:focus, .webix_view span, .webix_view.webix_window, button, input, select, textarea {
	outline: 0
}

.webix_resize_area {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%
}

.webix_resize_handle_x .webix_handle_content, .webix_resize_handle_y .webix_handle_content {
	background: hsla(0,0%,39%,.1);
	border: 1px dotted #ebebeb;
	height: 100%;
	width: 100%
}

.webix_resize_handle_x {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: ew-resize;
	height: 100%;
	position: absolute;
	top: 0;
	width: 1px;
	z-index: 2
}

	.webix_resize_handle_x .webix_handle_content {
		border-width: 0 1px
	}

.webix_resize_origin_x {
	cursor: ew-resize;
	height: 100%;
	position: absolute;
	top: 0;
	width: 3px;
	z-index: 2
}

.webix_resize_handle_y {
	cursor: ns-resize;
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 2
}

	.webix_resize_handle_y .webix_handle_content {
		border-width: 1px 0
	}

.webix_resize_origin_y {
	cursor: ns-resize;
	height: 3px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 2
}

.webix_resizer.webix_disabled_view {
	cursor: default
}

.webix_resizer_vy {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAADAQMAAABCowZuAAAABlBMVEUAAACkvtSA7tmIAAAAAXRSTlMAQObYZgAAAA9JREFUCB1jXMUABoxAGgAJaAFXPIkJqAAAAABJRU5ErkJggg==) no-repeat center center;
	border: 0 !important;
	cursor: ns-resize;
	margin-top: 0 !important;
	padding: 0 !important
}

.webix_resizer_vx {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAXAQMAAAD0oWdxAAAABlBMVEUAAACkvtSA7tmIAAAAAXRSTlMAQObYZgAAAA5JREFUeF5jWMDAQDwGAKyuB4FpGQdzAAAAAElFTkSuQmCC) no-repeat center center;
	border: 0 !important;
	cursor: ew-resize;
	margin-left: 0 !important;
	padding: 0 !important
}

.webix_resizer_y {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAADAQMAAABCowZuAAAABlBMVEUAAACkvtSA7tmIAAAAAXRSTlMAQObYZgAAAA9JREFUCB1jXMUABoxAGgAJaAFXPIkJqAAAAABJRU5ErkJggg==) no-repeat center center;
	background-color: #fff;
	cursor: ns-resize
}

.webix_resizer_x {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAXAQMAAAD0oWdxAAAABlBMVEUAAACkvtSA7tmIAAAAAXRSTlMAQObYZgAAAA5JREFUeF5jWMDAQDwGAKyuB4FpGQdzAAAAAElFTkSuQmCC) no-repeat center center;
	background-color: #fff;
	cursor: ew-resize
}

.webix_accordionitem_body {
	position: relative
}

	.webix_accordionitem_body > div {
		border-width: 0 !important
	}

.webix_accordionitem_header {
	border-bottom: 1px solid #dadee0;
	color: #475466;
	cursor: pointer;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 34px;
	overflow: hidden;
	position: relative;
	z-index: 2
}

	.webix_accordionitem_header.webix_dark {
		color: #fff
	}

	.webix_accordionitem_header .webix_el_label .webix_el_box {
		color: #475466;
		font-family: Roboto,sans-serif;
		font-size: 14px;
		font-weight: 500;
		letter-spacing: 0
	}

	.webix_accordionitem_header.webix_dark {
		background: #657584;
		border-color: #657584
	}

		.webix_accordionitem_header.webix_dark .webix_el_button, .webix_accordionitem_header.webix_dark .webix_el_label .webix_el_box, .webix_accordionitem_header.webix_dark .webix_inp_label, .webix_accordionitem_header.webix_dark .webix_secondary .webix_icon, .webix_accordionitem_header.webix_dark .webix_secondary .webix_icon_btn, .webix_accordionitem_header.webix_dark .webix_secondary .webix_img_btn_text, .webix_accordionitem_header.webix_dark .webix_transparent .webix_icon, .webix_accordionitem_header.webix_dark .webix_transparent .webix_icon_btn, .webix_accordionitem_header.webix_dark .webix_transparent .webix_img_btn_text, .webix_accordionitem_header.webix_dark .webix_transparent button {
			color: #fff
		}

			.webix_accordionitem_header.webix_dark .webix_transparent button:focus, .webix_accordionitem_header.webix_dark .webix_transparent button:hover {
				background-color: rgba(0,0,0,.2)
			}

			.webix_accordionitem_header.webix_dark .webix_transparent button:active {
				background-color: rgba(0,0,0,.4)
			}

		.webix_accordionitem_header.webix_dark .webix_inp_counter_next, .webix_accordionitem_header.webix_dark .webix_inp_counter_prev, .webix_accordionitem_header.webix_dark .webix_menu-x .webix_list_item, .webix_accordionitem_header.webix_dark .webix_secondary button, .webix_accordionitem_header.webix_dark .webix_segment_0, .webix_accordionitem_header.webix_dark .webix_segment_1, .webix_accordionitem_header.webix_dark .webix_segment_N {
			background-color: rgba(0,0,0,.2);
			border-color: transparent;
			color: #fff
		}

		.webix_accordionitem_header.webix_dark .webix_view > .webix_template {
			background-color: #657584;
			color: #fff
		}

		.webix_accordionitem_header.webix_dark .webix_inp_counter_next:focus, .webix_accordionitem_header.webix_dark .webix_inp_counter_next:hover, .webix_accordionitem_header.webix_dark .webix_inp_counter_prev:focus, .webix_accordionitem_header.webix_dark .webix_inp_counter_prev:hover, .webix_accordionitem_header.webix_dark .webix_menu-x .webix_list_item:focus, .webix_accordionitem_header.webix_dark .webix_menu-x .webix_list_item:hover, .webix_accordionitem_header.webix_dark .webix_secondary button:focus, .webix_accordionitem_header.webix_dark .webix_secondary button:hover, .webix_accordionitem_header.webix_dark .webix_segment_0:focus, .webix_accordionitem_header.webix_dark .webix_segment_0:hover, .webix_accordionitem_header.webix_dark .webix_segment_1:focus, .webix_accordionitem_header.webix_dark .webix_segment_1:hover, .webix_accordionitem_header.webix_dark .webix_segment_N:focus, .webix_accordionitem_header.webix_dark .webix_segment_N:hover {
			background-color: rgba(0,0,0,.4);
			color: #fff
		}

		.webix_accordionitem_header.webix_dark .webix_inp_counter_next:active, .webix_accordionitem_header.webix_dark .webix_inp_counter_prev:active, .webix_accordionitem_header.webix_dark .webix_menu-x .webix_list_item:active, .webix_accordionitem_header.webix_dark .webix_secondary button:active, .webix_accordionitem_header.webix_dark .webix_segment_0:active, .webix_accordionitem_header.webix_dark .webix_segment_1:active, .webix_accordionitem_header.webix_dark .webix_segment_N:active {
			background-color: rgba(0,0,0,.5);
			color: #fff
		}

		.webix_accordionitem_header.webix_dark .webix_inp_static, .webix_accordionitem_header.webix_dark input[type=combo], .webix_accordionitem_header.webix_dark input[type=text] {
			background-color: rgba(0,0,0,.2);
			border-color: transparent;
			color: hsla(0,0%,100%,.7)
		}

			.webix_accordionitem_header.webix_dark .webix_inp_static:focus, .webix_accordionitem_header.webix_dark input[type=combo]:focus, .webix_accordionitem_header.webix_dark input[type=text]:focus {
				border-color: #fff;
				box-shadow: none
			}

		.webix_accordionitem_header.webix_dark .webix_el_counter button {
			background-color: rgba(0,0,0,.3)
		}

		.webix_accordionitem_header.webix_dark .webix_el_counter input[type=text]:focus {
			border-color: transparent
		}

		.webix_accordionitem_header.webix_dark .webix_placeholder, .webix_accordionitem_header.webix_dark :-moz-placeholder, .webix_accordionitem_header.webix_dark :-ms-input-placeholder, .webix_accordionitem_header.webix_dark ::-moz-placeholder, .webix_accordionitem_header.webix_dark ::-webkit-input-placeholder {
			color: hsla(0,0%,100%,.4)
		}

		.webix_accordionitem_header.webix_dark .webix_input_icon {
			color: hsla(0,0%,100%,.7)
		}

		.webix_accordionitem_header.webix_dark .webix_selected.webix_segment_0, .webix_accordionitem_header.webix_dark .webix_selected.webix_segment_1, .webix_accordionitem_header.webix_dark .webix_selected.webix_segment_N {
			background: #1ca1c1;
			color: #fff
		}

			.webix_accordionitem_header.webix_dark .webix_selected.webix_segment_0:focus, .webix_accordionitem_header.webix_dark .webix_selected.webix_segment_0:hover, .webix_accordionitem_header.webix_dark .webix_selected.webix_segment_1:focus, .webix_accordionitem_header.webix_dark .webix_selected.webix_segment_1:hover, .webix_accordionitem_header.webix_dark .webix_selected.webix_segment_N:focus, .webix_accordionitem_header.webix_dark .webix_selected.webix_segment_N:hover {
				background-color: #1992af
			}

			.webix_accordionitem_header.webix_dark .webix_selected.webix_segment_0:active, .webix_accordionitem_header.webix_dark .webix_selected.webix_segment_1:active, .webix_accordionitem_header.webix_dark .webix_selected.webix_segment_N:active {
				background-color: #17839d
			}

		.webix_accordionitem_header.webix_dark .webix_el_icon, .webix_accordionitem_header.webix_dark .webix_icon_btn, .webix_accordionitem_header.webix_dark .webix_icon_button, .webix_accordionitem_header.webix_dark .webix_img_btn, .webix_accordionitem_header.webix_dark .webix_img_btn_top .webix_icon, .webix_accordionitem_header.webix_dark .webix_img_btn_top .webix_img_btn_text {
			color: #fff
		}

		.webix_accordionitem_header.webix_dark .webix_control {
			border-color: #1ca1c1
		}

		.webix_accordionitem_header.webix_dark .webix_icon_button:hover:before {
			background-color: rgba(0,0,0,.2)
		}

		.webix_accordionitem_header.webix_dark .webix_icon_button:hover .webix_icon {
			opacity: 1
		}

		.webix_accordionitem_header.webix_dark .webix_icon_button .webix_icon {
			color: #fff;
			opacity: .7
		}

		.webix_accordionitem_header.webix_dark .webix_img_btn, .webix_accordionitem_header.webix_dark .webix_img_btn_top {
			border-width: 0
		}

		.webix_accordionitem_header.webix_dark .webix_custom_checkbox, .webix_accordionitem_header.webix_dark .webix_custom_radio {
			color: #fff
		}

			.webix_accordionitem_header.webix_dark .webix_custom_checkbox:focus, .webix_accordionitem_header.webix_dark .webix_custom_radio:focus {
				color: #f0f0f0
			}

		.webix_accordionitem_header.webix_dark .webix_label_right {
			color: #fff
		}

		.webix_accordionitem_header.webix_dark .webix_view.webix_control .webix_disabled_box button {
			background: rgba(0,0,0,.1);
			color: hsla(0,0%,100%,.4);
			text-shadow: none
		}

		.webix_accordionitem_header.webix_dark .webix_disabled_view.webix_control .webix_icon, .webix_accordionitem_header.webix_dark .webix_disabled_view.webix_control .webix_icon_btn, .webix_accordionitem_header.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_disabled_box .webix_img_btn_text, .webix_accordionitem_header.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon, .webix_accordionitem_header.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon_btn, .webix_accordionitem_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_img_btn_text, .webix_accordionitem_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_input_icon, .webix_accordionitem_header.webix_dark .webix_view.webix_control .webix_disabled_box button, .webix_accordionitem_header.webix_dark .webix_view.webix_control .webix_disabled_box label {
			color: hsla(0,0%,100%,.4)
		}

		.webix_accordionitem_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_static, .webix_accordionitem_header.webix_dark .webix_view.webix_control .webix_disabled_box input, .webix_accordionitem_header.webix_dark .webix_view.webix_control .webix_disabled_box select, .webix_accordionitem_header.webix_dark .webix_view.webix_control .webix_disabled_box textarea {
			background: rgba(0,0,0,.1);
			color: hsla(0,0%,100%,.4)
		}

		.webix_accordionitem_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_counter_next, .webix_accordionitem_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_counter_prev, .webix_accordionitem_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_item_tab, .webix_accordionitem_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_0, .webix_accordionitem_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_1, .webix_accordionitem_header.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_N {
			background: rgba(0,0,0,.1);
			color: hsla(0,0%,100%,.4);
			text-shadow: none
		}

		.webix_accordionitem_header.webix_dark .webix_disabled_top_label {
			color: hsla(0,0%,100%,.4)
		}

.webix_ie.horizontal > .webix_accordionitem_header.collapsed {
	-ms-writing-mode: tb-lr
}

	.webix_ie.horizontal > .webix_accordionitem_header.collapsed .webix_accordionitem_label {
		padding-left: 0;
		padding-top: 10px
	}

	.webix_ie.horizontal > .webix_accordionitem_header.collapsed .webix_accordionitem_button {
		margin: 0
	}

.webix_accordionitem_label {
	height: 100%
}

.webix_accordionitem_button {
	float: right;
	height: 11px;
	margin: 10.5px 9px;
	position: relative;
	width: 11px
}

.webix_carousel {
	position: relative
}

.webix_nav_panel {
	bottom: 1pc;
	height: 14px;
	line-height: 14px;
	overflow: hidden;
	padding: 2px 0;
	position: absolute;
	text-align: center
}

.webix_nav_item {
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	border-radius: 50%;
	box-sizing: content-box;
	cursor: pointer;
	display: inline-block;
	height: 10px;
	margin: 0 2px;
	user-select: none;
	width: 10px
}

.webix_nav_inactive {
	background: #fff;
	border: 2px solid rgba(0,0,0,.15);
	filter: alpha(opacity=60);
	opacity: .6
}

.webix_nav_active {
	background: #fff;
	border: 2px solid rgba(0,0,0,.1)
}

	.webix_nav_active:focus, .webix_nav_active:hover {
		box-shadow: 0 0 2px #fff
	}

.webix_nav_button_next, .webix_nav_button_prev {
	cursor: pointer;
	display: block;
	height: 2pc;
	line-height: 2pc;
	position: absolute;
	width: 2pc
}

	.webix_nav_button_next .webix_nav_button_inner, .webix_nav_button_prev .webix_nav_button_inner {
		height: 100%;
		width: 100%
	}

	.webix_nav_button_prev .webix_nav_button_inner {
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowNDNEOTBEMTYyNzQxMUUzOEU1N0MyQTEyMzIxMDVFQSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowNDNEOTBEMjYyNzQxMUUzOEU1N0MyQTEyMzIxMDVFQSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjA0M0Q5MENGNjI3NDExRTM4RTU3QzJBMTIzMjEwNUVBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjA0M0Q5MEQwNjI3NDExRTM4RTU3QzJBMTIzMjEwNUVBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+yGPRLgAAAPBJREFUeNpi+P//vycQP/tPfQAy05MRxGBgYJBkoA14DrLgPwMNARMDjcGgteAINN5CCaokI3UcB2I+UNQBsTghxaRacAaI+aH62IB4MzUtuAjEwlA9zEC8hhhNxFpwFYhFkQxfTqyriLHgFhBLQtWC8s18UsKUkAV3gVgGyfBZpKYIQhbYQtWAcBg5BRIhC26j+WAOtS0AgRvQ9A6L4IXUtgAELqOlopXUtgAEzgOxIFQPKxCvo7YFIHAKLSdvo7YFIHAUiHmgeiUIKSanNLUC4i1ALAHENoQUD48a7TkNzX8BsiAFxKCB4U+BOBkgwAAsAiGcWMs58QAAAABJRU5ErkJggg==);
		opacity: .8
	}

		.webix_nav_button_prev .webix_nav_button_inner:focus, .webix_nav_button_prev .webix_nav_button_inner:hover {
			opacity: 1
		}

	.webix_nav_button_next .webix_nav_button_inner {
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEODJBRDc2RTYyNzMxMUUzQTMxN0IxNjAwN0JBOUE4OSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEODJBRDc2RjYyNzMxMUUzQTMxN0IxNjAwN0JBOUE4OSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4MkFENzZDNjI3MzExRTNBMzE3QjE2MDA3QkE5QTg5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4MkFENzZENjI3MzExRTNBMzE3QjE2MDA3QkE5QTg5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+crpRPgAAAOhJREFUeNpi+P//vycQP/tPfQAy05MRxGBgYJBkoA14DrLgPwMNARMDjcGgsCAMGkdHyLKBiNQgDoomIOYH4uOkJiViLNgMxGxIlpyhtgUgsAaImaHqhYH4IrUtAIHlSJaIAvFValsAAvOBmBGqTxKIb1HbAhCYhWSJDBDfobYFIBAO1QvCNtS2YA6SD6SB+DY1LViIFNFiQHydmnGwEi0VXaZmKloHxKxQ9YJAfJ6a+WAbWk4+Re2cLAFVxwPER0lNEcSUpjZALAHEW4DYitTCdHjUaM9paP4LkAUpIAYNDH8KxMkAAQYAlwMhmq8XxigAAAAASUVORK5CYII=);
		opacity: .8
	}

		.webix_nav_button_next .webix_nav_button_inner:focus, .webix_nav_button_next .webix_nav_button_inner:hover {
			opacity: 1
		}

.webix_nav_panel_corner {
	right: 5pc
}

.webix_nav_button_corner.webix_nav_button_prev {
	bottom: 9px;
	right: 44px
}

	.webix_nav_button_corner.webix_nav_button_prev .webix_nav_button_inner:focus, .webix_nav_button_corner.webix_nav_button_prev .webix_nav_button_inner:hover {
		opacity: 1
	}

.webix_nav_button_corner.webix_nav_button_next {
	bottom: 9px;
	right: 8px
}

	.webix_nav_button_corner.webix_nav_button_next .webix_nav_button_inner:focus, .webix_nav_button_corner.webix_nav_button_next .webix_nav_button_inner:hover {
		opacity: 1
	}

.webix_nav_panel_side {
	left: 0;
	margin: 0 auto;
	width: 100%
}

.webix_nav_button_side {
	height: 86px;
	line-height: 86px;
	margin-top: -43px;
	top: 50%;
	width: 56px
}

	.webix_nav_button_side.webix_nav_button_next {
		left: auto
	}

		.webix_nav_button_side.webix_nav_button_next .webix_nav_button_inner {
			background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAiCAYAAACwaJKDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RTc4MTkxODY2MzBGMTFFMzk1MUQ4RTNCRjNCMUVFRUMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RTc4MTkxODU2MzBGMTFFMzk1MUQ4RTNCRjNCMUVFRUMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjA4NjlGM0NFNjE4OTExRTNBRjMwOTNFODNBRTJCRENBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjA4NjlGM0NGNjE4OTExRTNBRjMwOTNFODNBRTJCRENBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+D/KEcQAAAOhJREFUeNqs1jsOwjAMBuCKhR2uxsLGxg1a+hD0wVGYGJC4DgssnAFVQjLukKWk/WM7lv4OqfQ1UdLWCRGtOTdOz3lwtpzEkuFyp/9KreiX/JVa0DdNV6ZF9zRfmQYdcgbwQYNGhccDXQzYN4jgXIOa4bkntgAuNKgaDtlNMRx69hoAlxpUBEvfawRXGnRIjeBFIq8e3F9KZ5mDWXbS5QeBEjQYDEULALbSwy8GEYrARvpBUYNTaGkBfagZHKMIrKU/vioW6NANAE+aZuIVE3RoHxN06NUDHq2t5Ipz4Xw4T87O2vT+BBgAeQQKvezNqP0AAAAASUVORK5CYII=)
		}

			.webix_nav_button_side.webix_nav_button_next .webix_nav_button_inner:focus, .webix_nav_button_side.webix_nav_button_next .webix_nav_button_inner:hover {
				opacity: 1
			}

	.webix_nav_button_side.webix_nav_button_prev {
		right: auto
	}

		.webix_nav_button_side.webix_nav_button_prev .webix_nav_button_inner {
			background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAiCAYAAACwaJKDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjIzRTVCQkY2MzBGMTFFM0FDNTBDNzdDRkQ0NTI0NzciIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjIzRTVCQkU2MzBGMTFFM0FDNTBDNzdDRkQ0NTI0NzciIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjA4NjlGM0NFNjE4OTExRTNBRjMwOTNFODNBRTJCRENBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjA4NjlGM0NGNjE4OTExRTNBRjMwOTNFODNBRTJCRENBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+wRT1eAAAAM9JREFUeNqs1jsKwlAQBdDBxlL3ZmVlmRXYaaVbCYg7kti4BQu1e85AhBDfZz73wm1ewsmfDKWUKNgNd+C+uVfuOgoe0n8uaFDyQoOSOxqU7NDgUfaDgxZUDWpRE6hBzWALdYE11A2W0BCYQ8PgHIWAUxQG/lAoKF0Q0ZLq+ZA1o35qnO3eevlweL4AgXOL5yhc2hCCa0d0w63744I1T9MMa989E2z5/NSw9Retgj3DRAveeseeGnyLDGgl+BkdJXNwH0WlHfcxDr09d/UVYADVjwptZ8mPvQAAAABJRU5ErkJggg==)
		}

			.webix_nav_button_side.webix_nav_button_prev .webix_nav_button_inner:focus, .webix_nav_button_side.webix_nav_button_prev .webix_nav_button_inner:hover {
				opacity: 1
			}

.webix_carousel > .webix_scroll_x, .webix_carousel > .webix_scroll_y {
	background-color: transparent
}

.webix_dark .webix_nav_button_side.webix_nav_button_prev .webix_nav_button_inner {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAiCAYAAACwaJKDAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gcdCSI77dsQJgAAARxJREFUSMet1jFqAkEUxvH/rkIqLVN5ES2CjScQG6tUESx3SWOMLKgggt7BC6SxsnIr9w4ewAsEEis3RTBE3N3ZmfemHB4/HsPMm89L0xTJilbrLrAAGsAWeKkKwTEw/bfVAy6ea6cZ4HV9+8ogwMm6UwMI8Owrg5MoDDa+MjgF8LXBUqgtaERdwELUFcxFJWAmKgXvUA3wBtUC/1BNEKBCra4KXjt9MNScbadYJd7t9nGSVIGnnJpOnCRf7VbzYNMpURi8A7OCumW0Wr9aodrw7T39hedS+P5FhcFYCme/fSGcP6UEcPE8dYTNk98BLvdHWcLlf1ML2CVMzIC3gpK+U5YywEdJQMuDP50CmuGMt55C6B0AI+AR+ACGPw26r6m12WOpAAAAAElFTkSuQmCC)
}

	.webix_dark .webix_nav_button_side.webix_nav_button_prev .webix_nav_button_inner:focus, .webix_dark .webix_nav_button_side.webix_nav_button_prev .webix_nav_button_inner:hover {
		opacity: 1
	}

.webix_dark .webix_nav_button_side.webix_nav_button_next .webix_nav_button_inner {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAiCAYAAACwaJKDAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gcdCSE1IU5u4gAAAW1JREFUSMet1rtOwzAUgOG/5jbBwsQD8BAwIAa2TggegjmRgELbuFeo1GRlQEJMMDN264CUiYdgg0dolzIkFUEk9nHSbLGtT76cc+xaMA53gUegDnwCgfa9Vyp8CngCToFNYB940WF0WRWt57SPqsAK+C7oG+kwuiqLdg3992Xgtelk8jGN4w3gqGDMyTSOZ8eHB+8uM0X7XhMYGMbd6TC6dkIzcH8VsMr+aN9rCeCGEyqEhzZY5TWmcM8C3zihKdy2wIMiWJmWURZWtk1P4a4FvnVCUziwwP0srKQBLYSbALXFYuGU1zqMNBAYhrRUiSI0s/RvKcdZNoChcQt8Tz5TKSg/fQdQFqdJcJvAXha0Z1QCDixgW577drCbBxZXKRkYyOtpkm6lwf+VPwH7VcC/d5Qd7EjA39s0KQQ2UIvvfbZ3zoEHU2Rp3+u4vlDGqwSX6N4qwSX6ltMelAUB1oELYA6cAV/poTxXeZ/+AOFqn1e/Gh7yAAAAAElFTkSuQmCC)
}

	.webix_dark .webix_nav_button_side.webix_nav_button_next .webix_nav_button_inner:focus, .webix_dark .webix_nav_button_side.webix_nav_button_next .webix_nav_button_inner:hover {
		opacity: 1
	}

.webix_list_item {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-bottom: 1px solid #edeff0;
	border-color: #edeff0;
	box-sizing: border-box;
	cursor: pointer;
	line-height: 23px;
	padding: 2px 9pt;
	text-align: left
}

.webix_list_icon {
	margin-right: 4px;
	vertical-align: middle
}

.webix_list_item.webix_invalid {
	background-color: #fee
}

.webix_list_item.webix_selected {
	background: #f4f5f9;
	color: #475466
}

	.webix_list_item.webix_selected:focus {
		background: #edeff5
	}

.webix_list .webix_list_item.webix_selected {
	border-bottom: 1px solid #edeff0;
	padding: 2px 9pt
}

.webix_group {
	position: relative
}

.webix_group_back, .webix_group_back.webix_selected {
	background: #f4f5f9;
	color: #313131;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 500;
	letter-spacing: 0;
	position: relative
}

.webix_arrow_icon {
	bottom: 50%;
	font-family: Webix Material Icons;
	font-size: 18px;
	height: 22px;
	line-height: 22px;
	margin-top: -9pt;
	position: absolute;
	right: 15px;
	top: 50%;
	width: 9px
}

	.webix_arrow_icon:before {
		content: "\F003"
	}

.webix_group_back {
	padding-left: 33px
}

	.webix_group_back .webix_arrow_icon:before {
		content: "\F002"
	}

.dhx_pagelist {
	position: relative
}

.webix_list_count {
	box-shadow: 0 1px 0 #000;
	float: right;
	font-size: 14px;
	margin-right: 45px;
	text-align: center;
	text-shadow: 0 -1px 0 rgba(0,0,0,.6);
	width: 25px
}

.webix_unit_header {
	background-color: #f4f5f9;
	line-height: 27px;
	padding: 0 9pt;
	text-align: left
}

.webix_list-x .webix_list_item {
	border-bottom: 0;
	border-color: #edeff0;
	border-right: 1px solid #edeff0;
	display: inline-block;
	vertical-align: top
}

	.webix_list-x .webix_list_item.webix_selected {
		border-right: 1px solid #edeff0;
		padding-left: 11px
	}

.webix_list-x .webix_scroll_cont {
	display: inline-block;
	overflow: visible
}

.webix_view.webix_list-x {
	white-space: nowrap
}

.webix_list_item.webix_disabled .webix_submenu_icon {
	visibility: hidden
}

.webix_view.webix_pager {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background-color: transparent;
	box-sizing: border-box;
	padding: 3px 0
}

.webix_pager_item, .webix_pager_item_selected {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-radius: 2px;
	box-sizing: border-box;
	cursor: pointer;
	height: 100%;
	margin: 0 2px;
	min-width: 2pc;
	padding: 0 6px;
	text-align: center;
	width: auto
}

	.webix_pager_item .webix_icon, .webix_pager_item_selected .webix_icon {
		font-size: 9pt;
		line-height: 0
	}

.webix_pager_item {
	background: #f4f5f9;
	color: #1ca1c1
}

	.webix_pager_item:focus, .webix_pager_item:hover {
		background-color: #e7e9f2
	}

	.webix_pager_item:active {
		background-color: #daddeb
	}

.webix_pager_item_selected {
	cursor: default
}

	.webix_pager_item_selected:focus, .webix_pager_item_selected:hover {
		background-color: #1992af
	}

	.webix_pager_item_selected:active {
		background-color: #17839d
	}

.webix_animation .webix_ss_header {
	position: relative;
	z-index: 10
}

.webix_animation .webix_ss_footer, .webix_animation .webix_vscroll_x {
	bottom: 0;
	position: absolute;
	z-index: 10
}

.webix_allow_selection {
	-moz-user-select: text;
	-webkit-user-select: text;
	user-select: text
}

.webix_dataview_item {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-bottom: 1px solid #edeff0;
	border-color: #edeff0;
	border-right: 1px solid #edeff0;
	box-sizing: border-box;
	cursor: pointer;
	line-height: 23px;
	padding: 2px 9pt;
	text-align: left
}

	.webix_dataview_item.webix_disabled {
		color: #94a1b3
	}

	.webix_dataview_item .webix_icon {
		font-size: 20px
	}

	.webix_dataview_item.webix_selected {
		background: #f4f5f9;
		border-bottom: 1px solid #edeff0;
		border-right: 1px solid #edeff0;
		color: #475466
	}

		.webix_dataview_item.webix_selected:focus {
			background: #edeff5
		}

	.webix_dataview_item.webix_invalid {
		background-color: #fee
	}

	.webix_dataview_item.tiles {
		border: 0;
		padding: 4px
	}

		.webix_dataview_item.tiles .webix_dataview_inner_item {
			border: 1px solid #edeff0;
			height: 100%;
			padding: 2px 9pt
		}

		.webix_dataview_item.tiles.webix_drag_over, .webix_dataview_item.tiles.webix_selected {
			background: transparent
		}

			.webix_dataview_item.tiles.webix_selected .webix_dataview_inner_item {
				background-color: #f4f5f9
			}

			.webix_dataview_item.tiles.webix_selected:focus .webix_dataview_inner_item {
				background-color: #edeff5
			}

			.webix_dataview_item.tiles.webix_drag_over .webix_dataview_inner_item {
				background: transparent
			}

.webix_dataview .webix_scroll_cont {
	box-sizing: border-box
}

.webix_chart {
	color: #475466;
	font-family: Roboto,sans-serif;
	font-size: 13px;
	overflow: hidden;
	position: relative;
	z-index: 1
}

	.webix_chart canvas {
		position: absolute
	}

.webix_canvas_text {
	font-size: 9pt;
	overflow: hidden;
	position: absolute;
	text-align: center;
	white-space: nowrap;
	z-index: 100
}

.webix_map_img {
	border: 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%
}

.webix_axis_item_y {
	height: 18px;
	line-height: 18px;
	margin-top: -4px;
	position: absolute;
	text-align: right
}

.webix_axis_item_x {
	padding-top: 2px
}

.webix_axis_title_x {
	font-size: 13px;
	text-align: center
}

.webix_axis_title_y {
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	font-family: Verdana;
	font-size: 13px;
	padding-left: 3px;
	text-align: center;
	transform: rotate(-90deg)
}

.webix_ie_filter {
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3)
}

.webix_chart_legend {
	position: absolute;
	z-index: 1000
}

.webix_chart_legend_item {
	cursor: pointer;
	height: 18px;
	line-height: 18px;
	padding: 2px
}

	.webix_chart_legend_item.hidden {
		color: #cfd5dd
	}

.webix_axis_item_y.webix_radar {
	color: #555;
	font-size: 11px;
	height: 13px;
	line-height: 13px;
	margin-top: 0;
	padding-right: 3px
}

.webix_canvas_text.webix_axis_radar_title {
	color: #74869f;
	font-size: 9pt;
	margin-top: 0;
	padding-top: 0
}

.webix_axis_item_x, .webix_axis_item_y {
	color: #74869f
}

.webix_chart_frame {
	background-color: #a0cfef;
	border-left: 1px solid #3498db;
	border-right: 1px solid #3498db;
	cursor: w-resize;
	height: 100%;
	opacity: .3;
	position: absolute;
	top: 0;
	z-index: 150
}

.webix_chart_resizer {
	background-color: #fff;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAICAYAAAAx8TU7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTJCMjdFNENBRTg4MTFFMjk2NjJGMTJENjkyNDA2NTkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTJCMjdFNERBRTg4MTFFMjk2NjJGMTJENjkyNDA2NTkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5MkIyN0U0QUFFODgxMUUyOTY2MkYxMkQ2OTI0MDY1OSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5MkIyN0U0QkFFODgxMUUyOTY2MkYxMkQ2OTI0MDY1OSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Powz/icAAAAaSURBVHjaYmBgYDBjgAA4zcSABQysIECAAQBn+ACx2PqtbAAAAABJRU5ErkJggg==);
	background-position: 3px center;
	background-repeat: no-repeat;
	border: 1px solid #ccc;
	border-radius: 2px;
	bottom: 0;
	cursor: w-resize;
	height: 20px;
	position: absolute;
	width: 11px;
	z-index: 200
}

	.webix_chart_resizer:focus {
		border-color: #1ca1c1
	}

.webix_wresize_cursor {
	cursor: w-resize
}

.webix_dt_editor {
	background: #fff;
	overflow: visible;
	position: absolute;
	z-index: 2
}

	.webix_dt_editor input, .webix_dt_editor select {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		border: 1px solid gold;
		box-sizing: border-box;
		color: #475466;
		font-family: Roboto,sans-serif;
		font-size: 9pt;
		font-weight: 400;
		height: 100%;
		letter-spacing: .2px;
		margin: 0;
		padding: 0 11px;
		width: 100%
	}

		.webix_dt_editor input[type=checkbox] {
			height: auto;
			margin: 6px 8px 4px 14px;
			width: auto
		}

	.webix_dt_editor select {
		padding: 0 7px
	}

.webix_clipbuffer {
	border: 0;
	cursor: default;
	filter: alpha(opacity=0);
	height: 1px;
	left: 0;
	margin: 0;
	opacity: 0;
	padding: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	white-space: pre-wrap;
	width: 125pc
}

.webix_column {
	position: absolute;
	top: 0
}

.webix_cell {
	line-height: 25px;
	overflow: hidden;
	white-space: nowrap
}

.webix_hcell {
	overflow: hidden;
	width: 100%
}

.webix_cell, .webix_hcell {
	background: inherit;
	color: inherit;
	font: inherit;
	text-align: inherit
}

.webix_ss_body {
	overflow: hidden;
	position: relative
}

.webix_hs_center, .webix_hs_left, .webix_hs_right, .webix_ss_center, .webix_ss_left, .webix_ss_right {
	float: left;
	overflow: hidden
}

.webix_ss_center, .webix_ss_right {
	position: relative
}

.webix_ss_footer table, .webix_ss_header table {
	table-layout: fixed
}

.webix_ss_center_scroll {
	height: 100%;
	min-height: 1px;
	overflow: hidden;
	position: relative
}

.webix_ss_hscroll {
	bottom: 0
}

.webix_ss_vscroll {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2
}

.webix_ss_vscroll_footer {
	border-left: 1px solid #edeff0;
	border-top: 1px solid #edeff0;
	bottom: 0;
	position: absolute;
	right: 0;
	z-index: 1
}

.webix_ss_vscroll_header {
	border-bottom: 1px solid #dadee0;
	border-left: 1px solid #dadee0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1
}

.webix_dtable {
	cursor: default;
	position: relative;
	z-index: 0
}

.webix_ss_footer, .webix_ss_header {
	clear: both;
	overflow: hidden
}

.webix_block_selection, .webix_cell, .webix_hcell, .webix_ss_footer td, .webix_ss_header td, .webix_table_cell, .webix_view.webix_table_cell {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

.webix_table_row_hover {
	background-color: var(--table-hover-bg) !important;
	color: var(--table-hover-text) !important;
  }

.webix_block_selection {
	position: absolute
}

.webix_ss_sort_asc, .webix_ss_sort_desc {
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	position: absolute;
	right: 3px;
	user-select: none
}

.webix_hcell.webix_ss_filter {
	padding: 3px 5px
}

.webix_hcell .webix_tree_close, .webix_hcell .webix_tree_open {
	margin-right: 5px
}

.webix_hcell input[type=checkbox], .webix_table_checkbox {
	margin-bottom: 2px;
	margin-top: 0;
	vertical-align: middle
}

.webix_ss_filter input, .webix_ss_filter select {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #dadee0;
	box-sizing: border-box;
	color: #475466 !important;
	font-family: Roboto,sans-serif;
	font-size: inherit;
	height: 30px;
	line-height: 24px;
	margin-top: -2px;
	padding: 0 3px;
	vertical-align: top;
	width: 100%
}

.webix_richfilter {
	line-height: 24px;
	margin-top: 1px
}

.webix_ss_filter select {
	padding: 3px
}

.webix_dd_drag_column, .webix_ss_header, .webix_ss_header td, .webix_ss_vscroll_header {
	background: #f4f5f9;
	color: #313131;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 500;
	letter-spacing: 0
}

.webix_ss_footer td, .webix_ss_vscroll_footer {
	background: #fafafa
}

.webix_hcell {
	padding: 0 9pt;
	text-align: left
}

.webix_ss_header td {
	border-bottom: 1px solid #dadee0;
	border-right: 1px solid #dadee0
}

.webix_ss_footer td {
	border-right: 1px solid #edeff0;
	border-top: 1px solid #edeff0
}

.webix_size_row td {
	border: 0
}

.webix_column.webix_last > div, .webix_hs_center td.webix_last, .webix_hs_right td.webix_last {
	border-right-width: 0
}

.webix_hs_right td.webix_first, .webix_ss_right .webix_column.webix_first > div {
	border-left: 1px solid #dadee0
}

.webix_ss_left .webix_column.webix_last > div {
	border-right: 1px solid #dadee0
}

.webix_last_topcell.webix_cell {
	border-bottom: 1px solid #dadee0
}

.webix_column > div, .webix_table_cell {
	border-bottom: 1px solid #edeff0;
	border-right: 1px solid #edeff0;
	padding: 0 9pt
}

.webix_column {
	text-align: left
}

.webix_dd_over_column, .webix_sel_hcell {
	background-color: #c9eaf5
}

.webix_block_selection {
	background: rgba(0,0,0,.1);
	border: 2px solid #edeff0
}

.webix_dd_drag {
	border-left: 1px solid #edeff0;
	height: 28px;
	overflow: hidden;
	white-space: nowrap
}

	.webix_dd_drag > div {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		background: #fff;
		border-bottom: 1px solid #edeff0;
		border-right: 1px solid #edeff0;
		border-top: 1px solid #edeff0;
		box-sizing: border-box;
		display: inline-block;
		height: 28px;
		line-height: 20px;
		padding: 5px 9pt;
		vertical-align: top
	}

.webix_dd_drag_column {
	padding: 5px 10px
}

.webix_column > .webix_drag_over.webix_cell {
	background-color: #e6e6e6;
	color: #475466
}

.webix_ss_header table, .webix_ss_header td {
	margin: 0;
	padding: 0
}

.webix_cell.webix_invalid {
	background-color: #fee
}

.webix_invalid_cell {
	position: relative
}

	.webix_invalid_cell:after {
		border-left: 8px solid transparent;
		border-top: 8px solid #f44;
		content: "";
		height: 1px;
		position: absolute;
		right: 0;
		top: 0;
		width: 0
	}

.webix_column > div.webix_cell_select, .webix_column > div.webix_column_select, .webix_column > div.webix_row_select {
	background: #f4f5f9;
	color: #475466
}

	.webix_column > div.webix_cell_select:focus, .webix_column > div.webix_column_select:focus, .webix_column > div.webix_row_select:focus {
		background: #edeff5
	}

.webix_column > div.webix_cell_select {
	border-bottom: 1px solid #edeff0;
	border-left: 1px solid #edeff0;
	border-right: 1px solid #edeff0;
	padding-left: 11px;
	padding-top: 0
}

.webix_ss_right .webix_column.webix_first > div.webix_cell_select {
	padding-left: 9pt
}

.webix_column > div.webix_row_select {
	border-bottom: 1px solid #edeff0;
	padding-top: 0
}

.webix_column > div.webix_column_select {
	border-left: 1px solid #edeff0;
	border-right: 1px solid #edeff0;
	padding-left: 11px
}

.webix_cell.webix_dtable_colrow, .webix_cell.webix_dtable_subrow, .webix_dtable_subview {
	background-color: #fff;
	border-bottom: 1px solid #edeff0;
	left: 0;
	padding-left: 9pt;
	padding-right: 30px;
	padding-top: 1px;
	position: absolute;
	top: 0;
	width: 100%
}

	.webix_cell.webix_dtable_colrow.webix_selected {
		background: #f4f5f9;
		color: #475466
	}

		.webix_cell.webix_dtable_colrow.webix_selected:focus {
			background: #edeff5
		}

.webix_dtable_subrow {
	border-top: 1px solid #edeff0;
	text-align: right
}

.webix_dtable_subview {
	background: #edeff0;
	border-top: 1px solid #edeff0;
	box-sizing: border-box;
	padding: 0 0 0 10px
}

.number .webix_cell {
	text-align: right
}

.webix_rotate {
	-webkit-transform: rotate(-90deg);
	line-height: normal;
	transform: rotate(-90deg)
}

.webix_measure_rotate {
	line-height: normal;
	padding: 10px;
	white-space: normal
}

.webix_span_layer, .webix_span_layer_top {
	background: transparent;
	height: 0;
	left: 0;
	overflow: visible;
	position: absolute;
	top: 0;
	width: 0
}

.webix_span_layer_top {
	z-index: 1
}

.webix_ss_right .webix_span_layer, .webix_ss_right .webix_span_layer_top {
	border-left: 1px solid #dadee0
}

.webix_dtable_span {
	background: #fff;
	position: absolute;
	text-align: left
}

	.webix_dtable_span.webix_selected {
		background: #f4f5f9;
		color: #475466
	}

		.webix_dtable_span.webix_selected:focus {
			background: #edeff5
		}

.webix_hcell span.webix_input_icon {
	background-color: #dadee0
}

.webix_area_selection_layer {
	position: absolute;
	z-index: 2
}

.webix_area_selection {
	position: absolute
}

.webix_area_selection_bottom, .webix_area_selection_top {
	height: 2px
}

.webix_area_selection_left, .webix_area_selection_right {
	width: 2px
}

.webix_area_selection_handle {
	border: 1px solid #fff;
	cursor: crosshair;
	height: 6px;
	margin: -6px 0 0 -6px;
	position: absolute;
	width: 6px
}

.webix_topcell {
	background: #fff;
	position: relative;
	z-index: 1
}

.webix_dtable .webix_resize_handle_x .webix_handle_content, .webix_dtable .webix_resize_handle_y .webix_handle_content {
	background-color: #1ca1c1;
	border: 0
}

.webix_dtable_focused .webix_column > div.webix_column_select, .webix_dtable_focused .webix_column > div.webix_row_select {
	background: #edeff5
}

.webix_window {
	box-shadow: 0 3px 10px 0 rgba(0,0,0,.1),0 1px 7px 0 rgba(0,0,0,.1);
	position: absolute
}

	.webix_window:focus {
		box-shadow: 0 1px 14px 0 rgba(0,0,0,.12),0 4px 10px 0 rgba(0,0,0,.1)
	}

.webix_win_body {
	overflow: hidden
}

	.webix_win_body, .webix_win_body > .webix_view, .webix_win_body > .webix_view .webix_cal_month, .webix_win_content, .webix_window {
		border-radius: 0
	}

.webix_win_head {
	border-bottom: 1px solid #dadee0
}

.webix_win_title {
	text-align: center
}

.webix_win_content {
	height: auto;
	overflow: hidden;
	width: auto
}

.webix_modal {
	background-color: #000;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=20);
	height: 100%;
	left: 0;
	opacity: .2;
	position: fixed;
	top: 0;
	width: 100%
}

.webix_point_bottom, .webix_point_left, .webix_point_right, .webix_point_top {
	position: absolute
}

.webix_point_bottom, .webix_point_top {
	height: 7px;
	width: 13px
}

.webix_point_left, .webix_point_right {
	height: 13px;
	width: 7px
}

.webix_point_bottom, .webix_point_left, .webix_point_right, .webix_point_top {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAArCAIAAADHSy4DAAAABnRSTlMAAAAAAABupgeRAAAACXBIWXMAAABPAAAATwFjiv3XAAAAhElEQVR4nMXVQQoAIQhAUe9/FC/pLAYayUm/EeT6YWGmoqpWharKG7n+XK5nt9L/LurMeV27oZHrReN0M6Oupr5S1GU0vhN1J7L27hp1QYXX1WtE5UxnNXI0ep7+pEGRpr95ooWObbXUm1npXWkFaF3vTqj9c+h8pVOb7gK6Yeje4tvwARi4FgcAh2V/AAAAAElFTkSuQmCC)
}

.webix_point_top {
	background-position: 0 -36px
}

.webix_point_bottom {
	background-position: 0 0
}

.webix_point_right {
	background-position: 0 -22px
}

.webix_point_left {
	background-position: 0 -9px
}

.webix_resize_handle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAMAAAAMCGV4AAAABlBMVEUAAAAAAAClZ7nPAAAAAXRSTlMAQObYZgAAABZJREFUeAFjIAUwUshlpJDLSIhLGAAACQ4AFk79JaMAAAAASUVORK5CYII=);
	bottom: 0;
	cursor: nw-resize;
	height: 15px;
	line-height: 15px;
	position: absolute;
	right: -1px;
	text-align: center;
	width: 15px;
	z-index: 2
}

.webix_resize_frame {
	background: #1ca1c1;
	border: 1px solid #0f5768;
	display: block;
	filter: alpha(opacity=10);
	opacity: .1;
	position: absolute
}

.webix_resize_cursor {
	cursor: nw-resize
}

.webix_shadow_big, .webix_shadow_medium, .webix_shadow_small {
	position: relative
}

.webix_shadow_medium {
	box-shadow: 0 3px 10px 0 rgba(0,0,0,.1),0 1px 7px 0 rgba(0,0,0,.1)
}

.webix_shadow_small {
	box-shadow: 0 2px 6px 0 rgba(0,0,0,.1)
}

.webix_shadow_big {
	box-shadow: 0 1px 14px 0 rgba(0,0,0,.12),0 4px 10px 0 rgba(0,0,0,.1)
}

.webix_shadow_none {
	box-shadow: none !important
}

.webix_toolbar.webix_shadow_big, .webix_toolbar.webix_shadow_medium, .webix_toolbar.webix_shadow_small {
	z-index: 1
}

.webix_tree .webix_scroll_cont > .webix_tree_leaves {
	padding: 8px
}

.webix_tree_item {
	clear: both;
	height: 24px;
	line-height: 24px;
	overflow: hidden;
	white-space: nowrap
}

	.webix_tree_item.webix_selected {
		background: transparent
	}

		.webix_tree_item.webix_selected span {
			background: #f4f5f9;
			color: #475466;
			margin-left: -4px;
			padding: 4px 10px 4px 4px
		}

			.webix_tree_item.webix_selected span:focus {
				background: #edeff5
			}

	.webix_tree_item.webix_invalid {
		background-color: #fee
	}

.webix_tree_checkbox {
	float: left;
	height: 100%;
	margin: 1px 0 0;
	padding: 0;
	vertical-align: middle;
	width: 13px
}

.webix_indeterminate {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gcCCSwfRyGesAAAAAxpVFh0Q29tbWVudAAAAAAAvK6ymQAAAExJREFUKM9jLCgo+M9AAmBhYGBgaGtrY+Tk5MSrsLCwkIGBgeE/EwOJgGQNLMgcJSUlBgYGBnQ/Md67d498G+jsB6hbGQfWSYykJg0AUMsPVoNrFX0AAAAASUVORK5CYII=);
	background-position: left center;
	background-repeat: no-repeat;
	height: 100%;
	margin-top: 0 !important;
	width: 13px
}

.webix_measure_size {
	font-family: Roboto,sans-serif
}

	.webix_measure_size input, .webix_measure_size select, .webix_measure_size textarea {
		width: 5px
	}

	.webix_measure_size div {
		float: none;
		margin-left: -5px
	}

	.webix_measure_size a, .webix_measure_size div {
		display: inline-block !important;
		position: static !important
	}

.webix_tree_close, .webix_tree_file, .webix_tree_folder, .webix_tree_folder_open, .webix_tree_none, .webix_tree_open {
	background-repeat: no-repeat;
	cursor: pointer;
	float: left;
	height: 100%;
	margin: 0;
	width: 20px
}

.webix_tree_close, .webix_tree_none, .webix_tree_open {
	background-position: center center
}

.webix_cell .webix_tree_close, .webix_cell .webix_tree_none, .webix_cell .webix_tree_open {
	background-color: transparent
}

.webix_tree_file, .webix_tree_folder, .webix_tree_folder_open {
	background-position: 0 center;
	margin: 0 2px
}

.webix_tree_leaves .webix_tree_leaves {
	margin-left: 20px
}

.webixLineTree .webix_tree_leaves {
	margin-left: 0
}

.webix_tree_close {
	background-image: url(data:image/gif;base64,R0lGODlhEgASALMJAMrKyt3d3ejp6d7f3+/v75aWlvf39////wAAAP///wAAAAAAAAAAAAAAAAAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4wLWMwNjAgNjEuMTM0Nzc3LCAyMDEwLzAyLzEyLTE3OjMyOjAwICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6M0I5RTczQjVDMDdBMTFFMTgxRjc4Mzk4M0Q3MjVFQzAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6M0I5RTczQjZDMDdBMTFFMTgxRjc4Mzk4M0Q3MjVFQzAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozQjlFNzNCM0MwN0ExMUUxODFGNzgzOTgzRDcyNUVDMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozQjlFNzNCNEMwN0ExMUUxODFGNzgzOTgzRDcyNUVDMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV1NPS0dDPzs3My8rJyMfGxcTDwsHAv769vLu6ubi3trW0s7KxsK+urayrqqmop6alpKOioaCfnp2cm5qZmJeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgH9+fXx7enl4d3Z1dHNycXBvbm1sa2ppaGdmZWRjYmFgX15dXFtaWVhXVlVUU1JRUE9OTUxLSklIR0ZFRENCQUA/Pj08Ozo5ODc2NTQzMjEwLy4tLCsqKSgnJiUkIyIhIB8eHRwbGhkYFxYVFBMSERAPDg0MCwoJCAcGBQQDAgEAACH5BAEAAAkALAAAAAASABIAAARJMMlJq704661B+SAIXAVhnKhBFKSZnmuLImhslXPN3ibi+6pdBXc4IIpB2YkGE1IKAoL0ICUInJNCYMDtDgJYiScUGnHO6LQkAgA7)
}

.webix_tree_open {
	background-image: url(data:image/gif;base64,R0lGODlhEgASALMJAMrKyt3d3ejp6d7f3+/v75aWlvf39wAAAP///////wAAAAAAAAAAAAAAAAAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4wLWMwNjAgNjEuMTM0Nzc3LCAyMDEwLzAyLzEyLTE3OjMyOjAwICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzY0QzNGM0VDMDdBMTFFMUE3MDlCNUM2QjU1NDA5RjgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzY0QzNGM0ZDMDdBMTFFMUE3MDlCNUM2QjU1NDA5RjgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNjRDM0YzQ0MwN0ExMUUxQTcwOUI1QzZCNTU0MDlGOCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNjRDM0YzREMwN0ExMUUxQTcwOUI1QzZCNTU0MDlGOCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV1NPS0dDPzs3My8rJyMfGxcTDwsHAv769vLu6ubi3trW0s7KxsK+urayrqqmop6alpKOioaCfnp2cm5qZmJeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgH9+fXx7enl4d3Z1dHNycXBvbm1sa2ppaGdmZWRjYmFgX15dXFtaWVhXVlVUU1JRUE9OTUxLSklIR0ZFRENCQUA/Pj08Ozo5ODc2NTQzMjEwLy4tLCsqKSgnJiUkIyIhIB8eHRwbGhkYFxYVFBMSERAPDg0MCwoJCAcGBQQDAgEAACH5BAEAAAkALAAAAAASABIAAARDMMlJq704661B+SAIXAVhnKhBFKSZnmv7wqxVzmpd3Uff5zKEUAi0uV4xm4DAbBIEOkohMKhaB4HoxBMKjTjgsFgSAQA7)
}

.webix_tree_file {
	background-image: url(data:image/gif;base64,R0lGODlhEgASAIABAI6Pj////yH5BAEKAAEALAAAAAASABIAAAInjI+JwM26XAtPyTnTfU5veGyXJ2ZhaRpoSq0AicKlLNJftNojyCMFADs=)
}

.webix_tree_folder {
	background-image: url(data:image/gif;base64,R0lGODlhEgASAIABAI6Pj////yH5BAEKAAEALAAAAAASABIAAAIhjI+py90AI3Syvoqj27mfnn2gZYxkYEpiCqypa27yTC8FADs=)
}

.webix_tree_folder_open {
	background-image: url(data:image/gif;base64,R0lGODlhEgASAIABAI6Pj////yH5BAEKAAEALAAAAAASABIAAAIjjI+py90AI3SyvorjkQ7pDAJBSJaTaGpjKq7pxsJmR9c2UwAAOw==)
}

.webix_tree_img {
	background: transparent;
	background-position: 0 0;
	float: left;
	height: 24px;
	width: 25px
}

.webix_tree_plus2 {
	background-image: url(data:image/gif;base64,R0lGODlhEgAYAMIDAFVVVYiIiMHBwf///////////////////yH5BAEKAAQALAAAAAASABgAAAM8SLoq/LDFKWl0FuLMNq8faAVkWVLBoK5DgK7A6k6pGqtzlAI83wpAIKM2uLVeNhmSdaSZTKGodEqtWjkJADs=);
	background-repeat: no-repeat
}

.webix_tree_plus3 {
	background-image: url(data:image/gif;base64,R0lGODlhEgAYAMIDAFVVVYiIiMHBwf///////////////////yH5BAEKAAQALAAAAAASABgAAANCSLoq/LDFKWl0FuLMNq8faAVkWVLBoK5DgK7A6k6pGqtzlAI83wpAIKM2uLVeNhmSdaSZTB9PNLSQcqwZrEVL4SYAADs=)
}

.webix_tree_plus4 {
	background-image: url(data:image/gif;base64,R0lGODlhEgAYAMIDAFVVVYiIiMHBwf///////////////////yH5BAEKAAQALAAAAAASABgAAAM5SLrc/jDKSau9mIbNeQxDKA7BJwJiCYEhGqoPCMwzKdw3ww4uabap38i36nQqgkwSs7w0LU+kMpIAADs=)
}

.webix_tree_minus2 {
	background-image: url(data:image/gif;base64,R0lGODlhEgAYAMIDAFVVVYiIiMHBwf///////////////////yH5BAEKAAQALAAAAAASABgAAAM5SLoq/LDFKWl0FuLMNq8faAVkWVLBoK5DgLKrO6Vw+wI43go8z9AwWQTIEkKIMZTJFGo6n9ColJMAADs=);
	background-repeat: no-repeat
}

.webix_tree_minus3 {
	background-image: url(data:image/gif;base64,R0lGODlhEgAYAMIDAFVVVYiIiMHBwf///////////////////yH5BAEKAAQALAAAAAASABgAAAM+SLoq/LDFKWl0FuLMNq8faAVkWVLBoK5DgLKrO6Vw+wI43go8z9AwWQTIEkKIMZTJ9PE0QwsnR5qhWqwUbAIAOw==)
}

.webix_tree_minus4 {
	background-image: url(data:image/gif;base64,R0lGODlhEgAYAMIDAFVVVYiIiMHBwf///////////////////yH5BAEKAAQALAAAAAASABgAAAM1SLrc/jDKSau9mIbNeQxDKA7BN4olBJ6kCbwvKcwzs57pc4+5s6OfTqciyBQxx0vSsiQaIwkAOw==)
}

.webix_tree_line1 {
	background-image: url(data:image/gif;base64,R0lGODlhGQAcAIABAMHBwf///yH5BAEKAAEALAAAAAAZABwAAAIxjI8Gyc3r4pP0wCovdnpPz4Gh+JFIZ6KkKrKg68GbjNGVTeGZmeiRP+IphBbi0EgrAAA7)
}

.webix_tree_line2 {
	background-image: url(data:image/gif;base64,R0lGODlhGQAcAIABAMHBwf///yH5BAEKAAEALAAAAAAZABwAAAIpjI8Gyc3r4pP0wCovdnpPz4Gh+JFIZ6KkKgLuC7/mTNf2jef6zvc+XgAAOw==);
	background-repeat: no-repeat
}

.webix_tree_line3 {
	background-image: url(data:image/gif;base64,R0lGODlhGQAcAIABAMHBwf///yH5BAEKAAEALAAAAAAZABwAAAI1jI8Gyc3r4pP0wCovdnpPz4Gh+JFIZ6KkKgLuC78VC9KeveGYPpsJTwFmfCeixahABoQRXQEAOw==)
}

.webix_tree_line4 {
	background-image: url(data:image/gif;base64,R0lGODlhGQAcAIABAMHBwf///yH5BAEKAAEALAAAAAAZABwAAAIjjI+py+0Po5y02ouz3rxDAIZi+HGAiW6nmmqr22avHGMzUwAAOw==)
}

.webix_tree_blank {
	background-image: url(data:image/gif;base64,R0lGODlhAQABAPABAP///wAAACH5BAEKAAAALAAAAAABAAEAAAICRAEAOw==)
}

.webix_tree_img {
	background-color: #fff
}

.webix_cal_month {
	box-sizing: content-box;
	font-size: 14px;
	font-weight: 700;
	height: 22px;
	line-height: 20px;
	padding-bottom: 5px;
	padding-top: 17px;
	position: relative;
	text-align: center
}

.webix_cal_next_button, .webix_cal_prev_button {
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	background-position: 11.5px 4px;
	background-repeat: no-repeat;
	cursor: pointer;
	height: 28px;
	position: absolute;
	top: 17px;
	user-select: none;
	width: 30px
}

.webix_cal_prev_button {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAALCAYAAACzkJeoAAAASUlEQVR42p2QMQoAQQgD79EZ0Mqn5xCu2cPdYgUbJ0rMMxXgLeiuKq8gsJAz8weQ0QiwJEfECnr4wdlEnwJ68+yyhReC+c85oRecj0Um+pmo9wAAAABJRU5ErkJggg==);
	background-repeat: no-repeat;
	left: 17px
}

.webix_cal_next_button {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAALCAYAAACzkJeoAAAARElEQVR42qXPsQoAIAhF0T76PdDJT7cUmtQhcmk4N8QVQ9JXN2bmgWOgqp+BiCRG2AYAMoi3/LxYdyagAnhA6G93TrABZaJFJjrFY8IAAAAASUVORK5CYII=);
	background-repeat: no-repeat;
	right: 17px
}

.webix_view > .webix_cal_header {
	height: auto;
	margin: 0 17px 10px
}

	.webix_view > .webix_cal_header div {
		border-bottom: #dadee0 1px solid;
		color: #475466;
		float: left;
		height: 19px;
		margin-bottom: 7px;
		text-align: center
	}

.webix_cal_body {
	margin: 0 17px
}

	.webix_cal_body .webix_cal_row {
		clear: both
	}

		.webix_cal_body .webix_cal_row > div {
			float: left;
			height: 100%;
			text-align: center
		}

	.webix_cal_body .webix_cal_select, .webix_cal_body .webix_cal_select.webix_cal_today, .webix_cal_body .webix_selected {
		background: #f4f5f9;
		color: #475466
	}

.webix_cal_day, .webix_cal_week_num {
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	color: #475466;
	cursor: pointer;
	font-size: 9pt;
	user-select: none
}

.webix_cal_week_num {
	border-right: 1px solid #dadee0;
	color: #a2adbe;
	cursor: default;
	margin-right: 0
}

.webix_cal_event {
	color: #c66200;
	font-weight: 700
}

.webix_cal_outside {
	color: #b1bbc8
}

.webix_cal_inactive {
	background: #888
}

.webix_cal_day_disabled, .webix_cal_day_disabled.webix_cal_event {
	background: #f0f0f0;
	color: #b1bbc8
}

	.webix_cal_day_disabled.webix_cal_block, .webix_cal_day_disabled.webix_cal_day {
		cursor: not-allowed
	}

.webix_hours .webix_cal_day_disabled, .webix_hours .webix_cal_day_disabled.webix_cal_event, .webix_minutes .webix_cal_day_disabled, .webix_minutes .webix_cal_day_disabled.webix_cal_event {
	background: #fff;
	font-weight: 400;
	text-decoration: line-through
}

.webix_cal_month_name {
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	cursor: pointer;
	user-select: none
}

.webix_cal_block {
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	cursor: pointer;
	float: left;
	text-align: center;
	user-select: none
}

.webix_selected {
	background: #f4f5f9;
	color: #475466
}

.webix_cal_footer {
	color: #444;
	cursor: pointer;
	font-size: 9pt;
	margin: 4px 17px;
	padding-top: 2px;
	text-align: center
}

.webix_cal_icons {
	float: right
}

.webix_cal_time_icons {
	float: left
}

.webix_cal_icons .webix_cal_icon {
	text-align: center
}

.webix_cal_icon:hover, .webix_cal_month_name:hover, .webix_cal_time:hover {
	color: #1ca1c1;
	text-decoration: underline
}

.webix_cal_icon:focus, .webix_cal_month_name:focus, .webix_cal_time:focus {
	color: #1ca1c1
}

.webix_cal_month_name.webix_readonly:hover {
	color: #475466;
	cursor: default;
	text-decoration: none
}

.webix_time_header {
	padding: 17px 17px 1px
}

	.webix_time_header .webix_cal_hours, .webix_time_header .webix_cal_minutes {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		border-bottom: 1px solid #dadee0;
		box-sizing: border-box;
		display: inline-block;
		font-size: 14px;
		height: 26px;
		line-height: 22px;
		text-align: center
	}

	.webix_time_header .webix_cal_minutes {
		border-left: 0;
		padding-left: 1px
	}

	.webix_time_header .webix_cal_hours {
		border-right: 0 !important
	}

.webix_cal_body .webix_hours {
	border-right: 1px solid #dadee0;
	float: left;
	padding-right: 1px
}

.webix_cal_body .webix_minutes {
	float: left;
	padding-left: 1px
}

.webix_cal_block_empty {
	float: left;
	text-align: center
}

.webix_time_footer {
	cursor: pointer;
	font-size: 9pt;
	padding: 7px 17px 0;
	text-align: center
}

.webix_cal_done {
	background: #f4f5f9;
	border: 1px solid #dadee0;
	border-radius: 2px;
	color: #1ca1c1;
	float: right;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	margin-top: 3px;
	outline: 0;
	padding: auto 6px
}

	.webix_cal_done:focus, .webix_cal_done:hover {
		background-color: #e7e9f2
	}

	.webix_cal_done:active {
		background-color: #daddeb
	}

.webix_cal_blurred_hours {
	background-color: #f7f7f7
}

.webix_property_line {
	clear: both;
	height: auto;
	min-height: 24px;
	width: 100%
}

	.webix_property_line.webix_focused > div, .webix_property_line:focus > div {
		background-color: #f7f8fb
	}

.webix_property_label, .webix_property_value {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-bottom: 1px solid #edeff0;
	box-sizing: border-box;
	float: left;
	height: 24px;
	line-height: 23px;
	overflow: hidden;
	padding-left: 9pt
}

.webix_property_label {
	border-right: 1px solid #edeff0
}

.webix_property_label_line {
	border-bottom: 1px solid #edeff0;
	color: #475466;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 24px;
	padding-left: 9pt
}

	.webix_property_label_line .webix_el_label .webix_el_box {
		color: #475466;
		font-family: Roboto,sans-serif;
		font-size: 14px;
		font-weight: 500;
		letter-spacing: 0
	}

	.webix_property_label_line.webix_dark {
		background: #657584;
		border-color: #657584
	}

		.webix_property_label_line.webix_dark .webix_el_button, .webix_property_label_line.webix_dark .webix_el_label .webix_el_box, .webix_property_label_line.webix_dark .webix_inp_label, .webix_property_label_line.webix_dark .webix_secondary .webix_icon, .webix_property_label_line.webix_dark .webix_secondary .webix_icon_btn, .webix_property_label_line.webix_dark .webix_secondary .webix_img_btn_text, .webix_property_label_line.webix_dark .webix_transparent .webix_icon, .webix_property_label_line.webix_dark .webix_transparent .webix_icon_btn, .webix_property_label_line.webix_dark .webix_transparent .webix_img_btn_text, .webix_property_label_line.webix_dark .webix_transparent button {
			color: #fff
		}

			.webix_property_label_line.webix_dark .webix_transparent button:focus, .webix_property_label_line.webix_dark .webix_transparent button:hover {
				background-color: rgba(0,0,0,.2)
			}

			.webix_property_label_line.webix_dark .webix_transparent button:active {
				background-color: rgba(0,0,0,.4)
			}

		.webix_property_label_line.webix_dark .webix_inp_counter_next, .webix_property_label_line.webix_dark .webix_inp_counter_prev, .webix_property_label_line.webix_dark .webix_menu-x .webix_list_item, .webix_property_label_line.webix_dark .webix_secondary button, .webix_property_label_line.webix_dark .webix_segment_0, .webix_property_label_line.webix_dark .webix_segment_1, .webix_property_label_line.webix_dark .webix_segment_N {
			background-color: rgba(0,0,0,.2);
			border-color: transparent;
			color: #fff
		}

		.webix_property_label_line.webix_dark .webix_view > .webix_template {
			background-color: #657584;
			color: #fff
		}

		.webix_property_label_line.webix_dark .webix_inp_counter_next:focus, .webix_property_label_line.webix_dark .webix_inp_counter_next:hover, .webix_property_label_line.webix_dark .webix_inp_counter_prev:focus, .webix_property_label_line.webix_dark .webix_inp_counter_prev:hover, .webix_property_label_line.webix_dark .webix_menu-x .webix_list_item:focus, .webix_property_label_line.webix_dark .webix_menu-x .webix_list_item:hover, .webix_property_label_line.webix_dark .webix_secondary button:focus, .webix_property_label_line.webix_dark .webix_secondary button:hover, .webix_property_label_line.webix_dark .webix_segment_0:focus, .webix_property_label_line.webix_dark .webix_segment_0:hover, .webix_property_label_line.webix_dark .webix_segment_1:focus, .webix_property_label_line.webix_dark .webix_segment_1:hover, .webix_property_label_line.webix_dark .webix_segment_N:focus, .webix_property_label_line.webix_dark .webix_segment_N:hover {
			background-color: rgba(0,0,0,.4);
			color: #fff
		}

		.webix_property_label_line.webix_dark .webix_inp_counter_next:active, .webix_property_label_line.webix_dark .webix_inp_counter_prev:active, .webix_property_label_line.webix_dark .webix_menu-x .webix_list_item:active, .webix_property_label_line.webix_dark .webix_secondary button:active, .webix_property_label_line.webix_dark .webix_segment_0:active, .webix_property_label_line.webix_dark .webix_segment_1:active, .webix_property_label_line.webix_dark .webix_segment_N:active {
			background-color: rgba(0,0,0,.5);
			color: #fff
		}

		.webix_property_label_line.webix_dark .webix_inp_static, .webix_property_label_line.webix_dark input[type=combo], .webix_property_label_line.webix_dark input[type=text] {
			background-color: rgba(0,0,0,.2);
			border-color: transparent;
			color: hsla(0,0%,100%,.7)
		}

			.webix_property_label_line.webix_dark .webix_inp_static:focus, .webix_property_label_line.webix_dark input[type=combo]:focus, .webix_property_label_line.webix_dark input[type=text]:focus {
				border-color: #fff;
				box-shadow: none
			}

		.webix_property_label_line.webix_dark .webix_el_counter button {
			background-color: rgba(0,0,0,.3)
		}

		.webix_property_label_line.webix_dark .webix_el_counter input[type=text]:focus {
			border-color: transparent
		}

		.webix_property_label_line.webix_dark .webix_placeholder, .webix_property_label_line.webix_dark :-moz-placeholder, .webix_property_label_line.webix_dark :-ms-input-placeholder, .webix_property_label_line.webix_dark ::-moz-placeholder, .webix_property_label_line.webix_dark ::-webkit-input-placeholder {
			color: hsla(0,0%,100%,.4)
		}

		.webix_property_label_line.webix_dark .webix_input_icon {
			color: hsla(0,0%,100%,.7)
		}

		.webix_property_label_line.webix_dark .webix_selected.webix_segment_0, .webix_property_label_line.webix_dark .webix_selected.webix_segment_1, .webix_property_label_line.webix_dark .webix_selected.webix_segment_N {
			background: #1ca1c1;
			color: #fff
		}

			.webix_property_label_line.webix_dark .webix_selected.webix_segment_0:focus, .webix_property_label_line.webix_dark .webix_selected.webix_segment_0:hover, .webix_property_label_line.webix_dark .webix_selected.webix_segment_1:focus, .webix_property_label_line.webix_dark .webix_selected.webix_segment_1:hover, .webix_property_label_line.webix_dark .webix_selected.webix_segment_N:focus, .webix_property_label_line.webix_dark .webix_selected.webix_segment_N:hover {
				background-color: #1992af
			}

			.webix_property_label_line.webix_dark .webix_selected.webix_segment_0:active, .webix_property_label_line.webix_dark .webix_selected.webix_segment_1:active, .webix_property_label_line.webix_dark .webix_selected.webix_segment_N:active {
				background-color: #17839d
			}

		.webix_property_label_line.webix_dark .webix_el_icon, .webix_property_label_line.webix_dark .webix_icon_btn, .webix_property_label_line.webix_dark .webix_icon_button, .webix_property_label_line.webix_dark .webix_img_btn, .webix_property_label_line.webix_dark .webix_img_btn_top .webix_icon, .webix_property_label_line.webix_dark .webix_img_btn_top .webix_img_btn_text {
			color: #fff
		}

		.webix_property_label_line.webix_dark .webix_control {
			border-color: #1ca1c1
		}

		.webix_property_label_line.webix_dark .webix_icon_button:hover:before {
			background-color: rgba(0,0,0,.2)
		}

		.webix_property_label_line.webix_dark .webix_icon_button:hover .webix_icon {
			opacity: 1
		}

		.webix_property_label_line.webix_dark .webix_icon_button .webix_icon {
			color: #fff;
			opacity: .7
		}

		.webix_property_label_line.webix_dark .webix_img_btn, .webix_property_label_line.webix_dark .webix_img_btn_top {
			border-width: 0
		}

		.webix_property_label_line.webix_dark .webix_custom_checkbox, .webix_property_label_line.webix_dark .webix_custom_radio {
			color: #fff
		}

			.webix_property_label_line.webix_dark .webix_custom_checkbox:focus, .webix_property_label_line.webix_dark .webix_custom_radio:focus {
				color: #f0f0f0
			}

		.webix_property_label_line.webix_dark .webix_label_right {
			color: #fff
		}

		.webix_property_label_line.webix_dark .webix_view.webix_control .webix_disabled_box button {
			background: rgba(0,0,0,.1);
			color: hsla(0,0%,100%,.4);
			text-shadow: none
		}

		.webix_property_label_line.webix_dark .webix_disabled_view.webix_control .webix_icon, .webix_property_label_line.webix_dark .webix_disabled_view.webix_control .webix_icon_btn, .webix_property_label_line.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_disabled_box .webix_img_btn_text, .webix_property_label_line.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon, .webix_property_label_line.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon_btn, .webix_property_label_line.webix_dark .webix_view.webix_control .webix_disabled_box .webix_img_btn_text, .webix_property_label_line.webix_dark .webix_view.webix_control .webix_disabled_box .webix_input_icon, .webix_property_label_line.webix_dark .webix_view.webix_control .webix_disabled_box button, .webix_property_label_line.webix_dark .webix_view.webix_control .webix_disabled_box label {
			color: hsla(0,0%,100%,.4)
		}

		.webix_property_label_line.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_static, .webix_property_label_line.webix_dark .webix_view.webix_control .webix_disabled_box input, .webix_property_label_line.webix_dark .webix_view.webix_control .webix_disabled_box select, .webix_property_label_line.webix_dark .webix_view.webix_control .webix_disabled_box textarea {
			background: rgba(0,0,0,.1);
			color: hsla(0,0%,100%,.4)
		}

		.webix_property_label_line.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_counter_next, .webix_property_label_line.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_counter_prev, .webix_property_label_line.webix_dark .webix_view.webix_control .webix_disabled_box .webix_item_tab, .webix_property_label_line.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_0, .webix_property_label_line.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_1, .webix_property_label_line.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_N {
			background: rgba(0,0,0,.1);
			color: hsla(0,0%,100%,.4);
			text-shadow: none
		}

		.webix_property_label_line.webix_dark .webix_disabled_top_label {
			color: hsla(0,0%,100%,.4)
		}

	.webix_property_label_line.webix_dark {
		color: #fff
	}

.webix_property_col_val {
	-moz-user-select: text;
	-webkit-user-select: text;
	height: 100%;
	line-height: inherit;
	user-select: text;
	width: 100%
}

.webix_property_col_ind {
	background: #fff;
	border: 1px solid #dadee0;
	border-radius: 3px;
	cursor: pointer;
	float: right;
	height: 1pc;
	margin: 2px 8px 0 0;
	width: 1pc
}

.webix_property_value {
	text-overflow: ellipsis;
	white-space: nowrap
}

.webix_property_check {
	margin: 0;
	vertical-align: middle
}

.webix_tooltip {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	border: 1px solid #dadee0;
	border-radius: 0;
	box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
	color: #475466;
	display: none;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 400;
	letter-spacing: .2px;
	padding: 5px 10px;
	position: absolute;
	z-index: 10000
}

.webix_comments .webix_list {
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-webkit-transition-property: height;
	transition: all .5s ease;
	transition-property: height
}

	.webix_comments .webix_list .webix_list_item {
		border: 0;
		cursor: default;
		margin-top: 24px
	}

		.webix_comments .webix_list .webix_list_item[webix_l_id="$more"] {
			margin-top: 9pt
		}

.webix_comments_name {
	color: rgba(0,0,0,.7);
	font-weight: 500;
	margin-left: 1pc
}

.webix_comments_menu.webix_icon {
	color: #94a1b3;
	cursor: pointer;
	float: right;
	margin: 0 4px 0 0;
	visibility: hidden;
	width: 6px
}

.webix_comments_current.active_menu .webix_comments_menu, .webix_comments_current:hover .webix_comments_menu {
	visibility: visible
}

.webix_comments_message {
	line-height: 20px;
	margin-left: 70px;
	margin-right: 10px;
	white-space: pre-wrap
}

	.webix_comments_message a {
		color: #1ca1c1;
		text-decoration: none;
		word-break: break-all
	}

		.webix_comments_message a:hover {
			text-decoration: underline
		}

		.webix_comments_message a:visited {
			color: #7e57c2
		}

.webix_comments_mention {
	color: #1ca1c1;
	font-weight: 500;
	white-space: nowrap
}

.webix_comments_avatar {
	float: left;
	height: 40px;
	margin-left: 14px;
	position: relative;
	width: 40px
}

.webix_comments_status {
	border: 2px solid #fff;
	border-radius: 50%;
	box-sizing: border-box;
	height: 9pt;
	left: 30px;
	position: absolute;
	top: 30px;
	width: 9pt;
	z-index: 1
}

	.webix_comments_status.active {
		background-color: #55cd97
	}

	.webix_comments_status.busy {
		background-color: #ff5c4c
	}

	.webix_comments_status.away {
		background-color: #fdbf4c
	}

	.webix_comments_status.none {
		background-color: #d0d5dd
	}

.webix_comments_avatar_image {
	border-radius: 50%;
	float: left;
	height: 100%;
	overflow: hidden;
	position: relative;
	width: 100%
}

.webix_comments_photo {
	height: 100%;
	margin: 0 auto;
	width: auto
}

.webix_comments_avatar_text {
	background-color: #dfe2e6;
	color: #1ca1c1;
	font-size: 1pc;
	line-height: 40px;
	text-align: center
}

	.webix_comments_avatar_text .webix_icon {
		margin: 0
	}

.webix_comments_date {
	color: #94a1b3;
	float: right;
	font-size: 9pt
}

.webix_comments_image {
	display: block;
	max-height: 300px;
	max-width: 100%
}

.webix_comments_more {
	background: #f4f5f9;
	border: 0;
	border-radius: 2px;
	color: #1ca1c1;
	cursor: pointer;
	font-weight: 500;
	text-align: center
}

	.webix_comments_more:hover {
		background-color: #e7e9f2
	}

.webix_comments_send .webix_el_box {
	float: right !important
}

.webix_message_area {
	position: fixed;
	right: 5px;
	width: 250px;
	z-index: 1000
}

.webix_message {
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-webkit-transition: all .5s ease;
	font-family: Roboto,sans-serif;
	margin: 4px 4px 9pt;
	min-width: 90pt;
	overflow: hidden;
	transition: all .5s ease;
	z-index: 10000
}

.webix_no_transition {
	-moz-transition: none;
	-webkit-transition: none;
	transition: none
}

.webix_message.hidden {
	border-width: 0;
	box-shadow: none;
	height: 0;
	margin-bottom: 0;
	margin-top: 0;
	min-height: 0;
	overflow: hidden;
	padding-bottom: 0;
	padding-top: 0
}

.webix_modal_box {
	background-color: #fff;
	border: 1px solid #dadee0;
	border-radius: 0;
	box-shadow: 0 3px 10px 0 rgba(0,0,0,.1),0 1px 7px 0 rgba(0,0,0,.1);
	display: inline-block;
	font-family: Roboto,sans-serif;
	min-width: 250px;
	outline: 0;
	overflow: hidden;
	position: fixed;
	text-align: center;
	width: 250px;
	z-index: 20000
}

	.webix_modal_box .webix_popup_button {
		margin-top: 8px
	}

.webix_message, .webix_popup_button {
	cursor: pointer
}

.webix_popup_controls {
	padding: 4px 9pt 9pt
}

.webix_popup_button {
	border-radius: 2px;
	display: inline-block;
	height: 22px;
	line-height: 22px;
	margin: 0 4px;
	min-width: 75pt
}

div.webix_modal_cover {
	background-color: #000;
	border: 0;
	cursor: default;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=10);
	height: 100%;
	left: 0;
	opacity: .1;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 19999;
	zoom: 1
}

.webix_message img, .webix_modal_box img {
	float: left;
	margin-right: 8px
}

.webix_popup_button {
	background: #f4f5f9;
	color: #1ca1c1;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	outline: 0;
	padding: auto 6px
}

	.webix_popup_button:focus, .webix_popup_button:hover {
		background-color: #e7e9f2
	}

	.webix_popup_button:active {
		background-color: #daddeb
	}

	.webix_popup_button.confirm {
		background: #1ca1c1;
		color: #fff;
		font-family: Roboto,sans-serif;
		font-size: 14px;
		font-weight: 500;
		letter-spacing: 0;
		outline: 0;
		padding: auto 6px
	}

		.webix_popup_button.confirm:focus, .webix_popup_button.confirm:hover {
			background-color: #1992af
		}

		.webix_popup_button.confirm:active {
			background-color: #17839d
		}

.webix_popup_title {
	color: #475466;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	padding: 20px 1pc 9pt
}

	.webix_popup_title + div.webix_popup_text {
		box-shadow: none;
		padding-top: 0
	}

.webix_popup_text {
 	max-height: 50vh;
	overflow-y: auto;  /* Enables vertical scrolling scroll auto */
	color: #475466;
	font-size: 9pt;
	line-height: 18px;
	min-height: 18px;
	padding: 24px 1pc 0
}

.webix_alert .webix_popup_text, .webix_alert .webix_popup_title, .webix_confirm .webix_popup_text, .webix_confirm .webix_popup_title {
	box-shadow: inset 0 4px #1ca1c1
}

.webix_alert-warning .webix_popup_text, .webix_alert-warning .webix_popup_title, .webix_confirm-warning .webix_popup_text, .webix_confirm-warning .webix_popup_title {
	box-shadow: inset 0 4px #fdbf4c
}

.webix_alert-error .webix_popup_text, .webix_alert-error .webix_popup_title, .webix_confirm-error .webix_popup_text, .webix_confirm-error .webix_popup_title {
	box-shadow: inset 0 4px #ff5c4c
}

.webix_message {
	background-color: #fff;
	border: 1px solid #dadee0;
	border-radius: 2px;
	box-shadow: 0 1px 14px 0 rgba(0,0,0,.12),0 4px 10px 0 rgba(0,0,0,.1);
	color: #475466;
	font-size: 9pt;
	line-height: 18px
}

	.webix_message.webix_debug {
		background-color: #fff2db;
		border-color: #fed282;
		color: #313131
	}

	.webix_message.webix_error {
		background-color: #ffdedb;
		border-color: #ff8d82;
		color: #313131
	}

	.webix_message.webix_success {
		background-color: #ddf5ea;
		border-color: #88dcb6;
		color: #313131
	}

	.webix_message div {
		padding: 8px 9pt
	}

.webix_color_row {
	clear: both;
	white-space: nowrap
}

.webix_color_palette {
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	text-align: left;
	user-select: none
}

.webix_color_row, .webix_color_row div, .webix_color_selector {
	font-size: 0;
	line-height: 0
}

	.webix_color_row div {
		cursor: default;
		display: inline-block;
		height: 15px;
		width: 15px
	}

		.webix_color_row div[aria-selected=true]:focus div {
			box-shadow: inset 0 0 15px #fff
		}

.webix_color_selector {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 2px solid #f3f3f3;
	box-sizing: border-box;
	position: relative
}

.webix_daterange .webix_view {
	background-color: #fff
}

.webix_daterange .webix_range_0 .webix_cal_next_button, .webix_daterange .webix_range_1 .webix_cal_next_button, .webix_daterange .webix_range_1 .webix_cal_prev_button, .webix_daterange .webix_range_N .webix_cal_prev_button {
	visibility: hidden
}

	.webix_daterange .webix_range_1 .webix_cal_next_button:hover, .webix_daterange .webix_range_1 .webix_cal_prev_button:hover {
		cursor: default
	}

.webix_daterange .webix_range_1 .webix_cal_month_name:hover {
	color: inherit;
	cursor: default;
	text-decoration: none
}

.webix_daterange .webix_range_left .webix_cal_next_button:hover, .webix_daterange .webix_range_right .webix_cal_prev_button:hover {
	cursor: default
}

.webix_cal_range {
	background-color: #fff
}

.webix_cal_range_start {
	border-radius: 3px 0 0 3px
}

.webix_cal_range_end {
	border-radius: 0 3px 3px 0
}

.webix_cal_body .webix_cal_today.webix_cal_range_end, .webix_cal_body .webix_cal_today.webix_cal_range_start, .webix_cal_event.webix_cal_range_end, .webix_cal_event.webix_cal_range_start, .webix_cal_range_end, .webix_cal_range_start {
	background-color: #f4f5f9;
	color: #475466
}

.webix_cal_body .webix_cal_outside.webix_cal_range_end, .webix_cal_body .webix_cal_outside.webix_cal_range_start, .webix_cal_body .webix_cal_outside.webix_cal_today.webix_cal_range_end, .webix_cal_body .webix_cal_outside.webix_cal_today.webix_cal_range_start, .webix_cal_outside.webix_cal_range {
	background-color: transparent;
	color: #b1bbc8
}

.webix_daterange .webix_cal_icons {
	padding: 0 4px;
	text-align: right
}

.webix_daterange .webix_cal_time {
	display: none
}

.webix_daterange .webix_cal_timepicker .webix_range_time_start {
	display: block
}

.webix_daterange .webix_range_timepicker .webix_cal_time {
	display: block
}

.webix_daterange .webix_range_timepicker .webix_range_time_start {
	float: left
}

.webix_daterange .webix_range_timepicker .webix_range_time_end {
	float: right
}

.webix_daterange .webix_range_footer .webix_cal_footer {
	padding: 0
}

.webix_drag_zone {
	background-color: #fff;
	box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
	color: #475466;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 400;
	letter-spacing: .2px;
	pointer-events: none;
	position: absolute
}

	.webix_drag_zone .webix_tree_item {
		padding: 0 8px
	}

		.webix_drag_zone .webix_tree_item .webix_tree_close, .webix_drag_zone .webix_tree_item .webix_tree_none, .webix_drag_zone .webix_tree_item .webix_tree_open {
			display: none
		}

.webix_drag_over, .webix_drop_zone {
	background-color: #e6e6e6
}

.webix_drag_main {
	background-color: #fff;
	position: relative
}

	.webix_drag_main .webix_dataview_item, .webix_drag_main .webix_list_item, .webix_drag_main .webix_tree_item {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		border: 1px solid #edeff0;
		box-sizing: border-box
	}

.webix_drag_multiple, .webix_drag_multiple_last {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background-color: #fff;
	border: 1px solid #edeff0;
	box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
	box-sizing: border-box;
	height: 100%;
	position: absolute;
	width: 100%
}

.webix_drag_multiple {
	bottom: 8px;
	left: 8px
}

.webix_drag_multiple_last {
	bottom: 1pc;
	left: 1pc
}

.webix_drag_zone > .webix_badge {
	right: -14px;
	top: -14px
}

.webix_invisible {
	display: none !important
}

.webix_drop_area {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background-color: #f1f2f7;
	box-sizing: border-box;
	height: 28px
}

.webix_list-x .webix_drop_area {
	border-right: 1px solid #edeff0;
	display: inline-block
}

.webix_tree .webix_drop_area {
	height: 24px
}

.webix_list .webix_drop_area {
	border-bottom: 1px solid #edeff0
}

.webix_dataview .webix_drop_area {
	border-bottom: 1px solid #edeff0;
	border-right: 1px solid #edeff0;
	float: left
}

.webix_vscroll_x {
	height: 0;
	overflow-x: scroll;
	overflow-y: hidden;
	width: 100%
}

.webix_vscroll_y {
	height: 100%;
	overflow-x: hidden;
	overflow-y: scroll;
	width: 0
}

.webix_vscroll_body {
	height: 1pc;
	width: 1pc
}

.webix_scroll_x {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background: rgba(0,0,0,.4);
	background-color: silver;
	border-radius: 4px;
	bottom: 3px;
	box-sizing: border-box;
	height: 4px !important;
	left: 1px;
	position: absolute;
	width: 50px
}

.webix_scroll_y {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background: rgba(0,0,0,.4);
	background-color: silver;
	border-radius: 4px;
	box-sizing: border-box;
	height: 50px;
	position: absolute;
	right: 3px;
	top: 1px;
	width: 4px !important
}

.webix_c_scroll_y {
	position: absolute;
	right: 0;
	width: 10px;
	z-index: 3
}

	.webix_c_scroll_y > div {
		-moz-transition: width .3s .2s,margin .3s .2s;
		-ms-transition: width .3s .2s,margin .3s .2s;
		-o-transition: width .3s .2s,margin .3s .2s;
		-webkit-transition: width .3s .2s,margin .3s .2s;
		background: rgba(0,0,0,.4);
		background-color: silver;
		border-radius: 4px;
		height: 100%;
		margin: 0 3px;
		width: 4px
	}

	.webix_c_scroll_y.webix_scroll_active div, .webix_c_scroll_y:hover > div {
		margin: 0;
		width: 10px
	}

.webix_c_scroll_x {
	bottom: 0;
	height: 10px;
	position: absolute;
	z-index: 3
}

	.webix_c_scroll_x > div {
		-moz-transition: height .3s .2s,margin .3s .2s;
		-ms-transition: height .3s .2s,margin .3s .2s;
		-o-transition: height .3s .2s,margin .3s .2s;
		-webkit-transition: height .3s .2s,margin .3s .2s;
		background: rgba(0,0,0,.4);
		background-color: silver;
		border-radius: 4px;
		height: 4px;
		margin: 3px 0;
		width: 100%
	}

	.webix_c_scroll_x.webix_scroll_active div, .webix_c_scroll_x:hover > div {
		height: 10px;
		margin: 0
	}

.webix_c_scroll_bar_x, .webix_c_scroll_bar_y {
	background: rgba(0,0,0,.05);
	position: absolute
}

.webix_c_scroll_bar_y {
	height: 100%;
	right: 0;
	width: 10px
}

.webix_c_scroll_bar_x {
	bottom: 0;
	height: 10px;
	width: 100%
}

.webix_scroll_cont {
	clear: both;
	height: auto;
	overflow: hidden;
	position: relative;
	width: 100%
}

.webix_scroll_touch_ie {
	touch-action: none
}

.webix_el_button.webix_secondary button, .webix_el_toggle.webix_secondary button {
	background: #f4f5f9;
	color: #1ca1c1
}

	.webix_el_button.webix_secondary button:focus, .webix_el_button.webix_secondary button:hover, .webix_el_toggle.webix_secondary button:focus, .webix_el_toggle.webix_secondary button:hover {
		background-color: #e7e9f2
	}

	.webix_el_button.webix_secondary button:active, .webix_el_toggle.webix_secondary button:active {
		background-color: #daddeb
	}

	.webix_el_button.webix_secondary button .webix_icon, .webix_el_button.webix_secondary button .webix_icon_btn, .webix_el_button.webix_secondary button .webix_img_btn_text, .webix_el_toggle.webix_secondary button .webix_icon, .webix_el_toggle.webix_secondary button .webix_icon_btn, .webix_el_toggle.webix_secondary button .webix_img_btn_text {
		color: #1ca1c1
	}

.webix_el_button.webix_secondary .webix_pressed button, .webix_el_toggle.webix_secondary .webix_pressed button {
	background-color: #daddeb
}

.webix_el_button.webix_primary button, .webix_el_toggle.webix_primary button {
	background: #1ca1c1;
	color: #fff
}

	.webix_el_button.webix_primary button:focus, .webix_el_button.webix_primary button:hover, .webix_el_toggle.webix_primary button:focus, .webix_el_toggle.webix_primary button:hover {
		background-color: #1992af
	}

	.webix_el_button.webix_primary button:active, .webix_el_toggle.webix_primary button:active {
		background-color: #17839d
	}

	.webix_el_button.webix_primary button .webix_icon, .webix_el_button.webix_primary button .webix_icon_btn, .webix_el_button.webix_primary button .webix_img_btn_text, .webix_el_toggle.webix_primary button .webix_icon, .webix_el_toggle.webix_primary button .webix_icon_btn, .webix_el_toggle.webix_primary button .webix_img_btn_text {
		color: #fff
	}

.webix_el_button.webix_primary .webix_pressed button, .webix_el_toggle.webix_primary .webix_pressed button {
	background-color: #17839d
}

.webix_el_button.webix_danger button, .webix_el_toggle.webix_danger button {
	background: #ff5c4c;
	color: #fff
}

	.webix_el_button.webix_danger button:focus, .webix_el_button.webix_danger button:hover, .webix_el_toggle.webix_danger button:focus, .webix_el_toggle.webix_danger button:hover {
		background-color: #ff4938
	}

	.webix_el_button.webix_danger button:active, .webix_el_toggle.webix_danger button:active {
		background-color: #ff3723
	}

	.webix_el_button.webix_danger button .webix_icon, .webix_el_button.webix_danger button .webix_icon_btn, .webix_el_button.webix_danger button .webix_img_btn_text, .webix_el_toggle.webix_danger button .webix_icon, .webix_el_toggle.webix_danger button .webix_icon_btn, .webix_el_toggle.webix_danger button .webix_img_btn_text {
		color: #fff
	}

.webix_el_button.webix_danger .webix_pressed button, .webix_el_toggle.webix_danger .webix_pressed button {
	background-color: #ff3723
}

.webix_el_button.webix_transparent button, .webix_el_toggle.webix_transparent button {
	background: transparent;
	border: 0;
	color: #475466
}

	.webix_el_button.webix_transparent button .webix_img_btn_text, .webix_el_toggle.webix_transparent button .webix_img_btn_text {
		color: #475466
	}

	.webix_el_button.webix_transparent button .webix_icon, .webix_el_button.webix_transparent button .webix_icon_btn, .webix_el_toggle.webix_transparent button .webix_icon, .webix_el_toggle.webix_transparent button .webix_icon_btn {
		color: #94a1b3
	}

	.webix_el_button.webix_transparent button:focus, .webix_el_button.webix_transparent button:hover, .webix_el_toggle.webix_transparent button:focus, .webix_el_toggle.webix_transparent button:hover {
		background-color: rgba(0,0,0,.04)
	}

	.webix_el_button.webix_transparent .webix_pressed button, .webix_el_button.webix_transparent button:active, .webix_el_toggle.webix_transparent .webix_pressed button, .webix_el_toggle.webix_transparent button:active {
		background-color: rgba(0,0,0,.05)
	}

.webix_el_button button, .webix_el_toggle button, .webixbutton {
	-webkit-appearance: none;
	border-radius: 2px;
	color: #1ca1c1;
	cursor: pointer;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	height: 100%;
	letter-spacing: 0;
	outline: 0;
	padding: auto 6px;
	width: 100%
}

.webix_el_button .webix_el_box, .webix_el_toggle .webix_el_box {
	position: relative
}

.webix_img_btn, .webix_img_btn_top {
	background-color: transparent;
	border: 0;
	padding: 0;
	vertical-align: top;
	width: 100%
}

	.webix_img_btn .webix_icon {
		color: #1ca1c1;
		margin-right: 4px
	}

	.webix_img_btn_top .webix_icon {
		font-size: 20px;
		left: 50%;
		margin-left: -10px;
		position: absolute;
		top: 8px
	}

	.webix_img_btn .webix_image {
		display: inline-block;
		margin-right: 4px;
		vertical-align: middle
	}

	.webix_img_btn_top .webix_image {
		background-position: center 4px;
		background-repeat: no-repeat
	}

.webix_img_btn_text {
	bottom: 4px;
	color: #1ca1c1;
	cursor: pointer;
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%
}

.webix_pressed button {
	box-shadow: inset 0 3px 5px rgba(0,0,0,.125)
}

.webix_view.webix_control .webix_disabled_box button {
	background: #f4f5f9;
	border-color: #f4f5f9;
	color: #94a1b3;
	text-shadow: none
}

.webix_view.webix_control .webix_disabled_box .webix_img_btn_text {
	color: #94a1b3
}

.webix_view.webix_control .webix_disabled_box .webix_image {
	opacity: .4
}

.webix_disabled_view.webix_control .webix_icon, .webix_disabled_view.webix_control .webix_icon_btn, .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_disabled_box .webix_img_btn_text, .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon, .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon_btn {
	color: #94a1b3
}

.webixbutton {
	height: auto;
	padding: 8px 15px;
	width: auto
}

.webix_richtext_editor {
	height: 100%
}

.webix_template .webix_richtext_editor:focus {
	outline: 0
}

.webix_richtext_container .webix_template {
	border: solid #dadee0;
	border-radius: 0 0 6px 6px;
	border-width: 0 1px 1px;
	overflow-x: auto;
	padding: 10px
}

.webix_richtext_inp_label .webix_template {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #313131;
	float: none;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 500;
	letter-spacing: .2px;
	margin-bottom: 0;
	overflow: hidden;
	padding-left: 0;
	padding-right: 8px;
	padding-top: 10px;
	text-overflow: ellipsis;
	text-transform: none;
	white-space: nowrap
}

.webix_control {
	background: transparent
}

	.webix_control button, .webix_control input, .webix_control textarea, .webix_el_label, .webix_inp_bottom_label, .webix_inp_label, .webix_inp_top_label {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		font-family: Roboto,sans-serif
	}

.webix_el_box {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 9pt;
	height: 100%;
	overflow: hidden;
	padding: 3px 2px;
	width: 100%
}

.webix_el_colorpicker input, .webix_el_combo input, .webix_el_datepicker input, .webix_el_search input, .webix_el_text input {
	-webkit-appearance: none;
	background: #fff;
	border: 1px solid #ccd7e6;
	border-radius: 0;
	color: #475466;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	height: 100%;
	padding: 0 9pt
}

.webix_inp_label, .webix_inp_top_label, .webix_label_right {
	color: #475466;
	font-size: 9pt;
	text-transform: none
}

.webix_inp_label {
	float: left;
	overflow: hidden;
	padding-left: 0;
	padding-right: 9px;
	padding-top: 1px;
	text-overflow: ellipsis;
	white-space: nowrap
}

.webix_inp_top_label {
	float: none;
	padding: 3px 2px 0
}

.webix_inp_bottom_label {
	color: #516075;
	font-size: 10px
}

.webix_label_right {
	padding-left: 9px
}

.webix_el_checkbox .webix_label_right {
	display: inline-block
}

.webix_el_label {
	color: #475466
}

.webix_toolbar .webix_el_label {
	text-transform: none
}

.webix_el_select select {
	border: 1px solid #dadee0;
	font-size: 9pt;
	height: 100%
}

body:not(:-moz-handler-blocked) .webix_el_select select {
	padding: .2em
}

.webix_all_segments, .webix_el_group {
	height: 100%;
	white-space: nowrap
}

.webix_inp_counter_next, .webix_inp_counter_prev, .webix_inp_counter_value {
	-webkit-appearance: none;
	border: 1px solid #dadee0;
	cursor: pointer;
	height: 100%;
	vertical-align: top;
	width: 20px
}

.webix_inp_counter_value {
	-webkit-appearance: none;
	border-left-width: 0;
	border-radius: 0;
	border-right-width: 0;
	color: #475466;
	font-size: 9pt;
	text-align: center;
	width: 50px
}

.webix_inp_counter_prev {
	-moz-border-radius-bottomleft: 2px;
	-moz-border-radius-bottomright: 0;
	-moz-border-radius-topleft: 2px;
	-moz-border-radius-topright: 0;
	-webkit-border-bottom-left-radius: 2px;
	-webkit-border-bottom-right-radius: 0;
	-webkit-border-top-left-radius: 2px;
	-webkit-border-top-right-radius: 0;
	background: #f4f5f9;
	border-radius: 2px 0 0 2px;
	color: #1ca1c1;
	padding-left: 6px
}

.webix_inp_counter_next {
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-bottomright: 2px;
	-moz-border-radius-topleft: 0;
	-moz-border-radius-topright: 2px;
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 2px;
	-webkit-border-top-left-radius: 0;
	-webkit-border-top-right-radius: 2px;
	background: #f4f5f9;
	border-radius: 0 2px 2px 0;
	color: #1ca1c1;
	padding-left: 6px
}

.webix_el_textarea textarea {
	border: 1px solid #dadee0;
	color: #475466;
	font-size: 9pt;
	height: 100%;
	margin: 0;
	padding: 5px 9pt;
	resize: none
}

.webix_el_textarea .webix_inp_label {
	padding-top: 7px
}

.webix_segment_0, .webix_segment_1 {
	border: 1px solid #dadee0;
	border-right-width: 0;
	height: 100%
}

.webix_segment_0 {
	-moz-border-radius-bottomleft: 2px;
	-moz-border-radius-bottomright: 0;
	-moz-border-radius-topleft: 2px;
	-moz-border-radius-topright: 0;
	-webkit-border-bottom-left-radius: 2px;
	-webkit-border-bottom-right-radius: 0;
	-webkit-border-top-left-radius: 2px;
	-webkit-border-top-right-radius: 0;
	border-radius: 2px 0 0 2px
}

.webix_segment_N {
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-bottomright: 2px;
	-moz-border-radius-topleft: 0;
	-moz-border-radius-topright: 2px;
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 2px;
	-webkit-border-top-left-radius: 0;
	-webkit-border-top-right-radius: 2px;
	border: 1px solid #dadee0;
	border-radius: 0 2px 2px 0;
	height: 100%
}

	.webix_segment_N:first-child {
		-moz-border-radius-bottomleft: 2px;
		-moz-border-radius-bottomright: 2px;
		-moz-border-radius-topleft: 2px;
		-moz-border-radius-topright: 2px;
		-webkit-border-bottom-left-radius: 2px;
		-webkit-border-bottom-right-radius: 2px;
		-webkit-border-top-left-radius: 2px;
		-webkit-border-top-right-radius: 2px;
		border-radius: 2px
	}

.webix_segment_0, .webix_segment_1, .webix_segment_N {
	-webkit-appearance: none;
	background: #f4f5f9;
	color: #1ca1c1;
	cursor: pointer;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	outline: 0;
	padding: 0
}

	.webix_segment_0:focus, .webix_segment_0:hover, .webix_segment_1:focus, .webix_segment_1:hover, .webix_segment_N:focus, .webix_segment_N:hover {
		background-color: #e7e9f2
	}

	.webix_segment_0:active, .webix_segment_1:active, .webix_segment_N:active {
		background-color: #daddeb
	}

	.webix_segment_0.webix_selected, .webix_segment_1.webix_selected, .webix_segment_N.webix_selected {
		background: #f4f5f9;
		background-color: #1ca1c1;
		border-color: #1ca1c1;
		color: #fff
	}

		.webix_segment_0.webix_selected:focus, .webix_segment_1.webix_selected:focus, .webix_segment_N.webix_selected:focus {
			background: #edeff5
		}

.webix_inp_static {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background: #fff;
	border: 1px solid #dadee0;
	box-sizing: border-box;
	float: left;
	height: 100%;
	overflow: hidden;
	padding: 0 9pt
}

.webix_placeholder, :-moz-placeholder, :-ms-input-placeholder, ::-moz-placeholder, ::-webkit-input-placeholder {
	color: #94a1b3
}

.webix_el_colorpicker, .webix_el_combo, .webix_el_datepicker, .webix_el_richselect, .webix_el_search {
	font-size: 9pt
}

	.webix_el_colorpicker .webix_el_box, .webix_el_combo .webix_el_box, .webix_el_datepicker .webix_el_box, .webix_el_richselect .webix_el_box, .webix_el_search .webix_el_box {
		color: #475466;
		position: relative
	}

	.webix_el_colorpicker .webix_inp_static, .webix_el_colorpicker input, .webix_el_combo .webix_inp_static, .webix_el_combo input, .webix_el_datepicker .webix_inp_static, .webix_el_datepicker input, .webix_el_richselect .webix_inp_static, .webix_el_richselect input, .webix_el_search .webix_inp_static, .webix_el_search input {
		-webkit-appearance: none;
		background: #fff;
		border-color: #ccd7e6;
		color: #475466;
		font-family: Roboto,sans-serif;
		padding-right: 24px
	}

	.webix_el_colorpicker .webix_input_icon, .webix_el_combo .webix_input_icon, .webix_el_datepicker .webix_input_icon, .webix_el_richselect .webix_input_icon, .webix_el_search .webix_input_icon {
		background: transparent;
		position: absolute;
		right: 2px;
		z-index: 1
	}

	.webix_el_combo .webix_input_icon, .webix_el_richselect .webix_input_icon {
		padding-left: 7px;
		width: 19px
	}

	.webix_el_colorpicker .webix_input_icon, .webix_el_datepicker .webix_input_icon, .webix_el_search .webix_input_icon {
		padding-left: 5px;
		width: 21px
	}

.webix_view button::-moz-focus-inner {
	border: 0;
	padding: 0
}

.webix_el_radio .webix_inp_label {
	line-height: normal !important;
	padding-top: 4px
}

.webix_el_checkbox input, .webix_inp_radio_border input {
	float: left;
	margin: 0;
	padding: 0
}

.webix_line_break {
	clear: both
}

.webix_custom_checkbox, .webix_custom_radio {
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none
}

.webix_radio_option {
	display: table;
	float: left;
	height: 24px;
	margin-right: 20px
}

.webix_el_radio .webix_label_right, .webix_inp_radio_border {
	display: table-cell;
	vertical-align: middle
}

.webix_invalid .webix_custom_radio, .webix_invalid .webix_el_box .webix_inp_static, .webix_invalid .webix_el_box input, .webix_invalid .webix_el_box select, .webix_invalid .webix_el_box textarea, input.webix_invalid, select.webix_invalid, textarea.webix_invalid {
	background-color: #fff6f6;
	border-color: #fea5a8
}

.webix_invalid .webix_inp_bottom_label {
	font-size: 10px
}

.webix_el_colorpicker .webix_input_icon {
	border-radius: 2px;
	height: 1pc;
	padding-left: 0;
	right: 8px;
	top: 7px;
	width: 1pc
}

.webix_el_search .webix_el_box {
	position: relative
}

.webix_el_search input {
	padding-right: 30px
}

.webix_el_search span {
	cursor: pointer;
	padding-left: 7px;
	position: absolute;
	right: 15px
}

.webix_view.webix_control > .webix_disabled {
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
	opacity: 0
}

.webix_disabled_view.webix_control .webix_image {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%)
}

.webix_el_label.webix_disabled_view, .webix_view.webix_control .webix_disabled_box .webix_input_icon, .webix_view.webix_control .webix_disabled_box button, .webix_view.webix_control .webix_disabled_box label {
	color: #94a1b3
}

.webix_view.webix_control .webix_disabled_box .webix_inp_static, .webix_view.webix_control .webix_disabled_box input, .webix_view.webix_control .webix_disabled_box select, .webix_view.webix_control .webix_disabled_box textarea {
	background: #fbfbfd;
	border-color: #edeff0;
	color: #94a1b3
}

.webix_view.webix_control .webix_disabled_box .webix_inp_counter_next, .webix_view.webix_control .webix_disabled_box .webix_inp_counter_prev, .webix_view.webix_control .webix_disabled_box .webix_segment_0, .webix_view.webix_control .webix_disabled_box .webix_segment_1, .webix_view.webix_control .webix_disabled_box .webix_segment_N {
	background: #f4f5f9;
	border-color: #f4f5f9;
	color: #94a1b3;
	text-shadow: none
}

.webix_disabled_top_label {
	color: #94a1b3
}

.webix_richtext_inp_label.webix_required .webix_template:after, label.webix_required:after, legend.webix_required:after {
	color: red;
	content: "*";
	padding-left: 4px
}

.webix_multicombo .webix_inp_static {
	padding: 0
}

.webix_el_text .webix_multicombo_input {
	background-color: transparent;
	border: 0;
	color: #475466;
	float: left;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	margin-left: 9pt;
	padding: 0;
	vertical-align: middle
}

	.webix_el_text .webix_multicombo_input:focus {
		border: 0;
		box-shadow: none
	}

.webix_multicombo_listbox {
	line-height: 1;
	list-style: none;
	margin: 0;
	padding: 0;
	width: auto
}

.webix_multicombo_tag, .webix_multicombo_value {
	background-color: #f2f2f2;
	border-radius: 2px;
	display: inline-block;
	float: left;
	margin: 3px;
	padding: 0 5px 0 7px
}

.webix_multicombo_tag {
	min-width: 15px;
	padding: 0 5px;
	text-align: center
}

.webix_multicombo_delete {
	color: #282f39;
	cursor: pointer;
	margin-left: 10px;
	padding: 0 5px
}

.webix_multilist .webix_selected {
	background: #f2f2f2;
	color: #475466
}

.webix_checksuggest_select_all {
	border: 0;
	border-bottom: 1px solid #ebebeb;
	border-color: #ebebeb;
	margin-bottom: 1px
}

	.webix_checksuggest_select_all .webix_label_right {
		display: block;
		padding-bottom: 4px;
		padding-top: 2px;
		text-transform: capitalize
	}

	.webix_checksuggest_select_all input {
		display: none
	}

	.webix_checksuggest_select_all:hover .webix_label_right {
		cursor: pointer
	}

.webix_el_tabbar {
	background: transparent
}

.webix_all_tabs {
	display: table;
	height: 100%
}

.webix_tab_filler {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background: transparent;
	border-bottom: 1px solid #dadee0;
	box-sizing: border-box;
	display: table-cell;
	font-size: 1px
}

.webix_item_tab:first-child {
	border-left: 1px solid #dadee0
}

.webix_item_tab {
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-bottomright: 0;
	-moz-border-radius-topleft: 2px;
	-moz-border-radius-topright: 2px;
	-moz-box-sizing: border-box;
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-webkit-border-top-left-radius: 2px;
	-webkit-border-top-right-radius: 2px;
	-webkit-box-sizing: border-box;
	background: #fff;
	border: 1px solid #dadee0;
	border-left-width: 0;
	border-radius: 2px 2px 0 0;
	box-sizing: border-box;
	color: #1ca1c1;
	cursor: pointer;
	display: table-cell;
	overflow: hidden;
	text-align: center;
	vertical-align: middle
}

.webixtype_bottom .webix_item_tab {
	border-radius: 0
}

.webix_item_tab.webix_selected {
	background: #fff;
	border-bottom-width: 0;
	color: #1ca1c1
}

.webixtype_bottom .webix_item_tab.webix_selected {
	border-bottom-width: 1px
}

.webix_before_all_tabs {
	width: 100%
}

.webix_after_all_tabs {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-left: 1px solid #dadee0;
	border-right: 1px solid #dadee0;
	box-sizing: border-box;
	width: 100%
}

.webix_view.webix_control .webix_disabled_box .webix_item_tab {
	background: #f4f5f9;
	border-color: #f4f5f9;
	color: #94a1b3;
	text-shadow: none
}

.webix_el_tabbar .webixtype_icon .webix_img_btn {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
	text-align: center
}

	.webix_el_tabbar .webixtype_icon .webix_img_btn .webix_icon_btn {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 0 3px
	}

.webix_el_tabbar .webixtype_icon .webix_item_tab, .webix_el_tabbar .webixtype_iconTop .webix_item_tab, .webix_el_tabbar .webixtype_image .webix_item_tab {
	border-radius: 0;
	padding: 3px 0
}

.webix_el_tabbar .webixtype_icon .webix_img_btn_top, .webix_el_tabbar .webixtype_iconTop .webix_img_btn_top, .webix_el_tabbar .webixtype_image .webix_img_btn_top {
	background-position: center 0;
	height: 100%;
	position: relative
}

.webix_tab_more_icon {
	box-sizing: border-box;
	cursor: pointer;
	display: table-cell;
	overflow: hidden;
	padding: 0 3px;
	text-align: center;
	vertical-align: middle
}

	.webix_tab_more_icon .webix_icon {
		width: 100%
	}

.webix_tab_list .webix_list_item:last-child {
	border-bottom: 0
}

.webix_icon.webix_tab_close {
	float: right;
	font-size: 9pt;
	margin-top: -4px;
	padding: 4px
}

.webix_menu .webix_list_item:active, .webix_menu .webix_list_item:focus, .webix_menu .webix_list_item:hover, .webix_menu-x .webix_list_item:active, .webix_menu-x .webix_list_item:focus, .webix_menu-x .webix_list_item:hover {
	background: hsla(0,0%,39%,.1)
}

.webix_menu .webix_list_item, .webix_menu-x .webix_list_item {
	background: #fff;
	border: 0;
	height: 28px;
	text-decoration: none
}

	.webix_menu .webix_list_item .webix_submenu_icon, .webix_menu-x .webix_list_item .webix_submenu_icon {
		float: right;
		margin-left: 4px;
		position: relative;
		text-align: right
	}

	.webix_menu-x .webix_list_item:first-child {
		margin-left: 0
	}

.webix_menu-x .webix_submenu_icon {
	top: 10px
}

.webix_menu-x {
	background: transparent;
	border-color: transparent;
	color: #fff
}

	.webix_menu-x .webix_list_item {
		background: #1ca1c1;
		border-left: 0;
		border-right: 1px solid #fff;
		color: #fff;
		display: inline-block;
		font-size: 9pt;
		line-height: 24px
	}

		.webix_menu-x .webix_list_item .webix_submenu_icon:before {
			content: "\F001"
		}

		.webix_menu-x .webix_list_item .webix_icon_btn {
			color: #fff;
			text-align: left
		}

		.webix_menu-x .webix_list_item:active, .webix_menu-x .webix_list_item:focus, .webix_menu-x .webix_list_item:hover {
			background-color: #1992af
		}

		.webix_menu-x .webix_list_item:first-child {
			-moz-border-radius-bottomleft: 2px;
			-moz-border-radius-bottomright: 0;
			-moz-border-radius-topleft: 2px;
			-moz-border-radius-topright: 0;
			-webkit-border-bottom-left-radius: 2px;
			-webkit-border-bottom-right-radius: 0;
			-webkit-border-top-left-radius: 2px;
			-webkit-border-top-right-radius: 0;
			border-radius: 2px 0 0 2px
		}

		.webix_menu-x .webix_list_item:last-child {
			-moz-border-radius-bottomleft: 0;
			-moz-border-radius-bottomright: 2px;
			-moz-border-radius-topleft: 0;
			-moz-border-radius-topright: 2px;
			-webkit-border-bottom-left-radius: 0;
			-webkit-border-bottom-right-radius: 2px;
			-webkit-border-top-left-radius: 0;
			-webkit-border-top-right-radius: 2px;
			border-radius: 0 2px 2px 0;
			border-right: 0
		}

.webix_menu {
	background: #fff;
	border: 1px solid #dadee0;
	border-radius: 0
}

	.webix_menu .webix_list_item {
		display: block
	}

	.webix_menu .webix_context_separator {
		height: 3px;
		padding: 1px 3px 0
	}

		.webix_menu .webix_context_separator .sep_line {
			border-top: 1px solid #dadee0;
			height: 1px
		}

	.webix_menu .webix_submenu_icon {
		top: 8px
	}

	.webix_menu .webix_context_spacer {
		height: 28px
	}

.webix_menu_link {
	color: inherit;
	display: block;
	height: 100%;
	text-decoration: none
}

.webix_layout_toolbar .webix_el_label .webix_el_box {
	color: #475466;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0
}

.webix_layout_toolbar.webix_dark {
	background: #657584;
	border-color: #657584
}

	.webix_layout_toolbar.webix_dark .webix_el_button, .webix_layout_toolbar.webix_dark .webix_el_label .webix_el_box, .webix_layout_toolbar.webix_dark .webix_inp_label, .webix_layout_toolbar.webix_dark .webix_secondary .webix_icon, .webix_layout_toolbar.webix_dark .webix_secondary .webix_icon_btn, .webix_layout_toolbar.webix_dark .webix_secondary .webix_img_btn_text, .webix_layout_toolbar.webix_dark .webix_transparent .webix_icon, .webix_layout_toolbar.webix_dark .webix_transparent .webix_icon_btn, .webix_layout_toolbar.webix_dark .webix_transparent .webix_img_btn_text, .webix_layout_toolbar.webix_dark .webix_transparent button {
		color: #fff
	}

		.webix_layout_toolbar.webix_dark .webix_transparent button:focus, .webix_layout_toolbar.webix_dark .webix_transparent button:hover {
			background-color: rgba(0,0,0,.2)
		}

		.webix_layout_toolbar.webix_dark .webix_transparent button:active {
			background-color: rgba(0,0,0,.4)
		}

	.webix_layout_toolbar.webix_dark .webix_inp_counter_next, .webix_layout_toolbar.webix_dark .webix_inp_counter_prev, .webix_layout_toolbar.webix_dark .webix_menu-x .webix_list_item, .webix_layout_toolbar.webix_dark .webix_secondary button, .webix_layout_toolbar.webix_dark .webix_segment_0, .webix_layout_toolbar.webix_dark .webix_segment_1, .webix_layout_toolbar.webix_dark .webix_segment_N {
		background-color: rgba(0,0,0,.2);
		border-color: transparent;
		color: #fff
	}

	.webix_layout_toolbar.webix_dark .webix_view > .webix_template {
		background-color: #657584;
		color: #fff
	}

	.webix_layout_toolbar.webix_dark .webix_inp_counter_next:focus, .webix_layout_toolbar.webix_dark .webix_inp_counter_next:hover, .webix_layout_toolbar.webix_dark .webix_inp_counter_prev:focus, .webix_layout_toolbar.webix_dark .webix_inp_counter_prev:hover, .webix_layout_toolbar.webix_dark .webix_menu-x .webix_list_item:focus, .webix_layout_toolbar.webix_dark .webix_menu-x .webix_list_item:hover, .webix_layout_toolbar.webix_dark .webix_secondary button:focus, .webix_layout_toolbar.webix_dark .webix_secondary button:hover, .webix_layout_toolbar.webix_dark .webix_segment_0:focus, .webix_layout_toolbar.webix_dark .webix_segment_0:hover, .webix_layout_toolbar.webix_dark .webix_segment_1:focus, .webix_layout_toolbar.webix_dark .webix_segment_1:hover, .webix_layout_toolbar.webix_dark .webix_segment_N:focus, .webix_layout_toolbar.webix_dark .webix_segment_N:hover {
		background-color: rgba(0,0,0,.4);
		color: #fff
	}

	.webix_layout_toolbar.webix_dark .webix_inp_counter_next:active, .webix_layout_toolbar.webix_dark .webix_inp_counter_prev:active, .webix_layout_toolbar.webix_dark .webix_menu-x .webix_list_item:active, .webix_layout_toolbar.webix_dark .webix_secondary button:active, .webix_layout_toolbar.webix_dark .webix_segment_0:active, .webix_layout_toolbar.webix_dark .webix_segment_1:active, .webix_layout_toolbar.webix_dark .webix_segment_N:active {
		background-color: rgba(0,0,0,.5);
		color: #fff
	}

	.webix_layout_toolbar.webix_dark .webix_inp_static, .webix_layout_toolbar.webix_dark input[type=combo], .webix_layout_toolbar.webix_dark input[type=text] {
		background-color: rgba(0,0,0,.2);
		border-color: transparent;
		color: hsla(0,0%,100%,.7)
	}

		.webix_layout_toolbar.webix_dark .webix_inp_static:focus, .webix_layout_toolbar.webix_dark input[type=combo]:focus, .webix_layout_toolbar.webix_dark input[type=text]:focus {
			border-color: #fff;
			box-shadow: none
		}

	.webix_layout_toolbar.webix_dark .webix_el_counter button {
		background-color: rgba(0,0,0,.3)
	}

	.webix_layout_toolbar.webix_dark .webix_el_counter input[type=text]:focus {
		border-color: transparent
	}

	.webix_layout_toolbar.webix_dark .webix_placeholder, .webix_layout_toolbar.webix_dark :-moz-placeholder, .webix_layout_toolbar.webix_dark :-ms-input-placeholder, .webix_layout_toolbar.webix_dark ::-moz-placeholder, .webix_layout_toolbar.webix_dark ::-webkit-input-placeholder {
		color: hsla(0,0%,100%,.4)
	}

	.webix_layout_toolbar.webix_dark .webix_input_icon {
		color: hsla(0,0%,100%,.7)
	}

	.webix_layout_toolbar.webix_dark .webix_selected.webix_segment_0, .webix_layout_toolbar.webix_dark .webix_selected.webix_segment_1, .webix_layout_toolbar.webix_dark .webix_selected.webix_segment_N {
		background: #1ca1c1;
		color: #fff
	}

		.webix_layout_toolbar.webix_dark .webix_selected.webix_segment_0:focus, .webix_layout_toolbar.webix_dark .webix_selected.webix_segment_0:hover, .webix_layout_toolbar.webix_dark .webix_selected.webix_segment_1:focus, .webix_layout_toolbar.webix_dark .webix_selected.webix_segment_1:hover, .webix_layout_toolbar.webix_dark .webix_selected.webix_segment_N:focus, .webix_layout_toolbar.webix_dark .webix_selected.webix_segment_N:hover {
			background-color: #1992af
		}

		.webix_layout_toolbar.webix_dark .webix_selected.webix_segment_0:active, .webix_layout_toolbar.webix_dark .webix_selected.webix_segment_1:active, .webix_layout_toolbar.webix_dark .webix_selected.webix_segment_N:active {
			background-color: #17839d
		}

	.webix_layout_toolbar.webix_dark .webix_el_icon, .webix_layout_toolbar.webix_dark .webix_icon_btn, .webix_layout_toolbar.webix_dark .webix_icon_button, .webix_layout_toolbar.webix_dark .webix_img_btn, .webix_layout_toolbar.webix_dark .webix_img_btn_top .webix_icon, .webix_layout_toolbar.webix_dark .webix_img_btn_top .webix_img_btn_text {
		color: #fff
	}

	.webix_layout_toolbar.webix_dark .webix_control {
		border-color: #1ca1c1
	}

	.webix_layout_toolbar.webix_dark .webix_icon_button:hover:before {
		background-color: rgba(0,0,0,.2)
	}

	.webix_layout_toolbar.webix_dark .webix_icon_button:hover .webix_icon {
		opacity: 1
	}

	.webix_layout_toolbar.webix_dark .webix_icon_button .webix_icon {
		color: #fff;
		opacity: .7
	}

	.webix_layout_toolbar.webix_dark .webix_img_btn, .webix_layout_toolbar.webix_dark .webix_img_btn_top {
		border-width: 0
	}

	.webix_layout_toolbar.webix_dark .webix_custom_checkbox, .webix_layout_toolbar.webix_dark .webix_custom_radio {
		color: #fff
	}

		.webix_layout_toolbar.webix_dark .webix_custom_checkbox:focus, .webix_layout_toolbar.webix_dark .webix_custom_radio:focus {
			color: #f0f0f0
		}

	.webix_layout_toolbar.webix_dark .webix_label_right {
		color: #fff
	}

	.webix_layout_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box button {
		background: rgba(0,0,0,.1);
		color: hsla(0,0%,100%,.4);
		text-shadow: none
	}

	.webix_layout_toolbar.webix_dark .webix_disabled_view.webix_control .webix_icon, .webix_layout_toolbar.webix_dark .webix_disabled_view.webix_control .webix_icon_btn, .webix_layout_toolbar.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_disabled_box .webix_img_btn_text, .webix_layout_toolbar.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon, .webix_layout_toolbar.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon_btn, .webix_layout_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_img_btn_text, .webix_layout_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_input_icon, .webix_layout_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box button, .webix_layout_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box label {
		color: hsla(0,0%,100%,.4)
	}

	.webix_layout_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_static, .webix_layout_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box input, .webix_layout_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box select, .webix_layout_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box textarea {
		background: rgba(0,0,0,.1);
		color: hsla(0,0%,100%,.4)
	}

	.webix_layout_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_counter_next, .webix_layout_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_counter_prev, .webix_layout_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_item_tab, .webix_layout_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_0, .webix_layout_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_1, .webix_layout_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_N {
		background: rgba(0,0,0,.1);
		color: hsla(0,0%,100%,.4);
		text-shadow: none
	}

	.webix_layout_toolbar.webix_dark .webix_disabled_top_label {
		color: hsla(0,0%,100%,.4)
	}

.webix_toolbar.webix_layout_subbar .webix_el_label .webix_el_box {
	color: #475466;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0
}

.webix_toolbar.webix_layout_subbar.webix_dark {
	background: #657584;
	border-color: #657584
}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_el_button, .webix_toolbar.webix_layout_subbar.webix_dark .webix_el_label .webix_el_box, .webix_toolbar.webix_layout_subbar.webix_dark .webix_inp_label, .webix_toolbar.webix_layout_subbar.webix_dark .webix_secondary .webix_icon, .webix_toolbar.webix_layout_subbar.webix_dark .webix_secondary .webix_icon_btn, .webix_toolbar.webix_layout_subbar.webix_dark .webix_secondary .webix_img_btn_text, .webix_toolbar.webix_layout_subbar.webix_dark .webix_transparent .webix_icon, .webix_toolbar.webix_layout_subbar.webix_dark .webix_transparent .webix_icon_btn, .webix_toolbar.webix_layout_subbar.webix_dark .webix_transparent .webix_img_btn_text, .webix_toolbar.webix_layout_subbar.webix_dark .webix_transparent button {
		color: #fff
	}

		.webix_toolbar.webix_layout_subbar.webix_dark .webix_transparent button:focus, .webix_toolbar.webix_layout_subbar.webix_dark .webix_transparent button:hover {
			background-color: rgba(0,0,0,.2)
		}

		.webix_toolbar.webix_layout_subbar.webix_dark .webix_transparent button:active {
			background-color: rgba(0,0,0,.4)
		}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_inp_counter_next, .webix_toolbar.webix_layout_subbar.webix_dark .webix_inp_counter_prev, .webix_toolbar.webix_layout_subbar.webix_dark .webix_menu-x .webix_list_item, .webix_toolbar.webix_layout_subbar.webix_dark .webix_secondary button, .webix_toolbar.webix_layout_subbar.webix_dark .webix_segment_0, .webix_toolbar.webix_layout_subbar.webix_dark .webix_segment_1, .webix_toolbar.webix_layout_subbar.webix_dark .webix_segment_N {
		background-color: rgba(0,0,0,.2);
		border-color: transparent;
		color: #fff
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_view > .webix_template {
		background-color: #657584;
		color: #fff
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_inp_counter_next:focus, .webix_toolbar.webix_layout_subbar.webix_dark .webix_inp_counter_next:hover, .webix_toolbar.webix_layout_subbar.webix_dark .webix_inp_counter_prev:focus, .webix_toolbar.webix_layout_subbar.webix_dark .webix_inp_counter_prev:hover, .webix_toolbar.webix_layout_subbar.webix_dark .webix_menu-x .webix_list_item:focus, .webix_toolbar.webix_layout_subbar.webix_dark .webix_menu-x .webix_list_item:hover, .webix_toolbar.webix_layout_subbar.webix_dark .webix_secondary button:focus, .webix_toolbar.webix_layout_subbar.webix_dark .webix_secondary button:hover, .webix_toolbar.webix_layout_subbar.webix_dark .webix_segment_0:focus, .webix_toolbar.webix_layout_subbar.webix_dark .webix_segment_0:hover, .webix_toolbar.webix_layout_subbar.webix_dark .webix_segment_1:focus, .webix_toolbar.webix_layout_subbar.webix_dark .webix_segment_1:hover, .webix_toolbar.webix_layout_subbar.webix_dark .webix_segment_N:focus, .webix_toolbar.webix_layout_subbar.webix_dark .webix_segment_N:hover {
		background-color: rgba(0,0,0,.4);
		color: #fff
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_inp_counter_next:active, .webix_toolbar.webix_layout_subbar.webix_dark .webix_inp_counter_prev:active, .webix_toolbar.webix_layout_subbar.webix_dark .webix_menu-x .webix_list_item:active, .webix_toolbar.webix_layout_subbar.webix_dark .webix_secondary button:active, .webix_toolbar.webix_layout_subbar.webix_dark .webix_segment_0:active, .webix_toolbar.webix_layout_subbar.webix_dark .webix_segment_1:active, .webix_toolbar.webix_layout_subbar.webix_dark .webix_segment_N:active {
		background-color: rgba(0,0,0,.5);
		color: #fff
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_inp_static, .webix_toolbar.webix_layout_subbar.webix_dark input[type=combo], .webix_toolbar.webix_layout_subbar.webix_dark input[type=text] {
		background-color: rgba(0,0,0,.2);
		border-color: transparent;
		color: hsla(0,0%,100%,.7)
	}

		.webix_toolbar.webix_layout_subbar.webix_dark .webix_inp_static:focus, .webix_toolbar.webix_layout_subbar.webix_dark input[type=combo]:focus, .webix_toolbar.webix_layout_subbar.webix_dark input[type=text]:focus {
			border-color: #fff;
			box-shadow: none
		}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_el_counter button {
		background-color: rgba(0,0,0,.3)
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_el_counter input[type=text]:focus {
		border-color: transparent
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_placeholder, .webix_toolbar.webix_layout_subbar.webix_dark :-moz-placeholder, .webix_toolbar.webix_layout_subbar.webix_dark :-ms-input-placeholder, .webix_toolbar.webix_layout_subbar.webix_dark ::-moz-placeholder, .webix_toolbar.webix_layout_subbar.webix_dark ::-webkit-input-placeholder {
		color: hsla(0,0%,100%,.4)
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_input_icon {
		color: hsla(0,0%,100%,.7)
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_selected.webix_segment_0, .webix_toolbar.webix_layout_subbar.webix_dark .webix_selected.webix_segment_1, .webix_toolbar.webix_layout_subbar.webix_dark .webix_selected.webix_segment_N {
		background: #1ca1c1;
		color: #fff
	}

		.webix_toolbar.webix_layout_subbar.webix_dark .webix_selected.webix_segment_0:focus, .webix_toolbar.webix_layout_subbar.webix_dark .webix_selected.webix_segment_0:hover, .webix_toolbar.webix_layout_subbar.webix_dark .webix_selected.webix_segment_1:focus, .webix_toolbar.webix_layout_subbar.webix_dark .webix_selected.webix_segment_1:hover, .webix_toolbar.webix_layout_subbar.webix_dark .webix_selected.webix_segment_N:focus, .webix_toolbar.webix_layout_subbar.webix_dark .webix_selected.webix_segment_N:hover {
			background-color: #1992af
		}

		.webix_toolbar.webix_layout_subbar.webix_dark .webix_selected.webix_segment_0:active, .webix_toolbar.webix_layout_subbar.webix_dark .webix_selected.webix_segment_1:active, .webix_toolbar.webix_layout_subbar.webix_dark .webix_selected.webix_segment_N:active {
			background-color: #17839d
		}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_el_icon, .webix_toolbar.webix_layout_subbar.webix_dark .webix_icon_btn, .webix_toolbar.webix_layout_subbar.webix_dark .webix_icon_button, .webix_toolbar.webix_layout_subbar.webix_dark .webix_img_btn, .webix_toolbar.webix_layout_subbar.webix_dark .webix_img_btn_top .webix_icon, .webix_toolbar.webix_layout_subbar.webix_dark .webix_img_btn_top .webix_img_btn_text {
		color: #fff
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_control {
		border-color: #1ca1c1
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_icon_button:hover:before {
		background-color: rgba(0,0,0,.2)
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_icon_button:hover .webix_icon {
		opacity: 1
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_icon_button .webix_icon {
		color: #fff;
		opacity: .7
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_img_btn, .webix_toolbar.webix_layout_subbar.webix_dark .webix_img_btn_top {
		border-width: 0
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_custom_checkbox, .webix_toolbar.webix_layout_subbar.webix_dark .webix_custom_radio {
		color: #fff
	}

		.webix_toolbar.webix_layout_subbar.webix_dark .webix_custom_checkbox:focus, .webix_toolbar.webix_layout_subbar.webix_dark .webix_custom_radio:focus {
			color: #f0f0f0
		}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_label_right {
		color: #fff
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_view.webix_control .webix_disabled_box button {
		background: rgba(0,0,0,.1);
		color: hsla(0,0%,100%,.4);
		text-shadow: none
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_disabled_view.webix_control .webix_icon, .webix_toolbar.webix_layout_subbar.webix_dark .webix_disabled_view.webix_control .webix_icon_btn, .webix_toolbar.webix_layout_subbar.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_disabled_box .webix_img_btn_text, .webix_toolbar.webix_layout_subbar.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon, .webix_toolbar.webix_layout_subbar.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon_btn, .webix_toolbar.webix_layout_subbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_img_btn_text, .webix_toolbar.webix_layout_subbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_input_icon, .webix_toolbar.webix_layout_subbar.webix_dark .webix_view.webix_control .webix_disabled_box button, .webix_toolbar.webix_layout_subbar.webix_dark .webix_view.webix_control .webix_disabled_box label {
		color: hsla(0,0%,100%,.4)
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_static, .webix_toolbar.webix_layout_subbar.webix_dark .webix_view.webix_control .webix_disabled_box input, .webix_toolbar.webix_layout_subbar.webix_dark .webix_view.webix_control .webix_disabled_box select, .webix_toolbar.webix_layout_subbar.webix_dark .webix_view.webix_control .webix_disabled_box textarea {
		background: rgba(0,0,0,.1);
		color: hsla(0,0%,100%,.4)
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_counter_next, .webix_toolbar.webix_layout_subbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_counter_prev, .webix_toolbar.webix_layout_subbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_item_tab, .webix_toolbar.webix_layout_subbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_0, .webix_toolbar.webix_layout_subbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_1, .webix_toolbar.webix_layout_subbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_N {
		background: rgba(0,0,0,.1);
		color: hsla(0,0%,100%,.4);
		text-shadow: none
	}

	.webix_toolbar.webix_layout_subbar.webix_dark .webix_disabled_top_label {
		color: hsla(0,0%,100%,.4)
	}

.webix_toolbar .webix_layout_clean, .webix_toolbar .webix_layout_line, .webix_toolbar .webix_layout_toolbar {
	background: transparent
}

.webix_el_button .webix_hidden_upload, .webix_hidden_upload {
	border: 0 !important;
	font-size: 1px;
	height: 1px;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 1px;
	z-index: -1
}

.webix_upload_client, .webix_upload_error, .webix_upload_server {
	float: right;
	text-align: center;
	width: 60px
}

.cancel_icon, .error_icon {
	background-repeat: no-repeat;
	display: inline-block
}

.error_icon {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAQCAYAAAAbBi9cAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjZFMDdENjlDNjE2QzExRTI5QzhBQUU2OUI3RDY4RTFCIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjZFMDdENjlENjE2QzExRTI5QzhBQUU2OUI3RDY4RTFCIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NkUwN0Q2OUE2MTZDMTFFMjlDOEFBRTY5QjdENjhFMUIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NkUwN0Q2OUI2MTZDMTFFMjlDOEFBRTY5QjdENjhFMUIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4ZJnE7AAABdklEQVR42mK80aLPgAcwA/EcIOYB4mgg/oWuQL36AphmYcAPYvl5WBOYmBgY3n/6fQTIn4hLIRMeQ0CuaBHgY2EQ4GMF8euAWIgcg6qF+NmkOdiZGdhYmRiEBdhAhrSQapAKEBcJC7DCBUQE2UBUGhAbkGLQBDEhdjYmJkaGtHVMDD4LmBk+/2RgEBdhBwX+ZGINcuLiZPYW5Ie45tknRrAhIFqAl5WBh4vFBijsR8ggkI29IA0wwMsOo/+DaWjA9wIxGz6D0oAKDXi5EalCkvc/2DApPgifm5OZQZCPFRyGuAwCxwqya0AAZADMVTAgyA92TDUQS2MzqAUUxcAgRjPoP9hVyICVhREUi6B01g4TY4RmES0gvqSuyMPMQAK4ef/LXyBlAswmF2DWd4kJs2M1pGgLIvrRAXJyAIWqNzcXi7cgHysDqQAUnt9//LW52WoQBfLaDRlxDnWgYQzkAKBBDI+ef38E0n3nycsf6gyUgUcAAQYA9DZJKVXGocQAAAAASUVORK5CYII=);
	height: 1pc;
	width: 18px
}

.webix_upload_server {
	color: green
}

.webix_remove_upload {
	float: right
}

.cancel_icon {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAQAAAC1QeVaAAAAsElEQVR4XoVQUQbDQBScAywIuUcpKCWglBJCDlBKf0vpbymhd5mDhIDcoAcoJQSEsn2G5KmWzMDsPG92ZyGAgVfWfBtrUwEOZnwwOu2UjaPCbScLAEzYmzxyxafMgaUlRXMTsJJ1B7jgy0Y7gHt5FdgyimeAS+a6ZpDTQkLkCQbmk9OBHaPv+p6x99jLFFuOsTMPSlXl8FVlrSopFBP/sIQAbn6+bwsHA29sNGhMBQgf1cri4JYEbDkAAAAASUVORK5CYII=);
	height: 14px;
	margin-top: 5px;
	width: 14px
}

.webix_upload_flash {
	background: #fff;
	bottom: 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
	height: 100%;
	left: 0;
	position: absolute;
	width: 100%
}

.webix_drop_file {
	background: #f4f4f4;
	position: relative
}

	.webix_drop_file:before {
		bottom: 10px;
		left: 0;
		pointer-events: none;
		position: absolute;
		text-align: center;
		width: 100%
	}

.webix_fieldset > fieldset {
	border: 1px solid #dadee0;
	margin: 0;
	padding: 5px 8px
}

.webix_fieldset_label {
	color: #475466;
	font-size: 9pt;
	padding: 0 8px;
	text-transform: uppercase
}

.webix_forminput > fieldset {
	border: 0;
	margin: 0;
	padding: 0
}

.webix_forminput_label {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #475466;
	float: left;
	font-family: Roboto,sans-serif;
	line-height: 24px;
	padding: 3px 9px 3px 2px
}

legend.webix_forminput_label_top {
	padding: 3px 2px 0;
	width: 100%
}

.webix_slider_box {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-radius: 5px;
	box-sizing: border-box;
	float: left;
	height: 100%;
	margin-top: -11px;
	padding: 13px 10px 0;
	position: relative
}

	.webix_slider_box .webix_slider_left {
		-moz-border-radius-bottomleft: 5px;
		-moz-border-radius-bottomright: 0;
		-moz-border-radius-topleft: 5px;
		-moz-border-radius-topright: 0;
		-moz-box-sizing: border-box;
		-webkit-border-bottom-left-radius: 5px;
		-webkit-border-bottom-right-radius: 0;
		-webkit-border-top-left-radius: 5px;
		-webkit-border-top-right-radius: 0;
		-webkit-box-sizing: border-box;
		border: 1px solid #e8eaec;
		border-radius: 5px 0 0 5px;
		box-sizing: border-box;
		float: left;
		height: 10px;
		width: 75pt
	}

	.webix_slider_box .webix_slider_right {
		-moz-border-radius-bottomleft: 0;
		-moz-border-radius-bottomright: 5px;
		-moz-border-radius-topleft: 0;
		-moz-border-radius-topright: 5px;
		-moz-box-sizing: border-box;
		-webkit-border-bottom-left-radius: 0;
		-webkit-border-bottom-right-radius: 5px;
		-webkit-border-top-left-radius: 0;
		-webkit-border-top-right-radius: 5px;
		-webkit-box-sizing: border-box;
		background: #fff;
		border: 1px solid #e8eaec;
		border-radius: 0 5px 5px 0;
		box-sizing: border-box;
		float: left;
		width: 75pt
	}

	.webix_slider_box .webix_slider_handle {
		border-radius: 8px;
		position: absolute;
		top: 8px;
		width: 14px;
		z-index: 1
	}

		.webix_slider_box .webix_slider_handle:focus {
			border-color: #1ca1c1
		}

	.webix_slider_box .webix_slider_left {
		background: #1ca1c1;
		border: 1px solid #ccd7e6;
		height: 6px
	}

	.webix_slider_box .webix_slider_right {
		border-color: #ccd7e6;
		height: 6px
	}

	.webix_slider_box .webix_slider_handle {
		background-color: #fff;
		border: 1px solid #ccd7e6;
		height: 9pt;
		top: 9px;
		width: 9pt
	}

.webix_rangeslider .webix_slider_box .webix_slider_left {
	position: absolute
}

.webix_rangeslider .webix_slider_box .webix_slider_active {
	z-index: 1
}

.webix_rangeslider .webix_slider_box .webix_slider_right {
	border-radius: 5px
}

.webix_rangeslider .webix_slider_title_box {
	float: left;
	position: relative;
	width: 1px
}

.webix_rangeslider .webix_slider_title.webix_slider_move {
	position: absolute
}

.webix_rangeslider.webix_slider_vertical .webix_slider_box .webix_slider_right {
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	border-radius: 5px
}

.webix_rangeslider.webix_slider_vertical .webix_slider_title.webix_slider_move {
	display: block;
	position: relative
}

.webix_slider_alt .webix_slider_box .webix_slider_handle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAICAYAAAAx8TU7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTJCMjdFNENBRTg4MTFFMjk2NjJGMTJENjkyNDA2NTkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTJCMjdFNERBRTg4MTFFMjk2NjJGMTJENjkyNDA2NTkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5MkIyN0U0QUFFODgxMUUyOTY2MkYxMkQ2OTI0MDY1OSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5MkIyN0U0QkFFODgxMUUyOTY2MkYxMkQ2OTI0MDY1OSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Powz/icAAAAaSURBVHjaYmBgYDBjgAA4zcSABQysIECAAQBn+ACx2PqtbAAAAABJRU5ErkJggg==);
	background-position: 3px center;
	background-repeat: no-repeat;
	border-radius: 2px;
	height: 14px;
	margin: 0 2px;
	width: 11px
}

	.webix_slider_alt .webix_slider_box .webix_slider_handle:focus {
		border-color: #1ca1c1
	}

.webix_slider_alt .webix_slider_box .webix_slider_left {
	background: #1ca1c1;
	border: 1px solid #ccd7e6
}

.webix_slider_alt .webix_slider_box .webix_slider_right {
	border-color: #ccd7e6
}

.webix_slider_alt .webix_slider_box .webix_slider_handle {
	background-color: #fff;
	border: 1px solid #ccd7e6;
	top: 9px;
	width: 11px
}

.webix_slider_vertical .webix_slider_box .webix_slider_left, .webix_slider_vertical .webix_slider_box .webix_slider_right {
	float: none;
	width: 10px
}

.webix_slider_vertical .webix_slider_box .webix_slider_left {
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-topleft: 0;
	-moz-border-radius-topright: 0;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-top-left-radius: 0;
	-webkit-border-top-right-radius: 0;
	border-radius: 0 0 5px 5px
}

.webix_slider_vertical .webix_slider_box .webix_slider_right {
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-bottomright: 0;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	border-radius: 5px 5px 0 0
}

.webix_slider_vertical .webix_slider_title {
	padding-top: 1px;
	text-align: left
}

.webix_slider_vertical.webix_slider_alt .webix_slider_handle {
	background-position: 4px center;
	height: 11px;
	width: 14px
}

.webix_slider_title {
	text-align: center
}

	.webix_slider_title.webix_slider_move {
		display: inline-block;
		position: relative;
		text-align: left;
		white-space: nowrap;
		width: auto
	}

.webix_switch_toggle {
	position: absolute;
	visibility: hidden
}

.webix_switch_box {
	border: 1px solid #dadee0;
	border-radius: 60px;
	box-sizing: border-box;
	color: #666;
	cursor: pointer;
	display: block;
	float: left;
	height: 22px;
	margin-top: -11px;
	position: relative;
	text-align: center;
	top: 50%;
	transition: background-color .4s ease
}

.webix_el_switch .webix_label_right {
	display: inline-block;
	margin-top: 4px;
	padding-top: 3px
}

.webix_switch_handle {
	background-color: #fff;
	border: 1px solid #eee;
	border-radius: 100%;
	box-shadow: 0 1px 5px rgba(0,0,0,.3);
	box-sizing: border-box;
	cursor: pointer;
	height: 20px;
	position: absolute;
	top: 0;
	transition: left .3s ease;
	width: 20px
}

	.webix_switch_box:active .webix_switch_handle, .webix_switch_handle:focus {
		box-shadow: 0 0 2px 2px rgba(0,0,0,.2)
	}

.webix_switch_text {
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	box-sizing: border-box;
	display: inline-block;
	padding: 1px 0 0 18px;
	user-select: none;
	width: 100%
}

.webix_switch_on .webix_switch_text {
	padding: 1px 18px 0 0
}

.webix_switch_box.webix_switch_on {
	color: #fff
}

.webix_progress_bottom, .webix_progress_top {
	background: #f2f2f2;
	height: 6px;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 20
}

.webix_progress_bottom {
	bottom: 0;
	height: 17px;
	top: auto
}

	.webix_progress_bottom .webix_progress_state, .webix_progress_top .webix_progress_state {
		-moz-transition: width 3s;
		background: #f4f5f9;
		height: 6px;
		transition: width 3s;
		width: 0
	}

	.webix_progress_bottom .webix_progress_state {
		height: 17px
	}

.webix_progress_icon {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 20
}

	.webix_progress_icon .webix_progress_state {
		color: #93a0b3;
		display: inline-block;
		font-family: Webix Material Icons;
		font-size: 50px;
		left: 50%;
		margin-left: -25px;
		margin-top: -25px;
		position: absolute;
		top: 50%
	}

.webix_gage {
	height: 100%;
	transform: rotate(180deg);
	width: 100%
}

.webix_gage_label {
	font-size: .9em;
	margin-top: 10px;
	text-align: center
}

.webix_gage_placeholder {
	margin-top: -20px
}

.webix_gage_info {
	font-size: .7em;
	margin: 0 auto 10px;
	position: relative;
	text-align: center
}

.webix_gage_min_range {
	left: -74px
}

.webix_gage_max_range {
	right: -74px
}

.webix_gage_max_range, .webix_gage_min_range {
	display: inline-block;
	margin-top: 20px;
	position: absolute;
	text-align: center;
	width: 150px
}

.webix_gage_range_info {
	font-size: 1.2em;
	line-height: 1
}

.webix_gage-value {
	color: #404040;
	font-size: 2.2em
}

.webix_gage_gradient_point_animated {
	transition: transform 1.3s linear
}

.webix_gage_animated {
	animation: gage_dash 1.3s linear forwards;
	stroke: #0f0;
	transition: stroke 1.3s linear,stroke-dasharray 1.3s linear
}

.webix_gage_animated_first_load {
	animation: gage_dash 1.3s linear forwards;
	stroke: #0f0;
	transition: stroke 1.3s linear
}

@keyframes gage_dash {
	to {
		stroke-dashoffset: 0
	}
}

.webix_bullet_name {
	width: 100
}

.webix_bullet_header {
	font-size: 15px;
	font-weight: 700
}

.webix_bullet_subheader {
	font-size: 15px
}

.webix_bullet_scale {
	font-size: 9pt;
	font-weight: 700
}

.webix_organogram canvas {
	position: absolute
}

.webix_organogram_item {
	background-color: #e3f2fd;
	border: 1px solid #bbdefb;
	border-radius: 4px;
	box-sizing: border-box;
	padding: 7px 7px 10px;
	position: absolute;
	text-align: center;
	z-index: 1
}

	.webix_organogram_item.webix_selected {
		background-color: #f4f5f9;
		border-color: #f4f5f9
	}

.webix_organogram_list {
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
	height: auto;
	position: absolute;
	z-index: 1
}

	.webix_organogram_list .webix_organogram_list_item {
		border: 0;
		border-radius: 0;
		box-sizing: border-box;
		padding: 5px;
		position: static;
		text-align: left
	}

.webix_treemap {
	background-color: #f5f5f5
}

	.webix_treemap .webix_scroll_cont {
		height: 100%;
		position: relative;
		width: 100%
	}

.webix_treemap_item {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background: transparent;
	border-color: rgba(0,0,0,.2);
	border-style: solid;
	border-width: 0 1px 1px 0;
	box-sizing: border-box;
	color: #444;
	cursor: pointer;
	overflow: hidden;
	padding: 3px 5px;
	position: absolute;
	text-align: left
}

.webix_treemap_level_top {
	border-color: rgba(0,0,0,.4);
	z-index: 1
}

.webix_treemap_item_bottom {
	border-bottom-width: 0
}

.webix_treemap_item_right {
	border-right-width: 0
}

.webix_treemap_item.webix_selected {
	box-shadow: inset 0 0 1px 2px #f4f5f9
}

.webix_treemap_header {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-bottom: 1px solid #dadee0;
	box-sizing: border-box;
	padding: 0 10px;
	width: 100%
}

.webix_treemap_header_item {
	cursor: pointer
}

	.webix_treemap_header_item:last-child {
		cursor: default
	}

.webix_treemap_reset {
	float: right;
	text-align: center;
	width: 25px
}

	.webix_treemap_reset:before {
		color: #475466;
		content: "\F011";
		cursor: pointer;
		display: block;
		font-family: Webix Material Icons;
		font-size: 1pc
	}

.webix_treemap_path_icon {
	text-align: center;
	width: 20px
}

.webix_barcode {
	position: relative
}

	.webix_barcode .webix_canvas_text {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		font-size: 9pt;
		padding: 0 2px
	}

.portlet_drag {
	cursor: pointer;
	opacity: .5;
	position: absolute;
	right: 5px;
	top: 5px;
	width: 18px;
	z-index: 1
}

.portlet_in_drag {
	opacity: .4
}

.portlet_marker, .portlet_markerbottom, .portlet_markerleft, .portlet_markerright, .portlet_markertop {
	background: #9169be;
	height: 100%;
	left: 0;
	opacity: .5;
	position: absolute;
	top: 0;
	transition: top .5s,left .5s,width .5s,height .5s;
	width: 100%;
	z-index: 2
}

.portlet_markertop {
	height: 50%
}

.portlet_markerbottom {
	height: 50%;
	top: 50%
}

.portlet_markerleft {
	width: 50%
}

.portlet_markerright {
	left: 50%;
	width: 50%
}

.panel_icon {
	cursor: pointer;
	font-size: 13px;
	line-height: normal;
	opacity: .5;
	position: absolute;
	right: 5px;
	top: 5px;
	width: 18px;
	z-index: 100
}

.panel_target {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background: rgba(0,0,0,.04);
	border: 1px solid #dadee0;
	box-sizing: border-box;
	position: absolute;
	z-index: 3
}

.webix_popup.webix_sidemenu.webix_sidemenu_left {
	border-width: 0 1px 0 0
}

.webix_sidemenu_left.webix_animate {
	transition: left .6s
}

.webix_popup.webix_sidemenu.webix_sidemenu_right {
	border-width: 0 0 0 1px;
	left: auto
}

.webix_sidemenu_right.webix_animate {
	transition: right .6s
}

.webix_popup.webix_sidemenu.webix_sidemenu_top {
	border-width: 0 0 1px
}

.webix_sidemenu_top .webix_win_body {
	position: relative
}

	.webix_sidemenu_top .webix_win_body > .webix_view {
		bottom: 0;
		left: 0;
		position: absolute;
		top: auto
	}

.webix_sidemenu_top.webix_animate, .webix_sidemenu_top.webix_animate .webix_win_body {
	transition: height .6s
}

.webix_popup.webix_sidemenu.webix_sidemenu_bottom {
	border-width: 1px 0 0;
	top: auto
}

.webix_sidemenu_bottom.webix_animate, .webix_sidemenu_bottom.webix_animate .webix_win_body {
	transition: height .6s
}

.webix_sidebar {
	background: #eceff1
}

	.webix_sidebar .webix_tree_item.webix_selected:focus span {
		background: transparent
	}

	.webix_sidebar .webix_tree_item {
		height: 36px;
		line-height: 35px;
		position: relative !important;
	}

	.webix_sidebar .webix_scroll_cont > .webix_tree_leaves {
		padding: 0
	}

	.webix_sidebar .webix_tree_leaves .webix_tree_leaves {
		margin-left: 0
	}

.webix_sidebar_expanded .webix_tree_item:hover, .webix_sidebar_selected {
	background-color: rgba(0,0,0,.02)
}

.webix_sidebar .webix_tree_item.webix_selected, .webix_sidebar .webix_tree_item.webix_selected span {
	background-color: #f4f5f9;
	padding-right: 0
}

.webix_sidebar .webix_tree_branch_1 .webix_tree_item {
	padding-left: 44px
}

.webix_sidebar .webix_tree_branch_1 > .webix_tree_item {
	line-height: 36px
}

.webix_sidebar .webix_tree_branch_1 {
	border-bottom: 1px solid #e5e5e5
}

.webix_sidebar .webix_tree_item span, .webix_sidebar .webix_tree_item.webix_selected span {
	margin: 0;
	padding: 0
}

.webix_sidebar .webix_tree_item.webix_disabled {
	opacity: 0.4;
	pointer-events: none;
  }  

.webix_sidebar .webix_tree_item.webix_hidden {
	display: none;
}

.webix_sidebar .webix_tree_item .webix_badge {
    position: absolute !important;
    top: 6px !important;      /* Adjust as needed for vertical alignment */
    right: 12px !important;   /* Adjust as needed for horizontal alignment */
    background: #ff9800 !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    min-width: 18px !important;
    padding: 0 10px !important;
    display: inline-block !important;
    text-align: center !important;
    vertical-align: middle !important;
    z-index: 1 !important;
}

.webix_sidebar .webix_tree_item .webix_badge:only-child {
    width: 1.2em !important;
    padding: 0 !important;
    border-radius: 50% !important;
}

.webix_icon.webix_sidebar_icon {
	text-align: center;
	width: 44px
}

span.webix_sidebar_dir_icon {
	float: right;
	line-height: inherit
}

.webix_sidebar_popup {
	border: 0 !important;
	box-shadow: 2px 3px 3px #ddd
}

	.webix_sidebar_popup, .webix_sidebar_popup .webix_list_item {
		border-radius: 0
	}

.webix_sidebar_popup_list.webix_sidebar_popup_left .webix_icon {
	float: right;
	line-height: inherit;
	width: 8px
}

.webix_sidebar_popup_list.webix_sidebar_popup_right .webix_icon {
	float: left;
	line-height: inherit
}

.webix_sidebar_popup_title {
	background: #eceff1
}

	.webix_sidebar_popup_title.webix_selected {
		background: #f4f5f9;
		border-left-color: #f4f5f9
	}

	.webix_sidebar_popup_title .webix_template {
		border: 1px solid #e5e5e5;
		border-left: 0;
		line-height: 36px;
		padding: 0 10px
	}

.webix_sidebar_popup_right .webix_sidebar_popup_title .webix_template {
	border: 1px solid #e5e5e5;
	border-right: 0
}

.webix_sidebar_selected.webix_sidebar_popup_title .webix_template {
	background: rgba(0,0,0,.03);
	border-left: 0
}

.webix_sidebar_popup_list .webix_list_item {
	border-left: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5
}

	.webix_sidebar_popup_list .webix_list_item:first-child {
		border-top: 1px solid #e5e5e5
	}

	.webix_sidebar_popup_list .webix_list_item:hover {
		background: #f6f9fb
	}

	.webix_sidebar_popup_list .webix_list_item.webix_selected:hover {
		background: #f4f5f9
	}

.webix_menu .webix_list_item.webix_sidebar_selected {
	background: rgba(0,0,0,.02)
}

	.webix_menu .webix_list_item.webix_sidebar_selected:hover {
		background: rgba(0,0,0,.02) !important
	}

.webix_view.webix_pdf {
	-webkit-overflow-scrolling: touch;
	background-color: #404040;
	overflow: auto
}

.webix_pdf .canvas_wrapper {
	box-shadow: 5px 5px 15px #1c1c1c;
	height: 100%;
	margin: 0 auto;
	width: 100%
}

.webix_toolbar.pdf_bar .webix_img_btn {
	text-align: center
}

.webix_toolbar.pdf_bar .webix_view {
	background-color: transparent
}

.webix_toolbar.pdf_bar .webix_img_btn:focus, .webix_toolbar.pdf_bar .webix_img_btn:hover {
	background-color: #333
}

.webix_toolbar.pdf_bar .webix_icon_btn {
	margin: 0
}

.webix_toolbar.pdf_bar .webix_template {
	background-color: transparent;
	color: #fff;
	line-height: 2em
}

.webix_toolbar.pdf_bar .webix_el_box input, .webix_toolbar.pdf_bar .webix_inp_static {
	background-color: #5c5c5c;
	border-color: #404040;
	color: #fff
}

	.webix_toolbar.pdf_bar .webix_el_box input:focus, .webix_toolbar.pdf_bar .webix_inp_static:focus {
		border-color: #333
	}

.webix_toolbar.pdf_bar .webix_el_box .webix_input_icon {
	color: #fff
}

.webix_view.webix_popup.pdf_opt_list {
	border: 0
}

.pdf_opt_list .webix_list {
	background-color: #404040;
	color: #fff
}

	.pdf_opt_list .webix_list .webix_list_item {
		border-color: #474747;
		line-height: 1.5em
	}

		.pdf_opt_list .webix_list .webix_list_item.webix_selected, .pdf_opt_list .webix_list .webix_list_item:hover {
			background-color: #fff;
			color: #404040
		}

.webix_dbllist .webix_list {
	background: #ededed
}

.webix_dbllist .webix_list_item {
	background: #fff;
	box-sizing: border-box;
	margin: 3px 4px 0
}

	.webix_dbllist .webix_list_item.webix_selected {
		background: #27ae60
	}

.webix_dbllist button {
	background: #fff;
	border: 1px solid #dadee0;
	border-radius: 2px;
	cursor: pointer;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	height: 30px;
	margin-top: 4px;
	padding: 0;
	width: 45%
}

	.webix_dbllist button:active {
		box-shadow: inset 1px 1px 0 silver
	}

	.webix_dbllist button .webix_icon {
		color: #888;
		font-size: 20px
	}

	.webix_dbllist button:first-child {
		margin-right: 4px;
		margin-top: 28px
	}

	.webix_dbllist button:last-child {
		margin-left: 4px
	}

.webix_dbllist .bottom_label {
	background: #ededed;
	padding-left: 13px;
	text-transform: uppercase
}

.webix_invalid .webix_list {
	background: #f8e2e2
}

.dbllist_buttons .webix_template {
	padding: 0 0 0 4px
}

.webix_sparklines {
	box-sizing: border-box;
	padding: 1px 0
}

	.webix_sparklines svg {
		box-sizing: border-box
	}

.webix_sparklines_line {
	fill: transparent;
	stroke: #3498db;
	stroke-linecap: round;
	stroke-width: 1
}

.webix_sparklines_item {
	fill: #3498db;
	stroke-width: 1
}

.webix_sparklines_bar {
	fill: #6dbcf0
}

.webix_sparklines_bar_negative {
	fill: #d86c79
}

.webix_sparklines_area {
	fill: #e5eef4
}

.webix_sparklines_origin {
	stroke: #888;
	stroke-width: 1
}

.webix_sparklines_event_area {
	fill: transparent
}

.webix_sparklines_area_chart .webix_sparklines_event_area:hover, .webix_sparklines_line_chart .webix_sparklines_event_area:hover, .webix_sparklines_splinearea_chart .webix_sparklines_event_area:hover {
	fill: hsla(0,0%,86%,.4);
	stroke: hsla(0,0%,100%,.6)
}

.webix_sparklines_bar_chart .webix_sparklines_event_area:hover, .webix_sparklines_pie_chart .webix_sparklines_event_area:hover {
	fill: hsla(0,0%,100%,.3)
}

.webix_ui_print {
	display: none
}

body.webix_print {
	margin-top: 0
}

@media print {
	body.webix_print {
		background-color: none !important;
		overflow: visible !important
	}

		body.webix_print > * {
			display: none
		}

		body.webix_print * {
			visibility: hidden
		}

	.webix_ui_print {
		display: block !important;
		margin: 0 !important;
		visibility: visible !important
	}

		.webix_ui_print * {
			visibility: visible !important
		}

	.webix_print_noscroll {
		height: auto !important;
		width: auto !important
	}

		.webix_print_noscroll, .webix_print_noscroll .webix_scroll_cont {
			overflow: visible !important
		}

	.webix_print_pagebreak {
		page-break-after: always
	}

	.webix_print_footer, .webix_print_header {
		display: block !important;
		height: auto !important;
		margin: 20px 0;
		text-align: center;
		visibility: visible !important
	}

		.webix_print_footer *, .webix_print_header * {
			visibility: visible !important
		}

	.webix_table_print {
		border: 1px solid #ebebeb;
		display: table;
		margin-bottom: 20px;
		position: initial;
		table-layout: fixed;
		visibility: visible !important;
		width: 100%
	}

		.webix_table_print td {
			overflow: hidden
		}

		.webix_table_print tr {
			page-break-inside: avoid
		}

		.webix_table_print .webix_cell {
			border-bottom: 1px solid #ebebeb;
			border-right: 1px solid #ebebeb;
			display: table-cell !important;
			padding: 0 10px;
			white-space: nowrap
		}

		.webix_table_print .webix_header_cell {
			background: #f4f5f9;
			border-bottom: 1px solid #dadee0;
			border-right: 1px solid #dadee0;
			color: #313131;
			display: table-cell;
			font-family: Roboto,sans-serif;
			font-size: 9pt;
			font-weight: 500;
			letter-spacing: 0
		}

		.webix_table_print .webix_footer_cell {
			background: #fafafa;
			border-bottom: 1px solid #edeff0;
			border-right: 1px solid #edeff0;
			border-top: 1px solid #edeff0;
			display: table-cell
		}

		.webix_table_print .webix_cell.webix_dtable_span {
			position: initial !important;
			white-space: normal
		}

		.webix_table_print .webix_rotate {
			-webkit-transform-origin: center 40% !important;
			transform-origin: center 40% !important
		}

		.webix_table_print.borderless, .webix_table_print.borderless .webix_cell {
			border: 0
		}

		.webix_table_print.webix_view.webix_list-x {
			white-space: normal
		}

			.webix_table_print.webix_view.webix_list-x .webix_list_item {
				display: table-cell
			}
}

.webix_fullscreen_html .webix_template > * {
	height: 100% !important;
	margin: 0 !important;
	width: 100% !important
}

.webix_icon, .webix_icon_btn, .webix_input_icon {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-family: Webix Material Icons;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	transform: translate(0,0)
}

.webix_icon, .webix_input_icon {
	display: inline-block;
	font-size: 17px;
	width: 20px
}

.webix_input_icon {
	color: #888;
	float: right;
	font-size: 19px
}

.webix_icon_button {
	background-color: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
	vertical-align: middle
}

.webix_el_icon .webix_el_box {
	cursor: pointer;
	margin: 0 auto;
	overflow: visible;
	padding: 0;
	position: relative;
	text-align: center
}

.webix_icon_button .webix_icon {
	color: #94a1b3;
	display: inline-block;
	font-size: 20px;
	height: 20px;
	text-align: center;
	width: 20px
}

.webix_icon_btn {
	color: #94a1b3;
	display: inline-block;
	font-size: 17px;
	margin-right: 4px;
	text-align: center;
	width: 20px
}

.webix_badge {
	background-color: #ff8839;
	border-radius: 11px;
	box-sizing: border-box;
	color: #fff;
	font-size: 9pt;
	height: 22px;
	line-height: 22px;
	min-width: 22px;
	padding: 0 4px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0
}

.webix_list_item .webix_badge {
	float: right;
	margin: 4px -5px 0 9pt;
	position: static
}

@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/Roboto-Regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/Roboto-Regular-webfont.woff2) format("woff2"),url(../fonts/Roboto-Regular-webfont.woff) format("woff"),url(../fonts/Roboto-Regular-webfont.ttf) format("truetype")
}

@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/Roboto-Medium-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/Roboto-Medium-webfont.woff2) format("woff2"),url(../fonts/Roboto-Medium-webfont.woff) format("woff"),url(../fonts/Roboto-Medium-webfont.ttf) format("truetype")
}

.mainFont {
	color: #475466;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 400;
	letter-spacing: .2px
}

.buttonFont {
	color: #1ca1c1;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0
}

.barFont {
	color: #475466;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0
}

.selectFocusRule {
	background: #edeff5
}

.layoutBarBG .webix_el_label .webix_el_box {
	color: #475466;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0
}

.layoutBarBG.webix_dark {
	background: #657584;
	border-color: #657584
}

	.layoutBarBG.webix_dark .webix_el_button, .layoutBarBG.webix_dark .webix_el_label .webix_el_box, .layoutBarBG.webix_dark .webix_inp_label, .layoutBarBG.webix_dark .webix_secondary .webix_icon, .layoutBarBG.webix_dark .webix_secondary .webix_icon_btn, .layoutBarBG.webix_dark .webix_secondary .webix_img_btn_text, .layoutBarBG.webix_dark .webix_transparent .webix_icon, .layoutBarBG.webix_dark .webix_transparent .webix_icon_btn, .layoutBarBG.webix_dark .webix_transparent .webix_img_btn_text, .layoutBarBG.webix_dark .webix_transparent button {
		color: #fff
	}

		.layoutBarBG.webix_dark .webix_transparent button:focus, .layoutBarBG.webix_dark .webix_transparent button:hover {
			background-color: rgba(0,0,0,.2)
		}

		.layoutBarBG.webix_dark .webix_transparent button:active {
			background-color: rgba(0,0,0,.4)
		}

	.layoutBarBG.webix_dark .webix_inp_counter_next, .layoutBarBG.webix_dark .webix_inp_counter_prev, .layoutBarBG.webix_dark .webix_menu-x .webix_list_item, .layoutBarBG.webix_dark .webix_secondary button, .layoutBarBG.webix_dark .webix_segment_0, .layoutBarBG.webix_dark .webix_segment_1, .layoutBarBG.webix_dark .webix_segment_N {
		background-color: rgba(0,0,0,.2);
		border-color: transparent;
		color: #fff
	}

	.layoutBarBG.webix_dark .webix_view > .webix_template {
		background-color: #657584;
		color: #fff
	}

	.layoutBarBG.webix_dark .webix_inp_counter_next:focus, .layoutBarBG.webix_dark .webix_inp_counter_next:hover, .layoutBarBG.webix_dark .webix_inp_counter_prev:focus, .layoutBarBG.webix_dark .webix_inp_counter_prev:hover, .layoutBarBG.webix_dark .webix_menu-x .webix_list_item:focus, .layoutBarBG.webix_dark .webix_menu-x .webix_list_item:hover, .layoutBarBG.webix_dark .webix_secondary button:focus, .layoutBarBG.webix_dark .webix_secondary button:hover, .layoutBarBG.webix_dark .webix_segment_0:focus, .layoutBarBG.webix_dark .webix_segment_0:hover, .layoutBarBG.webix_dark .webix_segment_1:focus, .layoutBarBG.webix_dark .webix_segment_1:hover, .layoutBarBG.webix_dark .webix_segment_N:focus, .layoutBarBG.webix_dark .webix_segment_N:hover {
		background-color: rgba(0,0,0,.4);
		color: #fff
	}

	.layoutBarBG.webix_dark .webix_inp_counter_next:active, .layoutBarBG.webix_dark .webix_inp_counter_prev:active, .layoutBarBG.webix_dark .webix_menu-x .webix_list_item:active, .layoutBarBG.webix_dark .webix_secondary button:active, .layoutBarBG.webix_dark .webix_segment_0:active, .layoutBarBG.webix_dark .webix_segment_1:active, .layoutBarBG.webix_dark .webix_segment_N:active {
		background-color: rgba(0,0,0,.5);
		color: #fff
	}

	.layoutBarBG.webix_dark .webix_inp_static, .layoutBarBG.webix_dark input[type=combo], .layoutBarBG.webix_dark input[type=text] {
		background-color: rgba(0,0,0,.2);
		border-color: transparent;
		color: hsla(0,0%,100%,.7)
	}

		.layoutBarBG.webix_dark .webix_inp_static:focus, .layoutBarBG.webix_dark input[type=combo]:focus, .layoutBarBG.webix_dark input[type=text]:focus {
			border-color: #fff;
			box-shadow: none
		}

	.layoutBarBG.webix_dark .webix_el_counter button {
		background-color: rgba(0,0,0,.3)
	}

	.layoutBarBG.webix_dark .webix_el_counter input[type=text]:focus {
		border-color: transparent
	}

	.layoutBarBG.webix_dark .webix_placeholder, .layoutBarBG.webix_dark :-moz-placeholder, .layoutBarBG.webix_dark :-ms-input-placeholder, .layoutBarBG.webix_dark ::-moz-placeholder, .layoutBarBG.webix_dark ::-webkit-input-placeholder {
		color: hsla(0,0%,100%,.4)
	}

	.layoutBarBG.webix_dark .webix_input_icon {
		color: hsla(0,0%,100%,.7)
	}

	.layoutBarBG.webix_dark .webix_selected.webix_segment_0, .layoutBarBG.webix_dark .webix_selected.webix_segment_1, .layoutBarBG.webix_dark .webix_selected.webix_segment_N {
		background: #1ca1c1;
		color: #fff
	}

		.layoutBarBG.webix_dark .webix_selected.webix_segment_0:focus, .layoutBarBG.webix_dark .webix_selected.webix_segment_0:hover, .layoutBarBG.webix_dark .webix_selected.webix_segment_1:focus, .layoutBarBG.webix_dark .webix_selected.webix_segment_1:hover, .layoutBarBG.webix_dark .webix_selected.webix_segment_N:focus, .layoutBarBG.webix_dark .webix_selected.webix_segment_N:hover {
			background-color: #1992af
		}

		.layoutBarBG.webix_dark .webix_selected.webix_segment_0:active, .layoutBarBG.webix_dark .webix_selected.webix_segment_1:active, .layoutBarBG.webix_dark .webix_selected.webix_segment_N:active {
			background-color: #17839d
		}

	.layoutBarBG.webix_dark .webix_el_icon, .layoutBarBG.webix_dark .webix_icon_btn, .layoutBarBG.webix_dark .webix_icon_button, .layoutBarBG.webix_dark .webix_img_btn, .layoutBarBG.webix_dark .webix_img_btn_top .webix_icon, .layoutBarBG.webix_dark .webix_img_btn_top .webix_img_btn_text {
		color: #fff
	}

	.layoutBarBG.webix_dark .webix_control {
		border-color: #1ca1c1
	}

	.layoutBarBG.webix_dark .webix_icon_button:hover:before {
		background-color: rgba(0,0,0,.2)
	}

	.layoutBarBG.webix_dark .webix_icon_button:hover .webix_icon {
		opacity: 1
	}

	.layoutBarBG.webix_dark .webix_icon_button .webix_icon {
		color: #fff;
		opacity: .7
	}

	.layoutBarBG.webix_dark .webix_img_btn, .layoutBarBG.webix_dark .webix_img_btn_top {
		border-width: 0
	}

	.layoutBarBG.webix_dark .webix_custom_checkbox, .layoutBarBG.webix_dark .webix_custom_radio {
		color: #fff
	}

		.layoutBarBG.webix_dark .webix_custom_checkbox:focus, .layoutBarBG.webix_dark .webix_custom_radio:focus {
			color: #f0f0f0
		}

	.layoutBarBG.webix_dark .webix_label_right {
		color: #fff
	}

	.layoutBarBG.webix_dark .webix_view.webix_control .webix_disabled_box button {
		background: rgba(0,0,0,.1);
		color: hsla(0,0%,100%,.4);
		text-shadow: none
	}

	.layoutBarBG.webix_dark .webix_disabled_view.webix_control .webix_icon, .layoutBarBG.webix_dark .webix_disabled_view.webix_control .webix_icon_btn, .layoutBarBG.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_disabled_box .webix_img_btn_text, .layoutBarBG.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon, .layoutBarBG.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon_btn, .layoutBarBG.webix_dark .webix_view.webix_control .webix_disabled_box .webix_img_btn_text, .layoutBarBG.webix_dark .webix_view.webix_control .webix_disabled_box .webix_input_icon, .layoutBarBG.webix_dark .webix_view.webix_control .webix_disabled_box button, .layoutBarBG.webix_dark .webix_view.webix_control .webix_disabled_box label {
		color: hsla(0,0%,100%,.4)
	}

	.layoutBarBG.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_static, .layoutBarBG.webix_dark .webix_view.webix_control .webix_disabled_box input, .layoutBarBG.webix_dark .webix_view.webix_control .webix_disabled_box select, .layoutBarBG.webix_dark .webix_view.webix_control .webix_disabled_box textarea {
		background: rgba(0,0,0,.1);
		color: hsla(0,0%,100%,.4)
	}

	.layoutBarBG.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_counter_next, .layoutBarBG.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_counter_prev, .layoutBarBG.webix_dark .webix_view.webix_control .webix_disabled_box .webix_item_tab, .layoutBarBG.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_0, .layoutBarBG.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_1, .layoutBarBG.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_N {
		background: rgba(0,0,0,.1);
		color: hsla(0,0%,100%,.4);
		text-shadow: none
	}

	.layoutBarBG.webix_dark .webix_disabled_top_label {
		color: hsla(0,0%,100%,.4)
	}

.webix_toolbar .webix_el_label .webix_el_box {
	color: #475466;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0
}

.webix_toolbar.webix_dark {
	background: #657584;
	border-color: #657584
}

	.webix_toolbar.webix_dark .webix_el_button, .webix_toolbar.webix_dark .webix_el_label .webix_el_box, .webix_toolbar.webix_dark .webix_inp_label, .webix_toolbar.webix_dark .webix_secondary .webix_icon, .webix_toolbar.webix_dark .webix_secondary .webix_icon_btn, .webix_toolbar.webix_dark .webix_secondary .webix_img_btn_text, .webix_toolbar.webix_dark .webix_transparent .webix_icon, .webix_toolbar.webix_dark .webix_transparent .webix_icon_btn, .webix_toolbar.webix_dark .webix_transparent .webix_img_btn_text, .webix_toolbar.webix_dark .webix_transparent button {
		color: #fff
	}

		.webix_toolbar.webix_dark .webix_transparent button:focus, .webix_toolbar.webix_dark .webix_transparent button:hover {
			background-color: rgba(0,0,0,.2)
		}

		.webix_toolbar.webix_dark .webix_transparent button:active {
			background-color: rgba(0,0,0,.4)
		}

	.webix_toolbar.webix_dark .webix_inp_counter_next, .webix_toolbar.webix_dark .webix_inp_counter_prev, .webix_toolbar.webix_dark .webix_menu-x .webix_list_item, .webix_toolbar.webix_dark .webix_secondary button, .webix_toolbar.webix_dark .webix_segment_0, .webix_toolbar.webix_dark .webix_segment_1, .webix_toolbar.webix_dark .webix_segment_N {
		background-color: rgba(0,0,0,.2);
		border-color: transparent;
		color: #fff
	}

	.webix_toolbar.webix_dark .webix_view > .webix_template {
		background-color: #657584;
		color: #fff
	}

	.webix_toolbar.webix_dark .webix_inp_counter_next:focus, .webix_toolbar.webix_dark .webix_inp_counter_next:hover, .webix_toolbar.webix_dark .webix_inp_counter_prev:focus, .webix_toolbar.webix_dark .webix_inp_counter_prev:hover, .webix_toolbar.webix_dark .webix_menu-x .webix_list_item:focus, .webix_toolbar.webix_dark .webix_menu-x .webix_list_item:hover, .webix_toolbar.webix_dark .webix_secondary button:focus, .webix_toolbar.webix_dark .webix_secondary button:hover, .webix_toolbar.webix_dark .webix_segment_0:focus, .webix_toolbar.webix_dark .webix_segment_0:hover, .webix_toolbar.webix_dark .webix_segment_1:focus, .webix_toolbar.webix_dark .webix_segment_1:hover, .webix_toolbar.webix_dark .webix_segment_N:focus, .webix_toolbar.webix_dark .webix_segment_N:hover {
		background-color: rgba(0,0,0,.4);
		color: #fff
	}

	.webix_toolbar.webix_dark .webix_inp_counter_next:active, .webix_toolbar.webix_dark .webix_inp_counter_prev:active, .webix_toolbar.webix_dark .webix_menu-x .webix_list_item:active, .webix_toolbar.webix_dark .webix_secondary button:active, .webix_toolbar.webix_dark .webix_segment_0:active, .webix_toolbar.webix_dark .webix_segment_1:active, .webix_toolbar.webix_dark .webix_segment_N:active {
		background-color: rgba(0,0,0,.5);
		color: #fff
	}

	.webix_toolbar.webix_dark .webix_inp_static, .webix_toolbar.webix_dark input[type=combo], .webix_toolbar.webix_dark input[type=text] {
		background-color: rgba(0,0,0,.2);
		border-color: transparent;
		color: hsla(0,0%,100%,.7)
	}

		.webix_toolbar.webix_dark .webix_inp_static:focus, .webix_toolbar.webix_dark input[type=combo]:focus, .webix_toolbar.webix_dark input[type=text]:focus {
			border-color: #fff;
			box-shadow: none
		}

	.webix_toolbar.webix_dark .webix_el_counter button {
		background-color: rgba(0,0,0,.3)
	}

	.webix_toolbar.webix_dark .webix_el_counter input[type=text]:focus {
		border-color: transparent
	}

	.webix_toolbar.webix_dark .webix_placeholder, .webix_toolbar.webix_dark :-moz-placeholder, .webix_toolbar.webix_dark :-ms-input-placeholder, .webix_toolbar.webix_dark ::-moz-placeholder, .webix_toolbar.webix_dark ::-webkit-input-placeholder {
		color: hsla(0,0%,100%,.4)
	}

	.webix_toolbar.webix_dark .webix_input_icon {
		color: hsla(0,0%,100%,.7)
	}

	.webix_toolbar.webix_dark .webix_selected.webix_segment_0, .webix_toolbar.webix_dark .webix_selected.webix_segment_1, .webix_toolbar.webix_dark .webix_selected.webix_segment_N {
		background: #1ca1c1;
		color: #fff
	}

		.webix_toolbar.webix_dark .webix_selected.webix_segment_0:focus, .webix_toolbar.webix_dark .webix_selected.webix_segment_0:hover, .webix_toolbar.webix_dark .webix_selected.webix_segment_1:focus, .webix_toolbar.webix_dark .webix_selected.webix_segment_1:hover, .webix_toolbar.webix_dark .webix_selected.webix_segment_N:focus, .webix_toolbar.webix_dark .webix_selected.webix_segment_N:hover {
			background-color: #1992af
		}

		.webix_toolbar.webix_dark .webix_selected.webix_segment_0:active, .webix_toolbar.webix_dark .webix_selected.webix_segment_1:active, .webix_toolbar.webix_dark .webix_selected.webix_segment_N:active {
			background-color: #17839d
		}

	.webix_toolbar.webix_dark .webix_el_icon, .webix_toolbar.webix_dark .webix_icon_btn, .webix_toolbar.webix_dark .webix_icon_button, .webix_toolbar.webix_dark .webix_img_btn, .webix_toolbar.webix_dark .webix_img_btn_top .webix_icon, .webix_toolbar.webix_dark .webix_img_btn_top .webix_img_btn_text {
		color: #fff
	}

	.webix_toolbar.webix_dark .webix_control {
		border-color: #1ca1c1
	}

	.webix_toolbar.webix_dark .webix_icon_button:hover:before {
		background-color: rgba(0,0,0,.2)
	}

	.webix_toolbar.webix_dark .webix_icon_button:hover .webix_icon {
		opacity: 1
	}

	.webix_toolbar.webix_dark .webix_icon_button .webix_icon {
		color: #fff;
		opacity: .7
	}

	.webix_toolbar.webix_dark .webix_img_btn, .webix_toolbar.webix_dark .webix_img_btn_top {
		border-width: 0
	}

	.webix_toolbar.webix_dark .webix_custom_checkbox, .webix_toolbar.webix_dark .webix_custom_radio {
		color: #fff
	}

		.webix_toolbar.webix_dark .webix_custom_checkbox:focus, .webix_toolbar.webix_dark .webix_custom_radio:focus {
			color: #f0f0f0
		}

	.webix_toolbar.webix_dark .webix_label_right {
		color: #fff
	}

	.webix_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box button {
		background: rgba(0,0,0,.1);
		color: hsla(0,0%,100%,.4);
		text-shadow: none
	}

	.webix_toolbar.webix_dark .webix_disabled_view.webix_control .webix_icon, .webix_toolbar.webix_dark .webix_disabled_view.webix_control .webix_icon_btn, .webix_toolbar.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_disabled_box .webix_img_btn_text, .webix_toolbar.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon, .webix_toolbar.webix_dark .webix_layout_toolbar.webix_toolbar .webix_disabled_view.webix_control .webix_icon_btn, .webix_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_img_btn_text, .webix_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_input_icon, .webix_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box button, .webix_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box label {
		color: hsla(0,0%,100%,.4)
	}

	.webix_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_static, .webix_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box input, .webix_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box select, .webix_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box textarea {
		background: rgba(0,0,0,.1);
		color: hsla(0,0%,100%,.4)
	}

	.webix_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_counter_next, .webix_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_inp_counter_prev, .webix_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_item_tab, .webix_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_0, .webix_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_1, .webix_toolbar.webix_dark .webix_view.webix_control .webix_disabled_box .webix_segment_N {
		background: rgba(0,0,0,.1);
		color: hsla(0,0%,100%,.4);
		text-shadow: none
	}

	.webix_toolbar.webix_dark .webix_disabled_top_label {
		color: hsla(0,0%,100%,.4)
	}

.webix_layout_space > .webix_toolbar {
	border-radius: 2px
}

.webix_view.webix_layout_accordion {
	background-color: #ebedf0
}

.webix_accordionitem .webix_accordionitem_button {
	float: right;
	height: 19px;
	margin: 9.5px 9px;
	position: relative;
	width: 19px
}

.webix_accordionitem .webix_accordionitem_header {
	line-height: 36px
}

	.webix_accordionitem .webix_accordionitem_header:focus, .webix_accordionitem .webix_accordionitem_header:hover {
		background-color: #fafafa
	}

.webix_accordionitem.collapsed .webix_accordionitem_button {
	float: right;
	margin-top: 8.5px;
	position: relative
}

.webix_accordionitem.collapsed, .webix_accordionitem.horizontal.collapsed {
	background-color: #f4f5f9
}

	.webix_accordionitem.collapsed .webix_accordionitem_header, .webix_accordionitem.horizontal.collapsed .webix_accordionitem_header {
		background-color: #f4f5f9;
		color: #1ca1c1
	}

		.webix_accordionitem.collapsed .webix_accordionitem_header .webix_accordionitem_button, .webix_accordionitem.collapsed .webix_accordionitem_header .webix_accordionitem_label .webix_icon, .webix_accordionitem.horizontal.collapsed .webix_accordionitem_header .webix_accordionitem_button, .webix_accordionitem.horizontal.collapsed .webix_accordionitem_header .webix_accordionitem_label .webix_icon {
			color: #1ca1c1
		}

		.webix_accordionitem.collapsed .webix_accordionitem_header:focus, .webix_accordionitem.collapsed .webix_accordionitem_header:hover, .webix_accordionitem.horizontal.collapsed .webix_accordionitem_header:focus, .webix_accordionitem.horizontal.collapsed .webix_accordionitem_header:hover {
			background-color: #edeff5
		}

.webix_accordionitem_label {
	padding-left: 9pt
}

.webix_layout_accordion.webix_dark .webix_accordionitem_header {
	background-color: #657584;
	color: #fff
}

	.webix_layout_accordion.webix_dark .webix_accordionitem_header .webix_accordionitem_button {
		color: #fff
	}

	.webix_layout_accordion.webix_dark .webix_accordionitem_header.collapsed {
		background-color: #f4f5f9;
		color: #1ca1c1
	}

		.webix_layout_accordion.webix_dark .webix_accordionitem_header.collapsed .webix_accordionitem_button {
			color: #1ca1c1
		}

	.webix_layout_accordion.webix_dark .webix_accordionitem_header:focus, .webix_layout_accordion.webix_dark .webix_accordionitem_header:hover {
		background-color: #61707e
	}

.webix_layout_accordion.webix_dark .webix_accordionitem.collapsed .webix_accordionitem_header:focus, .webix_layout_accordion.webix_dark .webix_accordionitem.collapsed .webix_accordionitem_header:hover, .webix_layout_accordion.webix_dark .webix_accordionitem.horizontal.collapsed .webix_accordionitem_header:focus, .webix_layout_accordion.webix_dark .webix_accordionitem.horizontal.collapsed .webix_accordionitem_header:hover {
	background-color: #edeff5
}

.webix_accordionitem .webix_accordionitem_header .webix_accordionitem_button {
	background-image: none;
	color: #94a1b3;
	font-family: Webix Material Icons;
	font-size: 24px;
	height: 35px;
	margin: 0 6px;
	text-align: center;
	width: 24px
}

.webix_accordionitem .webix_accordionitem_header .webix_accordionitem_label .webix_icon {
	color: #94a1b3
}

.webix_accordionitem .webix_accordionitem_header .webix_accordionitem_button:before {
	content: "\F002"
}

.webix_accordionitem .webix_accordionitem_header.collapsed .webix_accordionitem_button:before {
	content: "\F004"
}

.webix_accordionitem.horizontal:last-child > .webix_accordionitem_header .webix_accordionitem_button:before {
	content: "\F003"
}

.webix_accordionitem.horizontal.collapsed:last-child > .webix_accordionitem_header .webix_accordionitem_button:before {
	content: "\F001"
}

.webix_accordionitem.vertical > .webix_accordionitem_header .webix_accordionitem_button {
	height: 35px;
	margin: 0 6px
}

	.webix_accordionitem.vertical > .webix_accordionitem_header .webix_accordionitem_button:before {
		content: "\F004"
	}

.webix_accordionitem.vertical > .webix_accordionitem_header.collapsed .webix_accordionitem_button:before {
	content: "\F001"
}

.webix_toolbar.webix_layout_subbar {
	background: transparent
}

	.webix_toolbar.webix_layout_subbar .webix_view {
		color: #475466
	}

.webix_el_tabbar + .webix_multiview {
	background-color: #fff
}

.webix_view.rounded_top {
	-moz-border-top-left-radius: 2px;
	-moz-border-top-right-radius: 2px;
	-webkit-border-top-left-radius: 2px;
	-webkit-border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px
}

.webix_view.rounded_right {
	-moz-border-bottom-right-radius: 2px;
	-moz-border-top-right-radius: 2px;
	-webkit-border-bottom-right-radius: 2px;
	-webkit-border-top-right-radius: 2px
}

.webix_view.rounded_bottom {
	-moz-border-bottom-left-radius: 2px;
	-moz-border-bottom-right-radius: 2px;
	-webkit-border-bottom-left-radius: 2px;
	-webkit-border-bottom-right-radius: 2px;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px
}

.webix_view.rounded_left {
	-moz-border-bottom-left-radius: 2px;
	-moz-border-top-left-radius: 2px;
	-webkit-border-bottom-left-radius: 2px;
	-webkit-border-top-left-radius: 2px
}

.webix_layout_space .webix_layout_accordion .webix_accordionitem, .webix_layout_space > .webix_view, .webix_layout_wide .webix_layout_accordion .webix_accordionitem, .webix_layout_wide > .webix_view {
	border-radius: 2px
}

.webix_popup_button {
	border-color: #f4f5f9
}

	.webix_popup_button.confirm {
		border-color: #1ca1c1
	}

	.webix_popup_button div {
		border-radius: 0
	}

.dataHeaderFont {
	color: #313131;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 500;
	letter-spacing: 0
}

.webix_dtable .webix_ss_footer td, .webix_dtable .webix_ss_header td {
	border-color: transparent
}

.webix_dtable .webix_ss_body .webix_column > div, .webix_dtable .webix_ss_body .webix_table_cell {
	border-left-color: transparent;
	border-right-color: transparent
}

.webix_dtable.webix_header_border .webix_ss_header td {
	border-bottom-color: #dadee0;
	border-right-color: #dadee0
}

.webix_dtable.webix_footer_border .webix_ss_footer td {
	border-right-color: #dadee0;
	border-top-color: #dadee0
}

.webix_dtable.webix_data_border .webix_column > div, .webix_dtable.webix_data_border .webix_table_cell {
	border-right-color: #edeff0
}

.webix_dtable .webix_ss_left .webix_column.webix_last > div {
	border-right: 1px solid #ccd2d4
}

.webix_dtable div.webix_last_topcell {
	border-bottom: 1px solid #ccd2d4
}

.webix_dtable .webix_ss_right .webix_column.webix_first > div {
	border-left: 1px solid #ccd2d4
}

.webix_dtable .webix_hs_right td.webix_first {
	border-left: 1px solid #dadee0
}

.webix_dtable .webix_hs_left td.webix_last {
	border-right: 1px solid #dadee0
}

.webix_dtable .webix_hcell.webix_ss_filter {
	padding: 0 4px
}

.webix_dtable .webix_hcell.webix_div_filter {
	padding: 1px 4px
}

.webix_dtable .webix_dtable_subview {
	background: #fff
}

	.webix_dtable .webix_dtable_subview .webix_view {
		border-color: #edeff0;
		border-left-width: 1px;
		border-right-width: 1px
	}

.webix_dtable .webix_ss_filter input, .webix_dtable .webix_ss_filter select {
	border-color: #ccd7e6;
	border-radius: 2px;
	height: 24px;
	vertical-align: middle
}

	.webix_dtable .webix_ss_filter input:focus, .webix_dtable .webix_ss_filter select:focus {
		border-color: #1ca1c1
	}

.webix_dtable .webix_select_mark > div.webix_row_select {
	box-shadow: inset 2px 0 #1ca1c1
}

.webix_dtable .webix_ss_header td.webix_last_row {
	border-bottom: 1px solid #5ccce7
}

.webix_dtable .webix_ss_footer tr:nth-child(2) td {
	border-top: 1px solid #5ccce7
}

.webix_dtable .webix_ss_footer td, .webix_dtable .webix_ss_vscroll_footer {
	background: #f4f5f9;
	color: #313131;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 500;
	letter-spacing: 0
}

.webix_dtable .webix_column > .webix_drag_over.webix_cell {
	background-color: #f4f5f9
}

.webix_block_selection {
	background: #1ca1c1;
	border: 0;
	opacity: .1
}

.webix_area_selection, .webix_area_selection_handle {
	background: #1ca1c1
}

.webix_dtable_focused .webix_area_selection, .webix_dtable_focused .webix_area_selection_handle {
	background-color: #1992af
}

.webix_ss_sort_asc, .webix_ss_sort_desc {
	bottom: auto;
	float: none;
	font-family: Webix Material Icons;
	font-size: 20px;
	line-height: 1px;
	right: 2px;
	top: 50%;
	width: 20px
}

	.webix_ss_sort_asc:before {
		content: "\F004"
	}

	.webix_ss_sort_desc:before {
		content: "\F001"
	}

.dtBodyCell {
	border-bottom: 1px solid #edeff0
}

.webix_dtable div.webix_ss_vscroll_header {
	border-bottom-color: #5ccce7
}

.webix_dtable div.webix_ss_vscroll_footer {
	border-left-color: #dadee0;
	border-top-color: #5ccce7
}

.webix_view .webix_dt_editor input, .webix_view .webix_dt_editor select {
	border-color: #1ca1c1;
	border-radius: 2px
}

.dataItemStyle {
	border-color: #edeff0
}

.webix_list_item.webix_group_back {
	background: #f4f5f9;
	border-bottom: 1px solid #dadee0;
	color: #313131
}

.webix_dataview_item {
	border-right-color: #edeff0
}

	.webix_dataview_item.webix_selected {
		box-shadow: none
	}

.webix_dataview .webix_dataview_item.tiles.webix_selected .webix_dataview_inner_item {
	border-color: #5ccce7
}

.webix_view .webix_pager_item {
	background: #f4f5f9;
	color: #1ca1c1;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	outline: 0;
	padding: auto 6px
}

	.webix_view .webix_pager_item:focus, .webix_view .webix_pager_item:hover {
		background-color: #e7e9f2
	}

	.webix_view .webix_pager_item:active {
		background-color: #daddeb
	}

.webix_view .webix_pager_item_selected {
	background: #1ca1c1;
	color: #fff;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	outline: 0;
	padding: auto 6px
}

	.webix_view .webix_pager_item_selected:focus, .webix_view .webix_pager_item_selected:hover {
		background-color: #1992af
	}

	.webix_view .webix_pager_item_selected:active {
		background-color: #17839d
	}

.webix_view .webix_pager_item, .webix_view .webix_pager_item_selected {
	border-radius: 2px;
	border-width: 0
}

.webix_list .webix_unit_header {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background: #f4f5f9;
	border-bottom: 1px solid #dadee0;
	box-sizing: border-box;
	color: #313131;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 500;
	letter-spacing: 0;
	text-shadow: none
}

	.webix_list .webix_unit_header:not(:first-child) {
		border-top: 1px solid #dadee0;
		margin-top: -1px
	}

.webix_arrow_icon {
	color: #475466;
	font-family: Webix Material Icons;
	font-size: 20px;
	height: 20px;
	line-height: 20px;
	margin-top: -10px;
	right: 8px;
	width: 20px
}

.webix_group_back .webix_arrow_icon {
	left: 8px
}

.webix_tree .webix_tree_item.webix_selected {
	background-color: #f4f5f9
}

	.webix_tree .webix_tree_item.webix_selected:focus {
		background-color: #edeff5
	}

	.webix_tree .webix_tree_item.webix_selected span {
		background-color: transparent;
		margin: 0;
		padding: 0
	}

	.webix_tree .webix_tree_item.webix_selected div {
		background-color: transparent
	}

.webix_tree_close, .webix_tree_open {
	background-image: none;
	color: #94a1b3;
	font-family: Webix Material Icons;
	font-size: 24px;
	text-align: center
}

	.webix_tree_open:before {
		content: "\F027"
	}

	.webix_tree_close:before {
		content: "\F028"
	}

.webix_tree_file, .webix_tree_folder, .webix_tree_folder_open {
	background-image: none;
	color: #dadee0;
	font-family: Webix Material Icons;
	font-size: 20px;
	margin: 0 4px 0 0;
	text-align: center;
	width: 24px
}

	.webix_tree_folder:before {
		content: "\F030"
	}

	.webix_tree_folder_open:before {
		content: "\F031"
	}

	.webix_tree_file:before {
		content: "\F032"
	}

.webix_menu-x .webix_list_item .webix_submenu_icon, .webix_view.webix_menu .webix_list_item .webix_submenu_icon {
	font-family: Webix Material Icons;
	font-size: 14px;
	margin-left: 0;
	top: 0;
	width: 6px
}

.webix_view.webix_popup.webix_menu {
	border: 0
}

.webix_menu.webix_view .webix_list_item:active, .webix_menu.webix_view .webix_list_item:hover {
	background-color: #edeff5
}

.webix_menu.webix_view .webix_list_item .webix_submenu_icon:before {
	content: "\F003"
}

.webix_menu.webix_view .webix_list_item.webix_selected {
	background: #f4f5f9
}

.webix_menu.webix_view .webix_icon {
	color: #94a1b3
}

.webix_drag_over, .webix_drop_zone, .webix_property .webix_property_label_line {
	background-color: #f4f5f9
}

.webix_view button, .webix_view input[type=button] {
	-webkit-appearance: none
}

.webix_el_colorpicker span.webix_input_icon, .webix_el_combo span.webix_input_icon, .webix_el_datepicker span.webix_input_icon, .webix_el_dbldatepicker span.webix_input_icon, .webix_el_richselect span.webix_input_icon {
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-bottomright: 2px;
	-moz-border-radius-topleft: 0;
	-moz-border-radius-topright: 2px;
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 2px;
	-webkit-border-top-left-radius: 0;
	-webkit-border-top-right-radius: 2px;
	background-color: transparent;
	border-radius: 0 2px 2px 0;
	color: #94a1b3
}

.focusStyle {
	border: 1px solid #1ca1c1
}

.webix_el_colorpicker input, .webix_el_combo input, .webix_el_search input {
	padding-right: 28px
}

.webix_el_colorpicker input, .webix_el_combo input, .webix_el_datepicker input, .webix_el_search input, .webix_el_text input {
	border-radius: 2px
}

	.webix_el_colorpicker input:focus, .webix_el_combo input:focus, .webix_el_datepicker input:focus, .webix_el_search input:focus, .webix_el_text input:focus {
		border: 1px solid #1ca1c1
	}

.webix_el_colorpicker .webix_inp_static, .webix_el_datepicker .webix_inp_static, .webix_el_dbldatepicker .webix_inp_static, .webix_el_richselect .webix_inp_static {
	border-radius: 2px;
	padding-right: 28px;
	text-overflow: ellipsis;
	white-space: nowrap
}

	.webix_el_colorpicker .webix_inp_static:focus, .webix_el_datepicker .webix_inp_static:focus, .webix_el_dbldatepicker .webix_inp_static:focus, .webix_el_richselect .webix_inp_static:focus, .webix_el_select select:focus, .webix_el_textarea textarea:focus {
		border: 1px solid #1ca1c1
	}

.webix_el_select select, .webix_el_textarea textarea {
	border-radius: 2px
}

.webix_el_colorpicker span.webix_input_icon, .webix_el_combo span.webix_input_icon, .webix_el_datepicker span.webix_input_icon, .webix_el_dbldatepicker span.webix_input_icon, .webix_el_richselect span.webix_input_icon, .webix_el_search span.webix_input_icon {
	padding-left: 4px;
	width: 24px
}

.webix_el_text .webix_inp_static {
	border-radius: 2px;
	white-space: nowrap
}

.webix_focused .webix_inp_static {
	border: 1px solid #1ca1c1
}

.webix_multilist .wxi-checkbox-blank, .webix_multilist .wxi-checkbox-marked {
	font-size: 20px;
	margin-right: 4px;
	vertical-align: sub;
	width: 24px
}

.webix_multilist .wxi-checkbox-marked {
	color: #1ca1c1
}

.webix_multilist .wxi-checkbox-blank {
	color: #94a1b3
}

.webix_multicombo .webix_inp_static {
	padding-right: 3px
}

.webix_multicombo_tag, .webix_multicombo_value {
	background-color: #ebedf0;
	border-radius: 75pt;
	margin: 3px 0 0 3px;
	padding: 0 9pt
}

.webix_multicombo_value {
	padding: 0 0 0 9pt
}

	.webix_multicombo_value .webix_multicombo_delete {
		-moz-user-select: none;
		-ms-user-select: none;
		-webkit-user-select: none;
		color: transparent;
		margin: 0 4px;
		padding: 0;
		user-select: none
	}

		.webix_multicombo_value .webix_multicombo_delete:after {
			color: #94a1b3;
			content: "\F033";
			font-family: Webix Material Icons;
			font-size: 1pc;
			margin-left: -9px;
			vertical-align: bottom
		}

.webix_checksuggest_select_all:hover {
	background-color: #f4f5f9;
	border-radius: 2px
}

	.webix_checksuggest_select_all:hover .webix_label_right {
		color: #1ca1c1
	}

.webix_checksuggest_select_all .webix_label_right {
	color: #1ca1c1;
	font-size: 14px;
	text-align: center
}

.webix_checksuggest_select_all.webix_el_checkbox .webix_label_right {
	padding-top: 5px
}

.buttonStyle {
	color: #1ca1c1;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	outline: 0;
	padding: auto 6px
}

.webix_el_colorpicker div.webix_inp_static div {
	margin: 2.5px -20px 0 -5px
}

.webix_el_textarea textarea, div.webix_inp_static {
	background: #fff;
	border-color: #ccd7e6;
	font-family: Roboto,sans-serif
}

.webix_el_select select {
	border-color: #dadee0;
	font-family: Roboto,sans-serif
}

.webix_el_checkbox input {
	border-color: #dadee0
}

.webix_el_counter .webix_inp_counter_value {
	background: #fff;
	border-color: #ccd7e6;
	font-family: Roboto,sans-serif;
	width: 42px
}

.webix_el_counter .webix_inp_counter_next, .webix_el_counter .webix_inp_counter_prev {
	background: #f4f5f9;
	border: 1px solid #ccd7e6;
	font-family: Courier New,Courier,monospace;
	font-weight: 700;
	width: 30px
}

.webix_el_counter .webix_inp_counter_prev {
	border-right: 0;
	font-size: 20px
}

.webix_el_counter .webix_inp_counter_next {
	border-left: 0;
	font-size: 20px
}

.webix_view.webix_control.webix_el_tabbar {
	background: #fff
}

/* Tab customization ---------*/
.webix_all_tabs .webix_item_tab {
	border: 0;
	border-radius: 10px 10px 0px 0px;
	color: #1ca1c1;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0
}

.webix_all_tabs .webix_item_tab:hover {
	background-color: #f4f5f9;
	box-shadow: inset 0 -4px #17839d;
	color: #17839d
}

.webix_all_tabs .webix_item_tab .webix_icon.webix_tab_close {
	color: #94a1b3;
	font-size: 20px;
	margin-top: 1px;
	padding: 0;
	width: 28px
}

.webix_all_tabs .webix_item_tab.webix_selected {
	box-shadow: inset 0 -4px #1ca1c1;
	padding-bottom: 0;
}

.webix_all_tabs .webix_item_tab.webix_selected:hover {
	background-color: transparent;
	box-shadow: inset 0 -4px #17839d;
	color: #17839d
}

.webix_all_tabs .webix_item_tab.webix_selected:focus {
	box-shadow: inset 0 -4px #17839d;
	color: #17839d
}

.webix_all_tabs .webix_tab_filler {
	border: 0
}

.webix_all_tabs .webix_tab_more_icon .webix_icon {
	color: #1ca1c1
}

.webix_all_tabs .webix_tab_more_icon:hover {
	background-color: #f4f5f9
}

.webixtype_bottom .webix_item_tab, .webixtype_bottom .webix_item_tab.webix_selected {
	background: #fff;
	padding: 0
}

	.webixtype_bottom .webix_item_tab.webix_selected:last-child, .webixtype_bottom .webix_item_tab:last-child {
		border-right: 0
	}

	.webixtype_bottom .webix_item_tab.webix_selected {
		background: #fff;
		box-shadow: inset 0 2px #1ca1c1;
		color: #1ca1c1
	}

.webix_el_tabbar .webixtype_icon .webix_img_btn {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
	text-align: center
}

	.webix_el_tabbar .webixtype_icon .webix_img_btn .webix_icon_btn {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		color: #1ca1c1;
		font-size: 24px;
		height: 100%;
		line-height: inherit;
		margin: 0 3px;
		vertical-align: top;
		width: 100%
	}

.webix_el_tabbar .webixtype_icon .webix_item_tab.webix_selected {
	background: #fff
}

.webix_el_tabbar .webixtype_icon .webix_img_btn:active, .webix_el_tabbar .webixtype_icon .webix_img_btn_top:active {
	background-color: #fff
}
/* Tab customization -----end-*/

.webix_accordionitem_label .webix_icon {
	margin-right: 8px
}

.webix_el_tabbar .webixtype_iconTop, .webix_el_tabbar .webixtype_image {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

	.webix_el_tabbar .webixtype_iconTop .webix_icon, .webix_el_tabbar .webixtype_image .webix_icon {
		color: #1ca1c1
	}

	.webix_el_tabbar .webixtype_iconTop .webix_item_tab, .webix_el_tabbar .webixtype_image .webix_item_tab {
		font-size: 9pt;
		padding-bottom: 2px;
		padding-top: 2px
	}

	.webix_el_tabbar .webixtype_iconTop .webix_img_btn_top .webix_icon, .webix_el_tabbar .webixtype_image .webix_img_btn_top .webix_icon {
		top: 0
	}

	.webix_el_tabbar .webixtype_iconTop .webix_img_btn_text, .webix_el_tabbar .webixtype_image .webix_img_btn_text {
		bottom: 0;
		font-size: 9pt
	}

	.webix_el_tabbar .webixtype_iconTop .webix_item_tab.webix_selected, .webix_el_tabbar .webixtype_image .webix_item_tab.webix_selected {
		background: #fff
	}

		.webix_el_tabbar .webixtype_iconTop .webix_item_tab.webix_selected .webix_icon, .webix_el_tabbar .webixtype_iconTop .webix_item_tab.webix_selected .webix_img_btn_text, .webix_el_tabbar .webixtype_image .webix_item_tab.webix_selected .webix_icon, .webix_el_tabbar .webixtype_image .webix_item_tab.webix_selected .webix_img_btn_text {
			color: #1ca1c1
		}

		.webix_el_tabbar .webixtype_iconTop .webix_item_tab.webix_selected .webix_icon_btn, .webix_el_tabbar .webixtype_image .webix_item_tab.webix_selected .webix_icon_btn {
			background-color: #fff
		}

		.webix_el_tabbar .webixtype_iconTop .webix_item_tab.webix_selected .webix_img_btn, .webix_el_tabbar .webixtype_image .webix_item_tab.webix_selected .webix_img_btn {
			color: #1ca1c1
		}

	.webix_el_tabbar .webixtype_icon .webix_item_tab, .webix_el_tabbar .webixtype_iconTop .webix_item_tab, .webix_el_tabbar .webixtype_image .webix_item_tab {
		border-radius: 0;
		padding: 0
	}

		.webix_el_tabbar .webixtype_icon .webix_item_tab .webix_img_btn, .webix_el_tabbar .webixtype_iconTop .webix_item_tab .webix_img_btn, .webix_el_tabbar .webixtype_image .webix_item_tab .webix_img_btn {
			color: #1ca1c1
		}

	.webix_el_tabbar .webixtype_bottom .webix_tab_more_icon, .webix_el_tabbar .webixtype_icon .webix_tab_more_icon, .webix_el_tabbar .webixtype_iconTop .webix_tab_more_icon, .webix_el_tabbar .webixtype_image .webix_tab_more_icon {
		background: #fff
	}

		.webix_el_tabbar .webixtype_bottom .webix_tab_more_icon .webix_icon, .webix_el_tabbar .webixtype_icon .webix_tab_more_icon .webix_icon, .webix_el_tabbar .webixtype_iconTop .webix_tab_more_icon .webix_icon, .webix_el_tabbar .webixtype_image .webix_tab_more_icon .webix_icon {
			color: #1ca1c1
		}

		.webix_el_tabbar .webixtype_bottom .webix_tab_more_icon:hover, .webix_el_tabbar .webixtype_icon .webix_tab_more_icon:hover, .webix_el_tabbar .webixtype_iconTop .webix_tab_more_icon:hover, .webix_el_tabbar .webixtype_image .webix_tab_more_icon:hover {
			background-color: #f4f5f9
		}

	.webix_el_tabbar .webixtype_icon .webix_img_btn:hover, .webix_el_tabbar .webixtype_icon .webix_img_btn_top:hover, .webix_el_tabbar .webixtype_iconTop .webix_img_btn:hover, .webix_el_tabbar .webixtype_iconTop .webix_img_btn_top:hover, .webix_el_tabbar .webixtype_image .webix_img_btn:hover, .webix_el_tabbar .webixtype_image .webix_img_btn_top:hover {
		background-color: transparent
	}

.webix_tab_filler:first-child {
	border-right: 0
}

.passiveBarBG {
	background: #fff;
	color: #1ca1c1
}

.webix_uploader button {
	background: #1ca1c1;
	color: #fff;
	font-family: Roboto,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	outline: 0;
	padding: auto 6px
}

	.webix_uploader button:focus, .webix_uploader button:hover {
		background-color: #1992af
	}

	.webix_uploader button:active {
		background-color: #17839d
	}

.webix_uploader .webix_img_btn .webix_icon {
	color: #fff
}

.webix_remove_upload .cancel_icon {
	background-image: none;
	font-family: Webix Material Icons;
	font-size: 17px;
	height: auto;
	margin: 0;
	width: 20px
}

	.webix_remove_upload .cancel_icon:hover {
		color: #ff5c4c
	}

	.webix_remove_upload .cancel_icon:before {
		content: "\F011"
	}

.webix_upload_error .error_icon {
	background-image: none;
	color: #ff5c4c;
	font-family: Webix Material Icons;
	font-size: 20px;
	height: auto;
	width: 20px
}

	.webix_upload_error .error_icon:before {
		content: "\F034"
	}

.webix_inp_counter_next:focus, .webix_inp_counter_next:hover, .webix_inp_counter_prev:focus, .webix_inp_counter_prev:hover {
	background-color: #e7e9f2
}

.webix_inp_counter_next:active, .webix_inp_counter_prev:active {
	background-color: #daddeb
}

.webix_el_text span.webix_input_icon {
	color: #94a1b3
}

.webix_el_text .webix_input_icon:active, .webix_el_text .webix_input_icon:hover {
	background: inherit;
	color: #1ca1c1;
	cursor: pointer
}

.webix_el_button button, .webix_el_toggle button, .webix_view button, .webix_view input[type=button], .webixbutton {
	border-width: 0
}

.webix_segment_0:focus, .webix_segment_0:hover, .webix_segment_1:focus, .webix_segment_1:hover, .webix_segment_N:focus, .webix_segment_N:hover {
	background-color: #e7e9f2
}

.webix_segment_0:active, .webix_segment_1:active, .webix_segment_N:active {
	background-color: #daddeb
}

.webix_selected.webix_segment_0:focus, .webix_selected.webix_segment_0:hover, .webix_selected.webix_segment_1:focus, .webix_selected.webix_segment_1:hover, .webix_selected.webix_segment_N:focus, .webix_selected.webix_segment_N:hover {
	background-color: #1992af
}

.webix_selected.webix_segment_0:active, .webix_selected.webix_segment_1:active, .webix_selected.webix_segment_N:active {
	background-color: #17839d
}

.webix_all_segments .webix_segment_1, .webix_all_segments .webix_segment_N {
	border-left: 0;
	margin-left: 1px
}

.webix_segment_0, .webix_segment_1, .webix_segment_N {
	background-color: #f4f5f9;
	border-color: #f4f5f9;
	color: #1ca1c1;
	font-weight: 500
}

.webix_slider_vertical .webix_slider_box {
	margin-top: -10px
}

	.webix_slider_vertical .webix_slider_box .webix_slider_left, .webix_slider_vertical .webix_slider_box .webix_slider_right {
		width: 6px
	}

	.webix_slider_vertical .webix_slider_box .webix_slider_handle {
		left: 5px
	}

.webix_slider_vertical.webix_slider_alt .webix_slider_handle {
	left: 3px
}

.webix_rangeslider .webix_slider_title, .webix_rangeslider .webix_slider_title_box {
	height: 14px;
	margin-top: 0
}

.webix_section > .webix_template {
	color: #475466;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 400;
	letter-spacing: .2px
}

.webix_view.webix_control .webix_disabled_box .webix_custom_checkbox, .webix_view.webix_control .webix_disabled_box .webix_custom_radio, .webix_view.webix_control .webix_disabled_box .webix_input_icon {
	color: #dadee0
}

.webix_view > .webix_disabled {
	background-color: #ebedf0;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
	opacity: .6
}

.webix_custom_checkbox:before {
	content: "\F013";
	cursor: pointer;
	font-family: Webix Material Icons
}

.webix_checkbox_1 .webix_custom_checkbox:before {
	content: "\F012"
}

.webix_checkbox_1 .webix_custom_checkbox {
	color: #1ca1c1
}

.webix_custom_checkbox {
	background-color: transparent;
	border: 0;
	color: #94a1b3;
	float: left;
	font-size: 20px;
	height: 100%;
	padding: 0;
	position: relative
}

	.webix_custom_checkbox:focus {
		color: #188ba6
	}

.webix_el_radio .webix_custom_radio:before {
	content: "\F035";
	display: block;
	font-family: Webix Material Icons;
	font-size: 20px
}

.webix_el_radio .webix_radio_1 .webix_custom_radio {
	color: #1ca1c1
}

	.webix_el_radio .webix_radio_1 .webix_custom_radio:before {
		content: "\F036"
	}

.webix_el_radio .webix_custom_radio {
	background-color: transparent;
	border-color: transparent;
	color: #94a1b3;
	cursor: pointer;
	display: block;
	padding: 0
}

	.webix_el_radio .webix_custom_radio:focus {
		color: #188ba6
	}

.webix_cal_icon, .webix_cal_month_name, .webix_cal_time {
	color: #475466;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 400;
	letter-spacing: .2px
}

	.webix_cal_icon:hover, .webix_cal_month_name:hover, .webix_cal_time:hover {
		color: #1ca1c1;
		text-decoration: none
	}

.webix_cal_month_name {
	color: #313131;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 500;
	letter-spacing: .2px
}

.webix_cal_icons, .webix_cal_time {
	line-height: 20px;
	padding: 4px
}

	.webix_cal_icons .webix_cal_icon, .webix_cal_time .webix_cal_icon {
		padding: 0 4px
	}

.webix_cal_next_button, .webix_cal_prev_button {
	background-image: none;
	color: #94a1b3;
	font-family: Webix Material Icons;
	font-size: 24px;
	height: 24px;
	width: 24px
}

	.webix_cal_next_button:focus, .webix_cal_next_button:hover, .webix_cal_prev_button:focus, .webix_cal_prev_button:hover {
		color: #1ca1c1
	}

	.webix_cal_prev_button:before {
		content: "\F029"
	}

	.webix_cal_next_button:before {
		content: "\F028"
	}

.webix_cal_body .webix_cal_block_empty, .webix_time_header .webix_cal_hours, .webix_time_header .webix_cal_minutes {
	border-bottom: 0;
	font-weight: 500
}

.webix_view > .webix_cal_header div {
	border-bottom-width: 0;
	font-size: 9pt;
	margin-bottom: 0
}

.webix_cal_body .webix_cal_week_num {
	color: #475466
}

.webix_cal_body .webix_cal_today .webix_cal_day_inner {
	box-shadow: inset 0 0 0 1px #1ca1c1
}

.webix_cal_body .webix_cal_day_inner {
	border-radius: 50%;
	display: inline-block;
	font-size: 9pt
}

	.webix_cal_body .webix_cal_day_inner:hover {
		background-color: #f4f5f9
	}

.webix_cal_body .webix_cal_event {
	color: #1ca1c1;
	font-weight: 500
}

.webix_cal_body .webix_cal_outside {
	color: #94a1b3;
	font-weight: 400
}

.webix_cal_body .webix_cal_select, .webix_cal_body .webix_cal_today.webix_cal_select {
	background-color: transparent
}

	.webix_cal_body .webix_cal_select .webix_cal_day_inner, .webix_cal_body .webix_cal_today.webix_cal_select .webix_cal_day_inner {
		background-color: #1ca1c1;
		color: #fff
	}

		.webix_cal_body .webix_cal_select .webix_cal_day_inner:hover, .webix_cal_body .webix_cal_today.webix_cal_select .webix_cal_day_inner:hover {
			background-color: #1ca1c1
		}

	.webix_cal_body .webix_cal_select:focus .webix_cal_day_inner, .webix_cal_body .webix_cal_today.webix_cal_select:focus .webix_cal_day_inner {
		background-color: #1992af
	}

.webix_cal_body .webix_cal_block {
	color: #475466;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 400;
	letter-spacing: .2px
}

	.webix_cal_body .webix_cal_block.webix_selected {
		background-color: transparent
	}

		.webix_cal_body .webix_cal_block.webix_selected span {
			background-color: #1ca1c1;
			color: #fff
		}

			.webix_cal_body .webix_cal_block.webix_selected span:hover {
				background-color: #1ca1c1
			}

		.webix_cal_body .webix_cal_block.webix_selected:focus span {
			background-color: #1992af
		}

	.webix_cal_body .webix_cal_block span {
		border-radius: 50%
	}

		.webix_cal_body .webix_cal_block span:hover {
			background-color: #f4f5f9
		}

.webix_cal_body .webix_cal_day_disabled, .webix_cal_body .webix_cal_day_disabled.webix_cal_event, .webix_cal_body .webix_hours .webix_cal_day_disabled, .webix_cal_body .webix_hours .webix_cal_day_disabled.webix_cal_event, .webix_cal_body .webix_minutes .webix_cal_day_disabled, .webix_cal_body .webix_minutes .webix_cal_day_disabled.webix_cal_event {
	background-color: #fbfbfd;
	color: #94a1b3
}

	.webix_cal_body .webix_cal_day_disabled span:hover, .webix_cal_body .webix_cal_day_disabled.webix_cal_event span:hover, .webix_cal_body .webix_hours .webix_cal_day_disabled span:hover, .webix_cal_body .webix_hours .webix_cal_day_disabled.webix_cal_event span:hover, .webix_cal_body .webix_minutes .webix_cal_day_disabled span:hover, .webix_cal_body .webix_minutes .webix_cal_day_disabled.webix_cal_event span:hover {
		background-color: transparent
	}

.webix_cal_body .webix_cal_range_first, .webix_cal_body .webix_cal_range_last {
	position: relative
}

	.webix_cal_body .webix_cal_range_first:before, .webix_cal_body .webix_cal_range_last:after {
		background: #e1f6fb;
		content: "";
		display: block;
		height: 100%;
		position: absolute;
		top: 0;
		width: 50%
	}

	.webix_cal_body .webix_cal_range_first:before {
		right: 100%
	}

	.webix_cal_body .webix_cal_range_last:after {
		left: 100%
	}

.webix_cal_body .webix_cal_range_end, .webix_cal_body .webix_cal_range_start {
	position: relative;
	z-index: 1
}

.webix_cal_body .webix_cal_range_last + .webix_cal_outside {
	background-color: #fff;
	position: relative;
	z-index: 1
}

.webix_cal_body .webix_cal_outside + .webix_cal_range_first:before, .webix_cal_body .webix_cal_range:first-child:before, .webix_cal_body .webix_cal_range:last-child:after {
	width: 0
}

.webix_cal_body .webix_cal_range_end, .webix_cal_body .webix_cal_range_start, .webix_cal_body .webix_cal_today.webix_cal_range_end, .webix_cal_body .webix_cal_today.webix_cal_range_start {
	background-color: transparent
}

	.webix_cal_body .webix_cal_range_end .webix_cal_day_inner, .webix_cal_body .webix_cal_range_start .webix_cal_day_inner, .webix_cal_body .webix_cal_today.webix_cal_range_end .webix_cal_day_inner, .webix_cal_body .webix_cal_today.webix_cal_range_start .webix_cal_day_inner {
		background-color: #1ca1c1;
		color: #fff
	}

.webix_cal_body .webix_cal_range {
	background-color: #e1f6fb
}

.webix_daterange .webix_range_timepicker .webix_cal_time {
	padding: 4px
}

.webix_daterange .webix_cal_icons .webix_cal_icon {
	border-top: 0
}

.webix_progress_bottom .webix_progress_state, .webix_progress_top .webix_progress_state {
	background: #1ca1c1;
	background-image: linear-gradient(135deg,hsla(0,0%,100%,.1) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.1) 0,hsla(0,0%,100%,.1) 75%,transparent 0,transparent)
}

.webix_progress_top .webix_progress_state {
	background-size: 10px 10px
}

.webix_progress_bottom .webix_progress_state {
	background-size: 14px 14px
}

.webix_switch_box {
	background-color: #f4f5f9;
	color: #475466
}

	.webix_switch_box.webix_switch_on {
		background-color: #1ca1c1
	}

	.webix_switch_box .webix_switch_text {
		padding-top: 2px
	}

.webix_sidebar {
	background-color: #fff
}

	.webix_sidebar .webix_tree_item:hover {
		background-color: #edeff5
	}

	.webix_sidebar.webix_sidebar_left .webix_tree_item.webix_selected, .webix_sidebar.webix_sidebar_left .webix_tree_item.webix_sidebar_selected, .webix_sidebar.webix_sidebar_left .webix_tree_item.webix_sidebar_selected + .webix_tree_leaves .webix_tree_item {
		box-shadow: inset 2px 0 #1ca1c1
	}

	.webix_sidebar.webix_sidebar_right .webix_tree_item.webix_selected, .webix_sidebar.webix_sidebar_right .webix_tree_item.webix_sidebar_selected, .webix_sidebar.webix_sidebar_right .webix_tree_item.webix_sidebar_selected + .webix_tree_leaves .webix_tree_item {
		box-shadow: inset -2px 0 #1ca1c1
	}

	.webix_sidebar .webix_tree_branch_1 {
		border: 0
	}

		.webix_sidebar .webix_tree_branch_1 .webix_tree_item {
			padding-right: 9pt
		}

		.webix_sidebar .webix_tree_branch_1 > .webix_tree_item {
			padding-left: 9pt
		}

	.webix_sidebar .webix_tree_item .webix_sidebar_icon, .webix_sidebar .webix_tree_item.webix_selected .webix_sidebar_icon {
		margin-right: 8px
	}

	.webix_sidebar .webix_sidebar_icon {
		vertical-align: middle;
		width: 20px
	}

	.webix_sidebar .webix_sidebar_dir_icon, .webix_sidebar .webix_sidebar_icon {
		color: #94a1b3;
		font-size: 20px
	}

	.webix_sidebar .webix_tree_branch_1 > .webix_tree_item, .webix_sidebar .webix_tree_item {
		color: #475466;
		cursor: pointer;
		height: 36px;
		line-height: 36px
	}

		.webix_sidebar .webix_tree_item.webix_selected, .webix_sidebar .webix_tree_item.webix_sidebar_selected {
			background-color: #f4f5f9;
			color: #1ca1c1;
			font-weight: 500
		}

			.webix_sidebar .webix_tree_item.webix_selected .webix_sidebar_dir_icon, .webix_sidebar .webix_tree_item.webix_selected .webix_sidebar_icon, .webix_sidebar .webix_tree_item.webix_sidebar_selected .webix_sidebar_dir_icon, .webix_sidebar .webix_tree_item.webix_sidebar_selected .webix_sidebar_icon {
				color: #1ca1c1
			}

			.webix_sidebar .webix_tree_item.webix_selected span {
				background-color: transparent;
				color: #1ca1c1
			}

	.webix_sidebar.webix_sidebar_expanded .webix_tree_item.webix_sidebar_selected {
		background-color: transparent
	}

		.webix_sidebar.webix_sidebar_expanded .webix_tree_item.webix_sidebar_selected:hover {
			background-color: #edeff5
		}

.webix_sidebar_popup_list .webix_list_item, .webix_sidebar_popup_list .webix_list_item:first-child {
	border-width: 0
}

	.webix_sidebar_popup_list .webix_list_item.webix_sidebar_selected {
		background-color: #f4f5f9;
		color: #1ca1c1;
		font-weight: 500
	}

		.webix_sidebar_popup_list .webix_list_item.webix_sidebar_selected:hover {
			background-color: #f4f5f9 !important
		}

	.webix_sidebar_popup_list .webix_list_item.webix_selected {
		color: #1ca1c1;
		font-weight: 500
	}

.webix_sidebar_popup_list .webix_tree_branch_1 > .webix_tree_item {
	height: 36px;
	line-height: 36px
}

.webix_sidebar_popup_left .webix_list_item.webix_selected, .webix_sidebar_popup_left .webix_list_item.webix_sidebar_selected {
	box-shadow: inset 2px 0 #1ca1c1
}

.webix_sidebar_popup_right .webix_list_item.webix_selected, .webix_sidebar_popup_right .webix_list_item.webix_sidebar_selected {
	box-shadow: inset -2px 0 #1ca1c1
}

.webix_sidebar_popup_list.webix_sidebar_popup_right .webix_icon {
	margin-left: -8px
}

.webix_sidebar_popup.webix_sidebar_popup_left, .webix_sidebar_popup.webix_sidebar_popup_right {
	box-shadow: 0 3px 10px 0 rgba(0,0,0,.1),0 1px 7px 0 rgba(0,0,0,.1)
}

	.webix_sidebar_popup.webix_sidebar_popup_right .webix_sidebar_popup_right {
		box-shadow: none
	}

.webix_sidebar_popup .webix_sidebar_popup_title {
	background-color: #f4f5f9
}

	.webix_sidebar_popup .webix_sidebar_popup_title .webix_template {
		border: 0;
		line-height: 36px
	}

	.webix_sidebar_popup .webix_sidebar_popup_title.webix_selected {
		color: #1ca1c1;
		font-weight: 500
	}

.webix_sidebar_popup_right {
	box-shadow: 0 3px 10px 0 rgba(0,0,0,.1),0 1px 7px 0 rgba(0,0,0,.1)
}

.webix_sidebar.webix_dark {
	background-color: #4a4e58;
	border-color: #373a42
}

	.webix_sidebar.webix_dark .webix_tree_item {
		color: #fff
	}

		.webix_sidebar.webix_dark .webix_tree_item:hover {
			background-color: #33353c
		}

		.webix_sidebar.webix_dark .webix_tree_item.webix_selected, .webix_sidebar.webix_dark .webix_tree_item.webix_sidebar_selected {
			background-color: #373a42;
			color: #1ca1c1
		}

	.webix_sidebar.webix_dark.webix_sidebar_expanded .webix_tree_item.webix_sidebar_selected {
		background-color: transparent
	}

		.webix_sidebar.webix_dark.webix_sidebar_expanded .webix_tree_item.webix_sidebar_selected:hover {
			background-color: #33353c
		}

.webix_sidebar_popup.webix_dark .webix_sidebar_popup_title {
	background-color: #373a42
}

	.webix_sidebar_popup.webix_dark .webix_sidebar_popup_title .webix_template {
		border-color: #373a42;
		color: #fff
	}

	.webix_sidebar_popup.webix_dark .webix_sidebar_popup_title.webix_selected .webix_template {
		color: #1ca1c1
	}

.webix_sidebar_popup_list.webix_dark {
	background-color: #4a4e58;
	border-color: #4a4e58
}

	.webix_sidebar_popup_list.webix_dark .webix_list_item {
		background: #4a4e58;
		border-color: #373a42;
		color: #fff
	}

		.webix_sidebar_popup_list.webix_dark .webix_list_item.webix_selected, .webix_sidebar_popup_list.webix_dark .webix_list_item.webix_sidebar_selected {
			background-color: #373a42;
			color: #1ca1c1
		}

		.webix_sidebar_popup_list.webix_dark .webix_list_item:hover {
			background-color: #33353c
		}

		.webix_sidebar_popup_list.webix_dark .webix_list_item.webix_selected {
			background-color: #373a42
		}

		.webix_sidebar_popup_list.webix_dark .webix_list_item.webix_sidebar_selected:hover {
			background-color: #373a42 !important
		}

.webix_sidebar_popup.webix_dark {
	border-color: #373a42
}

.webix_list_item.webix_selected {
	box-shadow: inset 2px 0 #1ca1c1
}

.webix_list_item.webix_disabled {
	color: #94a1b3
}

.webix_list_item .webix_icon {
	font-size: 20px
}

.webix_list-x .webix_list_item.webix_selected {
	border-left: 0;
	box-shadow: none;
	padding-left: 9pt
}

.webix_header > div {
	padding-left: 9pt
}

.webix_icon, .webix_icon_btn, .webix_input_icon {
	font-family: Webix Material Icons
}

.webix_icon_button {
	position: relative;
	z-index: 0
}

	.webix_icon_button:before {
		border-radius: 50%;
		bottom: 0;
		content: "";
		left: 0;
		opacity: 0;
		position: absolute;
		right: 0;
		top: 0;
		transform: scale(0);
		transition-duration: .15s;
		transition-property: transform,opacity;
		transition-timing-function: cubic-bezier(.4,0,.2,1);
		z-index: -1
	}

	.webix_icon_button:hover .webix_icon {
		color: #475466
	}

	.webix_icon_button:hover:before {
		background-color: #f4f5f9;
		opacity: 1;
		transform: scale(1)
	}

.webix_icon {
	text-align: center
}

.webix_icon_btn, .webix_input_icon {
	font-size: 20px;
	width: 20px
}

.webix_img_btn_top .webix_icon {
	color: #94a1b3
}

.webix_icon_btn {
	vertical-align: text-bottom
}

.webix_resize_frame {
	box-shadow: 0 2px 6px 0 #000,0 1px 4px 0 #000
}

.webix_tooltip {
	background-color: #475466;
	border: 0;
	border-radius: 2px;
	color: #fff;
	font-weight: 500;
	line-height: 20px;
	padding: 4px 8px
}

.portlet_marker, .portlet_markerbottom, .portlet_markerleft, .portlet_markerright, .portlet_markertop {
	background: #1ca1c1
}

.webix_treemap_item:hover {
	box-shadow: inset 0 0 0 1px #5ccce7
}

.webix_treemap_item.webix_selected {
	border-color: inherit;
	box-shadow: inset 0 0 0 2px #1ca1c1
}

.webix_el_label .webix_el_box, .webix_inp_label, .webix_inp_top_label, legend.webix_forminput_label {
	color: #313131;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 500;
	letter-spacing: .2px
}

.webix_inp_label {
	padding-right: 8px
}

.webix_label_right {
	padding-left: 4px
}

.webix_el_checkbox .webix_label_right {
	padding-top: 0
}

.webix_inp_bottom_label {
	font-size: 9pt
}

.webix_richtext .webix_richtext_container {
	box-shadow: inset 0 1px #dadee0
}

.webix_richtext .wxi-bold, .webix_richtext .wxi-italic, .webix_richtext .wxi-underline {
	font-size: 24px;
	vertical-align: sub;
	width: 24px
}

.webix_dbllist .bottom_label, .webix_dbllist .webix_list {
	background-color: #ebedf0
}

.webix_dbllist .bottom_label {
	color: #94a1b3;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 400;
	letter-spacing: .2px;
	padding: 0 4px;
	text-align: center;
	text-transform: none
}

.webix_dbllist .webix_list_item.webix_selected {
	background-color: #f4f5f9;
	border-bottom-color: #dadee0;
	color: #475466
}

.webix_dbllist .webix_list_item {
	border: 1px solid #dadee0
}

.webix_dbllist .dbllist_button {
	background-color: #f4f5f9
}

	.webix_dbllist .dbllist_button .webix_icon {
		color: #1ca1c1;
		width: 26px
	}

	.webix_dbllist .dbllist_button:focus, .webix_dbllist .dbllist_button:hover {
		background-color: #e7e9f2
	}

	.webix_dbllist .dbllist_button:active {
		background-color: #daddeb;
		box-shadow: none
	}

.webix_popup.webix_sidemenu.webix_sidemenu_bottom, .webix_popup.webix_sidemenu.webix_sidemenu_left, .webix_popup.webix_sidemenu.webix_sidemenu_right, .webix_popup.webix_sidemenu.webix_sidemenu_top {
	border: 0;
	box-shadow: 0 2px 6px 0 rgba(0,0,0,.1)
}

.webix_organogram .webix_organogram_item {
	background: #f4f5f9;
	border-color: #ccd7e6;
	border-radius: 2px
}

	.webix_organogram .webix_organogram_item.webix_selected {
		background: #e8f6f9;
		border-color: #1ca1c1
	}

.webix_chart .webix_axis_title_x, .webix_chart .webix_axis_title_y, .webix_chart .webix_canvas_text, .webix_chart .webix_chart_legend_item {
	color: #475466;
	font-family: Roboto,sans-serif;
	font-size: 9pt;
	font-weight: 400;
	letter-spacing: .2px
}

	.webix_chart .webix_axis_title_x, .webix_chart .webix_axis_title_y, .webix_chart .webix_canvas_text.webix_axis_item_x, .webix_chart .webix_canvas_text.webix_axis_item_y, .webix_chart .webix_canvas_text.webix_axis_radar_title {
		color: #94a1b3
	}

.webix_toolbar.pdf_bar {
	background-color: #474747
}

	.webix_toolbar.pdf_bar .webix_icon_btn {
		font-size: 1pc
	}

.invalidStyle, .webix_cell.webix_invalid, .webix_dataview_item.webix_invalid, .webix_list_item.webix_invalid, .webix_tree_item.webix_invalid {
	background-color: #ffdedb;
	color: #ff5c4c
}

.webix_invalid .webix_el_box .webix_inp_static, .webix_invalid .webix_el_box input, .webix_invalid .webix_el_box select, .webix_invalid .webix_el_box textarea, input.webix_invalid, select.webix_invalid, textarea.webix_invalid {
	background-color: #ffdedb;
	border-color: #ff8d82;
	color: #ff5c4c
}

.webix_invalid .webix_inp_bottom_label {
	color: #ff5c4c;
	font-size: 9pt
}

.webix_nav_panel .webix_nav_item {
	background-color: transparent;
	border-color: hsla(0,0%,100%,.4);
	filter: alpha(opacity=100);
	opacity: 1
}

	.webix_nav_panel .webix_nav_item:hover {
		border-color: hsla(0,0%,100%,.6)
	}

.webix_nav_panel .webix_nav_active {
	background-color: #fff
}

.webix_nav_button_next .webix_nav_button_inner, .webix_nav_button_prev .webix_nav_button_inner {
	background-image: none;
	border-radius: 50%;
	color: #fff;
	font-family: Webix Material Icons;
	font-size: 24px;
	opacity: 1;
	text-align: center
}

	.webix_nav_button_next .webix_nav_button_inner:focus, .webix_nav_button_next .webix_nav_button_inner:hover, .webix_nav_button_prev .webix_nav_button_inner:focus, .webix_nav_button_prev .webix_nav_button_inner:hover {
		background-color: rgba(0,0,0,.2);
		transition: .15s
	}

.webix_nav_button_side.webix_nav_button_next .webix_nav_button_inner, .webix_nav_button_side.webix_nav_button_prev .webix_nav_button_inner {
	background: rgba(0,0,0,.2);
	border-radius: 2px;
	color: #fff;
	font-family: Webix Material Icons;
	font-size: 3pc;
	opacity: 1;
	text-align: center
}

	.webix_nav_button_side.webix_nav_button_next .webix_nav_button_inner:focus, .webix_nav_button_side.webix_nav_button_next .webix_nav_button_inner:hover, .webix_nav_button_side.webix_nav_button_prev .webix_nav_button_inner:focus, .webix_nav_button_side.webix_nav_button_prev .webix_nav_button_inner:hover {
		background: rgba(0,0,0,.4)
	}

.webix_nav_button_side.webix_nav_button_next {
	right: 0
}

.webix_nav_button_side.webix_nav_button_prev {
	left: 0
}

.webix_nav_button_prev .webix_nav_button_inner:before {
	content: "\F002"
}

.webix_nav_button_next .webix_nav_button_inner:before {
	content: "\F003"
}

.webix_dark .webix_nav_item {
	border-color: rgba(0,0,0,.4)
}

	.webix_dark .webix_nav_item:hover {
		border-color: rgba(0,0,0,.6)
	}

.webix_dark .webix_nav_inactive {
	background-color: transparent
}

.webix_dark .webix_nav_active {
	background-color: #000
}

	.webix_dark .webix_nav_active:focus, .webix_dark .webix_nav_active:hover {
		box-shadow: 0 0 2px #000
	}

.webix_dark .webix_nav_button_next .webix_nav_button_inner, .webix_dark .webix_nav_button_prev .webix_nav_button_inner {
	background-image: none;
	color: #313131
}

	.webix_dark .webix_nav_button_next .webix_nav_button_inner:focus, .webix_dark .webix_nav_button_next .webix_nav_button_inner:hover, .webix_dark .webix_nav_button_prev .webix_nav_button_inner:focus, .webix_dark .webix_nav_button_prev .webix_nav_button_inner:hover {
		background-color: hsla(0,0%,100%,.2)
	}

.webix_dark .webix_nav_button_side.webix_nav_button_next .webix_nav_button_inner, .webix_dark .webix_nav_button_side.webix_nav_button_prev .webix_nav_button_inner {
	background: hsla(0,0%,100%,.2)
}

	.webix_dark .webix_nav_button_side.webix_nav_button_next .webix_nav_button_inner:focus, .webix_dark .webix_nav_button_side.webix_nav_button_next .webix_nav_button_inner:hover, .webix_dark .webix_nav_button_side.webix_nav_button_prev .webix_nav_button_inner:focus, .webix_dark .webix_nav_button_side.webix_nav_button_prev .webix_nav_button_inner:hover {
		background: hsla(0,0%,100%,.4)
	}

.webix_comments_menu.webix_icon {
	line-height: normal
}

.webix_comments_more {
	padding-top: 2px
}

.webix_skin_mark {
	height: 250px
}

@font-face {
	font-family: Webix Material Icons;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/webixmdi-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/webixmdi-webfont.woff2) format("woff2"),url(../fonts/webixmdi-webfont.woff) format("woff"),url(../fonts/webixmdi-webfont.ttf) format("truetype"),url(../fonts/webixmdi-webfont.svg) format("svg")
}

@font-face {
	font-family: Webix Awesome Icons;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/webixfa-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/webixfa-webfont.woff2) format("woff2"),url(../fonts/webixfa-webfont.woff) format("woff"),url(../fonts/webixfa-webfont.ttf) format("truetype"),url(../fonts/webixfa-webfont.svg) format("svg")
}

.wxi-angle-down:before {
	content: "\F001"
}

.wxi-angle-left:before {
	content: "\F002"
}

.wxi-angle-right:before {
	content: "\F003"
}

.wxi-angle-up:before {
	content: "\F004"
}

.wxi-angle-double-right:before {
	content: "\F005"
}

.wxi-angle-double-left:before {
	content: "\F006"
}

.wxi-clock:before {
	content: "\F007"
}

.wxi-calendar:before {
	content: "\F008"
}

.wxi-search:before {
	content: "\F009"
}

.wxi-dots:before {
	content: "\F010"
}

.wxi-close:before {
	content: "\F011"
}

.wxi-checkbox-marked:before {
	content: "\F012"
}

.wxi-checkbox-blank:before {
	content: "\F013"
}

.wxi-trash:before {
	content: "\F014"
}

.wxi-pencil:before {
	content: "\F015"
}

.wxi-eye:before {
	content: "\F016"
}

.wxi-eye-slash:before {
	content: "\F017"
}

.wxi-columns:before {
	content: "\F018"
}

.wxi-drag:before {
	content: "\F019"
}

.wxi-check:before {
	content: "\F020"
}

.wxi-underline:before {
	content: "\F021"
}

.wxi-bold:before {
	content: "\F022"
}

.wxi-italic:before {
	content: "\F023"
}

.wxi-sync:before {
	content: "\F024"
}

.wxi-plus-square:before {
	content: "\F025"
}

.wxi-minus-square:before {
	content: "\F026"
}

.wxi-menu-down:before {
	content: "\F027"
}

.wxi-menu-right:before {
	content: "\F028"
}

.wxi-menu-left:before {
	content: "\F029"
}

.wxi-folder:before {
	content: "\F030"
}

.wxi-folder-open:before {
	content: "\F031"
}

.wxi-file:before {
	content: "\F032"
}

.wxi-close-circle:before {
	content: "\F033"
}

.wxi-alert:before {
	content: "\F034"
}

.wxi-radiobox-blank:before {
	content: "\F035"
}

.wxi-radiobox-marked:before {
	content: "\F036"
}

.wxi-angle-double-down:before {
	content: "\F037"
}

.wxi-angle-double-up:before {
	content: "\F038"
}

.wxi-plus-circle:before {
	content: "\F039"
}

.wxi-minus-circle:before {
	content: "\F040"
}

.wxi-plus:before {
	content: "\F041"
}

.wxi-minus:before {
	content: "\F042"
}

.wxi-download:before {
	content: "\F043"
}

.wxi-user:before {
	content: "\F044"
}

.webix_strong {
	font-weight: 500;
	white-space: nowrap
}

.webix_light {
	color: #b3b3b3
}

.webix_input_icon, .webix_view {
	box-sizing: content-box
}

	.webix_view.webix_el_label {
		box-sizing: border-box
	}

.webix_inp_label, .webix_inp_top_label, .webix_label_right {
	margin-bottom: 0
}

.webix_view table {
	border-collapse: initial
}

.webix_spin {
	-webkit-animation: webix_spin 2s infinite linear;
	animation: webix_spin 2s infinite linear
}

@-webkit-keyframes webix_spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg)
	}
}

@keyframes webix_spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg)
	}
}

