/**
 * Checks if a list contains a certain value.
 * 
 * @param {list} $list - the list to check
 * @param {value} $var - the value to search for
 * @param {bool} $recursive (false) - should any contained lists be checked for the value
 * 
 * @return {bool} true if the value is found from the list, false otherwise
 * 
 * @group lists
 */

/**
 * Cross-browser opacity.
 *
 * @param {number} $value - opacity value from 0 to 1
 * @param {bool} $important (false) - should the property value be declared with !important
 *
 * @group util
 */

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

@-moz-keyframes valo-animate-in-fade {
		0% {
		opacity: 0;
	}
	}

@keyframes valo-animate-in-fade {
		0% {
		opacity: 0;
	}
	}

@-webkit-keyframes valo-animate-out-fade {
		100% {
		opacity: 0;
	}
	}

@-moz-keyframes valo-animate-out-fade {
		100% {
		opacity: 0;
	}
	}

@keyframes valo-animate-out-fade {
		100% {
		opacity: 0;
	}
	}

@-webkit-keyframes valo-animate-in-slide-down {
		0% {
		-webkit-transform: translateY(-100%);
	}
	}

@-moz-keyframes valo-animate-in-slide-down {
		0% {
		-moz-transform: translateY(-100%);
	}
	}

@keyframes valo-animate-in-slide-down {
		0% {
		-webkit-transform: translateY(-100%);
		-moz-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		-o-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	}

@-webkit-keyframes valo-animate-in-slide-up {
		0% {
		-webkit-transform: translateY(100%);
	}
	}

@-moz-keyframes valo-animate-in-slide-up {
		0% {
		-moz-transform: translateY(100%);
	}
	}

@keyframes valo-animate-in-slide-up {
		0% {
		-webkit-transform: translateY(100%);
		-moz-transform: translateY(100%);
		-ms-transform: translateY(100%);
		-o-transform: translateY(100%);
		transform: translateY(100%);
	}
	}

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

@-moz-keyframes valo-animate-in-slide-left {
		0% {
		-moz-transform: translateX(100%);
	}
	}

@keyframes valo-animate-in-slide-left {
		0% {
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%);
	}
	}

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

@-moz-keyframes valo-animate-in-slide-right {
		0% {
		-moz-transform: translateX(-100%);
	}
	}

@keyframes valo-animate-in-slide-right {
		0% {
		-webkit-transform: translateX(-100%);
		-moz-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		-o-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	}

@-webkit-keyframes valo-animate-out-slide-down {
		100% {
		-webkit-transform: translateY(100%);
	}
	}

@-moz-keyframes valo-animate-out-slide-down {
		100% {
		-moz-transform: translateY(100%);
	}
	}

@keyframes valo-animate-out-slide-down {
		100% {
		-webkit-transform: translateY(100%);
		-moz-transform: translateY(100%);
		-ms-transform: translateY(100%);
		-o-transform: translateY(100%);
		transform: translateY(100%);
	}
	}

@-webkit-keyframes valo-animate-out-slide-up {
		100% {
		-webkit-transform: translateY(-100%);
	}
	}

@-moz-keyframes valo-animate-out-slide-up {
		100% {
		-moz-transform: translateY(-100%);
	}
	}

@keyframes valo-animate-out-slide-up {
		100% {
		-webkit-transform: translateY(-100%);
		-moz-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		-o-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	}

@-webkit-keyframes valo-animate-out-slide-left {
		100% {
		-webkit-transform: translateX(-100%);
	}
	}

@-moz-keyframes valo-animate-out-slide-left {
		100% {
		-moz-transform: translateX(-100%);
	}
	}

@keyframes valo-animate-out-slide-left {
		100% {
		-webkit-transform: translateX(-100%);
		-moz-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		-o-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	}

@-webkit-keyframes valo-animate-out-slide-right {
		100% {
		-webkit-transform: translateX(100%);
	}
	}

@-moz-keyframes valo-animate-out-slide-right {
		100% {
		-moz-transform: translateX(100%);
	}
	}

@keyframes valo-animate-out-slide-right {
		100% {
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%);
	}
	}

@-webkit-keyframes valo-overlay-animate-in {
		0% {
		-webkit-transform: translatey(-4px);
		opacity: 0;
	}
	}

@-moz-keyframes valo-overlay-animate-in {
		0% {
		-moz-transform: translatey(-4px);
		opacity: 0;
	}
	}

@keyframes valo-overlay-animate-in {
		0% {
		-webkit-transform: translatey(-4px);
		-moz-transform: translatey(-4px);
		-ms-transform: translatey(-4px);
		-o-transform: translatey(-4px);
		transform: translatey(-4px);
		opacity: 0;
	}
	}

@-webkit-keyframes valo-animate-out-slide-down-fade {
		100% {
		opacity: 0;
		-webkit-transform: translatey(30%);
	}
	}

@-moz-keyframes valo-animate-out-slide-down-fade {
		100% {
		opacity: 0;
		-moz-transform: translatey(30%);
	}
	}

@keyframes valo-animate-out-slide-down-fade {
		100% {
		opacity: 0;
		-webkit-transform: translatey(30%);
		-moz-transform: translatey(30%);
		-ms-transform: translatey(30%);
		-o-transform: translatey(30%);
		transform: translatey(30%);
	}
	}

/**
 * Outputs cross-browser Valo-specific linear gradient background-image declarations.
 * 
 * @group style
 * 
 * @param {color} $color ($v-background-color) - The base color for the gradient color stops
 * @param {list} $gradient ($v-gradient) - Valo-specific gradient value. See the documentation for $v-gradient.
 * @param {color} $fallback (null) - A fallback color for browser which do not support linear gradients (IE8 and IE9 in particular). If null, the base $color is used instead.
 * @param {string} $direction (to bottom) - the direction of the linear gradient. The color stops are by default so that a lighter shade is at the start and a darker shade is at the end.
 */

/**
 * Computes a CSS border property value for the given base color.
 *
 * @group style
 *
 * @param {list} $border ($v-border) - CSS border value which can contain any of the color keywords
 * @param {color} $color ($v-background-color) - the base color to which the color keywords are applied to
 * @param {color} $context (null) - context/surrounding color where the border is expected to appear. The color of the final border is the darker of the two parameters passed to this function.
 * @param {number} $strength (1) - adjustment for the border contrast
 *
 * @return {list} The input $border value with any color keyword replaced with the corresponding actual color
 */

/**
 * Ouput selectors and properties to vertically center elements inside their parent.
 * 
 * @param {string} $to-align (()) - The selector to match the elements which you wish to align vertically. The targeted elements should be inline or inline-block elements.
 * @param {string} $align (middle) - The vertical-align value, e.g. top, middle, bottom
 * @param {string} $pseudo-element (after) - Which pseudo element to use for the vertical align guide
 * 
 * @group util
 */

@font-face {
	font-family: ThemeIcons;
	font-weight: normal;
	font-style: normal;
	src: url(../valo/util/bourbon/css3/../../../../valo/fonts/themeicons-webfont/themeicons-webfont.eot);
	src: url(../valo/util/bourbon/css3/../../../../valo/fonts/themeicons-webfont/themeicons-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/util/bourbon/css3/../../../../valo/fonts/themeicons-webfont/themeicons-webfont.woff) format("woff"), url(../valo/util/bourbon/css3/../../../../valo/fonts/themeicons-webfont/themeicons-webfont.ttf) format("truetype"), url(../valo/util/bourbon/css3/../../../../valo/fonts/themeicons-webfont/themeicons-webfont.svg#ThemeIcons) format("svg");
}

.ThemeIcons {
	font-family: ThemeIcons;
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block;
	text-align: center;
}

@font-face {
	font-family: "Vaadin-Icons";
	src: url(../valo/fonts/vaadin-icons/Vaadin-Icons.eot);
	src: url(../valo/fonts/vaadin-icons/Vaadin-Icons.eot?#iefix) format("embedded-opentype"), url(../valo/fonts/vaadin-icons/Vaadin-Icons.woff) format("woff"), url(../valo/fonts/vaadin-icons/Vaadin-Icons.ttf) format("truetype"), url(../valo/fonts/vaadin-icons/Vaadin-Icons.svg#icomoon) format("svg");
}

.Vaadin-Icons {
	font-family: "Vaadin-Icons";
}

@font-face {
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	src: url(../valo/util/bourbon/css3/../../../../valo/fonts/fontawesome-webfont/fontawesome-webfont.eot);
	src: url(../valo/util/bourbon/css3/../../../../valo/fonts/fontawesome-webfont/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/util/bourbon/css3/../../../../valo/fonts/fontawesome-webfont/fontawesome-webfont.woff) format("woff"), url(../valo/util/bourbon/css3/../../../../valo/fonts/fontawesome-webfont/fontawesome-webfont.ttf) format("truetype"), url(../valo/util/bourbon/css3/../../../../valo/fonts/fontawesome-webfont/fontawesome-webfont.svg#FontAwesome) format("svg");
}

.FontAwesome {
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block;
	text-align: center;
}

@font-face {
	font-family: "Open Sans";
	src: url(../valo/fonts/open-sans/OpenSans-Light-webfont.eot);
	src: url(../valo/fonts/open-sans/OpenSans-Light-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/fonts/open-sans/OpenSans-Light-webfont.woff) format("woff"), url(../valo/fonts/open-sans/OpenSans-Light-webfont.ttf) format("truetype");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "Open Sans";
	src: url(../valo/fonts/open-sans/OpenSans-Regular-webfont.eot);
	src: url(../valo/fonts/open-sans/OpenSans-Regular-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/fonts/open-sans/OpenSans-Regular-webfont.woff) format("woff"), url(../valo/fonts/open-sans/OpenSans-Regular-webfont.ttf) format("truetype");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Open Sans";
	src: url(../valo/fonts/open-sans/OpenSans-Semibold-webfont.eot);
	src: url(../valo/fonts/open-sans/OpenSans-Semibold-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/fonts/open-sans/OpenSans-Semibold-webfont.woff) format("woff"), url(../valo/fonts/open-sans/OpenSans-Semibold-webfont.ttf) format("truetype");
	font-weight: 600;
	font-style: normal;
}

@-webkit-keyframes v-rotate-360 {
		to {
		-webkit-transform: rotate(360deg);
	}
	}

@-moz-keyframes v-rotate-360 {
		to {
		-moz-transform: rotate(360deg);
	}
	}

@-o-keyframes v-rotate-360 {
		to {
		-o-transform: rotate(360deg);
	}
	}

@keyframes v-rotate-360 {
		to {
		transform: rotate(360deg);
	}
	}

@-webkit-keyframes v-progress-start {
		0% {
		width: 0%;
	}
		100% {
		width: 50%;
	}
	}

@-moz-keyframes v-progress-start {
		0% {
		width: 0%;
	}
		100% {
		width: 50%;
	}
	}

@keyframes v-progress-start {
		0% {
		width: 0%;
	}
		100% {
		width: 50%;
	}
	}

@-webkit-keyframes v-progress-delay {
		0% {
		width: 50%;
	}
		100% {
		width: 90%;
	}
	}

@-moz-keyframes v-progress-delay {
		0% {
		width: 50%;
	}
		100% {
		width: 90%;
	}
	}

@keyframes v-progress-delay {
		0% {
		width: 50%;
	}
		100% {
		width: 90%;
	}
	}

@-webkit-keyframes v-progress-wait {
		0% {
		width: 90%;
		height: 4px;
	}
		3% {
		width: 91%;
		height: 7px;
	}
		100% {
		width: 96%;
		height: 7px;
	}
	}

@-moz-keyframes v-progress-wait {
		0% {
		width: 90%;
		height: 4px;
	}
		3% {
		width: 91%;
		height: 7px;
	}
		100% {
		width: 96%;
		height: 7px;
	}
	}

@keyframes v-progress-wait {
		0% {
		width: 90%;
		height: 4px;
	}
		3% {
		width: 91%;
		height: 7px;
	}
		100% {
		width: 96%;
		height: 7px;
	}
	}

@-webkit-keyframes v-progress-wait-pulse {
		0% {
		opacity: 1;
	}
		50% {
		opacity: 0.1;
	}
		100% {
		opacity: 1;
	}
	}

@-moz-keyframes v-progress-wait-pulse {
		0% {
		opacity: 1;
	}
		50% {
		opacity: 0.1;
	}
		100% {
		opacity: 1;
	}
	}

@keyframes v-progress-wait-pulse {
		0% {
		opacity: 1;
	}
		50% {
		opacity: 0.1;
	}
		100% {
		opacity: 1;
	}
	}

/**
 * Outputs the context menu selectors and styles, which is used by Table and Tree for instance.
 * 
 * @requires {mixin} valo-selection-item-style
 * @requires {mixin} valo-selection-item-selected-style
 */

/**
 * The background color for overlay elements.
 *
 * @type color
 * @group overlay
 */

/**
 * The backgound color for tooltips.
 *
 * @type color
 * @group tooltip
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-absolutelayout) - 
 *
 * @group absolutelayout
 */

/**
 * Outputs the selectors and properties for the Accordion component.
 *
 * @param {string} $primary-stylename (v-accordion) - the primary style name for the selectors
 * @param {bool} $include-additional-styles - should the mixin output all the different style variations of the component
 * @group accordion
 */

/**
 * Outputs the selectors and properties for the Button component.
 *
 * @param {string} $primary-stylename (v-button) - the primary style name for the selectors
 * @param {bool} $include-additional-styles - should the mixin output all the different style variations of the component
 *
 * @group button
 */

/**
 * A list of colors for custom event colors. Can be an empty list of you don't 
 * need any custom event colors.
 * 
 * @example javascript
 * // Java code
 * // 'event' is an instance of EditableCalendarEvent
 * event.setStyleName("color1"); // 1st color in the list
 * event.setStyleName("color2"); // 2nd color in the list
 * // etc.
 * 
 * @group calendar
 */

/**
 * Outputs the selectors and properties for the CheckBox component.
 *
 * @param {string} $primary-stylename (v-checkbox) - the primary style name for the selectors
 * @param {bool} $include-additional-styles - should the mixin output all the different style variations of the component
 *
 * @group checkbox
 */

/**
 * Outputs the global selectors and properties for the ColorPicker component - styles which are
 * considered mandatory for the component to work properly.
 *
 * @param {string} $primary-stylename (v-colorpicker) - the primary style name for the selectors
 *
 * @group colorpicker
 */

/**
 * Outputs the selectors and properties for the ComboBox component.
 *
 * @param {string} $primary-stylename (v-filterselect) - the primary style name for the selectors
 * @param {bool} $include-additional-styles - should the mixin output all the different style variations of the component
 *
 * @group combobox
 */

/**
 * The amount of spacing between different widgets in a component group.
 * If null, a computed value is used ($v-border size * -1, or 1px if $v-border size is 0)
 * 
 * @group csslayout
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-customcomponent) - 
 *
 * @group customcomponent
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-customlayout) - 
 *
 * @group customlayout
 */

/**
 * Outputs the selectors and properties for the DateField component.
 *
 * @param {string} $primary-stylename (v-datefield) - the primary style name for the selectors
 * @param {bool} $include-additional-styles - should the mixin output all the different style variations of the component
 *
 * @group datefield
 */

/**
 * Outputs the styles and selectors for the DragAndDropWrapper component.
 * 
 * @param {string} $primary-stylename (v-ddwrapper) - the primary style name for the selectors
 * 
 * @group drag-n-drop
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-form) - 
 *
 * @group form
 */

/**
 * Outputs the selectors and properties for the FormLayout component.
 *
 * @param {string} $primary-stylename (v-formlayout) - the primary style name for the selectors
 * @param {bool} $include-additional-styles - should the mixin output all the different style variations of the component
 *
 * @group formlayout
 */

/**
 *
 * @group table
 */

@-webkit-keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@-moz-keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@-webkit-keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

@-moz-keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

@keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

/**
 *
 *
 * @param {string} $primary-stylename (v-gridlayout) - 
 *
 * @group gridlayout
 */

/**
 * The font weight for headers.
 * 
 * @group label
 */

/**
 *
 * @group link
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-loginform) - 
 *
 * @group loginform
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-menubar) - 
 * @param {bool} $include-additional-styles - 
 *
 * @group menubar
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-nativebutton) - 
 *
 * @group nativebutton
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-select) - 
 *
 * @group nativeselect
 */

/**
 *
 * @group notification
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-select-optiongroup) - 
 * @param {bool} $include-additional-styles - 
 *
 * @group optiongroup
 */

/**
 *
 *
 *
 * @group orderedlayout
 */

/**
 *
 * @group panel
 */

@-webkit-keyframes v-popupview-animate-in {
		0% {
		-webkit-transform: scale(0);
	}
	}

@-moz-keyframes v-popupview-animate-in {
		0% {
		-moz-transform: scale(0);
	}
	}

@keyframes v-popupview-animate-in {
		0% {
		-webkit-transform: scale(0);
		-moz-transform: scale(0);
		-ms-transform: scale(0);
		-o-transform: scale(0);
		transform: scale(0);
	}
	}

/**
 *
 * @group progressbar
 */

/**
 *
 * @group richtextarea
 */

/**
 *
 * @group slider
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-splitpanel) - 
 * @param {bool} $include-additional-styles - 
 *
 * @group splitpanel
 */

/**
 *
 * @group table
 */

/**
 * Should the tabsheet content changes be animated.
 *
 * @group tabsheet
 */

/**
 * The background color for text fields.
 * @group textfield
 */

/**
 * Outputs the selectors and properties for the TextArea component.
 *
 * @param {string} $primary-stylename (v-textarea) - the primary style name for the selectors
 * @param {bool} $include-additional-styles - should the mixin output all the different style variations of the component
 *
 * @group textarea
 */

/**
 *
 * @group tree
 */

/**
 *
 * @group table
 */

@-webkit-keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@-moz-keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@-webkit-keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

@-moz-keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

@keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

/**
 *
 * @group table
 */

@-webkit-keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@-moz-keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@-webkit-keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

@-moz-keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

@keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

/**
 *
 *
 * @param {string} $primary-stylename (v-treetable) - 
 *
 * @group treetable
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-select-twincol) - 
 *
 * @group twin-column-select
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-upload) -
 *
 * @group upload
 */

/**
 * @group window
 */

@-webkit-keyframes valo-modal-window-indication {
		0% {
		opacity: 0;
	}
		100% {
		opacity: 1;
	}
	}

@-moz-keyframes valo-modal-window-indication {
		0% {
		opacity: 0;
	}
		100% {
		opacity: 1;
	}
	}

@keyframes valo-modal-window-indication {
		0% {
		opacity: 0;
	}
		100% {
		opacity: 1;
	}
	}

@-webkit-keyframes valo-animate-out-scale-down-fade {
		100% {
		-webkit-transform: scale(0.8);
		opacity: 0;
	}
	}

@-moz-keyframes valo-animate-out-scale-down-fade {
		100% {
		-moz-transform: scale(0.8);
		opacity: 0;
	}
	}

@keyframes valo-animate-out-scale-down-fade {
		100% {
		-webkit-transform: scale(0.8);
		-moz-transform: scale(0.8);
		-ms-transform: scale(0.8);
		-o-transform: scale(0.8);
		transform: scale(0.8);
		opacity: 0;
	}
	}

/**
 * @group valo-menu
 */

.v-vaadin-version:after {
	content: "8.20.3";
}

.v-widget {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	white-space: normal;
}

.v-generated-body {
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: 0;
}

.v-app {
	height: 100%;
	-webkit-tap-highlight-color: transparent;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.v-app input[type="text"], .v-app .v-slot > .v-caption, .v-app .v-gridlayout-slot > .v-caption, .v-app .v-has-caption > .v-caption, .v-app .v-formlayout-captioncell > .v-caption, .v-app .v-csslayout > .v-caption {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.v-app input::-ms-clear {
	display: none;
}

.v-ui {
	position: relative;
}

.v-ui.v-ui-embedded {
	margin-top: -1px;
	border-top: 1px solid transparent;
}

.v-ui:focus {
	outline: none;
}

.v-overlay-container {
	width: 0;
	height: 0;
}

.v-drag-element {
	z-index: 60000;
	position: absolute !important;
	cursor: default;
}

.v-clip {
	overflow: hidden;
}

.v-scrollable {
	overflow: auto;
}

.v-scrollable  > .v-widget {
	vertical-align: middle;
	overflow: hidden;
}

.v-ios.v-webkit .v-scrollable {
	-webkit-overflow-scrolling: touch;
}

.v-ios5.v-webkit .v-scrollable {
	-webkit-overflow-scrolling: none;
}

.v-webkit.v-ios .v-browserframe {
	-webkit-overflow-scrolling: touch;
	overflow: auto;
}

.v-assistive-device-only, .v-assistive-device-only-label label {
	position: absolute;
	top: -2000px;
	left: -2000px;
	width: 10px;
	overflow: hidden;
}

.v-icon {
	cursor: inherit;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.v-icon, .v-errorindicator, .v-required-field-indicator {
	display: inline-block;
	line-height: inherit;
}

.v-caption {
	display: inline-block;
	white-space: nowrap;
	line-height: 1.55;
}

.v-captiontext {
	display: inline-block;
	line-height: inherit;
}

div.v-layout.v-horizontal.v-widget {
	white-space: nowrap;
}

.v-layout.v-vertical > .v-expand, .v-layout.v-horizontal > .v-expand {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.v-slot, .v-spacing {
	display: inline-block;
	white-space: nowrap;
	vertical-align: top;
}

.v-vertical > .v-slot:after {
	display: inline-block;
	clear: both;
	width: 0;
	height: 0;
	overflow: hidden;
}

.v-vertical > .v-slot, .v-vertical > .v-expand > .v-slot {
	display: block;
	clear: both;
}

.v-horizontal > .v-slot, .v-horizontal > .v-expand > .v-slot {
	height: 100%;
}

.v-horizontal > .v-expand > .v-slot {
	position: relative;
}

.v-vertical > .v-spacing, .v-vertical > .v-expand > .v-spacing {
	width: 0 !important;
	display: block;
	clear: both;
}

.v-horizontal > .v-spacing, .v-horizontal > .v-expand > .v-spacing {
	height: 0 !important;
}

.v-align-middle:before, .v-align-bottom:before, .v-expand > .v-align-middle:before, .v-expand > .v-align-bottom:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	width: 0;
}

.v-align-middle, .v-align-bottom {
	white-space: nowrap;
}

.v-align-middle > .v-widget, .v-align-bottom > .v-widget {
	display: inline-block;
}

.v-align-middle, .v-align-middle > .v-widget {
	vertical-align: middle;
}

.v-align-bottom, .v-align-bottom > .v-widget {
	vertical-align: bottom;
}

.v-align-center {
	text-align: center;
}

.v-align-center > .v-widget {
	margin-left: auto;
	margin-right: auto;
}

.v-align-right {
	text-align: right;
}

.v-align-right > .v-widget {
	margin-left: auto;
}

.v-has-caption, .v-has-caption > .v-caption {
	display: inline-block;
}

.v-caption-on-left, .v-caption-on-right {
	white-space: nowrap;
}

.v-caption-on-top > .v-caption, .v-caption-on-bottom > .v-caption {
	display: block;
}

.v-caption-on-left > .v-caption {
	padding-right: 0.5em;
}

.v-caption-on-left > .v-widget, .v-caption-on-right > .v-widget {
	display: inline-block;
}

.v-has-caption.v-has-width > .v-widget {
	width: 100% !important;
}

.v-has-caption.v-has-height > .v-widget {
	height: 100% !important;
}

.v-gridlayout {
	position: relative;
}

.v-gridlayout-slot {
	position: absolute;
	line-height: 1.55;
}

.v-gridlayout-spacing-on {
	overflow: hidden;
}

.v-gridlayout-spacing, .v-gridlayout-spacing-off {
	padding-left: 0;
	padding-top: 0;
}

.v-gridlayout-spacing-off {
	overflow: hidden;
}

.v-calendar-month-day-scrollable {
	overflow-y: scroll;
}

.v-calendar-week-wrapper {
	position: relative;
	overflow: hidden;
}

.v-calendar-current-time {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: red;
	z-index: 2;
}

.v-calendar-event-resizetop, .v-calendar-event-resizebottom {
	position: absolute;
	height: 5%;
	min-height: 3px;
	width: 100%;
	z-index: 1;
}

.v-calendar-event-resizetop {
	cursor: row-resize;
	top: 0;
}

.v-calendar-event-resizebottom {
	cursor: row-resize;
	bottom: 0;
}

.v-calendar-header-month td:first-child {
	padding-left: 20px;
}

.v-calendar-month-sizedheight .v-calendar-month-day {
	height: 100px;
}

.v-calendar-month-sizedwidth .v-calendar-month-day {
	width: 100px;
}

.v-calendar-header-month-Hsized .v-calendar-header-day {
	width: 101px;
}

.v-calendar-header-month-Hsized td:first-child {
	padding-left: 21px;
}

.v-calendar-header-day-Hsized {
	width: 200px;
}

.v-calendar-week-numbers-Vsized .v-calendar-week-number {
	height: 100px;
	line-height: 100px;
}

.v-calendar-week-wrapper-Vsized {
	height: 400px;
	overflow-x: hidden !important;
}

.v-calendar-times-Vsized .v-calendar-time {
	height: 38px;
}

.v-calendar-times-Hsized .v-calendar-time {
	width: 42px;
}

.v-calendar-day-times-Vsized .v-datecellslot, .v-calendar-day-times-Vsized .v-datecellslot-even {
	height: 18px;
}

.v-calendar-day-times-Hsized, .v-calendar-day-times-Hsized .v-datecellslot, .v-calendar-day-times-Hsized .v-datecellslot-even {
	width: 200px;
}

.v-colorpicker-popup.v-window {
	min-width: 220px !important;
}

.v-colorpicker-gradient-container {
	overflow: visible !important;
}

.v-colorpicker-gradient-clicklayer {
	opacity: 0;
	filter: alpha(opacity=0) ;
}

.rgb-gradient .v-colorpicker-gradient-background {
	background: url(../valo/components/img/colorpicker/gradient2.png);
}

.hsv-gradient .v-colorpicker-gradient-foreground {
	background: url(../valo/components/img/colorpicker/gradient.png);
}

.v-colorpicker-gradient-higherbox:before {
	content: "";
	width: 11px;
	height: 11px;
	border-radius: 7px;
	border: 1px solid #fff;
	-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(0, 0, 0, 0.3);
	position: absolute;
	bottom: -6px;
	left: -6px;
}

.v-colorpicker-popup .v-slider.v-slider-red:before {
	background-color: red;
}

.v-colorpicker-popup .v-slider.v-slider-green:before {
	background-color: green;
}

.v-colorpicker-popup .v-slider.v-slider-blue:before {
	background-color: blue;
}

.v-colorpicker-popup .v-slider.hue-slider:before {
	background: url(../valo/components/img/colorpicker/slider_hue_bg.png);
}

.v-colorpicker-popup input.v-textfield-dark {
	color: #fff;
}

.v-colorpicker-popup input.v-textfield-light {
	color: #000;
}

.v-colorpicker-grid {
	height: 319px;
}

.v-colorpicker-popup .colorselect td {
	line-height: 15px;
}

.v-table-header table, .v-table-footer table, .v-table-table {
	border-spacing: 0;
	border-collapse: separate;
	margin: 0;
	padding: 0;
	border: 0;
	line-height: 1.55;
}

.v-table-resizer, .v-table-sort-indicator {
	float: right;
}

.v-table-caption-container-align-center {
	text-align: center;
}

.v-table-caption-container-align-right {
	text-align: right;
}

.v-table-header td, .v-table-footer td, .v-table-cell-content {
	padding: 0;
}

.v-table-sort-indicator {
	width: 0;
}

.v-tabsheet-hidetabs > .v-tabsheet-tabcontainer, .v-tabsheet-spacertd, .v-disabled .v-tabsheet-scroller, .v-tabsheet .v-disabled .v-tabsheet-caption-close {
	display: none;
}

.v-tabsheet {
	overflow: visible !important;
	position: relative;
}

.v-tabsheet-tabcontainer table, .v-tabsheet-tabcontainer tbody, .v-tabsheet-tabcontainer tr {
	display: inline-block;
	border-spacing: 0;
	border-collapse: collapse;
	vertical-align: top;
}

.v-tabsheet-tabcontainer td {
	display: inline-block;
	padding: 0;
}

.v-tabsheet-tabs {
	white-space: nowrap;
	box-sizing: border-box;
}

.v-tabsheet-content {
	position: relative;
}

.v-tabsheet-content  > div > .v-scrollable  > .v-margin-top {
	padding-top: 12px;
}

.v-tabsheet-content  > div > .v-scrollable  > .v-margin-right {
	padding-right: 12px;
}

.v-tabsheet-content  > div > .v-scrollable  > .v-margin-bottom {
	padding-bottom: 12px;
}

.v-tabsheet-content  > div > .v-scrollable  > .v-margin-left {
	padding-left: 12px;
}

.v-splitpanel-vertical, .v-splitpanel-horizontal {
	overflow: hidden;
	white-space: nowrap;
}

.v-splitpanel-hsplitter {
	z-index: 100;
	cursor: e-resize;
	cursor: col-resize;
}

.v-splitpanel-vsplitter {
	z-index: 100;
	cursor: s-resize;
	cursor: row-resize;
}

.v-splitpanel-hsplitter:after, .v-splitpanel-vsplitter:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.v-splitpanel-hsplitter div, .v-splitpanel-vsplitter div {
	width: inherit;
	height: inherit;
	overflow: hidden;
	position: relative;
}

.v-splitpanel-hsplitter div:before, .v-splitpanel-vsplitter div:before {
	box-sizing: border-box;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.v-disabled [class$="splitter"] div {
	cursor: default;
}

.v-disabled [class$="splitter"] div:before {
	display: none;
}

.v-splitpanel-horizontal > div  > .v-splitpanel-second-container {
	position: static !important;
	display: inline-block;
	vertical-align: top;
}

.v-splitpanel-horizontal > div  > .v-splitpanel-first-container {
	display: inline-block;
	vertical-align: top;
}

.valo.v-app, .valo.v-app-loading {
	font: 300 16px/1.55 "Open Sans", sans-serif;
	color: #464646;
	background-color: #fafafa;
	cursor: default;
}

.valo .v-app-loading {
	width: 100%;
	height: 100%;
	background: #fafafa;
}

.valo .v-app-loading:before {
	content: "";
	position: fixed;
	z-index: 100;
	top: 45%;
	left: 50%;
	width: 28px;
	height: 28px;
	padding: 9px;
	margin-top: -24px;
	margin-left: -24px;
	background: #fff url(../valo/shared/img/spinner.gif) no-repeat 50%;
	border-radius: 4px;
}

.valo .v-loading-indicator {
	position: fixed !important;
	z-index: 99999;
	left: 0;
	right: auto;
	top: 0;
	width: 50%;
	opacity: 1;
	height: 4px;
	background-color: #197de1;
	pointer-events: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	-webkit-animation: v-progress-start 1000ms 200ms both;
	-moz-animation: v-progress-start 1000ms 200ms both;
	animation: v-progress-start 1000ms 200ms both;
}

.valo .v-loading-indicator[style*="none"] {
	display: block !important;
	width: 100% !important;
	opacity: 0;
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
	-webkit-transition: opacity 500ms 300ms, width 300ms;
	-moz-transition: opacity 500ms 300ms, width 300ms;
	transition: opacity 500ms 300ms, width 300ms;
}

.valo .v-loading-indicator-delay {
	width: 90%;
	-webkit-animation: v-progress-delay 3.8s forwards;
	-moz-animation: v-progress-delay 3.8s forwards;
	animation: v-progress-delay 3.8s forwards;
}

.v-ff .valo .v-loading-indicator-delay {
	width: 50%;
}

.valo .v-loading-indicator-wait {
	width: 96%;
	-webkit-animation: v-progress-wait 5s forwards, v-progress-wait-pulse 1s 4s infinite backwards;
	-moz-animation: v-progress-wait 5s forwards, v-progress-wait-pulse 1s 4s infinite backwards;
	animation: v-progress-wait 5s forwards, v-progress-wait-pulse 1s 4s infinite backwards;
}

.v-ff .valo .v-loading-indicator-wait {
	width: 90%;
}

.valo .v-scrollable:focus {
	outline: none;
}

.valo img.v-icon {
	vertical-align: middle;
}

.valo .v-caption {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
}

.valo .v-caption-on-left .v-caption, .valo .v-caption-on-right .v-caption {
	padding-top: 0;
	padding-bottom: 0;
}

.valo .v-icon + .v-captiontext, .valo .v-icon + span {
	margin-left: 7px;
}

.valo .v-icon + .v-captiontext:empty, .valo .v-icon + span:empty {
	margin-left: 0;
}

.valo .v-errorindicator {
	color: #ed473b;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.valo .v-errorindicator:before {
	content: "!";
}

.valo .v-errorindicator-info {
	color: #00a7f5;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.valo .v-errorindicator-info:before {
	content: "!";
}

.valo .v-errorindicator-warning {
	color: #fc9c00;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.valo .v-errorindicator-warning:before {
	content: "!";
}

.valo .v-errorindicator-error {
	color: #ed473b;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.valo .v-errorindicator-error:before {
	content: "!";
}

.valo .v-errorindicator-critical {
	color: #fa007d;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.valo .v-errorindicator-critical:before {
	content: "!";
}

.valo .v-errorindicator-system {
	color: #bb00ff;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.valo .v-errorindicator-system:before {
	content: "!";
}

.valo .v-required-field-indicator {
	color: #ed473b;
	padding: 0 0.2em;
}

.valo select {
	font: inherit;
	font-weight: 400;
	line-height: inherit;
	padding: 5px;
	margin: 0;
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	color: #464646;
}

.valo select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-disabled {
	cursor: default !important;
}

.valo .v-drag-element {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	overflow: hidden;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-draggable {
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	-webkit-user-select: none !important;
	user-select: none !important;
}

.valo .v-tooltip {
	background-color: rgba(50, 50, 50, 0.9);
	-webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	color: white;
	padding: 5px 9px;
	border-radius: 3px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 14px;
}

.valo .v-tooltip div[style*="width"] {
	width: auto !important;
}

.valo .v-tooltip .v-errormessage {
	background-color: white;
	background-color: #fff;
	color: #ed473b;
	margin: -5px -9px;
	padding: 5px 9px;
	max-height: 10em;
	overflow: auto;
	font-weight: 400;
}

.valo .v-tooltip .v-errormessage h2:only-child {
	font: inherit;
	line-height: inherit;
}

.valo .v-tooltip .v-errormessage-info {
	color: #00a7f5;
}

.valo .v-tooltip .v-errormessage-warning {
	color: #fc9c00;
}

.valo .v-tooltip .v-errormessage-error {
	color: #ed473b;
}

.valo .v-tooltip .v-errormessage-critical {
	color: #fa007d;
}

.valo .v-tooltip .v-errormessage-system {
	color: #bb00ff;
}

.valo .v-tooltip .v-tooltip-text {
	max-height: 10em;
	overflow: auto;
	margin-top: 10px;
}

.valo .v-tooltip .v-tooltip-text pre {
	margin: 0px;
}

.valo .v-tooltip .v-errormessage[aria-hidden="true"] + .v-tooltip-text {
	margin-top: 0;
}

.valo .v-tooltip h1, .valo .v-tooltip h2, .valo .v-tooltip h3, .valo .v-tooltip h4 {
	color: inherit;
}

.valo .v-tooltip pre.v-tooltip-pre {
	font: inherit;
	white-space: pre-wrap;
}

.valo .v-contextmenu {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 4px 4px;
}

.valo .v-contextmenu[class*="animate-in"] {
	-webkit-animation: valo-overlay-animate-in 120ms;
	-moz-animation: valo-overlay-animate-in 120ms;
	animation: valo-overlay-animate-in 120ms;
}

.valo .v-contextmenu[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.valo .v-contextmenu table {
	border-spacing: 0;
}

.valo .v-contextmenu .gwt-MenuItem {
	cursor: pointer;
	line-height: 27px;
	padding: 0 20px 0 10px;
	border-radius: 3px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	display: block;
}

.valo .v-contextmenu .gwt-MenuItem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #0957a6;
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.valo .v-contextmenu .gwt-MenuItem .v-icon {
	max-height: 27px;
	margin-right: 5px;
	min-width: 1em;
}

.valo .v-contextmenu .gwt-MenuItem-selected {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.valo .v-reconnect-dialog {
	color: white;
	top: 12px;
	right: 12px;
	max-width: 100%;
	border-radius: 0;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	padding: 12px 15px;
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	line-height: 22px;
	text-align: center;
}

.valo .v-reconnect-dialog .text {
	display: inline-block;
	padding-left: 10px;
}

.valo .v-reconnect-dialog .spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(25, 125, 225, 0.2);
	border-top-color: #197de1;
	border-right-color: #197de1;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
	display: none;
	vertical-align: middle;
}

.valo .v-reconnect-dialog.active .spinner {
	display: inline-block;
}

.valo .v-absolutelayout-wrapper {
	position: absolute;
}

.valo .v-absolutelayout-margin, .valo .v-absolutelayout-canvas {
	box-sizing: border-box;
}

.valo .v-absolutelayout.v-has-height > div, .valo .v-absolutelayout.v-has-height .v-absolutelayout-margin {
	height: 100%;
}

.valo .v-absolutelayout.v-has-height > div, .valo .v-absolutelayout.v-has-width .v-absolutelayout-margin {
	width: 100%;
}

.valo .v-margin-top {
	padding-top: 37px;
}

.valo .v-margin-right {
	padding-right: 37px;
}

.valo .v-margin-bottom {
	padding-bottom: 37px;
}

.valo .v-margin-left {
	padding-left: 37px;
}

.valo .v-spacing {
	width: 12px;
	height: 12px;
}

.valo .v-verticallayout-well, .valo .v-horizontallayout-well {
	background: #f5f5f5;
	color: #454545;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	border: 1px solid #c5c5c5;
}

.valo .v-verticallayout-well  > div > [class*="-caption"], .valo .v-horizontallayout-well  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-verticallayout-well  > .v-margin-top, .valo .v-horizontallayout-well  > .v-margin-top {
	padding-top: 12px;
}

.valo .v-verticallayout-well  > .v-margin-right, .valo .v-horizontallayout-well  > .v-margin-right {
	padding-right: 12px;
}

.valo .v-verticallayout-well  > .v-margin-bottom, .valo .v-horizontallayout-well  > .v-margin-bottom {
	padding-bottom: 12px;
}

.valo .v-verticallayout-well  > .v-margin-left, .valo .v-horizontallayout-well  > .v-margin-left {
	padding-left: 12px;
}

.valo .v-verticallayout-card, .valo .v-horizontallayout-card {
	background: white;
	color: #474747;
	border-radius: 4px;
	border: 1px solid #d5d5d5;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.valo .v-verticallayout-card  > .v-margin-top, .valo .v-horizontallayout-card  > .v-margin-top {
	padding-top: 12px;
}

.valo .v-verticallayout-card  > .v-margin-right, .valo .v-horizontallayout-card  > .v-margin-right {
	padding-right: 12px;
}

.valo .v-verticallayout-card  > .v-margin-bottom, .valo .v-horizontallayout-card  > .v-margin-bottom {
	padding-bottom: 12px;
}

.valo .v-verticallayout-card  > .v-margin-left, .valo .v-horizontallayout-card  > .v-margin-left {
	padding-left: 12px;
}

.valo .v-horizontallayout-wrapping {
	white-space: normal !important;
}

.valo .v-horizontallayout-wrapping > .v-spacing + .v-slot, .valo .v-horizontallayout-wrapping > .v-slot:first-child {
	margin-bottom: 12px;
}

.valo .v-horizontallayout-wrapping > .v-slot:first-child:last-child {
	margin-bottom: 0;
}

.valo .v-button {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.valo .v-button:before {
	content: "";
	display: inline-block;
	width: 0;
	height: 100%;
	vertical-align: middle;
}

.valo .v-button > div {
	vertical-align: middle;
}

.v-sa .valo .v-button:before {
	height: 110%;
}

.v-ff .valo .v-button:before {
	height: 107%;
}

.v-ie .valo .v-button:before {
	margin-top: 4px;
}

.valo .v-button:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
}

.valo .v-button:focus:after {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.valo .v-button.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-button.v-disabled:after {
	display: none;
}

.valo .v-button:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-button:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.valo .v-button:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-button:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.valo .v-button-primary {
	height: 37px;
	padding: 0 16px;
	color: #ecf2f8;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #1362b1;
	border-top-color: #156ab3;
	border-bottom-color: #1156a8;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	-webkit-box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	padding: 0 19px;
	font-weight: bold;
	min-width: 81px;
}

.valo .v-button-primary:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-button-primary:hover:after {
	background-color: rgba(90, 163, 237, 0.1);
}

.valo .v-button-primary:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-button-primary:active:after {
	background-color: rgba(2, 62, 122, 0.2);
}

.valo .v-button-friendly {
	height: 37px;
	padding: 0 16px;
	color: #eaf4e9;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #227719;
	border-top-color: #257d1a;
	border-bottom-color: #1e6b15;
	background-color: #2c9720;
	background-image: -webkit-linear-gradient(top, #2f9f22 2%, #26881b 98%);
	background-image: linear-gradient(to bottom,#2f9f22 2%, #26881b 98%);
	-webkit-box-shadow: inset 0 1px 0 #46b33a, inset 0 -1px 0 #26811b, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #46b33a, inset 0 -1px 0 #26811b, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.valo .v-button-friendly:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-button-friendly:hover:after {
	background-color: rgba(65, 211, 48, 0.1);
}

.valo .v-button-friendly:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-button-friendly:active:after {
	background-color: rgba(14, 86, 6, 0.2);
}

.valo .v-button-danger {
	height: 37px;
	padding: 0 16px;
	color: #f9f0ef;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #bb382e;
	border-top-color: #bc3c31;
	border-bottom-color: #b13028;
	background-color: #ed473b;
	background-image: -webkit-linear-gradient(top, #ee4c3f 2%, #e13e33 98%);
	background-image: linear-gradient(to bottom,#ee4c3f 2%, #e13e33 98%);
	-webkit-box-shadow: inset 0 1px 0 #ef786f, inset 0 -1px 0 #da3c31, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #ef786f, inset 0 -1px 0 #da3c31, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.valo .v-button-danger:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-button-danger:hover:after {
	background-color: rgba(243, 137, 129, 0.1);
}

.valo .v-button-danger:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-button-danger:active:after {
	background-color: rgba(146, 12, 2, 0.2);
}

.valo .v-button-borderless {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	color: inherit;
}

.valo .v-button-borderless:hover:after {
	background: transparent;
}

.valo .v-button-borderless:active:not(.v-disabled) {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
}

.valo .v-button-borderless:active:not(.v-disabled):after {
	background: transparent;
}

.valo .v-button-borderless-colored {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	color: #197de1;
}

.valo .v-button-borderless-colored:hover {
	color: #4396ea;
}

.valo .v-button-borderless-colored:hover:after {
	background: transparent;
}

.valo .v-button-borderless-colored:active:not(.v-disabled) {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
}

.valo .v-button-borderless-colored:active:not(.v-disabled):after {
	background: transparent;
}

.valo .v-button-quiet {
	visibility: hidden;
}

.valo .v-button-quiet:focus, .valo .v-button-quiet:hover {
	visibility: visible;
}

.valo .v-button-quiet [class*="wrap"] {
	visibility: visible;
}

.valo .v-button-quiet [class*="caption"] {
	display: inline-block;
}

.valo .v-button-link {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	color: inherit;
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.valo .v-button-link:hover:after {
	background: transparent;
}

.valo .v-button-link:active:not(.v-disabled) {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
}

.valo .v-button-link:active:not(.v-disabled):after {
	background: transparent;
}

.valo .v-button-link:hover {
	color: #4396ea;
}

.valo .v-button-link.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-button-tiny {
	height: 28px;
	padding: 0 13px;
	
	
	font-size: 12px;
	
	border-radius: 4px;
}

.valo .v-button-tiny:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-button-small {
	height: 31px;
	padding: 0 14px;
	
	
	font-size: 14px;
	
	border-radius: 4px;
}

.valo .v-button-small:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-button-large {
	height: 44px;
	padding: 0 19px;
	
	
	font-size: 20px;
	
	border-radius: 4px;
}

.valo .v-button-large:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-button-huge {
	height: 59px;
	padding: 0 26px;
	
	
	font-size: 26px;
	
	border-radius: 4px;
}

.valo .v-button-huge:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-button-icon-align-right [class*="wrap"] {
	display: inline-block;
}

.valo .v-button-icon-align-right .v-icon {
	float: right;
	margin-left: 13px;
}

.valo .v-button-icon-align-right .v-icon  + span:not(:empty) {
	margin-left: 0;
}

.valo .v-button-icon-align-top {
	height: auto;
	padding-top: 5px;
	padding-bottom: 5px;
}

.valo .v-button-icon-align-top [class*="wrap"] {
	display: inline-block;
}

.valo .v-button-icon-align-top .v-icon {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.valo .v-button-icon-align-top .v-icon  + span:not(:empty) {
	margin-top: 7px;
	margin-left: 0;
}

.valo .v-button-icon-only {
	width: 37px;
	padding: 0;
}

.valo .v-button-icon-only.v-button-tiny {
	width: 28px;
}

.valo .v-button-icon-only.v-button-small {
	width: 31px;
}

.valo .v-button-icon-only.v-button-large {
	width: 44px;
}

.valo .v-button-icon-only.v-button-huge {
	width: 59px;
}

.valo .v-button-icon-only .v-button-caption {
	display: none;
}

.valo .v-checkbox {
	position: relative;
	line-height: 19px;
	white-space: nowrap;
}

.valo .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .valo .v-checkbox {
	padding-left: 25px;
}

:root .valo .v-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .valo .v-checkbox > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .valo .v-checkbox > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .valo .v-checkbox > input ~ label:before, :root .valo .v-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 19px;
	height: 19px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 13px;
	text-align: center;
}

:root .valo .v-checkbox > input ~ label:before {
	height: 18.5px;
	padding: 0 9px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 19px;
}

:root .valo .v-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .valo .v-checkbox > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .valo .v-checkbox > input:checked ~ label:after {
	color: #197de1;
}

.valo .v-checkbox > .v-icon, .valo .v-checkbox > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.valo .v-checkbox.v-disabled  > label, .valo .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .valo .v-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.valo .v-checkbox.v-readonly  > label, .valo .v-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.valo .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .valo .v-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .valo .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-checkbox-small {
	position: relative;
	line-height: 16px;
	white-space: nowrap;
	font-size: 14px;
}

.valo .v-checkbox-small.v-has-width label {
	white-space: normal;
}

:root .valo .v-checkbox-small {
	padding-left: 21px;
}

:root .valo .v-checkbox-small label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .valo .v-checkbox-small > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .valo .v-checkbox-small > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .valo .v-checkbox-small > input ~ label:before, :root .valo .v-checkbox-small > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 11px;
	text-align: center;
}

:root .valo .v-checkbox-small > input ~ label:before {
	height: 15.5px;
	padding: 0 7px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 16px;
}

:root .valo .v-checkbox-small > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .valo .v-checkbox-small > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .valo .v-checkbox-small > input:checked ~ label:after {
	color: #197de1;
}

.valo .v-checkbox-small > .v-icon, .valo .v-checkbox-small > label .v-icon {
	margin: 0 5px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.valo .v-checkbox-small.v-disabled  > label, .valo .v-checkbox-small.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-checkbox-small.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .valo .v-checkbox-small.v-disabled > input:active ~ label:after {
	background: transparent;
}

.valo .v-checkbox-small.v-readonly  > label, .valo .v-checkbox-small.v-readonly  > .v-icon {
	cursor: default;
}

.valo .v-checkbox-small.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .valo .v-checkbox-small.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .valo .v-checkbox-small.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-checkbox-large {
	position: relative;
	line-height: 22px;
	white-space: nowrap;
	font-size: 20px;
}

.valo .v-checkbox-large.v-has-width label {
	white-space: normal;
}

:root .valo .v-checkbox-large {
	padding-left: 29px;
}

:root .valo .v-checkbox-large label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .valo .v-checkbox-large > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .valo .v-checkbox-large > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .valo .v-checkbox-large > input ~ label:before, :root .valo .v-checkbox-large > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 15px;
	text-align: center;
}

:root .valo .v-checkbox-large > input ~ label:before {
	height: 22px;
	padding: 0 10px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 22px;
}

:root .valo .v-checkbox-large > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .valo .v-checkbox-large > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .valo .v-checkbox-large > input:checked ~ label:after {
	color: #197de1;
}

.valo .v-checkbox-large > .v-icon, .valo .v-checkbox-large > label .v-icon {
	margin: 0 7px 0 4px;
	min-width: 1em;
	cursor: pointer;
}

.valo .v-checkbox-large.v-disabled  > label, .valo .v-checkbox-large.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-checkbox-large.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .valo .v-checkbox-large.v-disabled > input:active ~ label:after {
	background: transparent;
}

.valo .v-checkbox-large.v-readonly  > label, .valo .v-checkbox-large.v-readonly  > .v-icon {
	cursor: default;
}

.valo .v-checkbox-large.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .valo .v-checkbox-large.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .valo .v-checkbox-large.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-filterselect {
	position: relative;
	width: 185px;
	height: 37px;
	border-radius: 4px;
	white-space: nowrap;
}

.valo .v-filterselect [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 37px;
	border-radius: 4px;
	padding: 4px 9px;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 38px;
	border-radius: inherit;
}

.valo .v-filterselect [class*="input"].v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-filterselect [class*="input"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-filterselect [class*="input"][class*="prompt"] {
	color: #a3a3a3;
}

.valo .v-filterselect .v-icon + [class*="input"] {
	padding-left: 37px;
}

.valo .v-filterselect img.v-icon {
	max-height: 37px;
	margin-left: 9px;
}

.valo .v-filterselect span.v-icon {
	color: #474747;
	width: 37px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 9px;
}

.valo .v-filterselect[class*="prompt"] > [class*="input"] {
	color: #a3a3a3;
}

.valo .v-filterselect [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 37px;
	top: 1px;
	right: 1px;
	bottom: 1px;
	border-left: 1px solid #e4e4e4;
	color: #a3a3a3;
	border-radius: 0 3px 3px 0;
}

.valo .v-filterselect [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	position: absolute;
	width: 37px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.valo .v-filterselect [class$="button"]:hover:before {
	color: #474747;
}

.valo .v-filterselect [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
	background-color: rgba(128, 128, 128, 0.2);
}

.valo .v-filterselect.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-filterselect.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-filterselect.v-disabled [class$="button"]:active:after {
	display: none;
}

.valo .v-filterselect.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-filterselect.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.valo .v-filterselect.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-filterselect.v-readonly [class$="button"]:active:after {
	display: none;
}

.valo .v-filterselect.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.valo .v-filterselect.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-filterselect.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-filterselect .v-icon {
	position: absolute;
	pointer-events: none;
}

.valo .v-filterselect .v-icon.FontAwesome {
	margin-left: 0px;
}

.valo .v-filterselect-error .v-filterselect-input {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.valo .v-filterselect-error .v-filterselect-button {
	color: #ed473b;
	border-color: #ed473b;
}

.valo .v-filterselect-error-info .v-filterselect-input {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.valo .v-filterselect-error-info .v-filterselect-button {
	color: #00a7f5;
	border-color: #00a7f5;
}

.valo .v-filterselect-error-warning .v-filterselect-input {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.valo .v-filterselect-error-warning .v-filterselect-button {
	color: #fc9c00;
	border-color: #fc9c00;
}

.valo .v-filterselect-error-error .v-filterselect-input {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.valo .v-filterselect-error-error .v-filterselect-button {
	color: #ed473b;
	border-color: #ed473b;
}

.valo .v-filterselect-error-critical .v-filterselect-input {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.valo .v-filterselect-error-critical .v-filterselect-button {
	color: #fa007d;
	border-color: #fa007d;
}

.valo .v-filterselect-error-system .v-filterselect-input {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.valo .v-filterselect-error-system .v-filterselect-button {
	color: #bb00ff;
	border-color: #bb00ff;
}

.valo .v-filterselect-suggestpopup {
	margin-top: 5px !important;
}

.valo .v-filterselect-suggestpopup[class*="animate-in"] {
	-webkit-animation: valo-overlay-animate-in 120ms;
	-moz-animation: valo-overlay-animate-in 120ms;
	animation: valo-overlay-animate-in 120ms;
}

.valo .v-filterselect-suggestpopup [class$="suggestmenu"] {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 4px 4px;
	box-sizing: content-box;
	position: relative;
	z-index: 1;
	display: block;
}

.valo .v-filterselect-suggestpopup table, .valo .v-filterselect-suggestpopup tbody, .valo .v-filterselect-suggestpopup tr, .valo .v-filterselect-suggestpopup td {
	display: block;
	width: 100%;
	overflow-y: hidden;
	float: left;
	clear: both;
}

.valo .v-filterselect-suggestpopup .gwt-MenuItem {
	cursor: pointer;
	line-height: 27px;
	padding: 0 20px 0 10px;
	border-radius: 3px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	height: 27px;
	box-sizing: border-box;
	text-overflow: ellipsis;
	overflow-x: hidden;
}

.valo .v-filterselect-suggestpopup .gwt-MenuItem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #0957a6;
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.valo .v-filterselect-suggestpopup .gwt-MenuItem .v-icon {
	max-height: 27px;
	margin-right: 5px;
	min-width: 1em;
}

.valo .v-filterselect-suggestpopup .gwt-MenuItem-selected {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.valo .v-filterselect-suggestpopup [class$="status"] {
	position: absolute;
	right: 4px;
	background: rgba(212, 212, 212, 0.9);
	color: #3b3b3b;
	border-radius: 0 0 4px 4px;
	height: 23px;
	bottom: -23px;
	font-size: 12px;
	line-height: 23px;
	padding: 0 6px;
	cursor: default;
	pointer-events: none;
	-webkit-animation: valo-animate-in-slide-down 200ms 80ms backwards;
	-moz-animation: valo-animate-in-slide-down 200ms 80ms backwards;
	animation: valo-animate-in-slide-down 200ms 80ms backwards;
}

.valo .v-filterselect-suggestpopup [class$="status"]  > * {
	color: #3b3b3b;
	text-decoration: none;
}

.valo .v-filterselect-suggestpopup div[class*="page"] {
	position: absolute;
	z-index: 3;
	right: 0;
	opacity: 0.2;
	filter: alpha(opacity=20) ;
	cursor: pointer;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	font-family: ThemeIcons;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	color: #464646;
}

.valo .v-filterselect-suggestpopup div[class*="page"]:after {
	content: "";
	position: absolute;
	display: block;
	border-radius: 50%;
}

.valo .v-filterselect-suggestpopup div[class*="page"]:hover {
	opacity: 1;
	filter: none ;
	background: rgba(250, 250, 250, 0.5);
}

.valo .v-filterselect-suggestpopup div[class*="page"]:hover:after {
	top: -10px;
	bottom: -10px;
	left: -20px;
	right: -20px;
}

.valo .v-filterselect-suggestpopup div[class*="page"] span {
	display: none;
}

.valo .v-filterselect-suggestpopup:hover div[class*="page"] {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.valo .v-filterselect-suggestpopup div[class*="prev"] {
	top: 0;
	-webkit-transform-origin: 100% 0%;
	-moz-transform-origin: 100% 0%;
	-ms-transform-origin: 100% 0%;
	-o-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
	border-radius: 0 4px 0 4px;
}

.valo .v-filterselect-suggestpopup div[class*="prev"]:before {
	content: "\f0d8";
}

.valo .v-filterselect-suggestpopup div[class*="next"] {
	bottom: 0;
	-webkit-transform-origin: 100% 100%;
	-moz-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	-o-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
	border-radius: 4px 0 4px 0;
}

.valo .v-filterselect-suggestpopup div[class*="next"]:before {
	content: "\f0d7";
}

.valo .v-filterselect-suggestpopup div[class*="-off"] {
	display: none;
}

.valo .v-filterselect-no-input {
	cursor: pointer;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.valo .v-filterselect-no-input [class*="input"] {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	cursor: inherit;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	text-shadow: inherit;
	text-overflow: ellipsis;
	border-radius: inherit;
}

.valo .v-filterselect-no-input [class*="input"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-filterselect-no-input [class$="button"] {
	border-left: none !important;
}

.valo .v-filterselect-no-input:hover [class$="button"]:before {
	color: inherit;
}

.valo .v-filterselect-borderless .v-filterselect-input {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.valo .v-filterselect-borderless .v-filterselect-input:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-filterselect-borderless .v-filterselect-input[class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-filterselect-borderless .v-filterselect-button {
	border: none;
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-filterselect-borderless.v-filterselect-prompt .v-filterselect-input {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-filterselect-align-right input {
	text-align: right;
}

.valo .v-filterselect-align-center input {
	text-align: center;
}

.valo .v-filterselect-tiny {
	height: 28px;
	
	font-size: 12px;
}

.valo .v-filterselect-tiny [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 28px;
	
	padding: 3px 5px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 29px;
	border-radius: inherit;
}

.valo .v-filterselect-tiny .v-icon + [class*="input"] {
	padding-left: 28px;
}

.valo .v-filterselect-tiny img.v-icon {
	max-height: 28px;
	margin-left: 5px;
}

.valo .v-filterselect-tiny span.v-icon {
	
	width: 28px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 5px;
}

.valo .v-filterselect-tiny [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 28px;
	border-radius: 0 4px 4px 0;
}

.valo .v-filterselect-tiny [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	position: absolute;
	width: 28px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.valo .v-filterselect-tiny [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.valo .v-filterselect-tiny.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-filterselect-tiny.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-filterselect-tiny.v-disabled [class$="button"]:active:after {
	display: none;
}

.valo .v-filterselect-tiny.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-filterselect-tiny.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.valo .v-filterselect-tiny.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-filterselect-tiny.v-readonly [class$="button"]:active:after {
	display: none;
}

.valo .v-filterselect-tiny.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.valo .v-filterselect-tiny.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-filterselect-tiny.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-filterselect-compact, .valo .v-filterselect-small {
	height: 31px;
	
}

.valo .v-filterselect-compact [class*="input"], .valo .v-filterselect-small [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 31px;
	
	padding: 3px 6px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 32px;
	border-radius: inherit;
}

.valo .v-filterselect-compact .v-icon + [class*="input"], .valo .v-filterselect-small .v-icon + [class*="input"] {
	padding-left: 31px;
}

.valo .v-filterselect-compact img.v-icon, .valo .v-filterselect-small img.v-icon {
	max-height: 31px;
	margin-left: 6px;
}

.valo .v-filterselect-compact span.v-icon, .valo .v-filterselect-small span.v-icon {
	
	width: 31px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 6px;
}

.valo .v-filterselect-compact [class$="button"], .valo .v-filterselect-small [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 31px;
	border-radius: 0 4px 4px 0;
}

.valo .v-filterselect-compact [class$="button"]:before, .valo .v-filterselect-small [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	position: absolute;
	width: 31px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.valo .v-filterselect-compact [class$="button"]:active:after, .valo .v-filterselect-small [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.valo .v-filterselect-compact.v-disabled, .valo .v-filterselect-small.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-filterselect-compact.v-disabled [class$="button"], .valo .v-filterselect-small.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-filterselect-compact.v-disabled [class$="button"]:active:after, .valo .v-filterselect-small.v-disabled [class$="button"]:active:after {
	display: none;
}

.valo .v-filterselect-compact.v-readonly [class*="input"], .valo .v-filterselect-small.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-filterselect-compact.v-readonly [class*="input"]:focus, .valo .v-filterselect-small.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.valo .v-filterselect-compact.v-readonly [class$="button"], .valo .v-filterselect-small.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-filterselect-compact.v-readonly [class$="button"]:active:after, .valo .v-filterselect-small.v-readonly [class$="button"]:active:after {
	display: none;
}

.valo .v-filterselect-compact.v-readonly.borderless [class*="input"], .valo .v-filterselect-small.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.valo .v-filterselect-compact.v-readonly.borderless [class*="input"]:focus, .valo .v-filterselect-small.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-filterselect-compact.v-readonly.borderless [class*="input"][class*="prompt"], .valo .v-filterselect-small.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-filterselect-small {
	font-size: 14px;
}

.valo .v-filterselect-large {
	height: 44px;
	
	font-size: 20px;
}

.valo .v-filterselect-large [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 44px;
	
	padding: 5px 8px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 45px;
	border-radius: inherit;
}

.valo .v-filterselect-large .v-icon + [class*="input"] {
	padding-left: 44px;
}

.valo .v-filterselect-large img.v-icon {
	max-height: 44px;
	margin-left: 8px;
}

.valo .v-filterselect-large span.v-icon {
	
	width: 44px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 8px;
}

.valo .v-filterselect-large [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 44px;
	border-radius: 0 4px 4px 0;
}

.valo .v-filterselect-large [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	position: absolute;
	width: 44px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.valo .v-filterselect-large [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.valo .v-filterselect-large.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-filterselect-large.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-filterselect-large.v-disabled [class$="button"]:active:after {
	display: none;
}

.valo .v-filterselect-large.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-filterselect-large.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.valo .v-filterselect-large.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-filterselect-large.v-readonly [class$="button"]:active:after {
	display: none;
}

.valo .v-filterselect-large.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.valo .v-filterselect-large.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-filterselect-large.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-filterselect-huge {
	height: 59px;
	
	font-size: 26px;
}

.valo .v-filterselect-huge [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 59px;
	
	padding: 7px 10px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 60px;
	border-radius: inherit;
}

.valo .v-filterselect-huge .v-icon + [class*="input"] {
	padding-left: 59px;
}

.valo .v-filterselect-huge img.v-icon {
	max-height: 59px;
	margin-left: 10px;
}

.valo .v-filterselect-huge span.v-icon {
	
	width: 59px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 10px;
}

.valo .v-filterselect-huge [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 59px;
	border-radius: 0 4px 4px 0;
}

.valo .v-filterselect-huge [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	position: absolute;
	width: 59px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.valo .v-filterselect-huge [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.valo .v-filterselect-huge.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-filterselect-huge.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-filterselect-huge.v-disabled [class$="button"]:active:after {
	display: none;
}

.valo .v-filterselect-huge.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-filterselect-huge.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.valo .v-filterselect-huge.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-filterselect-huge.v-readonly [class$="button"]:active:after {
	display: none;
}

.valo .v-filterselect-huge.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.valo .v-filterselect-huge.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-filterselect-huge.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-csslayout-well {
	background: #f5f5f5;
	color: #454545;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	border: 1px solid #c5c5c5;
}

.valo .v-csslayout-well  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-csslayout-well  > .v-margin-top {
	padding-top: 12px;
}

.valo .v-csslayout-well  > .v-margin-right {
	padding-right: 12px;
}

.valo .v-csslayout-well  > .v-margin-bottom {
	padding-bottom: 12px;
}

.valo .v-csslayout-well  > .v-margin-left {
	padding-left: 12px;
}

.valo .v-csslayout-card {
	background: white;
	color: #474747;
	border-radius: 4px;
	border: 1px solid #d5d5d5;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.valo .v-csslayout-card  > .v-margin-top {
	padding-top: 12px;
}

.valo .v-csslayout-card  > .v-margin-right {
	padding-right: 12px;
}

.valo .v-csslayout-card  > .v-margin-bottom {
	padding-bottom: 12px;
}

.valo .v-csslayout-card  > .v-margin-left {
	padding-left: 12px;
}

.valo .v-csslayout-v-component-group {
	white-space: nowrap;
	position: relative;
}

.valo .v-csslayout-v-component-group .v-widget ~ .v-widget:not(:last-child) {
	border-radius: 0;
}

.valo .v-csslayout-v-component-group .v-widget ~ .v-widget.v-upload:not(:last-child) .v-button {
	border-radius: 0;
}

.valo .v-csslayout-v-component-group .v-widget:last-child {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.valo .v-csslayout-v-component-group .v-widget.v-upload:last-child .v-button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.valo .v-csslayout-v-component-group .v-widget:first-child, .valo .v-csslayout-v-component-group .v-caption:first-child + .v-widget {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.valo .v-csslayout-v-component-group .v-widget.v-upload:first-child .v-button, .valo .v-csslayout-v-component-group .v-caption:first-child + .v-widget.v-upload .v-button {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.valo .v-csslayout-v-component-group .v-widget ~ .v-widget.first.first {
	border-radius: 4px 0 0 4px;
}

.valo .v-csslayout-v-component-group .v-widget ~ .v-widget.first.first.v-upload .v-button {
	border-radius: 4px 0 0 4px;
}

.valo .v-csslayout-v-component-group .v-widget ~ .v-widget.last.last {
	border-radius: 0 4px 4px 0;
}

.valo .v-csslayout-v-component-group .v-widget ~ .v-widget.last.last.v-upload .v-button {
	border-radius: 0 4px 4px 0;
}

.valo .v-csslayout-v-component-group .v-widget {
	vertical-align: middle;
	margin-left: -1px;
}

.valo .v-csslayout-v-component-group .v-widget:first-child {
	margin-left: 0;
}

.valo .v-csslayout-v-component-group .v-widget:focus, .valo .v-csslayout-v-component-group .v-widget[class*="focus"], .valo .v-csslayout-v-component-group .v-widget [class*="focus"] {
	position: relative;
	z-index: 5;
}

.valo .v-form fieldset {
	border: none;
	padding: 0;
	margin: 0;
	height: 100%;
}

.valo .v-form-content {
	height: 100%;
	box-sizing: border-box;
}

.valo [class*="spacing"] > tbody > [class*="row"] > td {
	padding-top: 12px;
}

.valo [class*="spacing"] > tbody > [class*="firstrow"] > td {
	padding-top: 0;
}

.valo [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 37px;
}

.valo [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 37px;
}

.valo [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 37px;
}

.valo [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .valo [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .valo [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 37px;
}

.valo [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 37px;
}

.valo [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .valo [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .valo [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 37px;
}

.valo .v-formlayout > table {
	border-spacing: 0;
	position: relative;
}

.valo .v-formlayout.v-has-width > table, .valo .v-formlayout.v-has-width .v-formlayout-contentcell {
	width: 100%;
}

.valo .v-formlayout-error-indicator {
	width: 19px;
}

.valo .v-formlayout-captioncell {
	vertical-align: top;
	line-height: 36px;
}

.valo .v-formlayout-captioncell .v-caption {
	padding-bottom: 0;
}

.valo .v-formlayout-captioncell .v-caption-h2, .valo .v-formlayout-captioncell .v-caption-h3, .valo .v-formlayout-captioncell .v-caption-h4 {
	height: 3em;
}

.valo .v-formlayout-contentcell .v-checkbox, .valo .v-formlayout-contentcell .v-radiobutton {
	font-weight: 400;
}

.valo .v-formlayout-contentcell  > .v-label-h2, .valo .v-formlayout-contentcell  > .v-label-h3, .valo .v-formlayout-contentcell  > .v-label-h4 {
	position: absolute;
	left: 0;
	right: 0;
	width: auto !important;
	margin-top: -0.5em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #dfdfdf;
}

.valo .v-formlayout.light  > table {
	padding: 0;
}

.valo .v-formlayout.light  > table > tbody > tr > td {
	padding-top: 0;
	height: 37px;
	border-bottom: 1px solid #eaeaea;
}

.valo .v-formlayout.light  > table > tbody > [class*="lastrow"] > td {
	border-bottom: none;
}

.valo .v-formlayout.light  > table > tbody > tr > [class*="captioncell"] {
	color: #7d7d7d;
	text-align: right;
	padding-left: 13px;
	line-height: 37px;
}

.valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 0;
}

.valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect-input, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield-textfield {
	width: 100%;
}

.valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 37px;
	border-radius: 0;
	padding: 4px 7px;
	
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	background: transparent;
	border: none;
	color: inherit;
}

.valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield.v-disabled, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea.v-disabled, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input.v-disabled, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input.v-disabled, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield:focus, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea:focus, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input:focus, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input:focus, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), none;
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), none;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield:focus, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea:focus, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input:focus, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input:focus, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea:focus {
	box-shadow: none;
}

.valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield-prompt, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea-prompt, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect-prompt input, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield-prompt input {
	color: #a3a3a3;
}

.valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea {
	height: auto;
}

.valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	border-bottom: none;
	left: 0;
	right: 0;
}

.valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	margin-top: 0;
}

.valo .v-formlayout.light .v-richtextarea {
	margin: 5px 0;
}

.valo .v-formlayout.light .v-filterselect-button, .valo .v-formlayout.light .v-datefield-button {
	border: none;
}

.valo .v-formlayout.light .v-filterselect-button:active:after, .valo .v-formlayout.light .v-datefield-button:active:after {
	display: none;
}

.valo .v-formlayout.light .v-datefield-button {
	right: 0;
	left: auto;
}

.valo .v-formlayout.light .v-checkbox {
	margin-left: 7px;
}

.valo .v-grid {
	position: relative;
}

.valo .v-grid-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.valo .v-grid-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.valo .v-grid-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.valo .v-grid-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.valo .v-grid-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.valo .v-grid-header-deco, .valo .v-grid-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.valo .v-grid-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.valo .v-grid-header, .valo .v-grid-body, .valo .v-grid-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.valo .v-grid-header, .valo .v-grid-header-deco {
	top: 0;
}

.valo .v-grid-footer, .valo .v-grid-footer-deco {
	bottom: 0;
}

.valo .v-grid-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.valo .v-grid-body .v-grid-row {
	position: absolute;
	top: 0;
	left: 0;
}

.valo .v-grid-body .v-grid-header > .v-grid-row {
	position: relative;
}

.valo .v-grid-row {
	display: block;
}

.valo .v-grid-row  > td, .valo .v-grid-row  > th {
	background-color: white;
}

.valo .v-grid-row {
	width: inherit;
}

.valo .v-grid-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 16px;
}

.valo .v-grid-cell.frozen {
	position: relative;
	z-index: 1;
}

.valo .v-grid-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.valo .v-grid-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.valo .v-grid {
	outline: none;
}

.valo .v-grid-scroller-vertical, .valo .v-grid-scroller-horizontal {
	border: 1px solid #d4d4d4;
}

.valo .v-grid-scroller-vertical {
	border-left: none;
}

.valo .v-grid-scroller-horizontal {
	border-top: none;
}

.valo .v-grid-tablewrapper {
	border: 1px solid #d4d4d4;
}

.valo .v-grid .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.valo .v-grid .header-drag-table .v-grid-header {
	position: absolute;
}

.valo .v-grid .header-drag-table .v-grid-header  > .v-grid-cell {
	border: 1px solid #d4d4d4;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.valo .v-grid .header-drag-table .v-grid-header  > .v-grid-drop-marker {
	background-color: #197de1;
	position: absolute;
	width: 3px;
}

.valo .v-grid-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	padding: 0;
	z-index: 5;
}

.valo .v-grid-sidebar.v-contextmenu.v-grid-sidebar-popup {
	right: auto;
}

.valo .v-grid-sidebar.v-contextmenu .v-grid-sidebar-button {
	background: transparent;
	border: none;
	color: inherit;
	cursor: pointer;
	outline: none;
	padding: 0 4px;
	text-align: right;
	line-height: 1;
}

.valo .v-grid-sidebar.v-contextmenu .v-grid-sidebar-button[disabled] {
	cursor: default;
}

.valo .v-grid-sidebar.v-contextmenu .v-grid-sidebar-button::-moz-focus-inner {
	border: 0;
}

.valo .v-grid-sidebar.v-contextmenu .v-grid-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 14px;
}

.valo .v-grid-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.valo .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-button {
	width: 100%;
}

.valo .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-button:after {
	content: "\f0c9";
	font-size: 14px;
	line-height: 1;
}

.v-ie .valo .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-button {
	vertical-align: middle;
}

.valo .v-grid-sidebar.v-contextmenu .v-grid-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.valo .v-grid-sidebar.v-contextmenu .v-grid-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.valo .v-grid-cell {
	background-color: white;
	padding: 0 18px;
	line-height: 37px;
	text-overflow: ellipsis;
}

.valo .v-grid-cell  > * {
	line-height: 1.55;
	vertical-align: middle;
}

.valo .v-grid-cell  > div {
	display: inline-block;
}

.valo .v-grid-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	position: relative;
	z-index: 11;
}

.valo .v-grid-cell.frozen  + th, .valo .v-grid-cell.frozen  + td {
	border-left: none;
}

.valo .v-grid-cell div.component-wrap {
	width: 100%;
}

.valo .v-grid-row > td, .valo .v-grid-editor-cells > div {
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}

.valo .v-grid-row > td:first-child, .valo .v-grid-editor-cells > div:first-child {
	border-left: none;
}

.valo .v-grid-editor-cells.frozen > div {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	border-left: none;
}

.valo .v-grid-row-stripe > td {
	background-color: #f5f5f5;
}

.valo .v-grid-row-selected > td {
	background: #197de1;
}

.valo .v-grid-row-focused > td {
	
}

.valo .v-grid-header th {
	position: relative;
	background-color: #fafafa;
	font-size: 14px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
	
	text-align: left;
}

.valo .v-grid-header th:first-child {
	border-left: none;
}

.valo .v-grid-header .sort-asc, .valo .v-grid-header .sort-desc {
	padding-right: 35px;
}

.valo .v-grid-header .sort-asc:after, .valo .v-grid-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 18px;
	font-size: 12px;
}

.valo .v-grid-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.valo .v-grid-column-resize-handle {
	position: absolute;
	width: 36px;
	right: -18px;
	top: 0px;
	bottom: 0px;
	cursor: col-resize;
	z-index: 10;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.valo .v-grid-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 18px;
	z-index: 9001;
	background: #fff;
	box-shadow: 0px 0px 5px #000;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.valo .v-grid-footer td {
	background-color: #fafafa;
	font-size: 14px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-bottom: none;
	
}

.valo .v-grid-footer td:first-child {
	border-left: none;
}

.valo .v-grid-header .v-grid-cell, .valo .v-grid-footer .v-grid-cell {
	overflow: visible;
}

.valo .v-grid-column-header-content, .valo .v-grid-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 37px;
	vertical-align: baseline;
}

.valo .v-grid-header-deco {
	border-top: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.valo .v-grid-footer-deco {
	border-bottom: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.valo .v-grid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	border-top: none;
}

.valo .v-grid-cell-focused {
	position: relative;
}

.valo .v-grid-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #197de1;
	display: none;
	pointer-events: none;
}

.valo .v-grid:focus .v-grid-cell-focused:before {
	display: block;
}

.valo .v-grid.v-disabled:focus .v-grid-cell-focused:before {
	display: none;
}

.valo .v-grid-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #d4d4d4;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-top: -1px;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}

.valo .v-grid-editor.unbuffered .v-grid-editor-footer {
	width: 100%;
}

.valo .v-grid-editor-cells {
	position: relative;
	white-space: nowrap;
}

.valo .v-grid-editor-cells.frozen {
	z-index: 2;
}

.valo .v-grid-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.valo .v-grid-editor-cells  > div:first-child {
	border-left: none;
}

.valo .v-grid-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.valo .v-grid-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.valo .v-grid-editor-cells  > div input[type="text"], .valo .v-grid-editor-cells  > div input[type="text"].v-filterselect-input, .valo .v-grid-editor-cells  > div input[type="password"] {
	padding-left: 18px;
}

.valo .v-grid-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .valo .v-grid-editor-cells  > div input[type="password"] {
	padding-right: 9px;
}

.valo .v-grid-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 18px;
}

.valo .v-grid-editor-cells  > div .v-textfield, .valo .v-grid-editor-cells  > div .v-datefield, .valo .v-grid-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.valo .v-grid-editor-cells  > div .v-select, .valo .v-grid-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.valo .v-grid-editor-cells  > div.not-editable.v-grid-cell {
	float: none;
}

.valo .v-grid-editor-cells .error::before {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	content: "";
	border-top: 5px solid red;
	border-right: 5px solid transparent;
}

.valo .v-grid-editor-cells .error, .valo .v-grid-editor-cells .error > input {
	background-color: #fee;
}

.valo .v-grid-editor-footer {
	display: table;
	height: 37px;
	border-top: 1px solid #d4d4d4;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.valo .v-grid-editor-footer  + .v-grid-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4d4d4;
}

.valo .v-grid-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4d4d4;
	margin-bottom: -1px;
}

.valo .v-grid-editor-message, .valo .v-grid-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.valo .v-grid-editor-message {
	width: 100%;
	position: relative;
}

.valo .v-grid-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 37px;
	top: 0;
}

.valo .v-grid-editor-save {
	margin-right: 4px;
}

.valo .v-grid-spacer {
	padding-left: 1px;
}

.valo .v-grid-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #d4d4d4;
}

.valo .v-grid-spacer.stripe > td {
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #d4d4d4;
}

.valo .v-grid-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.valo .v-grid-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #197de1;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.valo .v-grid-cell > .v-progressbar {
	width: 100%;
}

.valo .v-grid {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #fafafa;
}

.valo .v-grid.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-grid-header .v-grid-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.valo .v-grid-header .v-grid-cell.dragged {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.valo .v-grid-header .v-grid-cell.dragged-column-header {
	margin-top: -19px;
}

.valo .v-grid-footer .v-grid-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.valo .v-grid-header-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.valo .v-grid-footer-deco, .valo .v-grid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.valo .v-grid-row-selected  > .v-grid-cell {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #c8dbed;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #1d69b4;
}

.valo .v-grid-row-selected  > .v-grid-cell-focused:before {
	border-color: #71b0ef;
}

.valo .v-grid-editor {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	border-color: #197de1;
}

.valo .v-grid-editor-footer {
	font-size: 14px;
	padding: 0 6px;
	background: #fafafa;
	-webkit-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
}

.valo .v-grid-editor-footer:first-child {
	-webkit-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
}

.valo .v-grid-editor-cells {
	z-index: 1;
}

.valo .v-grid-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.valo .v-grid-editor-cells > div.not-editable.v-grid-cell {
	float: none;
}

.valo .v-grid-editor-cells > div .error::before {
	border-top: 9px solid #ed473b;
	border-right: 9px solid transparent;
}

.valo .v-grid-editor-cells > div .error, .valo .v-grid-editor-cells > div .error > input {
	background-color: #fffbfb;
}

.valo .v-grid-editor-cells > div .v-textfield, .valo .v-grid-editor-cells > div .v-textfield-focus, .valo .v-grid-editor-cells > div .v-datefield, .valo .v-grid-editor-cells > div .v-datefield .v-textfield-focus, .valo .v-grid-editor-cells > div .v-filterselect-input, .valo .v-grid-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #f2f2f2;
	box-shadow: inset 0 1px 0 #f2f2f2;
}

.valo .v-grid-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 44.4px;
}

.valo .v-grid-editor-cells > div .v-textfield-focus, .valo .v-grid-editor-cells > div .v-datefield .v-textfield-focus, .valo .v-grid-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.valo .v-grid-editor-cells > div .v-select {
	padding-left: 9px;
	padding-right: 9px;
}

.valo .v-grid-editor-cells > div .v-checkbox.v-widget {
	margin: 0 9px 0 18px;
}

.valo .v-grid-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.valo .v-grid-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.valo .v-grid-editor-message > div:before {
	display: inline-block;
	color: #ed473b;
	font-weight: 600;
	width: 19px;
	text-align: center;
	content: "!";
}

.valo .v-grid-editor-save, .valo .v-grid-editor-cancel {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	font-weight: 400;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 6px 6px;
	margin: 0;
	outline: none;
}

.valo .v-grid-editor-save:hover, .valo .v-grid-editor-cancel:hover {
	color: #4396ea;
}

.valo .v-grid-editor-save.v-disabled, .valo .v-grid-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-grid-spacer {
	margin-top: -1px;
}

.valo .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.valo .v-grid-sidebar.v-contextmenu.closed {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.valo .v-grid-scroller::-webkit-scrollbar {
	border: none;
}

.valo .v-grid-scroller::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border: 4px solid transparent;
	background: rgba(0, 0, 0, 0.3);
	-webkit-background-clip: content-box;
	background-clip: content-box;
}

.valo .v-grid-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.valo .v-grid-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.valo .v-grid-row-drag-badge {
	background-color: red;
	color: white;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	line-height: 30px;
	text-align: center;
	float: left;
}

.valo .v-grid-row-drag-top, .valo .v-grid-row-drag-bottom {
	z-index: 100;
}

.valo .v-grid-row-drag-top:before, .valo .v-grid-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #197de1;
	pointer-events: none;
	border: none;
}

.valo .v-grid-row-drag-bottom:after {
	bottom: -1px;
}

.valo .v-grid-row-drag-top:before {
	top: -1px;
}

.valo .v-grid-row-drag-top:first-child:before {
	top: 0;
}

.valo .v-grid-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #197de1;
	pointer-events: none;
}

.valo .v-grid-row-selected.v-grid-row-drag-center:after {
	border-color: #1463b3;
}

.valo .v-grid-row-selected.v-grid-row-drag-top:before, .valo .v-grid-row-selected.v-grid-row-drag-bottom:after {
	background: #1463b3;
}

.valo .v-grid-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #197de1;
	z-index: 100;
}

.valo .v-textfield {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 37px;
	border-radius: 4px;
	padding: 4px 9px;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 185px;
}

.valo .v-textfield.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-textfield:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-textfield[class*="prompt"] {
	color: #a3a3a3;
}

.valo .v-textfield-readonly {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-textfield-readonly:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.valo .v-textfield-error {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.valo .v-textfield-error-info {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.valo .v-textfield-error-warning {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.valo .v-textfield-error-error {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.valo .v-textfield-error-critical {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.valo .v-textfield-error-system {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.valo .v-textfield-borderless {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.valo .v-textfield-borderless:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-textfield-borderless[class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-textfield-tiny {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 28px;
	border-radius: 4px;
	padding: 3px 7px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 12px;
}

.valo .v-textfield-compact, .valo .v-textfield-small {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 31px;
	border-radius: 4px;
	padding: 3px 8px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
}

.valo .v-textfield-small {
	font-size: 14px;
}

.valo .v-textfield-large {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 44px;
	border-radius: 4px;
	padding: 5px 10px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 20px;
}

.valo .v-textfield-huge {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 59px;
	border-radius: 4px;
	padding: 7px 12px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 26px;
}

.valo .v-slot-inline-icon {
	position: relative;
}

.valo .v-caption-inline-icon {
	padding: 0;
}

.valo .v-caption-inline-icon .v-captiontext {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.valo .v-caption-inline-icon .v-icon {
	position: absolute;
	z-index: 10;
}

.valo .v-caption-inline-icon span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 37px;
	line-height: 35px;
	text-align: center;
	font-size: 16px;
}

.valo .v-caption-inline-icon img.v-icon {
	left: 11px;
	bottom: 11px;
}

.valo .v-textfield-inline-icon  {
	padding-left: 37px;
}

.valo .v-slot-inline-icon.v-slot-tiny {
	position: relative;
}

.valo .v-caption-inline-icon.v-caption-tiny {
	padding: 0;
}

.valo .v-caption-inline-icon.v-caption-tiny .v-captiontext {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.valo .v-caption-inline-icon.v-caption-tiny .v-icon {
	position: absolute;
	z-index: 10;
}

.valo .v-caption-inline-icon.v-caption-tiny span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 28px;
	line-height: 26px;
	text-align: center;
	font-size: 12px;
}

.valo .v-caption-inline-icon.v-caption-tiny img.v-icon {
	left: 6px;
	bottom: 6px;
}

.valo .v-textfield-inline-icon.v-textfield-tiny  {
	padding-left: 28px;
}

.valo .v-slot-inline-icon.v-slot-compact {
	position: relative;
}

.valo .v-caption-inline-icon.v-caption-compact {
	padding: 0;
}

.valo .v-caption-inline-icon.v-caption-compact .v-captiontext {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.valo .v-caption-inline-icon.v-caption-compact .v-icon {
	position: absolute;
	z-index: 10;
}

.valo .v-caption-inline-icon.v-caption-compact span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 31px;
	line-height: 29px;
	text-align: center;
	font-size: 16px;
}

.valo .v-caption-inline-icon.v-caption-compact img.v-icon {
	left: 8px;
	bottom: 8px;
}

.valo .v-textfield-inline-icon.v-textfield-compact  {
	padding-left: 31px;
}

.valo .v-slot-inline-icon.v-slot-small {
	position: relative;
}

.valo .v-caption-inline-icon.v-caption-small {
	padding: 0;
}

.valo .v-caption-inline-icon.v-caption-small .v-captiontext {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.valo .v-caption-inline-icon.v-caption-small .v-icon {
	position: absolute;
	z-index: 10;
}

.valo .v-caption-inline-icon.v-caption-small span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 31px;
	line-height: 29px;
	text-align: center;
	font-size: 14px;
}

.valo .v-caption-inline-icon.v-caption-small img.v-icon {
	left: 8px;
	bottom: 8px;
}

.valo .v-textfield-inline-icon.v-textfield-small  {
	padding-left: 31px;
}

.valo .v-slot-inline-icon.v-slot-large {
	position: relative;
}

.valo .v-caption-inline-icon.v-caption-large {
	padding: 0;
}

.valo .v-caption-inline-icon.v-caption-large .v-captiontext {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.valo .v-caption-inline-icon.v-caption-large .v-icon {
	position: absolute;
	z-index: 10;
}

.valo .v-caption-inline-icon.v-caption-large span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 44px;
	line-height: 42px;
	text-align: center;
	font-size: 20px;
}

.valo .v-caption-inline-icon.v-caption-large img.v-icon {
	left: 14px;
	bottom: 14px;
}

.valo .v-textfield-inline-icon.v-textfield-large  {
	padding-left: 44px;
}

.valo .v-slot-inline-icon.v-slot-huge {
	position: relative;
}

.valo .v-caption-inline-icon.v-caption-huge {
	padding: 0;
}

.valo .v-caption-inline-icon.v-caption-huge .v-captiontext {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.valo .v-caption-inline-icon.v-caption-huge .v-icon {
	position: absolute;
	z-index: 10;
}

.valo .v-caption-inline-icon.v-caption-huge span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 59px;
	line-height: 57px;
	text-align: center;
	font-size: 26px;
}

.valo .v-caption-inline-icon.v-caption-huge img.v-icon {
	left: 22px;
	bottom: 22px;
}

.valo .v-textfield-inline-icon.v-textfield-huge  {
	padding-left: 59px;
}

.valo .v-textfield-align-right {
	text-align: right;
}

.valo .v-textfield-align-center {
	text-align: center;
}

.valo .v-textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 37px;
	border-radius: 4px;
	padding: 6px;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	width: 185px;
}

.valo .v-textarea.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-textarea:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-textarea[class*="prompt"] {
	color: #a3a3a3;
}

.valo .v-textarea-readonly {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-textarea-readonly:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.valo .v-textarea-error {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.valo .v-textarea-borderless {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.valo .v-textarea-borderless:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-textarea-borderless[class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-textarea-tiny {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 28px;
	border-radius: 4px;
	padding: 6px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 12px;
}

.valo .v-textarea-small {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 31px;
	border-radius: 4px;
	padding: 6px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 14px;
}

.valo .v-textarea-large {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 44px;
	border-radius: 4px;
	padding: 6px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 20px;
}

.valo .v-textarea-huge {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 59px;
	border-radius: 4px;
	padding: 6px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 26px;
}

.valo .v-textarea-align-right {
	text-align: right;
}

.valo .v-textarea-align-center {
	text-align: center;
}

.valo .v-datefield {
	position: relative;
	width: 185px;
	height: 37px;
	border-radius: 4px;
}

.valo .v-datefield [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 37px;
	border-radius: 4px;
	padding: 4px 9px;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 44.4px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.valo .v-datefield [class*="textfield"].v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-datefield [class*="textfield"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-datefield [class*="textfield"][class*="prompt"] {
	color: #a3a3a3;
}

.valo .v-datefield[class*="prompt"] > [class*="textfield"] {
	color: #a3a3a3;
}

.valo .v-datefield [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 37px;
	line-height: 35px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	top: 1px;
	bottom: 1px;
	left: 1px;
	border: none;
	border-right: 1px solid #e4e4e4;
	color: #a3a3a3;
	border-radius: 3px 0 0 3px;
}

.valo .v-datefield [class*="button"]:hover {
	color: #474747;
}

.valo .v-datefield [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.valo .v-datefield [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(128, 128, 128, 0.2);
	border-radius: inherit;
}

.valo .v-datefield.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-datefield.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-datefield.v-disabled [class*="button"]:active:after {
	display: none;
}

.valo .v-datefield.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-datefield.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.valo .v-datefield.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-datefield.v-readonly [class*="button"]:active:after {
	display: none;
}

.valo .v-datefield.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.valo .v-datefield.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-datefield.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-datefield-error .v-datefield-textfield {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.valo .v-datefield-error .v-datefield-button {
	color: #ed473b;
	border-color: #ed473b;
}

.valo .v-datefield-error-info .v-datefield-textfield {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.valo .v-datefield-error-info .v-datefield-button {
	color: #00a7f5;
	border-color: #00a7f5;
}

.valo .v-datefield-error-warning .v-datefield-textfield {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.valo .v-datefield-error-warning .v-datefield-button {
	color: #fc9c00;
	border-color: #fc9c00;
}

.valo .v-datefield-error-error .v-datefield-textfield {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.valo .v-datefield-error-error .v-datefield-button {
	color: #ed473b;
	border-color: #ed473b;
}

.valo .v-datefield-error-critical .v-datefield-textfield {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.valo .v-datefield-error-critical .v-datefield-button {
	color: #fa007d;
	border-color: #fa007d;
}

.valo .v-datefield-error-system .v-datefield-textfield {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.valo .v-datefield-error-system .v-datefield-button {
	color: #bb00ff;
	border-color: #bb00ff;
}

.valo .v-datefield-full {
	width: 240px;
}

.valo .v-datefield-day {
	width: 185px;
}

.valo .v-datefield-month {
	width: 120px;
}

.valo .v-datefield-year {
	width: 104px;
}

.valo .v-datefield-popup {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	margin-top: 5px !important;
	margin-bottom: 5px !important;
	margin-right: 5px !important;
	cursor: default;
	width: auto;
}

.valo .v-datefield-popup[class*="animate-in"] {
	-webkit-animation: valo-overlay-animate-in 120ms;
	-moz-animation: valo-overlay-animate-in 120ms;
	animation: valo-overlay-animate-in 120ms;
}

.valo .v-datefield-popup[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.valo .v-datefield-popup table {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 auto;
}

.valo .v-datefield-popup td {
	padding: 2px;
}

.valo .v-datefield-popup .v-datefield-calendarpanel {
	font-size: 16px;
	text-align: center;
}

.valo .v-datefield-popup .v-datefield-calendarpanel:focus {
	outline: none;
}

.valo .v-datefield-popup .v-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 30px;
	height: 26px;
	border: 1px solid transparent;
	line-height: 26px;
	text-align: center;
	font-size: 14px;
	background: #fafafa;
	border-radius: 2px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.valo .v-datefield-popup .v-datefield-calendarpanel-day:hover {
	color: #197de1;
}

.valo .v-datefield-popup .v-datefield-calendarpanel-day-offmonth {
	color: #a0a0a0;
	background: transparent;
}

.valo .v-datefield-popup .v-datefield-calendarpanel-day-today {
	color: #191919;
	font-weight: 600;
	border-color: #afafaf;
}

.valo .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .valo .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #c8dbed;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	border: none;
	font-weight: 600;
}

.valo .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	position: relative;
}

.valo .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .valo .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
	color: #a0a0a0;
	cursor: not-allowed;
}

.valo .v-datefield-popup .v-datefield-calendarpanel-weekdays {
	height: 26px;
	color: rgba(133, 133, 133, 0.85);
}

.valo .v-datefield-popup .v-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 14px;
}

.valo .v-datefield-popup .v-datefield-calendarpanel-header {
	white-space: nowrap;
}

.valo .v-datefield-popup td[class*="year"] button, .valo .v-datefield-popup td[class*="month"] button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	width: 19px;
	height: 25px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.valo .v-datefield-popup td[class*="year"] button:before, .valo .v-datefield-popup td[class*="month"] button:before {
	color: #a0a0a0;
	font-size: 21px;
	line-height: 24px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

.valo .v-datefield-popup td[class*="year"] button:hover:before, .valo .v-datefield-popup td[class*="month"] button:hover:before {
	color: #197de1;
}

.valo .v-datefield-popup td[class*="year"] button.outside-range, .valo .v-datefield-popup td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.valo .v-datefield-popup td[class*="year"] button.outside-range:hover:before, .valo .v-datefield-popup td[class*="month"] button.outside-range:hover:before {
	color: #a0a0a0;
}

.valo .v-datefield-popup .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.valo .v-datefield-popup .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.valo .v-datefield-popup .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.valo .v-datefield-popup .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.valo .v-datefield-popup td.v-datefield-calendarpanel-month {
	width: 148px;
	cursor: default;
	color: #197de1;
}

.valo .v-datefield-popup td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.valo .v-datefield-popup .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 74px;
}

.valo .v-datefield-popup .v-datefield-calendarpanel-weeknumber, .valo .v-datefield-popup .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
	width: 30px;
	color: rgba(133, 133, 133, 0.85);
	font-size: 14px;
	display: inline-block;
	text-align: left;
}

.valo .v-datefield-popup .v-datefield-calendarpanel-weeknumber {
	position: relative;
}

.valo .v-datefield-popup .v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 38px;
	bottom: 0;
	left: 0;
	width: 34px;
	border-top: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	background: #fafafa;
}

.valo .v-datefield-popup td.v-datefield-calendarpanel-time {
	width: 100%;
	font-size: 14px;
}

.valo .v-datefield-popup td.v-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.valo .v-datefield-calendarpanel {
	font-size: 16px;
	text-align: center;
}

.valo .v-datefield-calendarpanel:focus {
	outline: none;
}

.valo .v-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 30px;
	height: 26px;
	border: 1px solid transparent;
	line-height: 26px;
	text-align: center;
	font-size: 14px;
	background: #fafafa;
	border-radius: 2px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.valo .v-datefield-calendarpanel-day:hover {
	color: #197de1;
}

.valo .v-datefield-calendarpanel-day-offmonth {
	color: #a0a0a0;
	background: transparent;
}

.valo .v-datefield-calendarpanel-day-today {
	color: #191919;
	font-weight: 600;
	border-color: #afafaf;
}

.valo .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .valo .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #c8dbed;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	border: none;
	font-weight: 600;
}

.valo .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	position: relative;
}

.valo .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .valo .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
	color: #a0a0a0;
	cursor: not-allowed;
}

.valo .v-datefield-calendarpanel-weekdays {
	height: 26px;
	color: rgba(133, 133, 133, 0.85);
}

.valo .v-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 14px;
}

.valo .v-datefield-calendarpanel-header {
	white-space: nowrap;
}

.valo td[class*="year"] button, .valo td[class*="month"] button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	width: 19px;
	height: 25px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.valo td[class*="year"] button:before, .valo td[class*="month"] button:before {
	color: #a0a0a0;
	font-size: 21px;
	line-height: 24px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

.valo td[class*="year"] button:hover:before, .valo td[class*="month"] button:hover:before {
	color: #197de1;
}

.valo td[class*="year"] button.outside-range, .valo td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.valo td[class*="year"] button.outside-range:hover:before, .valo td[class*="month"] button.outside-range:hover:before {
	color: #a0a0a0;
}

.valo .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.valo .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.valo .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.valo .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.valo td.v-datefield-calendarpanel-month {
	width: 148px;
	cursor: default;
	color: #197de1;
}

.valo td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.valo .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 74px;
}

.valo .v-datefield-calendarpanel-weeknumber, .valo .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
	width: 30px;
	color: rgba(133, 133, 133, 0.85);
	font-size: 14px;
	display: inline-block;
	text-align: left;
}

.valo .v-datefield-calendarpanel-weeknumber {
	position: relative;
}

.valo .v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 38px;
	bottom: 0;
	left: 0;
	width: 34px;
	border-top: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	background: #fafafa;
}

.valo td.v-datefield-calendarpanel-time {
	width: 100%;
	font-size: 14px;
}

.valo td.v-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.valo .v-datefield-borderless .v-datefield-textfield {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.valo .v-datefield-borderless .v-datefield-textfield:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-datefield-borderless .v-datefield-textfield[class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-datefield-borderless .v-datefield-button {
	border: none;
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-datefield-align-right input {
	text-align: right;
}

.valo .v-datefield-align-center input {
	text-align: center;
}

.valo .v-datefield-tiny {
	height: 28px;
	border-radius: 4px;
	font-size: 12px;
}

.valo .v-datefield-tiny [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 28px;
	border-radius: 4px;
	padding: 3px 7px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 33.6px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.valo .v-datefield-tiny [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 28px;
	line-height: 28px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

.valo .v-datefield-tiny [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.valo .v-datefield-tiny [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.valo .v-datefield-tiny.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-datefield-tiny.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-datefield-tiny.v-disabled [class*="button"]:active:after {
	display: none;
}

.valo .v-datefield-tiny.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-datefield-tiny.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.valo .v-datefield-tiny.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-datefield-tiny.v-readonly [class*="button"]:active:after {
	display: none;
}

.valo .v-datefield-tiny.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.valo .v-datefield-tiny.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-datefield-tiny.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-datefield-compact, .valo .v-datefield-small {
	height: 31px;
	border-radius: 4px;
}

.valo .v-datefield-compact [class*="textfield"], .valo .v-datefield-small [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 31px;
	border-radius: 4px;
	padding: 3px 8px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 37.2px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.valo .v-datefield-compact [class*="button"], .valo .v-datefield-small [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 31px;
	line-height: 31px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

.valo .v-datefield-compact [class*="button"]:before, .valo .v-datefield-small [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.valo .v-datefield-compact [class*="button"]:active:after, .valo .v-datefield-small [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.valo .v-datefield-compact.v-disabled, .valo .v-datefield-small.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-datefield-compact.v-disabled [class*="button"], .valo .v-datefield-small.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-datefield-compact.v-disabled [class*="button"]:active:after, .valo .v-datefield-small.v-disabled [class*="button"]:active:after {
	display: none;
}

.valo .v-datefield-compact.v-readonly [class*="textfield"], .valo .v-datefield-small.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-datefield-compact.v-readonly [class*="textfield"]:focus, .valo .v-datefield-small.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.valo .v-datefield-compact.v-readonly [class*="button"], .valo .v-datefield-small.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-datefield-compact.v-readonly [class*="button"]:active:after, .valo .v-datefield-small.v-readonly [class*="button"]:active:after {
	display: none;
}

.valo .v-datefield-compact.v-readonly.borderless [class*="textfield"], .valo .v-datefield-small.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.valo .v-datefield-compact.v-readonly.borderless [class*="textfield"]:focus, .valo .v-datefield-small.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-datefield-compact.v-readonly.borderless [class*="textfield"][class*="prompt"], .valo .v-datefield-small.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-datefield-small {
	font-size: 14px;
}

.valo .v-datefield-large {
	height: 44px;
	border-radius: 4px;
	font-size: 20px;
}

.valo .v-datefield-large [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 44px;
	border-radius: 4px;
	padding: 5px 10px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 52.8px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.valo .v-datefield-large [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 44px;
	line-height: 44px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

.valo .v-datefield-large [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.valo .v-datefield-large [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.valo .v-datefield-large.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-datefield-large.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-datefield-large.v-disabled [class*="button"]:active:after {
	display: none;
}

.valo .v-datefield-large.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-datefield-large.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.valo .v-datefield-large.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-datefield-large.v-readonly [class*="button"]:active:after {
	display: none;
}

.valo .v-datefield-large.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.valo .v-datefield-large.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-datefield-large.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-datefield-huge {
	height: 59px;
	border-radius: 4px;
	font-size: 26px;
}

.valo .v-datefield-huge [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 59px;
	border-radius: 4px;
	padding: 7px 12px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 70.8px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.valo .v-datefield-huge [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 59px;
	line-height: 59px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

.valo .v-datefield-huge [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.valo .v-datefield-huge [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.valo .v-datefield-huge.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-datefield-huge.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-datefield-huge.v-disabled [class*="button"]:active:after {
	display: none;
}

.valo .v-datefield-huge.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-datefield-huge.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.valo .v-datefield-huge.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.valo .v-datefield-huge.v-readonly [class*="button"]:active:after {
	display: none;
}

.valo .v-datefield-huge.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.valo .v-datefield-huge.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-datefield-huge.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-inline-datefield-calendarpanel {
	font-size: 16px;
	text-align: center;
}

.valo .v-inline-datefield-calendarpanel:focus {
	outline: none;
}

.valo .v-inline-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 30px;
	height: 26px;
	border: 1px solid transparent;
	line-height: 26px;
	text-align: center;
	font-size: 14px;
	background: #fafafa;
	border-radius: 2px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.valo .v-inline-datefield-calendarpanel-day:hover {
	color: #197de1;
}

.valo .v-inline-datefield-calendarpanel-day-offmonth {
	color: #a0a0a0;
	background: transparent;
}

.valo .v-inline-datefield-calendarpanel-day-today {
	color: #191919;
	font-weight: 600;
	border-color: #afafaf;
}

.valo .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected, .valo .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected:hover {
	color: #c8dbed;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	border: none;
	font-weight: 600;
}

.valo .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	position: relative;
}

.valo .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range, .valo .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range:hover {
	color: #a0a0a0;
	cursor: not-allowed;
}

.valo .v-inline-datefield-calendarpanel-weekdays {
	height: 26px;
	color: rgba(133, 133, 133, 0.85);
}

.valo .v-inline-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 14px;
}

.valo .v-inline-datefield-calendarpanel-header {
	white-space: nowrap;
}

.valo td[class*="year"] button, .valo td[class*="month"] button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	width: 19px;
	height: 25px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.valo td[class*="year"] button:before, .valo td[class*="month"] button:before {
	color: #a0a0a0;
	font-size: 21px;
	line-height: 24px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

.valo td[class*="year"] button:hover:before, .valo td[class*="month"] button:hover:before {
	color: #197de1;
}

.valo td[class*="year"] button.outside-range, .valo td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.valo td[class*="year"] button.outside-range:hover:before, .valo td[class*="month"] button.outside-range:hover:before {
	color: #a0a0a0;
}

.valo .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.valo .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.valo .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.valo .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.valo td.v-inline-datefield-calendarpanel-month {
	width: 148px;
	cursor: default;
	color: #197de1;
}

.valo td.v-inline-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.valo .v-inline-datefield-calendarpanel-year td.v-inline-datefield-calendarpanel-month {
	width: 74px;
}

.valo .v-inline-datefield-calendarpanel-weeknumber, .valo .v-inline-datefield-calendarpanel-weekdays.v-inline-datefield-calendarpanel-weeknumbers td:first-child {
	width: 30px;
	color: rgba(133, 133, 133, 0.85);
	font-size: 14px;
	display: inline-block;
	text-align: left;
}

.valo .v-inline-datefield-calendarpanel-weeknumber {
	position: relative;
}

.valo .v-inline-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 38px;
	bottom: 0;
	left: 0;
	width: 34px;
	border-top: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	background: #fafafa;
}

.valo td.v-inline-datefield-calendarpanel-time {
	width: 100%;
	font-size: 14px;
}

.valo td.v-inline-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.valo .v-inline-datefield-calendarpanel {
	position: relative;
	background: white;
	padding: 6px;
}

.valo .v-gridlayout-margin-top {
	padding-top: 37px;
}

.valo .v-gridlayout-margin-bottom {
	padding-bottom: 37px;
}

.valo .v-gridlayout-margin-left {
	padding-left: 37px;
}

.valo .v-gridlayout-margin-right {
	padding-right: 37px;
}

.valo .v-gridlayout-spacing-on {
	padding-left: 12px;
	padding-top: 12px;
}

.valo .v-menubar {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	cursor: default;
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	text-align: left;
	line-height: 35px;
}

.valo .v-menubar:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
}

.valo .v-menubar:focus:after {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.valo .v-menubar.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-menubar.v-disabled:after {
	display: none;
}

.valo .v-menubar:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-menubar:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-menubar  > .v-menubar-menuitem {
	padding: 0 14px;
}

.valo .v-menubar  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 37px;
}

.valo .v-menubar:active:after {
	background: transparent;
}

.valo .v-menubar > .v-menubar-menuitem {
	position: relative;
	z-index: 1;
	display: inline-block;
	box-sizing: border-box;
	height: 37px;
	padding: 0 15px;
	color: inherit;
	font-weight: 400;
	
	cursor: pointer;
	border-radius: 0;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-width: 0 1px 0 0;
	border-color: inherit;
	height: 100%;
	line-height: inherit;
	vertical-align: top;
	text-align: center;
}

.valo .v-menubar > .v-menubar-menuitem:first-child {
	border-left-width: 0;
	border-radius: 3px 0 0 3px;
}

.valo .v-menubar > .v-menubar-menuitem:last-child {
	border-radius: 0 3px 3px 0;
	border-right-width: 0;
}

.valo .v-menubar > .v-menubar-menuitem:first-child:last-child {
	border-radius: 3px;
}

.valo .v-menubar > .v-menubar-menuitem:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.valo .v-menubar > .v-menubar-menuitem:hover {
	zoom: 1;
}

.valo .v-menubar > .v-menubar-menuitem:hover:before {
	background-color: rgba(186, 186, 186, 0.1);
	border: none;
}

.valo .v-menubar > .v-menubar-menuitem:active:before {
	background-color: rgba(125, 125, 125, 0.2);
}

.valo .v-menubar > .v-menubar-menuitem .v-icon {
	margin: 0 4px 0 -4px;
	cursor: inherit;
}

.valo .v-menubar > .v-menubar-menuitem[class*="-icon-only"] {
	width: 37px;
	padding: 0;
}

.valo .v-menubar > .v-menubar-menuitem[class*="-icon-only"] .v-icon {
	margin: 0;
}

.valo .v-menubar > .v-menubar-menuitem-checked {
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #ededed;
	background-image: -webkit-linear-gradient(bottom, #ededed 2%, #e9e9e9 98%);
	background-image: linear-gradient(to top,#ededed 2%, #e9e9e9 98%);
	color: #181818;
}

.valo .v-disabled > .v-menubar-menuitem, .valo .v-menubar > .v-menubar-menuitem-disabled {
	cursor: default;
}

.valo .v-disabled > .v-menubar-menuitem:before, .valo .v-menubar > .v-menubar-menuitem-disabled:before {
	display: none;
}

.valo .v-menubar-menuitem-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-menubar > .v-menubar-menuitem-selected {
	color: #ecf2f8;
	
	
	
	border-radius: 0;
	border: 1px solid #1362b1;
	border-top-color: #156ab3;
	border-bottom-color: #1156a8;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	-webkit-box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
	box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-top-width: 0;
	border-left-width: 0;
	border-bottom-width: 0;
	z-index: 2;
}

.valo .v-menubar > .v-menubar-menuitem-selected:hover:before {
	background: none;
}

.valo .v-menubar .v-menubar-submenu-indicator {
	display: none;
}

.valo .v-menubar .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:after {
	font-family: ThemeIcons;
	content: "\f078";
	font-size: 0.7em;
	vertical-align: 0.15em;
	margin: 0 -0.2em 0 0.5em;
	opacity: 0.5;
}

.valo .v-menubar .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:empty:after {
	margin-left: -0.2em;
}

.valo .v-menubar-popup {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 4px 4px;
	margin: 5px 0 0 1px !important;
}

.valo .v-menubar-popup[class*="animate-in"] {
	-webkit-animation: valo-overlay-animate-in 120ms;
	-moz-animation: valo-overlay-animate-in 120ms;
	animation: valo-overlay-animate-in 120ms;
}

.valo .v-menubar-popup[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.valo .v-menubar-popup .v-menubar-submenu {
	outline: none;
}

.valo .v-menubar-popup .v-menubar-menuitem {
	display: block;
	cursor: pointer;
	line-height: 27px;
	padding: 0 20px 0 10px;
	border-radius: 3px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	padding-left: 32px;
	padding-right: 37px;
	position: relative;
}

.valo .v-menubar-popup .v-menubar-menuitem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #0957a6;
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.valo .v-menubar-popup .v-menubar-menuitem .v-icon {
	max-height: 27px;
	margin-right: 5px;
	min-width: 1em;
}

.valo .v-menubar-popup .v-menubar-submenu-indicator {
	display: none;
}

.valo .v-menubar-popup .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:after {
	position: absolute;
	right: 10px;
	font-family: ThemeIcons;
	content: "\f054";
	line-height: 29px;
}

.valo .v-menubar-popup .v-menubar-menuitem-selected {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.valo .v-menubar-popup .v-menubar-separator {
	display: block;
	margin: 4px 0;
	height: 0;
	overflow: hidden;
	border-bottom: 1px solid #e4e4e4;
}

.valo .v-menubar-popup [class*="checked"] .v-menubar-menuitem-caption:before {
	content: "\f00c";
	font-family: ThemeIcons;
	position: absolute;
	left: 10px;
}

.valo .v-menubar-popup [class*="unchecked"] .v-menubar-menuitem-caption:before {
	content: "";
}

.valo .v-menubar-popup [class*="disabled"] {
	cursor: default;
}

.valo .v-menubar-small {
	height: 31px;
	padding: 0 14px;
	
	font-weight: 400;
	
	cursor: default;
	border-radius: 4px;
	padding: 0;
	text-align: left;
	line-height: 29px;
	font-size: 14px;
}

.valo .v-menubar-small:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-menubar-small  > .v-menubar-menuitem {
	padding: 0 12px;
}

.valo .v-menubar-small  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 31px;
}

.valo .v-menubar-borderless {
	border: none;
	border-radius: 0;
	padding: 1px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background: transparent;
	color: inherit;
}

.valo .v-menubar-borderless:focus:after {
	display: none;
}

.valo .v-menubar-borderless .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 4px;
	color: #197de1;
	padding: 0 12px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.valo .v-menubar-borderless .v-menubar-menuitem:first-child, .valo .v-menubar-borderless .v-menubar-menuitem:last-child, .valo .v-menubar-borderless .v-menubar-menuitem:first-child:last-child {
	border-radius: 4px;
}

.valo .v-menubar-borderless .v-menubar-menuitem:before {
	content: none;
}

.valo .v-menubar-borderless .v-menubar-menuitem:hover {
	color: #4396ea;
}

.valo .v-menubar-borderless .v-menubar-menuitem:active {
	color: inherit;
}

.valo .v-menubar-borderless .v-menubar-menuitem-checked, .valo .v-menubar-borderless .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c5c5c5;
	color: #197de1;
}

.valo .v-menubar-borderless .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .valo .v-menubar-borderless .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.valo .v-menubar-borderless .v-menubar-menuitem-selected {
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.valo .v-menubar-borderless .v-menubar-menuitem-selected:hover {
	color: #ecf2f8;
}

.valo .v-menubar-borderless .v-menubar-menuitem-disabled, .valo .v-menubar-borderless .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.valo .v-radiobutton {
	position: relative;
	line-height: 19px;
	white-space: nowrap;
}

.valo .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .valo .v-radiobutton {
	padding-left: 25px;
}

:root .valo .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .valo .v-radiobutton > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .valo .v-radiobutton > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .valo .v-radiobutton > input ~ label:before, :root .valo .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 19px;
	height: 19px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 13px;
	text-align: center;
}

:root .valo .v-radiobutton > input ~ label:before {
	height: 18.5px;
	padding: 0 9px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 19px;
}

:root .valo .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .valo .v-radiobutton > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .valo .v-radiobutton > input:checked ~ label:after {
	color: #197de1;
}

.valo .v-radiobutton > .v-icon, .valo .v-radiobutton > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.valo .v-radiobutton.v-disabled  > label, .valo .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .valo .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.valo .v-radiobutton.v-readonly  > label, .valo .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.valo .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .valo .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .valo .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .valo .v-radiobutton > input:checked ~ label:after {
	width: 7px;
	height: 7px;
	top: 6px;
	left: 6px;
	background: #197de1;
}

:root .valo .v-radiobutton > input ~ label:before, :root .valo .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.valo .v-select-optiongroup .v-radiobutton, .valo .v-select-optiongroup .v-checkbox {
	display: block;
	margin: 9px 16px 0 0;
}

.valo .v-select-optiongroup .v-radiobutton:first-child, .valo .v-select-optiongroup .v-checkbox:first-child {
	margin-top: 6px;
}

.valo .v-select-optiongroup .v-radiobutton:last-child, .valo .v-select-optiongroup .v-checkbox:last-child {
	margin-bottom: 6px;
}

.valo .v-select-optiongroup.v-has-width label {
	white-space: normal;
}

.valo .v-select-optiongroup-small {
	font-size: 14px;
}

.valo .v-select-optiongroup-small .v-checkbox {
	position: relative;
	line-height: 16px;
	white-space: nowrap;
}

.valo .v-select-optiongroup-small .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .valo .v-select-optiongroup-small .v-checkbox {
	padding-left: 21px;
}

:root .valo .v-select-optiongroup-small .v-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .valo .v-select-optiongroup-small .v-checkbox > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .valo .v-select-optiongroup-small .v-checkbox > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .valo .v-select-optiongroup-small .v-checkbox > input ~ label:before, :root .valo .v-select-optiongroup-small .v-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 11px;
	text-align: center;
}

:root .valo .v-select-optiongroup-small .v-checkbox > input ~ label:before {
	height: 15.5px;
	padding: 0 7px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 16px;
}

:root .valo .v-select-optiongroup-small .v-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .valo .v-select-optiongroup-small .v-checkbox > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .valo .v-select-optiongroup-small .v-checkbox > input:checked ~ label:after {
	color: #197de1;
}

.valo .v-select-optiongroup-small .v-checkbox > .v-icon, .valo .v-select-optiongroup-small .v-checkbox > label .v-icon {
	margin: 0 5px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.valo .v-select-optiongroup-small .v-checkbox.v-disabled  > label, .valo .v-select-optiongroup-small .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-select-optiongroup-small .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .valo .v-select-optiongroup-small .v-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.valo .v-select-optiongroup-small .v-checkbox.v-readonly  > label, .valo .v-select-optiongroup-small .v-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.valo .v-select-optiongroup-small .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .valo .v-select-optiongroup-small .v-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .valo .v-select-optiongroup-small .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-select-optiongroup-small .v-radiobutton {
	position: relative;
	line-height: 16px;
	white-space: nowrap;
}

.valo .v-select-optiongroup-small .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .valo .v-select-optiongroup-small .v-radiobutton {
	padding-left: 21px;
}

:root .valo .v-select-optiongroup-small .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .valo .v-select-optiongroup-small .v-radiobutton > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .valo .v-select-optiongroup-small .v-radiobutton > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .valo .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .valo .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 11px;
	text-align: center;
}

:root .valo .v-select-optiongroup-small .v-radiobutton > input ~ label:before {
	height: 15.5px;
	padding: 0 7px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 16px;
}

:root .valo .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .valo .v-select-optiongroup-small .v-radiobutton > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .valo .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	color: #197de1;
}

.valo .v-select-optiongroup-small .v-radiobutton > .v-icon, .valo .v-select-optiongroup-small .v-radiobutton > label .v-icon {
	margin: 0 5px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.valo .v-select-optiongroup-small .v-radiobutton.v-disabled  > label, .valo .v-select-optiongroup-small .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-select-optiongroup-small .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .valo .v-select-optiongroup-small .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.valo .v-select-optiongroup-small .v-radiobutton.v-readonly  > label, .valo .v-select-optiongroup-small .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.valo .v-select-optiongroup-small .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .valo .v-select-optiongroup-small .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .valo .v-select-optiongroup-small .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .valo .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	width: 6px;
	height: 6px;
	top: 5px;
	left: 5px;
	background: #197de1;
}

:root .valo .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .valo .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.valo .v-select-optiongroup-small .v-radiobutton, .valo .v-select-optiongroup-small .v-checkbox {
	display: block;
	margin: 8px 16px 0 0;
}

.valo .v-select-optiongroup-small .v-radiobutton:first-child, .valo .v-select-optiongroup-small .v-checkbox:first-child {
	margin-top: 5px;
}

.valo .v-select-optiongroup-small .v-radiobutton:last-child, .valo .v-select-optiongroup-small .v-checkbox:last-child {
	margin-bottom: 5px;
}

.valo .v-select-optiongroup-small.v-has-width label {
	white-space: normal;
}

.valo .v-select-optiongroup-large {
	font-size: 20px;
}

.valo .v-select-optiongroup-large .v-checkbox {
	position: relative;
	line-height: 22px;
	white-space: nowrap;
}

.valo .v-select-optiongroup-large .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .valo .v-select-optiongroup-large .v-checkbox {
	padding-left: 29px;
}

:root .valo .v-select-optiongroup-large .v-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .valo .v-select-optiongroup-large .v-checkbox > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .valo .v-select-optiongroup-large .v-checkbox > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .valo .v-select-optiongroup-large .v-checkbox > input ~ label:before, :root .valo .v-select-optiongroup-large .v-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 15px;
	text-align: center;
}

:root .valo .v-select-optiongroup-large .v-checkbox > input ~ label:before {
	height: 22px;
	padding: 0 10px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 22px;
}

:root .valo .v-select-optiongroup-large .v-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .valo .v-select-optiongroup-large .v-checkbox > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .valo .v-select-optiongroup-large .v-checkbox > input:checked ~ label:after {
	color: #197de1;
}

.valo .v-select-optiongroup-large .v-checkbox > .v-icon, .valo .v-select-optiongroup-large .v-checkbox > label .v-icon {
	margin: 0 7px 0 4px;
	min-width: 1em;
	cursor: pointer;
}

.valo .v-select-optiongroup-large .v-checkbox.v-disabled  > label, .valo .v-select-optiongroup-large .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-select-optiongroup-large .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .valo .v-select-optiongroup-large .v-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.valo .v-select-optiongroup-large .v-checkbox.v-readonly  > label, .valo .v-select-optiongroup-large .v-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.valo .v-select-optiongroup-large .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .valo .v-select-optiongroup-large .v-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .valo .v-select-optiongroup-large .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-select-optiongroup-large .v-radiobutton {
	position: relative;
	line-height: 22px;
	white-space: nowrap;
}

.valo .v-select-optiongroup-large .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .valo .v-select-optiongroup-large .v-radiobutton {
	padding-left: 29px;
}

:root .valo .v-select-optiongroup-large .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .valo .v-select-optiongroup-large .v-radiobutton > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .valo .v-select-optiongroup-large .v-radiobutton > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .valo .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .valo .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 15px;
	text-align: center;
}

:root .valo .v-select-optiongroup-large .v-radiobutton > input ~ label:before {
	height: 22px;
	padding: 0 10px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 22px;
}

:root .valo .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .valo .v-select-optiongroup-large .v-radiobutton > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .valo .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	color: #197de1;
}

.valo .v-select-optiongroup-large .v-radiobutton > .v-icon, .valo .v-select-optiongroup-large .v-radiobutton > label .v-icon {
	margin: 0 7px 0 4px;
	min-width: 1em;
	cursor: pointer;
}

.valo .v-select-optiongroup-large .v-radiobutton.v-disabled  > label, .valo .v-select-optiongroup-large .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-select-optiongroup-large .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .valo .v-select-optiongroup-large .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.valo .v-select-optiongroup-large .v-radiobutton.v-readonly  > label, .valo .v-select-optiongroup-large .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.valo .v-select-optiongroup-large .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .valo .v-select-optiongroup-large .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .valo .v-select-optiongroup-large .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .valo .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	width: 8px;
	height: 8px;
	top: 7px;
	left: 7px;
	background: #197de1;
}

:root .valo .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .valo .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.valo .v-select-optiongroup-large .v-radiobutton, .valo .v-select-optiongroup-large .v-checkbox {
	display: block;
	margin: 11px 16px 0 0;
}

.valo .v-select-optiongroup-large .v-radiobutton:first-child, .valo .v-select-optiongroup-large .v-checkbox:first-child {
	margin-top: 7px;
}

.valo .v-select-optiongroup-large .v-radiobutton:last-child, .valo .v-select-optiongroup-large .v-checkbox:last-child {
	margin-bottom: 7px;
}

.valo .v-select-optiongroup-large.v-has-width label {
	white-space: normal;
}

.valo .v-select-optiongroup-horizontal {
	white-space: nowrap;
}

.valo .v-select-optiongroup-horizontal .v-radiobutton, .valo .v-select-optiongroup-horizontal .v-checkbox {
	display: inline-block;
}

.valo .v-select-optiongroup-horizontal.v-has-width {
	white-space: normal;
}

.valo .v-select-optiongroup-horizontal.v-has-width label {
	white-space: nowrap;
}

.valo .v-link {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.valo .v-link:hover {
	color: #4396ea;
}

.valo .v-link.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-link a {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	cursor: inherit;
	color: inherit;
	text-decoration: inherit;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	transition: inherit;
}

.valo .v-link a:hover {
	color: #4396ea;
}

.valo .v-link a.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-link .v-icon {
	cursor: inherit;
}

.valo .v-link-small {
	font-size: 14px;
}

.valo .v-link-large {
	font-size: 20px;
}

.valo .v-window {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 16px 80px -6px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 16px 80px -6px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	padding: 0;
	min-width: 148px !important;
	min-height: 37px !important;
	white-space: nowrap;
	overflow: hidden !important;
	-webkit-transition: width 200ms, height 200ms, top 200ms, left 200ms;
	-moz-transition: width 200ms, height 200ms, top 200ms, left 200ms;
	transition: width 200ms, height 200ms, top 200ms, left 200ms;
}

.valo .v-window[class*="animate-in"] {
	-webkit-animation: valo-animate-in-fade 140ms;
	-moz-animation: valo-animate-in-fade 140ms;
	animation: valo-animate-in-fade 140ms;
}

.valo .v-window[class*="animate-out"] {
	-webkit-animation: valo-animate-out-scale-down-fade 100ms;
	-moz-animation: valo-animate-out-scale-down-fade 100ms;
	animation: valo-animate-out-scale-down-fade 100ms;
}

.valo .v-window.v-window-animate-in {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.valo .v-window-modalitycurtain {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #222;
	background-image: -webkit-radial-gradient(50% 50%, circle, #222, #0e0e0e);
	background-image: radial-gradient(  circle at 50% 50%, #222, #0e0e0e);
	opacity: 0.72;
	filter: alpha(opacity=72) ;
	-webkit-animation: valo-animate-in-fade 400ms 100ms backwards;
	-moz-animation: valo-animate-in-fade 400ms 100ms backwards;
	animation: valo-animate-in-fade 400ms 100ms backwards;
}

.v-op12 .valo .v-window-modalitycurtain {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.valo .v-window-draggingCurtain {
	position: fixed !important;
}

.valo .v-window-resizingCurtain + .v-window, .valo .v-window-draggingCurtain + .v-window {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.valo .v-window-outerheader {
	cursor: move;
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
	-ms-transform: translatez(0);
	-o-transform: translatez(0);
	transform: translatez(0);
}

.valo .v-window-outerheader:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #dfdfdf;
	border-color: rgba(197, 197, 197, 0.5);
}

.valo .v-window-header {
	line-height: 36px;
	padding-left: 12px;
	margin-right: 74px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #7e7e7e;
}

.valo .v-window-restorebox-disabled  ~ .v-window-closebox ~ .v-window-header, .valo .v-window-maximizebox-disabled  ~ .v-window-closebox ~ .v-window-header {
	margin-right: 37px;
}

.valo .v-window-restorebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header, .valo .v-window-maximizebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header {
	margin-right: 12px;
}

.valo .v-window-closebox, .valo .v-window-maximizebox, .valo .v-window-restorebox {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	box-sizing: border-box;
	width: 33px;
	height: 36px;
	background-color: white;
	line-height: 34px;
	text-align: center;
	cursor: pointer;
	font-size: 21px;
	color: #999999;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.valo .v-window-closebox:focus, .valo .v-window-maximizebox:focus, .valo .v-window-restorebox:focus {
	outline: none;
}

.valo .v-window-closebox:hover, .valo .v-window-maximizebox:hover, .valo .v-window-restorebox:hover {
	opacity: 1;
	filter: none ;
	color: #197de1;
}

.valo .v-window-closebox:active, .valo .v-window-maximizebox:active, .valo .v-window-restorebox:active {
	color: inherit;
}

.valo .v-window-closebox:focus::after {
	content: "";
	position: absolute;
	top: 6px;
	right: 6px;
	bottom: 6px;
	left: 2px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-window-maximizebox:focus::after, .valo .v-window-restorebox:focus::after {
	content: "";
	position: absolute;
	top: 6px;
	right: 2px;
	bottom: 6px;
	left: 6px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-window-closebox {
	padding-right: 4px;
	border-radius: 0 4px 0 4px;
}

.valo .v-window-closebox:before {
	content: "\00d7";
}

.valo .v-window-maximizebox, .valo .v-window-restorebox {
	right: 33px;
	padding-left: 4px;
	border-radius: 0 0 0 4px;
}

.valo .v-window-maximizebox  + .v-window-closebox, .valo .v-window-restorebox  + .v-window-closebox {
	border-bottom-left-radius: 0;
}

.valo .v-window-closebox-disabled, .valo .v-window-resizebox-disabled, .valo .v-window-restorebox-disabled, .valo .v-window-maximizebox-disabled {
	display: none;
}

.valo .v-window-closebox-disabled  + .v-window-closebox, .valo .v-window-resizebox-disabled  + .v-window-closebox, .valo .v-window-restorebox-disabled  + .v-window-closebox, .valo .v-window-maximizebox-disabled  + .v-window-closebox {
	width: 37px;
	padding-right: 0;
	border-bottom-left-radius: 4px;
}

.valo .v-window-closebox-disabled  + .v-window-closebox:focus::after, .valo .v-window-resizebox-disabled  + .v-window-closebox:focus::after, .valo .v-window-restorebox-disabled  + .v-window-closebox:focus::after, .valo .v-window-maximizebox-disabled  + .v-window-closebox:focus::after {
	left: 6px;
}

.valo .v-window-maximizebox:before {
	content: "+";
}

.valo .v-window-restorebox:before {
	content: "\2013";
}

.valo .v-window > .popupContent, .valo .v-window-wrap, .valo .v-window-contents, .valo .v-window-contents > .v-scrollable {
	height: 100%;
}

.valo .v-window-contents {
	box-sizing: border-box;
	border-radius: 4px;
	margin-top: 0 !important;
}

.valo .v-window-contents  > .v-scrollable {
	position: relative;
}

.valo .v-window-contents  > .v-scrollable  > .v-margin-top {
	padding-top: 12px;
}

.valo .v-window-contents  > .v-scrollable  > .v-margin-right {
	padding-right: 12px;
}

.valo .v-window-contents  > .v-scrollable  > .v-margin-bottom {
	padding-bottom: 12px;
}

.valo .v-window-contents  > .v-scrollable  > .v-margin-left {
	padding-left: 12px;
}

.valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 12px;
}

.valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 12px;
}

.valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 12px;
}

.valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 12px;
}

.valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 12px;
}

.valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 12px;
}

.valo .v-window-contents  > .v-scrollable:focus {
	outline: none;
}

.valo .v-window-contents  > .v-scrollable:before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	height: 0;
	border-top: 1px solid white;
	left: 0;
	right: 0;
}

.valo .v-window-contents  > .v-scrollable .v-panel-captionwrap:after {
	border-color: #dfdfdf;
}

.valo .v-window-contents  > .v-scrollable .v-panel-content:before {
	border-color: white;
}

.valo .v-window-footer {
	height: 0;
}

.valo .v-window-resizebox {
	position: absolute;
	z-index: 1000;
	right: 0;
	bottom: 0;
	width: 19px;
	height: 19px;
	cursor: nwse-resize;
}

.valo .v-window-modalitycurtain:active  ~ .v-window {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.valo .v-window-top-toolbar  > .v-widget, .valo .v-window-bottom-toolbar  > .v-widget {
	vertical-align: top;
}

.valo .v-window-top-toolbar .v-label, .valo .v-window-bottom-toolbar .v-label {
	line-height: 36px;
}

.valo .v-window-top-toolbar .v-spacing, .valo .v-window-bottom-toolbar .v-spacing {
	width: 6px;
}

.valo .v-window-top-toolbar.v-layout {
	padding: 7px 12px;
	position: relative;
	z-index: 2;
	border-top: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
	background-color: #fafafa;
}

.valo .v-window-top-toolbar.v-menubar {
	margin: 12px 12px 6px;
}

.valo .v-window-top-toolbar.v-menubar-borderless {
	padding-left: 6px;
	padding-right: 6px;
	margin: 5px 0;
}

.valo .v-window-bottom-toolbar.v-layout {
	padding: 7px 12px;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #f0f0f0 0, #fafafa 4px);
	background-image: linear-gradient(to bottom,#f0f0f0 0, #fafafa 4px);
	border-top: 1px solid #dfdfdf;
	border-radius: 0 0 4px 4px;
}

.valo .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-layout {
	box-sizing: content-box;
	margin: -12px -12px 0;
}

.valo .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar {
	margin: 0;
}

.valo .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar-borderless {
	margin: -6px -6px 0;
	padding: 0;
}

.valo .v-margin-left.v-margin-right.v-margin-bottom .v-window-bottom-toolbar.v-layout {
	box-sizing: content-box;
	margin: 0 -12px -12px;
}

.valo .v-tree {
	position: relative;
	white-space: nowrap;
}

.valo .v-tree:focus {
	outline: none;
}

.valo .v-tree-node:before {
	content: "";
	position: absolute;
	display: inline-block;
	z-index: 3;
	width: 1.9em;
	height: 28px;
	cursor: pointer;
	background: red;
	opacity: 0;
}

.valo .v-tree-node-caption {
	height: 28px;
	line-height: 27px;
	overflow: hidden;
	white-space: nowrap;
	vertical-align: top;
}

.valo .v-tree-node-caption > div {
	display: inline-block;
	width: 100%;
	position: relative;
	z-index: 2;
}

.valo .v-tree-node-caption > div:before {
	content: "\f0da";
	font-family: ThemeIcons;
	display: inline-block;
	width: 0.5em;
	text-align: center;
	margin: 0 0.6em 0 0.8em;
	-webkit-transition: all 100ms;
	-moz-transition: all 100ms;
	transition: all 100ms;
}

.valo .v-tree-node-caption span {
	padding-right: 28px;
	cursor: pointer;
	display: inline-block;
	width: 100%;
}

.v-ie .valo .v-tree-node-caption span {
	width: auto;
}

.valo .v-tree-node-caption .v-icon {
	padding-right: 0;
	width: auto;
	min-width: 1em;
}

.valo .v-tree-node-caption:after {
	content: "";
	display: block;
	vertical-align: top;
	position: absolute;
	z-index: 1;
	left: 0;
	margin-top: -28px;
	width: 100%;
	height: 28px;
	border-radius: 4px;
	opacity: 0;
	-webkit-transition: opacity 120ms;
	-moz-transition: opacity 120ms;
	transition: opacity 120ms;
}

.valo .v-tree-node-expanded > .v-tree-node-caption > div:before {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
	content: "\f0da";
	font-family: ThemeIcons;
}

.valo .v-tree-node-leaf:before, .valo .v-tree-node-leaf > .v-tree-node-caption > div:before {
	visibility: hidden;
}

.valo .v-tree-node-focused:after {
	opacity: 1;
	border: 1px solid #197de1;
}

.valo .v-tree-node-selected {
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.valo .v-tree-node-selected:after {
	opacity: 1;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	border: none;
}

.valo .v-tree-node-children {
	padding-left: 19px;
}

.valo .v-tree-node-drag-top:before, .valo .v-tree-node-drag-bottom:after, .valo .v-tree-node-drag-bottom.v-tree-node-dragfolder.v-tree-node-expanded > .v-tree-node-children:before {
	content: "\2022";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #197de1;
	font-size: 32px;
	line-height: 2px;
	color: #197de1;
	text-indent: -4px;
	text-shadow: 0 0 1px #fafafa, 0 0 1px #fafafa;
	opacity: 1;
	visibility: visible;
}

.valo .v-tree-node-drag-bottom.v-tree-node-dragfolder.v-tree-node-expanded:after {
	content: none;
}

.valo .v-tree-node-caption-drag-center {
	-webkit-box-shadow: 0 0 0 2px #197de1;
	box-shadow: 0 0 0 2px #197de1;
	position: relative;
	border-radius: 4px;
}

.v-ff .valo .v-tree-node-drag-top:before, .v-ff .valo .v-tree-node-drag-bottom:after {
	line-height: 1px;
}

.valo .v-tree8 {
	position: relative;
}

.valo .v-tree8-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.valo .v-tree8-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.valo .v-tree8-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.valo .v-tree8-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.valo .v-tree8-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.valo .v-tree8-header-deco, .valo .v-tree8-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.valo .v-tree8-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.valo .v-tree8-header, .valo .v-tree8-body, .valo .v-tree8-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.valo .v-tree8-header, .valo .v-tree8-header-deco {
	top: 0;
}

.valo .v-tree8-footer, .valo .v-tree8-footer-deco {
	bottom: 0;
}

.valo .v-tree8-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.valo .v-tree8-body .v-tree8-row {
	position: absolute;
	top: 0;
	left: 0;
}

.valo .v-tree8-body .v-tree8-header > .v-tree8-row {
	position: relative;
}

.valo .v-tree8-row {
	display: block;
}

.valo .v-tree8-row  > td, .valo .v-tree8-row  > th {
	background-color: white;
}

.valo .v-tree8-row {
	width: inherit;
}

.valo .v-tree8-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 16px;
}

.valo .v-tree8-cell.frozen {
	position: relative;
	z-index: 1;
}

.valo .v-tree8-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.valo .v-tree8-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.valo .v-tree8 {
	outline: none;
}

.valo .v-tree8-scroller-vertical, .valo .v-tree8-scroller-horizontal {
	border: 1px solid #d4d4d4;
}

.valo .v-tree8-scroller-vertical {
	border-left: none;
}

.valo .v-tree8-scroller-horizontal {
	border-top: none;
}

.valo .v-tree8-tablewrapper {
	border: 1px solid #d4d4d4;
}

.valo .v-tree8 .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.valo .v-tree8 .header-drag-table .v-tree8-header {
	position: absolute;
}

.valo .v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-cell {
	border: 1px solid #d4d4d4;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.valo .v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-drop-marker {
	background-color: #197de1;
	position: absolute;
	width: 3px;
}

.valo .v-tree8-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	padding: 0;
	z-index: 5;
}

.valo .v-tree8-sidebar.v-contextmenu.v-tree8-sidebar-popup {
	right: auto;
}

.valo .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button {
	background: transparent;
	border: none;
	color: inherit;
	cursor: pointer;
	outline: none;
	padding: 0 4px;
	text-align: right;
	line-height: 1;
}

.valo .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button[disabled] {
	cursor: default;
}

.valo .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button::-moz-focus-inner {
	border: 0;
}

.valo .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 14px;
}

.valo .v-tree8-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.valo .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	width: 100%;
}

.valo .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button:after {
	content: "\f0c9";
	font-size: 14px;
	line-height: 1;
}

.v-ie .valo .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	vertical-align: middle;
}

.valo .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.valo .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.valo .v-tree8-cell {
	background-color: white;
	padding: 0 18px;
	line-height: 37px;
	text-overflow: ellipsis;
}

.valo .v-tree8-cell  > * {
	line-height: 1.55;
	vertical-align: middle;
}

.valo .v-tree8-cell  > div {
	display: inline-block;
}

.valo .v-tree8-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	position: relative;
	z-index: 11;
}

.valo .v-tree8-cell.frozen  + th, .valo .v-tree8-cell.frozen  + td {
	border-left: none;
}

.valo .v-tree8-cell div.component-wrap {
	width: 100%;
}

.valo .v-tree8-row > td, .valo .v-tree8-editor-cells > div {
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}

.valo .v-tree8-row > td:first-child, .valo .v-tree8-editor-cells > div:first-child {
	border-left: none;
}

.valo .v-tree8-editor-cells.frozen > div {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	border-left: none;
}

.valo .v-tree8-row-stripe > td {
	background-color: #f5f5f5;
}

.valo .v-tree8-row-selected > td {
	background: #197de1;
}

.valo .v-tree8-row-focused > td {
	
}

.valo .v-tree8-header th {
	position: relative;
	background-color: #fafafa;
	font-size: 14px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
	
	text-align: left;
}

.valo .v-tree8-header th:first-child {
	border-left: none;
}

.valo .v-tree8-header .sort-asc, .valo .v-tree8-header .sort-desc {
	padding-right: 35px;
}

.valo .v-tree8-header .sort-asc:after, .valo .v-tree8-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 18px;
	font-size: 12px;
}

.valo .v-tree8-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.valo .v-tree8-column-resize-handle {
	position: absolute;
	width: 36px;
	right: -18px;
	top: 0px;
	bottom: 0px;
	cursor: col-resize;
	z-index: 10;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.valo .v-tree8-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 18px;
	z-index: 9001;
	background: #fff;
	box-shadow: 0px 0px 5px #000;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.valo .v-tree8-footer td {
	background-color: #fafafa;
	font-size: 14px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-bottom: none;
	
}

.valo .v-tree8-footer td:first-child {
	border-left: none;
}

.valo .v-tree8-header .v-tree8-cell, .valo .v-tree8-footer .v-tree8-cell {
	overflow: visible;
}

.valo .v-tree8-column-header-content, .valo .v-tree8-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 37px;
	vertical-align: baseline;
}

.valo .v-tree8-header-deco {
	border-top: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.valo .v-tree8-footer-deco {
	border-bottom: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.valo .v-tree8-horizontal-scrollbar-deco {
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	border-top: none;
}

.valo .v-tree8-cell-focused {
	position: relative;
}

.valo .v-tree8-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #197de1;
	display: none;
	pointer-events: none;
}

.valo .v-tree8:focus .v-tree8-cell-focused:before {
	display: block;
}

.valo .v-tree8.v-disabled:focus .v-tree8-cell-focused:before {
	display: none;
}

.valo .v-tree8-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #d4d4d4;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-top: -1px;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}

.valo .v-tree8-editor.unbuffered .v-tree8-editor-footer {
	width: 100%;
}

.valo .v-tree8-editor-cells {
	position: relative;
	white-space: nowrap;
}

.valo .v-tree8-editor-cells.frozen {
	z-index: 2;
}

.valo .v-tree8-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.valo .v-tree8-editor-cells  > div:first-child {
	border-left: none;
}

.valo .v-tree8-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.valo .v-tree8-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.valo .v-tree8-editor-cells  > div input[type="text"], .valo .v-tree8-editor-cells  > div input[type="text"].v-filterselect-input, .valo .v-tree8-editor-cells  > div input[type="password"] {
	padding-left: 18px;
}

.valo .v-tree8-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .valo .v-tree8-editor-cells  > div input[type="password"] {
	padding-right: 9px;
}

.valo .v-tree8-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 18px;
}

.valo .v-tree8-editor-cells  > div .v-textfield, .valo .v-tree8-editor-cells  > div .v-datefield, .valo .v-tree8-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.valo .v-tree8-editor-cells  > div .v-select, .valo .v-tree8-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.valo .v-tree8-editor-cells  > div.not-editable.v-tree8-cell {
	float: none;
}

.valo .v-tree8-editor-cells .error::before {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	content: "";
	border-top: 5px solid red;
	border-right: 5px solid transparent;
}

.valo .v-tree8-editor-cells .error, .valo .v-tree8-editor-cells .error > input {
	background-color: #fee;
}

.valo .v-tree8-editor-footer {
	display: table;
	height: 37px;
	border-top: 1px solid #d4d4d4;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.valo .v-tree8-editor-footer  + .v-tree8-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4d4d4;
}

.valo .v-tree8-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4d4d4;
	margin-bottom: -1px;
}

.valo .v-tree8-editor-message, .valo .v-tree8-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.valo .v-tree8-editor-message {
	width: 100%;
	position: relative;
}

.valo .v-tree8-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 37px;
	top: 0;
}

.valo .v-tree8-editor-save {
	margin-right: 4px;
}

.valo .v-tree8-spacer {
	padding-left: 1px;
}

.valo .v-tree8-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #d4d4d4;
}

.valo .v-tree8-spacer.stripe > td {
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #d4d4d4;
}

.valo .v-tree8-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.valo .v-tree8-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #197de1;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.valo .v-tree8-cell > .v-progressbar {
	width: 100%;
}

.valo .v-tree8 {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #fafafa;
}

.valo .v-tree8.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-tree8-header .v-tree8-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.valo .v-tree8-header .v-tree8-cell.dragged {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.valo .v-tree8-header .v-tree8-cell.dragged-column-header {
	margin-top: -19px;
}

.valo .v-tree8-footer .v-tree8-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.valo .v-tree8-header-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.valo .v-tree8-footer-deco, .valo .v-tree8-horizontal-scrollbar-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.valo .v-tree8-row-selected  > .v-tree8-cell {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #c8dbed;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #1d69b4;
}

.valo .v-tree8-row-selected  > .v-tree8-cell-focused:before {
	border-color: #71b0ef;
}

.valo .v-tree8-editor {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	border-color: #197de1;
}

.valo .v-tree8-editor-footer {
	font-size: 14px;
	padding: 0 6px;
	background: #fafafa;
	-webkit-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
}

.valo .v-tree8-editor-footer:first-child {
	-webkit-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
}

.valo .v-tree8-editor-cells {
	z-index: 1;
}

.valo .v-tree8-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.valo .v-tree8-editor-cells > div.not-editable.v-tree8-cell {
	float: none;
}

.valo .v-tree8-editor-cells > div .error::before {
	border-top: 9px solid #ed473b;
	border-right: 9px solid transparent;
}

.valo .v-tree8-editor-cells > div .error, .valo .v-tree8-editor-cells > div .error > input {
	background-color: #fffbfb;
}

.valo .v-tree8-editor-cells > div .v-textfield, .valo .v-tree8-editor-cells > div .v-textfield-focus, .valo .v-tree8-editor-cells > div .v-datefield, .valo .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .valo .v-tree8-editor-cells > div .v-filterselect-input, .valo .v-tree8-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #f2f2f2;
	box-shadow: inset 0 1px 0 #f2f2f2;
}

.valo .v-tree8-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 44.4px;
}

.valo .v-tree8-editor-cells > div .v-textfield-focus, .valo .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .valo .v-tree8-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.valo .v-tree8-editor-cells > div .v-select {
	padding-left: 9px;
	padding-right: 9px;
}

.valo .v-tree8-editor-cells > div .v-checkbox.v-widget {
	margin: 0 9px 0 18px;
}

.valo .v-tree8-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.valo .v-tree8-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.valo .v-tree8-editor-message > div:before {
	display: inline-block;
	color: #ed473b;
	font-weight: 600;
	width: 19px;
	text-align: center;
	content: "!";
}

.valo .v-tree8-editor-save, .valo .v-tree8-editor-cancel {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	font-weight: 400;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 6px 6px;
	margin: 0;
	outline: none;
}

.valo .v-tree8-editor-save:hover, .valo .v-tree8-editor-cancel:hover {
	color: #4396ea;
}

.valo .v-tree8-editor-save.v-disabled, .valo .v-tree8-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-tree8-spacer {
	margin-top: -1px;
}

.valo .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.valo .v-tree8-sidebar.v-contextmenu.closed {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.valo .v-tree8-scroller::-webkit-scrollbar {
	border: none;
}

.valo .v-tree8-scroller::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border: 4px solid transparent;
	background: rgba(0, 0, 0, 0.3);
	-webkit-background-clip: content-box;
	background-clip: content-box;
}

.valo .v-tree8-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.valo .v-tree8-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.valo .v-tree8-row-drag-badge {
	background-color: red;
	color: white;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	line-height: 30px;
	text-align: center;
	float: left;
}

.valo .v-tree8-row-drag-top, .valo .v-tree8-row-drag-bottom {
	z-index: 100;
}

.valo .v-tree8-row-drag-top:before, .valo .v-tree8-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #197de1;
	pointer-events: none;
	border: none;
}

.valo .v-tree8-row-drag-bottom:after {
	bottom: -1px;
}

.valo .v-tree8-row-drag-top:before {
	top: -1px;
}

.valo .v-tree8-row-drag-top:first-child:before {
	top: 0;
}

.valo .v-tree8-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #197de1;
	pointer-events: none;
}

.valo .v-tree8-row-selected.v-tree8-row-drag-center:after {
	border-color: #1463b3;
}

.valo .v-tree8-row-selected.v-tree8-row-drag-top:before, .valo .v-tree8-row-selected.v-tree8-row-drag-bottom:after {
	background: #1463b3;
}

.valo .v-tree8-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #197de1;
	z-index: 100;
}

.valo .v-tree8-expander {
	display: inline-block;
	vertical-align: top;
}

.valo .v-tree8-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.valo .v-tree8-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.valo .v-tree8-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.valo .v-tree8-expander.collapse-disabled::before {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
}

.valo .v-tree8-node.depth-0 {
	padding-left: 0em;
}

.valo .v-tree8-node.depth-1 {
	padding-left: 1em;
}

.valo .v-tree8-node.depth-2 {
	padding-left: 2em;
}

.valo .v-tree8-node.depth-3 {
	padding-left: 3em;
}

.valo .v-tree8-node.depth-4 {
	padding-left: 4em;
}

.valo .v-tree8-node.depth-5 {
	padding-left: 5em;
}

.valo .v-tree8-node.depth-6 {
	padding-left: 6em;
}

.valo .v-tree8-node.depth-7 {
	padding-left: 7em;
}

.valo .v-tree8-node.depth-8 {
	padding-left: 8em;
}

.valo .v-tree8-node.depth-9 {
	padding-left: 9em;
}

.valo .v-tree8-node.depth-10 {
	padding-left: 10em;
}

.valo .v-tree8-node.depth-11 {
	padding-left: 11em;
}

.valo .v-tree8-node.depth-12 {
	padding-left: 12em;
}

.valo .v-tree8-node.depth-13 {
	padding-left: 13em;
}

.valo .v-tree8-node.depth-14 {
	padding-left: 14em;
}

.valo .v-tree8-node.depth-15 {
	padding-left: 15em;
}

.valo .v-tree8-node.depth-16 {
	padding-left: 16em;
}

.valo .v-tree8-node.depth-17 {
	padding-left: 17em;
}

.valo .v-tree8-node.depth-18 {
	padding-left: 18em;
}

.valo .v-tree8-node.depth-19 {
	padding-left: 19em;
}

.valo .v-tree8-node.depth-20 {
	padding-left: 20em;
}

.valo .v-tree8-node.depth-21 {
	padding-left: 21em;
}

.valo .v-tree8-node.depth-22 {
	padding-left: 22em;
}

.valo .v-tree8-node.depth-23 {
	padding-left: 23em;
}

.valo .v-tree8-node.depth-24 {
	padding-left: 24em;
}

.valo .v-tree8-node.depth-25 {
	padding-left: 25em;
}

.valo .v-tree8-node.depth-26 {
	padding-left: 26em;
}

.valo .v-tree8-node.depth-27 {
	padding-left: 27em;
}

.valo .v-tree8-node.depth-28 {
	padding-left: 28em;
}

.valo .v-tree8-node.depth-29 {
	padding-left: 29em;
}

.valo .v-tree8-node.depth-30 {
	padding-left: 30em;
}

.valo .v-tree8-node.depth-31 {
	padding-left: 31em;
}

.valo .v-tree8-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.valo .v-tree8-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #197de1;
	display: none;
	pointer-events: none;
}

.valo .v-tree8-cell-focused {
	position: static;
}

.valo .v-tree8-cell-focused::before {
	display: none;
}

.valo .v-tree8:focus .v-tree8-row-focused::before {
	display: block;
}

.valo .v-tree8.v-disabled:focus .v-tree8-row-focused::before {
	display: none;
}

.valo .v-tree8:focus .v-tree8-cell-focused::before {
	display: none;
}

.valo .v-tree8 {
	background-color: transparent;
}

.valo .v-tree8-row > td {
	background-color: transparent;
	border: 0;
	line-height: 28px;
}

.valo .v-tree8-row > td  > * {
	vertical-align: baseline;
}

.valo .v-tree8-tablewrapper {
	background-color: transparent;
	border: none;
}

.valo .v-tree8-row::before {
	content: "";
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	pointer-events: none;
	border-width: 1px;
}

.valo .v-tree8-cell {
	position: relative;
}

.valo .v-tree8-row-selected  > .v-tree8-cell {
	background: transparent;
}

.valo .v-tree8-row-selected::before {
	display: block;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
}

.valo .v-tree8:focus .v-tree8-row-selected.v-tree8-row-focused::before {
	border-color: transparent;
	box-shadow: inset 0 0 0 1px #c8dbed;
}

.valo .v-tree8-scroller-vertical {
	border: none;
}

.valo .v-tree8-scroller-horizontal {
	border: none;
}

.valo .v-tree8-header-deco, .valo .v-tree8-footer-deco, .valo .v-tree8-horizontal-scrollbar-deco {
	border: none;
	background: transparent;
}

.valo .v-treegrid {
	position: relative;
}

.valo .v-treegrid-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.valo .v-treegrid-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.valo .v-treegrid-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.valo .v-treegrid-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.valo .v-treegrid-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.valo .v-treegrid-header-deco, .valo .v-treegrid-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.valo .v-treegrid-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.valo .v-treegrid-header, .valo .v-treegrid-body, .valo .v-treegrid-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.valo .v-treegrid-header, .valo .v-treegrid-header-deco {
	top: 0;
}

.valo .v-treegrid-footer, .valo .v-treegrid-footer-deco {
	bottom: 0;
}

.valo .v-treegrid-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.valo .v-treegrid-body .v-treegrid-row {
	position: absolute;
	top: 0;
	left: 0;
}

.valo .v-treegrid-body .v-treegrid-header > .v-treegrid-row {
	position: relative;
}

.valo .v-treegrid-row {
	display: block;
}

.valo .v-treegrid-row  > td, .valo .v-treegrid-row  > th {
	background-color: white;
}

.valo .v-treegrid-row {
	width: inherit;
}

.valo .v-treegrid-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 16px;
}

.valo .v-treegrid-cell.frozen {
	position: relative;
	z-index: 1;
}

.valo .v-treegrid-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.valo .v-treegrid-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.valo .v-treegrid {
	outline: none;
}

.valo .v-treegrid-scroller-vertical, .valo .v-treegrid-scroller-horizontal {
	border: 1px solid #d4d4d4;
}

.valo .v-treegrid-scroller-vertical {
	border-left: none;
}

.valo .v-treegrid-scroller-horizontal {
	border-top: none;
}

.valo .v-treegrid-tablewrapper {
	border: 1px solid #d4d4d4;
}

.valo .v-treegrid .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.valo .v-treegrid .header-drag-table .v-treegrid-header {
	position: absolute;
}

.valo .v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-cell {
	border: 1px solid #d4d4d4;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.valo .v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-drop-marker {
	background-color: #197de1;
	position: absolute;
	width: 3px;
}

.valo .v-treegrid-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	padding: 0;
	z-index: 5;
}

.valo .v-treegrid-sidebar.v-contextmenu.v-treegrid-sidebar-popup {
	right: auto;
}

.valo .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button {
	background: transparent;
	border: none;
	color: inherit;
	cursor: pointer;
	outline: none;
	padding: 0 4px;
	text-align: right;
	line-height: 1;
}

.valo .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button[disabled] {
	cursor: default;
}

.valo .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button::-moz-focus-inner {
	border: 0;
}

.valo .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 14px;
}

.valo .v-treegrid-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.valo .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	width: 100%;
}

.valo .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	font-size: 14px;
	line-height: 1;
}

.v-ie .valo .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	vertical-align: middle;
}

.valo .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.valo .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.valo .v-treegrid-cell {
	background-color: white;
	padding: 0 18px;
	line-height: 37px;
	text-overflow: ellipsis;
}

.valo .v-treegrid-cell  > * {
	line-height: 1.55;
	vertical-align: middle;
}

.valo .v-treegrid-cell  > div {
	display: inline-block;
}

.valo .v-treegrid-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	position: relative;
	z-index: 11;
}

.valo .v-treegrid-cell.frozen  + th, .valo .v-treegrid-cell.frozen  + td {
	border-left: none;
}

.valo .v-treegrid-cell div.component-wrap {
	width: 100%;
}

.valo .v-treegrid-row > td, .valo .v-treegrid-editor-cells > div {
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}

.valo .v-treegrid-row > td:first-child, .valo .v-treegrid-editor-cells > div:first-child {
	border-left: none;
}

.valo .v-treegrid-editor-cells.frozen > div {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	border-left: none;
}

.valo .v-treegrid-row-stripe > td {
	background-color: #f5f5f5;
}

.valo .v-treegrid-row-selected > td {
	background: #197de1;
}

.valo .v-treegrid-row-focused > td {
	
}

.valo .v-treegrid-header th {
	position: relative;
	background-color: #fafafa;
	font-size: 14px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
	
	text-align: left;
}

.valo .v-treegrid-header th:first-child {
	border-left: none;
}

.valo .v-treegrid-header .sort-asc, .valo .v-treegrid-header .sort-desc {
	padding-right: 35px;
}

.valo .v-treegrid-header .sort-asc:after, .valo .v-treegrid-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 18px;
	font-size: 12px;
}

.valo .v-treegrid-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.valo .v-treegrid-column-resize-handle {
	position: absolute;
	width: 36px;
	right: -18px;
	top: 0px;
	bottom: 0px;
	cursor: col-resize;
	z-index: 10;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.valo .v-treegrid-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 18px;
	z-index: 9001;
	background: #fff;
	box-shadow: 0px 0px 5px #000;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.valo .v-treegrid-footer td {
	background-color: #fafafa;
	font-size: 14px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-bottom: none;
	
}

.valo .v-treegrid-footer td:first-child {
	border-left: none;
}

.valo .v-treegrid-header .v-treegrid-cell, .valo .v-treegrid-footer .v-treegrid-cell {
	overflow: visible;
}

.valo .v-treegrid-column-header-content, .valo .v-treegrid-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 37px;
	vertical-align: baseline;
}

.valo .v-treegrid-header-deco {
	border-top: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.valo .v-treegrid-footer-deco {
	border-bottom: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.valo .v-treegrid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	border-top: none;
}

.valo .v-treegrid-cell-focused {
	position: relative;
}

.valo .v-treegrid-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #197de1;
	display: none;
	pointer-events: none;
}

.valo .v-treegrid:focus .v-treegrid-cell-focused:before {
	display: block;
}

.valo .v-treegrid.v-disabled:focus .v-treegrid-cell-focused:before {
	display: none;
}

.valo .v-treegrid-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #d4d4d4;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-top: -1px;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}

.valo .v-treegrid-editor.unbuffered .v-treegrid-editor-footer {
	width: 100%;
}

.valo .v-treegrid-editor-cells {
	position: relative;
	white-space: nowrap;
}

.valo .v-treegrid-editor-cells.frozen {
	z-index: 2;
}

.valo .v-treegrid-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.valo .v-treegrid-editor-cells  > div:first-child {
	border-left: none;
}

.valo .v-treegrid-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.valo .v-treegrid-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.valo .v-treegrid-editor-cells  > div input[type="text"], .valo .v-treegrid-editor-cells  > div input[type="text"].v-filterselect-input, .valo .v-treegrid-editor-cells  > div input[type="password"] {
	padding-left: 18px;
}

.valo .v-treegrid-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .valo .v-treegrid-editor-cells  > div input[type="password"] {
	padding-right: 9px;
}

.valo .v-treegrid-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 18px;
}

.valo .v-treegrid-editor-cells  > div .v-textfield, .valo .v-treegrid-editor-cells  > div .v-datefield, .valo .v-treegrid-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.valo .v-treegrid-editor-cells  > div .v-select, .valo .v-treegrid-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.valo .v-treegrid-editor-cells  > div.not-editable.v-treegrid-cell {
	float: none;
}

.valo .v-treegrid-editor-cells .error::before {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	content: "";
	border-top: 5px solid red;
	border-right: 5px solid transparent;
}

.valo .v-treegrid-editor-cells .error, .valo .v-treegrid-editor-cells .error > input {
	background-color: #fee;
}

.valo .v-treegrid-editor-footer {
	display: table;
	height: 37px;
	border-top: 1px solid #d4d4d4;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.valo .v-treegrid-editor-footer  + .v-treegrid-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4d4d4;
}

.valo .v-treegrid-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4d4d4;
	margin-bottom: -1px;
}

.valo .v-treegrid-editor-message, .valo .v-treegrid-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.valo .v-treegrid-editor-message {
	width: 100%;
	position: relative;
}

.valo .v-treegrid-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 37px;
	top: 0;
}

.valo .v-treegrid-editor-save {
	margin-right: 4px;
}

.valo .v-treegrid-spacer {
	padding-left: 1px;
}

.valo .v-treegrid-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #d4d4d4;
}

.valo .v-treegrid-spacer.stripe > td {
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #d4d4d4;
}

.valo .v-treegrid-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.valo .v-treegrid-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #197de1;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.valo .v-treegrid-cell > .v-progressbar {
	width: 100%;
}

.valo .v-treegrid {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #fafafa;
}

.valo .v-treegrid.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-treegrid-header .v-treegrid-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.valo .v-treegrid-header .v-treegrid-cell.dragged {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.valo .v-treegrid-header .v-treegrid-cell.dragged-column-header {
	margin-top: -19px;
}

.valo .v-treegrid-footer .v-treegrid-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.valo .v-treegrid-header-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.valo .v-treegrid-footer-deco, .valo .v-treegrid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.valo .v-treegrid-row-selected  > .v-treegrid-cell {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #c8dbed;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #1d69b4;
}

.valo .v-treegrid-row-selected  > .v-treegrid-cell-focused:before {
	border-color: #71b0ef;
}

.valo .v-treegrid-editor {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	border-color: #197de1;
}

.valo .v-treegrid-editor-footer {
	font-size: 14px;
	padding: 0 6px;
	background: #fafafa;
	-webkit-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
}

.valo .v-treegrid-editor-footer:first-child {
	-webkit-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
}

.valo .v-treegrid-editor-cells {
	z-index: 1;
}

.valo .v-treegrid-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.valo .v-treegrid-editor-cells > div.not-editable.v-treegrid-cell {
	float: none;
}

.valo .v-treegrid-editor-cells > div .error::before {
	border-top: 9px solid #ed473b;
	border-right: 9px solid transparent;
}

.valo .v-treegrid-editor-cells > div .error, .valo .v-treegrid-editor-cells > div .error > input {
	background-color: #fffbfb;
}

.valo .v-treegrid-editor-cells > div .v-textfield, .valo .v-treegrid-editor-cells > div .v-textfield-focus, .valo .v-treegrid-editor-cells > div .v-datefield, .valo .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .valo .v-treegrid-editor-cells > div .v-filterselect-input, .valo .v-treegrid-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #f2f2f2;
	box-shadow: inset 0 1px 0 #f2f2f2;
}

.valo .v-treegrid-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 44.4px;
}

.valo .v-treegrid-editor-cells > div .v-textfield-focus, .valo .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .valo .v-treegrid-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.valo .v-treegrid-editor-cells > div .v-select {
	padding-left: 9px;
	padding-right: 9px;
}

.valo .v-treegrid-editor-cells > div .v-checkbox.v-widget {
	margin: 0 9px 0 18px;
}

.valo .v-treegrid-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.valo .v-treegrid-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.valo .v-treegrid-editor-message > div:before {
	display: inline-block;
	color: #ed473b;
	font-weight: 600;
	width: 19px;
	text-align: center;
	content: "!";
}

.valo .v-treegrid-editor-save, .valo .v-treegrid-editor-cancel {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	font-weight: 400;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 6px 6px;
	margin: 0;
	outline: none;
}

.valo .v-treegrid-editor-save:hover, .valo .v-treegrid-editor-cancel:hover {
	color: #4396ea;
}

.valo .v-treegrid-editor-save.v-disabled, .valo .v-treegrid-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-treegrid-spacer {
	margin-top: -1px;
}

.valo .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.valo .v-treegrid-sidebar.v-contextmenu.closed {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.valo .v-treegrid-scroller::-webkit-scrollbar {
	border: none;
}

.valo .v-treegrid-scroller::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border: 4px solid transparent;
	background: rgba(0, 0, 0, 0.3);
	-webkit-background-clip: content-box;
	background-clip: content-box;
}

.valo .v-treegrid-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.valo .v-treegrid-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.valo .v-treegrid-row-drag-badge {
	background-color: red;
	color: white;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	line-height: 30px;
	text-align: center;
	float: left;
}

.valo .v-treegrid-row-drag-top, .valo .v-treegrid-row-drag-bottom {
	z-index: 100;
}

.valo .v-treegrid-row-drag-top:before, .valo .v-treegrid-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #197de1;
	pointer-events: none;
	border: none;
}

.valo .v-treegrid-row-drag-bottom:after {
	bottom: -1px;
}

.valo .v-treegrid-row-drag-top:before {
	top: -1px;
}

.valo .v-treegrid-row-drag-top:first-child:before {
	top: 0;
}

.valo .v-treegrid-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #197de1;
	pointer-events: none;
}

.valo .v-treegrid-row-selected.v-treegrid-row-drag-center:after {
	border-color: #1463b3;
}

.valo .v-treegrid-row-selected.v-treegrid-row-drag-top:before, .valo .v-treegrid-row-selected.v-treegrid-row-drag-bottom:after {
	background: #1463b3;
}

.valo .v-treegrid-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #197de1;
	z-index: 100;
}

.valo .v-treegrid-expander {
	display: inline-block;
	vertical-align: top;
}

.valo .v-treegrid-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.valo .v-treegrid-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.valo .v-treegrid-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.valo .v-treegrid-expander.collapse-disabled::before {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
}

.valo .v-treegrid-node.depth-0 {
	padding-left: 0em;
}

.valo .v-treegrid-node.depth-1 {
	padding-left: 1em;
}

.valo .v-treegrid-node.depth-2 {
	padding-left: 2em;
}

.valo .v-treegrid-node.depth-3 {
	padding-left: 3em;
}

.valo .v-treegrid-node.depth-4 {
	padding-left: 4em;
}

.valo .v-treegrid-node.depth-5 {
	padding-left: 5em;
}

.valo .v-treegrid-node.depth-6 {
	padding-left: 6em;
}

.valo .v-treegrid-node.depth-7 {
	padding-left: 7em;
}

.valo .v-treegrid-node.depth-8 {
	padding-left: 8em;
}

.valo .v-treegrid-node.depth-9 {
	padding-left: 9em;
}

.valo .v-treegrid-node.depth-10 {
	padding-left: 10em;
}

.valo .v-treegrid-node.depth-11 {
	padding-left: 11em;
}

.valo .v-treegrid-node.depth-12 {
	padding-left: 12em;
}

.valo .v-treegrid-node.depth-13 {
	padding-left: 13em;
}

.valo .v-treegrid-node.depth-14 {
	padding-left: 14em;
}

.valo .v-treegrid-node.depth-15 {
	padding-left: 15em;
}

.valo .v-treegrid-node.depth-16 {
	padding-left: 16em;
}

.valo .v-treegrid-node.depth-17 {
	padding-left: 17em;
}

.valo .v-treegrid-node.depth-18 {
	padding-left: 18em;
}

.valo .v-treegrid-node.depth-19 {
	padding-left: 19em;
}

.valo .v-treegrid-node.depth-20 {
	padding-left: 20em;
}

.valo .v-treegrid-node.depth-21 {
	padding-left: 21em;
}

.valo .v-treegrid-node.depth-22 {
	padding-left: 22em;
}

.valo .v-treegrid-node.depth-23 {
	padding-left: 23em;
}

.valo .v-treegrid-node.depth-24 {
	padding-left: 24em;
}

.valo .v-treegrid-node.depth-25 {
	padding-left: 25em;
}

.valo .v-treegrid-node.depth-26 {
	padding-left: 26em;
}

.valo .v-treegrid-node.depth-27 {
	padding-left: 27em;
}

.valo .v-treegrid-node.depth-28 {
	padding-left: 28em;
}

.valo .v-treegrid-node.depth-29 {
	padding-left: 29em;
}

.valo .v-treegrid-node.depth-30 {
	padding-left: 30em;
}

.valo .v-treegrid-node.depth-31 {
	padding-left: 31em;
}

.valo .v-treegrid-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.valo .v-treegrid-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #197de1;
	display: none;
	pointer-events: none;
}

.valo .v-treegrid-cell-focused {
	position: static;
}

.valo .v-treegrid-cell-focused::before {
	display: none;
}

.valo .v-treegrid:focus .v-treegrid-row-focused::before {
	display: block;
}

.valo .v-treegrid.v-disabled:focus .v-treegrid-row-focused::before {
	display: none;
}

.valo .v-treegrid:focus .v-treegrid-cell-focused::before {
	display: none;
}

.valo .v-table {
	position: relative;
	background: #fafafa;
	color: #464646;
	overflow: hidden;
}

.valo .v-table-header table, .valo .v-table-footer table, .valo .v-table-table {
	-webkit-box-shadow: 0 0 0 1px #d4d4d4;
	box-shadow: 0 0 0 1px #d4d4d4;
}

.valo .v-table-header-wrap, .valo .v-table-footer-wrap, .valo .v-table-header-drag {
	border: 1px solid #d4d4d4;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	white-space: nowrap;
	font-size: 14px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.valo .v-table-header-wrap {
	position: relative;
	border-bottom: none;
}

.valo .v-table-footer-wrap {
	border-top: none;
}

.valo .v-table-footer td {
	border-left: 1px solid #d4d4d4;
}

.valo .v-table-footer-container, .valo .v-table-caption-container {
	overflow: hidden;
	line-height: 1;
	min-height: 37px;
	box-sizing: border-box;
}

.valo .v-table-footer-container {
	padding: 11px 12px 12px;
	float: right;
}

.valo [class^="v-table-header-cell"] {
	position: relative;
}

.valo .v-table-caption-container, .valo .v-table-header-drag {
	padding: 12px 12px 11px;
	border-left: 1px solid #d4d4d4;
}

.valo .v-table-caption-container-align-right {
	padding-right: 4px;
}

.valo .v-table-resizer {
	height: 37px;
	width: 8px;
	cursor: e-resize;
	cursor: col-resize;
	position: relative;
	right: -4px;
	z-index: 1;
	margin-left: -8px;
}

.valo .v-table-cell-content {
	border-left: 1px solid #d4d4d4;
	overflow: hidden;
	height: 38px;
	vertical-align: middle;
}

.valo .v-table-cell-content:first-child {
	border-left: none;
	padding-left: 1px;
}

.valo .v-table-header td:first-child .v-table-caption-container, .valo .v-table-footer td:first-child {
	border-left-color: transparent;
}

.valo .v-table-cell-wrapper {
	line-height: 1;
	padding: 0 12px;
	box-sizing: border-box;
	margin-right: 0 !important;
}

.valo .v-table-cell-wrapper  > .v-widget {
	margin: 3px -6px;
}

.valo .v-table-cell-wrapper  > .v-widget.v-label, .valo .v-table-cell-wrapper  > .v-widget.v-checkbox, .valo .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.valo .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.valo .v-table-body {
	border: 1px solid #d4d4d4;
	overflow-anchor: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.valo .v-table-table {
	background-color: white;
	white-space: nowrap;
}

.valo .v-table-table td {
	border-top: 1px solid #d4d4d4;
	box-sizing: border-box;
}

.valo .v-table-table tr:first-child > td {
	height: 37px;
	border-top: none;
}

.valo .v-table-row {
	background-color: white;
	cursor: pointer;
}

.valo .v-table-row-odd {
	background-color: #f5f5f5;
	cursor: pointer;
}

.valo .v-table-body-noselection .v-table-row, .valo .v-table-body-noselection .v-table-row-odd {
	cursor: default;
}

.valo .v-table [class*="-row"].v-selected {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	background-origin: border-box;
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.valo .v-table [class*="-row"].v-selected  + .v-selected {
	background: #166ed5;
}

.valo .v-table [class*="-row"].v-selected  + .v-selected td {
	border-top-color: #166ed5;
}

.valo .v-table [class*="-row"].v-selected .v-table-cell-content {
	border-color: transparent;
	border-left-color: #1d69b4;
}

.valo .v-table [class*="-row"].v-selected .v-table-cell-content:first-child {
	border-left-color: transparent;
}

.valo .v-table-header-cell-asc .v-table-sort-indicator, .valo .v-table-header-cell-desc .v-table-sort-indicator {
	background: transparent;
	width: 19px;
	height: 37px;
	line-height: 37px;
	margin-left: -19px;
}

.valo .v-table-header-cell-asc .v-table-sort-indicator:before, .valo .v-table-header-cell-desc .v-table-sort-indicator:before {
	font-style: normal;
	font-weight: normal;
	display: inline-block;
}

.valo .v-table-header-cell-asc .v-table-sort-indicator:before {
	content: "\f0de";
	font-family: ThemeIcons;
}

.valo .v-table-header-cell-desc .v-table-sort-indicator:before {
	content: "\f0dd";
	font-family: ThemeIcons;
}

.valo [class*="rowheader"] span.v-icon {
	min-width: 1em;
}

.valo .v-table-focus {
	outline: 1px solid #197de1;
	outline-offset: -1px;
}

.valo .v-drag-element.v-table-focus, .valo .v-drag-element .v-table-focus {
	outline: none;
}

.valo .v-table-header-drag {
	position: absolute;
	opacity: 0.9;
	filter: alpha(opacity=90) ;
	margin-top: -19px;
	z-index: 30000;
	line-height: 1;
}

.valo .v-table-focus-slot-right {
	border-right: 3px solid #197de1;
	right: -2px;
	margin-left: -11px !important;
}

.valo .v-table-focus-slot-left {
	float: left;
	border-left: 3px solid #197de1;
	left: -1px;
	right: auto;
	margin-left: 0 !important;
	margin-right: -11px;
}

.valo .v-table-column-selector {
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	width: 19px;
	height: 19px;
	line-height: 19px;
	padding: 0;
	border-top-width: 0;
	border-right-width: 0;
	border-radius: 0 0 0 4px;
	cursor: pointer;
	text-align: center;
	opacity: 0;
	filter: alpha(opacity=0) ;
	-webkit-transition: opacity 200ms 2s;
	-moz-transition: opacity 200ms 2s;
	transition: opacity 200ms 2s;
}

.valo .v-table-column-selector:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-table-column-selector:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.valo .v-table-column-selector:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-table-column-selector:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.valo .v-table-column-selector:after {
	content: "";
	position: absolute;
	border: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.valo .v-table-column-selector:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.valo .v-table-column-selector:before {
	font-family: ThemeIcons;
	content: "\f013";
}

.valo .v-table-header-wrap:hover .v-table-column-selector {
	opacity: 1;
	filter: none ;
	-webkit-transition-delay: 200ms;
	-moz-transition-delay: 200ms;
	transition-delay: 200ms;
}

.valo .v-on:before, .valo .v-off:before {
	content: "\f00c";
	font-family: ThemeIcons;
	font-size: 0.9em;
	margin-right: 6px;
}

.valo .v-on div, .valo .v-off div {
	display: inline;
}

.valo .v-on.v-disabled, .valo .v-off.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-off:before {
	visibility: hidden;
}

.valo tbody.v-drag-element {
	display: block;
	overflow: visible;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	opacity: 1;
	filter: none ;
}

.valo tbody.v-drag-element tr {
	display: block;
	
	
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	overflow: hidden;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	background: white;
}

.valo .v-table-body {
	position: relative;
	z-index: 1;
}

.valo .v-table-scrollposition {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 37px;
	line-height: 37px;
	margin: -19px 0 0 !important;
	text-align: center;
}

.valo .v-table-drag {
	overflow: visible;
}

.valo .v-table-drag .v-table-body {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	border-color: #197de1;
}

.valo .v-table-drag .v-table-body .v-table-focus {
	outline: none;
}

.valo .v-table-row-drag-middle .v-table-cell-content {
	background-color: #d1e5f9;
	color: #214060;
}

.valo .v-table-row-drag-bottom td.v-table-cell-content {
	border-bottom: 2px solid #197de1;
	height: 36px;
}

.valo .v-table-row-drag-bottom .v-table-cell-wrapper {
	margin-bottom: -2px;
}

.valo .v-table-row-drag-top td.v-table-cell-content {
	border-top: 2px solid #197de1;
	height: 37px;
}

.valo .v-table-row-drag-top .v-table-cell-wrapper {
	margin-top: -1px;
}

.valo .v-table-no-stripes .v-table-row, .valo .v-table-no-stripes .v-table-row-odd {
	background: transparent;
}

.valo .v-table-no-vertical-lines .v-table-cell-content {
	border-left: none;
	padding-left: 1px;
}

.valo .v-table-no-vertical-lines.v-treetable .v-table-cell-content {
	padding-left: 13px;
}

.valo .v-table-no-horizontal-lines .v-table-cell-content {
	border-top: none;
	border-bottom: none;
}

.valo .v-table-no-horizontal-lines .v-table-row-drag-top .v-table-cell-content, .valo .v-table-no-horizontal-lines .v-table-row-drag-bottom .v-table-cell-content {
	height: 37px;
}

.valo .v-table-no-header .v-table-header-wrap {
	display: none;
}

.valo .v-table-borderless .v-table-header-wrap, .valo .v-table-borderless .v-table-footer-wrap, .valo .v-table-borderless .v-table-header-drag, .valo .v-table-borderless .v-table-body {
	border: none;
}

.valo .v-table-borderless .v-table-header-wrap {
	border-bottom: 1px solid #d9d9d9;
}

.valo .v-table-borderless .v-table-footer-wrap {
	border-top: 1px solid #d9d9d9;
}

.valo .v-table-compact .v-table-header-wrap, .valo .v-table-compact .v-table-footer-wrap, .valo .v-table-compact .v-table-header-drag, .valo .v-table-small .v-table-header-wrap, .valo .v-table-small .v-table-footer-wrap, .valo .v-table-small .v-table-header-drag {
	font-size: 14px;
}

.valo .v-table-compact .v-table-footer-container, .valo .v-table-small .v-table-footer-container {
	padding: 8px 7px 9px;
}

.valo .v-table-compact .v-table-caption-container, .valo .v-table-compact .v-table-header-drag, .valo .v-table-small .v-table-caption-container, .valo .v-table-small .v-table-header-drag {
	padding-top: 9px;
	padding-bottom: 8px;
	padding-left: 6px;
	padding-right: 6px;
}

.valo .v-table-compact .v-table-caption-container-align-right, .valo .v-table-small .v-table-caption-container-align-right {
	padding-right: 0;
}

.valo .v-table-compact .v-table-resizer, .valo .v-table-small .v-table-resizer {
	height: 31px;
}

.valo .v-table-compact .v-table-cell-content, .valo .v-table-small .v-table-cell-content {
	height: 31px;
}

.valo .v-table-compact .v-table-cell-wrapper, .valo .v-table-small .v-table-cell-wrapper {
	padding-left: 6px;
	padding-right: 6px;
}

.valo .v-table-compact .v-table-cell-wrapper  > .v-widget, .valo .v-table-small .v-table-cell-wrapper  > .v-widget {
	margin: 2px -3px;
}

.valo .v-table-compact .v-table-cell-wrapper  > .v-widget.v-label, .valo .v-table-compact .v-table-cell-wrapper  > .v-widget.v-checkbox, .valo .v-table-compact .v-table-cell-wrapper  > .v-widget.v-select-optiongroup, .valo .v-table-small .v-table-cell-wrapper  > .v-widget.v-label, .valo .v-table-small .v-table-cell-wrapper  > .v-widget.v-checkbox, .valo .v-table-small .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.valo .v-table-compact .v-table-cell-wrapper  > .v-widget.v-progressbar, .valo .v-table-small .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.valo .v-table-compact .v-table-header-cell-asc .v-table-sort-indicator, .valo .v-table-compact .v-table-header-cell-desc .v-table-sort-indicator, .valo .v-table-small .v-table-header-cell-asc .v-table-sort-indicator, .valo .v-table-small .v-table-header-cell-desc .v-table-sort-indicator {
	height: 31px;
	line-height: 31px;
}

.valo .v-table-compact .v-table-header-drag, .valo .v-table-small .v-table-header-drag {
	margin-top: -16px;
}

.valo .v-table-compact.v-treetable .v-table-cell-wrapper, .valo .v-table-small.v-treetable .v-table-cell-wrapper {
	padding-left: 0;
	padding-right: 0;
	min-height: 16px;
}

.valo .v-table-compact.v-treetable .v-table-cell-content, .valo .v-table-small.v-treetable .v-table-cell-content {
	padding-left: 6px;
	padding-right: 6px;
}

.valo .v-table-compact.v-treetable .v-table-cell-content:first-child, .valo .v-table-small.v-treetable .v-table-cell-content:first-child {
	padding-left: 7px;
}

.valo .v-table-compact.v-treetable .v-table-footer-container, .valo .v-table-small.v-treetable .v-table-footer-container {
	padding-left: 6px;
	padding-right: 6px;
}

.valo .v-table-compact .v-table-row-drag-top .v-table-cell-content, .valo .v-table-compact .v-table-row-drag-bottom .v-table-cell-content, .valo .v-table-small .v-table-row-drag-top .v-table-cell-content, .valo .v-table-small .v-table-row-drag-bottom .v-table-cell-content {
	height: 30px;
}

.valo .v-table-small {
	font-size: 14px;
}

.valo .v-table-small.v-treetable .v-table-cell-wrapper {
	min-height: 14px;
}

.valo .v-treetable [class*="caption-container"], .valo .v-treetable [class*="footer-container"], .valo .v-treetable [class*="cell-wrapper"] {
	box-sizing: content-box;
	padding-left: 0;
	padding-right: 0;
}

.valo .v-treetable [class*="caption-container"], .valo .v-treetable [class*="footer-container"] {
	min-height: 14px;
}

.valo .v-treetable [class*="cell-wrapper"] {
	min-height: 16px;
}

.valo .v-treetable [class*="caption-container"] {
	padding-left: 12px;
}

.valo .v-treetable [class*="caption-container-align-right"] {
	padding-left: 20px;
}

.valo .v-treetable [class*="footer-container"] {
	padding-right: 12px;
}

.valo .v-treetable [class*="cell-content"] {
	padding-left: 12px;
	padding-right: 12px;
}

.valo .v-treetable [class*="cell-content"]:first-child {
	padding-left: 13px;
}

.valo .v-treetable-treespacer {
	display: inline-block;
	position: absolute;
	width: 19px !important;
	margin-left: -25px;
	text-align: center;
	cursor: pointer;
}

.valo .v-treetable-node-closed:before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.valo .v-treetable-node-open:before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.valo .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter {
	width: 1px;
}

.valo .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter:after {
	left: -6px;
	right: -6px;
}

.valo .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before {
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(left, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to right,#fafafa 2%, #efefef 98%);
}

.valo .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.valo .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.valo .v-splitpanel-horizontal  > div > .v-splitpanel-second-container {
	margin-left: 1px;
}

.valo .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter {
	height: 1px;
}

.valo .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter:after {
	top: -6px;
	bottom: -6px;
}

.valo .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before {
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
}

.valo .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.valo .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter {
	width: 12px;
}

.valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter:after {
	left: 0px;
	right: 0px;
}

.valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before {
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(left, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to right,#fafafa 2%, #efefef 98%);
}

.valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:after {
	content: "";
	border: 1px solid #dadada;
	border-top-color: #bababa;
	border-left-color: #bababa;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 37px;
	margin-left: -1px;
	margin-top: -19px;
}

.valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-second-container {
	margin-left: 12px;
}

.valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter {
	height: 12px;
}

.valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter:after {
	top: 0px;
	bottom: 0px;
}

.valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before {
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
}

.valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:after {
	content: "";
	border: 1px solid #dadada;
	border-top-color: #bababa;
	border-left-color: #bababa;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 37px;
	height: 0;
	margin-left: -19px;
	margin-top: -1px;
}

.valo .v-progressbar-wrapper {
	border-radius: 4px;
	height: 9px;
	background-color: #d4d4d4;
	background-image: -webkit-linear-gradient(bottom, #d7d7d7 2%, #c7c7c7 98%);
	background-image: linear-gradient(to top,#d7d7d7 2%, #c7c7c7 98%);
	box-sizing: border-box;
	min-width: 74px;
}

.valo .v-progressbar-indicator {
	border-radius: 4px;
	height: inherit;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	
	
	border: 1px solid #1362b1;
	box-sizing: border-box;
	max-width: 100%;
	min-width: 8px;
	-webkit-transition: width 160ms;
	-moz-transition: width 160ms;
	transition: width 160ms;
}

.valo .v-progressbar-point .v-progressbar-indicator {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	text-align: right;
	overflow: hidden;
}

.valo .v-progressbar-point .v-progressbar-indicator:before {
	content: "";
	display: inline-block;
	border-radius: 4px;
	height: inherit;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	
	
	border: 1px solid #1362b1;
	box-sizing: border-box;
	max-width: 100%;
	width: 9px;
	vertical-align: top;
}

.valo .v-progressbar-indeterminate {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(25, 125, 225, 0.2);
	border-top-color: #197de1;
	border-right-color: #197de1;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
}

.valo .v-progressbar-indeterminate .v-progressbar-wrapper {
	display: none;
}

.valo .v-slider {
	position: relative;
}

.valo .v-slider:focus {
	outline: none;
}

.valo .v-slider:focus .v-slider-handle:after {
	opacity: 1;
}

.valo .v-slider.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-slider-base {
	border-radius: 4px;
	height: 9px;
	background-color: #d4d4d4;
	background-image: -webkit-linear-gradient(bottom, #d7d7d7 2%, #c7c7c7 98%);
	background-image: linear-gradient(to top,#d7d7d7 2%, #c7c7c7 98%);
	box-sizing: border-box;
	min-width: 74px;
	height: 6px;
	margin: 16px 11px;
	white-space: nowrap;
	overflow: hidden;
	
}

.valo .v-slider-base:before {
	content: "";
	position: absolute;
	top: 16px;
	bottom: 16px;
	left: 11px;
	width: 8px;
	border-radius: 4px;
	border-left: 1px solid #1362b1;
}

.valo .v-slider-base:after {
	border-radius: 4px;
	height: inherit;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	
	
	border: 1px solid #1362b1;
	box-sizing: border-box;
	max-width: 100%;
	content: "";
	display: inline-block;
	margin-left: -100%;
	width: 100%;
	vertical-align: top;
}

.valo .v-has-width > .v-slider-base {
	min-width: 0;
}

.valo .v-slider-handle {
	margin-top: -16px;
	width: 0.1px;
	display: inline-block;
	vertical-align: top;
}

.valo .v-slider-handle:before {
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.valo .v-slider-handle:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.valo .v-slider-handle:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.valo .v-slider-handle:before:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-slider-handle:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.valo .v-slider-handle:after {
	border: 1px solid #c5c5c5;
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	opacity: 0;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
}

.valo .v-slider-handle:before, .valo .v-slider-handle:after {
	content: "";
	box-sizing: border-box;
	padding: 0;
	width: 22px;
	height: 22px;
	border-radius: 11px;
	position: absolute;
	z-index: 1;
	margin-top: 8px;
	margin-left: -11px;
}

.valo .v-slider-feedback {
	background-color: rgba(50, 50, 50, 0.9);
	-webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	color: white;
	padding: 5px 9px;
	border-radius: 3px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 14px;
}

.valo .v-slider-vertical {
	padding: 11px 0;
	height: 96px;
}

.valo .v-slider-vertical .v-slider-base {
	background-color: #d4d4d4;
	background-image: -webkit-linear-gradient(right, #d7d7d7 2%, #c7c7c7 98%);
	background-image: linear-gradient(to left,#d7d7d7 2%, #c7c7c7 98%);
	width: 6px;
	height: 100% !important;
	min-width: 0;
	margin: 0 16px;
}

.valo .v-slider-vertical .v-slider-base:before {
	top: auto;
	bottom: 11px;
	left: 16px;
	right: 16px;
	width: auto;
	height: 8px;
	border-left: none;
	border-bottom: 1px solid #1362b1;
}

.valo .v-slider-vertical .v-slider-base:after {
	height: 101%;
	margin-left: 0;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(left, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to right,#1b87e3 2%, #166ed5 98%);
}

.valo .v-slider-vertical .v-slider-handle {
	width: 0;
	height: 0.1px;
	width: 37px;
	display: block;
}

.valo .v-slider-vertical .v-slider-handle:before, .valo .v-slider-vertical .v-slider-handle:after {
	width: 22px;
	height: 22px;
	margin-top: -11px;
	margin-left: -8px;
}

.valo .v-slider-no-indicator .v-slider-base:before, .valo .v-slider-no-indicator .v-slider-base:after {
	display: none;
}

.valo .v-tabsheet:not(.v-has-width) {
	width: auto !important;
}

.valo .v-tabsheet-spacertd {
	display: none !important;
}

.valo .v-tabsheet-tabcontainer {
	position: relative;
	box-sizing: border-box;
}

.valo .v-tabsheet-tabcontainer:before {
	content: "";
	position: absolute;
	height: 0;
	border-top: 1px solid #dfdfdf;
	bottom: 0;
	left: 0;
	right: 0;
}

.valo .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	position: relative;
}

.valo .v-tabsheet-tabitemcell {
	vertical-align: bottom;
}

.valo .v-tabsheet-tabitemcell .v-tabsheet-tabitem {
	line-height: 0;
	overflow: hidden;
}

.valo .v-tabsheet-tabitemcell .v-caption {
	margin-left: 19px;
	padding: 0 4px;
	box-sizing: border-box;
	cursor: pointer;
	text-align: center;
	line-height: 37px;
	font-size: 15px;
	font-weight: 300;
	color: #696969;
	width: auto !important;
	overflow: hidden;
	text-overflow: ellipsis;
	border-bottom: 2px solid transparent;
	position: relative;
	-webkit-transition: border-bottom 200ms, color 200ms;
	-moz-transition: border-bottom 200ms, color 200ms;
	transition: border-bottom 200ms, color 200ms;
}

.valo .v-tabsheet-tabitemcell .v-caption .v-captiontext {
	display: inline;
}

.valo .v-tabsheet-tabitemcell .v-caption .v-icon + .v-captiontext {
	margin-left: 9px;
}

.valo .v-tabsheet-tabitemcell .v-caption:hover {
	color: #197de1;
}

.valo .v-tabsheet-tabitemcell .v-caption.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
	color: inherit !important;
}

.valo .v-tabsheet-tabitemcell:first-child .v-caption, .valo .v-tabsheet-tabitemcell[aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.valo .v-tabsheet-tabitemcell:not([aria-hidden="true"]) ~ td .v-caption {
	margin-left: 19px;
}

.valo .v-tabsheet-tabitemcell:focus {
	outline: none;
}

.valo .v-tabsheet-tabitemcell:focus .v-caption {
	color: #197de1;
}

.valo .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	border-bottom-color: #197de1;
	color: #197de1;
}

.valo .v-tabsheet-tabitemcell .v-caption-closable {
	padding-right: 22px;
}

.valo .v-tabsheet-tabitemcell.icons-on-top .v-caption-closable {
	padding-right: 4px;
}

.valo .v-tabsheet-tabitemcell .v-tabsheet-caption-close {
	position: absolute;
	right: 0;
	top: 50%;
	margin: -8px 0 0;
	font-size: 18px;
	line-height: 18px;
	width: 18px;
	text-align: center;
	border-radius: 2px;
	color: #969696;
}

.valo .v-tabsheet-tabitemcell .v-tabsheet-caption-close:hover {
	background: rgba(0, 0, 0, 0.03);
	color: #197de1;
}

.valo .v-tabsheet-tabitemcell .v-tabsheet-caption-close:active {
	background: #197de1;
	color: #c8dbed;
}

.valo .v-tabsheet-scroller {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding-left: 19px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(right, #fafafa 70%, rgba(250, 250, 250, 0) 100%);
	background-image: linear-gradient(to left,#fafafa 70%, rgba(250, 250, 250, 0) 100%);
	pointer-events: none;
}

.valo .v-tabsheet-scroller:after {
	content: "";
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	background-color: transparent;
	background-image: -webkit-linear-gradient(right, #dfdfdf 70%, rgba(223, 223, 223, 0) 100%);
	background-image: linear-gradient(to left,#dfdfdf 70%, rgba(223, 223, 223, 0) 100%);
}

.valo .v-tabsheet-scroller button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	font: inherit;
	color: inherit;
	height: 100%;
	margin: 0;
	padding: 0 9px;
	outline: none;
	cursor: pointer;
	pointer-events: auto;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-tabsheet-scroller button:hover {
	opacity: 1;
	filter: none ;
	color: #197de1;
}

.valo .v-tabsheet-scroller button:active {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
	color: #197de1;
}

.valo .v-tabsheet-scroller button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.valo .v-tabsheet-scroller [class*="Next"] {
	padding-left: 5px;
}

.valo .v-tabsheet-scroller [class*="Next"]:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.valo .v-tabsheet-scroller [class*="Prev"] {
	padding-right: 5px;
}

.valo .v-tabsheet-scroller [class*="Prev"]:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.valo .v-tabsheet-scroller [class*="disabled"] {
	cursor: default;
	color: inherit !important;
	opacity: 0.1 !important;
	filter: alpha(opacity=10) !important;
}

.valo .v-tabsheet-tabsheetpanel > .v-scrollable > .v-widget {
	-webkit-animation: valo-animate-in-fade 300ms backwards;
	-moz-animation: valo-animate-in-fade 300ms backwards;
	animation: valo-animate-in-fade 300ms backwards;
}

.valo .v-tabsheet-deco {
	height: 20px !important;
	width: 20px !important;
	box-sizing: border-box;
	border: 2px solid rgba(25, 125, 225, 0.2);
	border-top-color: #197de1;
	border-right-color: #197de1;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
	display: none;
	position: absolute;
	z-index: 1;
	bottom: 50%;
	margin-bottom: -29px;
	left: 50%;
	margin-left: -10px;
}

.valo .v-tabsheet-loading .v-tabsheet-deco {
	display: block;
}

.valo .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer table, .valo .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tbody, .valo .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	width: 100%;
}

.valo .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	display: table;
	table-layout: fixed;
}

.valo .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer td {
	display: table-cell;
}

.valo .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer .v-caption {
	margin: 0;
	display: block;
}

.valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption {
	margin-left: 4px;
	padding: 0 12px;
	background-color: #fafafa;
	border: 1px solid transparent;
	line-height: 36px;
	border-radius: 4px 4px 0 0;
	font-weight: 400;
	-webkit-transition: background-color 160ms;
	-moz-transition: background-color 160ms;
	transition: background-color 160ms;
}

.valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption:hover {
	background-color: #f2f2f2;
	border-bottom-color: #dfdfdf;
}

.valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption.v-disabled:hover {
	background-color: #fafafa;
}

.valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 30px;
}

.valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	right: 4px;
	margin-top: 0;
}

.valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer td:first-child .v-caption, .valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer [aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer :not([aria-hidden="true"]) ~ td .v-caption {
	margin-left: 4px;
}

.valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	border-color: #dfdfdf;
}

.valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	background: white;
	border-color: #dfdfdf;
	border-bottom: none;
	padding-bottom: 1px;
}

.valo .v-tabsheet-framed  > .v-tabsheet-content {
	border: 1px solid #dfdfdf;
	border-top: none;
}

.valo .v-tabsheet-framed  > .v-tabsheet-content  > div {
	background: white;
}

.valo .v-tabsheet-framed.padded-tabbar  > .v-tabsheet-tabcontainer {
	border: 1px solid #dfdfdf;
	border-bottom: none;
	background: #fafafa;
	padding-top: 6px;
}

.valo .v-tabsheet-framed.icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	padding-bottom: 7px;
}

.valo .v-tabsheet-centered-tabs  > .v-tabsheet-tabcontainer {
	text-align: center;
}

.valo .v-tabsheet-right-aligned-tabs  > .v-tabsheet-tabcontainer {
	text-align: right;
}

.valo .v-tabsheet-right-aligned-tabs .v-tabsheet-spacertd {
	display: inline-block !important;
}

.valo .v-tabsheet-right-aligned-tabs .v-tabsheet-scroller {
	padding-left: 9px;
}

.valo .v-tabsheet-padded-tabbar  > .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	padding: 0 9px;
}

.valo .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption {
	padding-top: 6px;
	padding-bottom: 6px;
	line-height: 1.2;
}

.valo .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon {
	display: block;
}

.valo .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon  + .v-captiontext.v-captiontext {
	margin-left: 0;
}

.valo .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 12px;
}

.valo .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	margin-top: 0;
}

.valo .v-tabsheet-compact-tabbar  > .v-tabsheet-tabcontainer-compact-tabbar .v-caption {
	line-height: 1.8;
}

.valo .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	visibility: hidden;
}

.valo .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-tabsheet-caption-close {
	visibility: visible;
}

.valo .v-colorpicker-popup.v-window {
	min-width: 220px !important;
}

.valo .v-colorpicker-popup .v-tabsheet-tabs {
	padding: 0 9px;
}

.valo .v-colorpicker-popup [class$="sliders"] {
	padding: 12px;
}

.valo .v-colorpicker-popup [class$="sliders"] .v-widget {
	width: 100% !important;
	vertical-align: middle;
}

.valo .v-colorpicker-popup [class$="sliders"] .v-has-caption {
	white-space: nowrap;
	padding-left: 48px;
}

.valo .v-colorpicker-popup [class$="sliders"] .v-caption {
	display: inline-block;
	margin-left: -48px;
	width: 48px;
}

.valo .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-has-caption {
	padding-left: 80px;
}

.valo .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-caption {
	margin-left: -80px;
	width: 80px;
}

.valo .v-colorpicker-popup .v-slider-red .v-slider-base:after {
	background: red;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-colorpicker-popup .v-slider-green .v-slider-base:after {
	background: green;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-colorpicker-popup .v-slider-blue .v-slider-base:after {
	background: blue;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-colorpicker-popup .v-margin-bottom {
	padding-bottom: 0;
}

.valo .v-colorpicker-popup .resize-button {
	width: 100% !important;
	height: auto !important;
	text-align: center;
	outline: none;
}

.valo .v-colorpicker-popup .resize-button:before {
	font-family: ThemeIcons;
	content: "\f141";
}

.valo .v-colorpicker-popup .resize-button-caption {
	display: none;
}

.valo .v-colorpicker-popup .v-horizontallayout {
	height: auto !important;
	padding: 9px 0;
	background-color: #fafafa;
	border-top: 1px solid #ededed;
}

.valo .v-colorpicker-popup .v-horizontallayout .v-expand {
	overflow: visible;
}

.valo .v-colorpicker-popup .v-horizontallayout .v-button {
	width: 80% !important;
}

.valo .v-colorpicker-preview {
	width: 100% !important;
	height: auto !important;
	padding: 9px;
	display: inline-flex;
}

.valo .v-colorpicker-preview-textfield {
	height: auto !important;
	text-align: center;
	border: none;
}

.valo .v-colorpicker {
	width: auto;
}

.valo .v-colorpicker-button-color {
	position: absolute;
	top: 6px;
	right: 6px;
	bottom: 6px;
	left: 6px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	max-width: 23px;
}

.valo .v-colorpicker-button-color  + .v-button-caption:not(:empty) {
	margin-left: 19px;
}

.valo .v-panel {
	background: white;
	color: #474747;
	border-radius: 4px;
	border: 1px solid #d5d5d5;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	overflow: visible !important;
}

.valo .v-panel-caption {
	box-sizing: border-box;
	padding: 0 12px;
	line-height: 36px;
	border-bottom: 1px solid #d5d5d5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #f6f6f6 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #f6f6f6 98%);
	color: #464646;
	font-weight: 400;
	font-size: 14px;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #eeeeee;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #eeeeee;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	border-radius: 3px 3px 0 0;
}

.valo .v-panel-content {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.valo .v-panel-content  > .v-margin-top {
	padding-top: 12px;
}

.valo .v-panel-content  > .v-margin-right {
	padding-right: 12px;
}

.valo .v-panel-content  > .v-margin-bottom {
	padding-bottom: 12px;
}

.valo .v-panel-content  > .v-margin-left {
	padding-left: 12px;
}

.valo .v-panel-borderless {
	background: transparent;
	color: inherit;
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-panel-borderless  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
	padding: 0;
	margin: 0 12px;
	border-bottom: none;
}

.valo .v-panel-well {
	background: #f5f5f5;
	color: #454545;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	border: 1px solid #c5c5c5;
}

.valo .v-panel-well  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-panel-scroll-divider  > [class*="-captionwrap"] {
	position: relative;
	z-index: 2;
}

.valo .v-panel-scroll-divider  > [class*="-captionwrap"]:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #dfdfdf;
	border-color: rgba(197, 197, 197, 0.5);
}

.valo .v-panel-scroll-divider  > [class*="-content"]:before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	height: 0;
	border-top: 1px solid #fafafa;
	left: 0;
	right: 0;
}

.valo .v-panel-caption.v-horizontallayout {
	height: auto !important;
	line-height: 0;
}

.valo .v-panel-caption.v-horizontallayout .v-slot {
	vertical-align: middle;
}

.valo .v-panel-caption.v-horizontallayout .v-label {
	line-height: 37px;
}

.valo .v-accordion {
	background: white;
	color: #474747;
	border-radius: 4px;
	border: 1px solid #d5d5d5;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #f4f4f4 98%);
	overflow: hidden;
}

.valo .v-accordion-item {
	position: relative;
}

.valo .v-accordion-item:first-child {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.valo .v-accordion-item:last-child {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

.valo .v-accordion-item:last-child [class*="item-content"] {
	border-radius: inherit;
}

.valo .v-accordion-item[class*="item-open"]:last-child > div > .v-caption {
	border-radius: 0;
}

.valo .v-accordion-item:not([class*="item-open"]):last-child > div > .v-caption {
	border-bottom: none;
	margin-bottom: 0;
}

.valo .v-accordion-item[class*="item-open"] + [class*="item"] {
	border-top: 1px solid #d9d9d9;
}

.valo .v-accordion-item-caption {
	border-radius: inherit;
}

.valo .v-accordion-item-caption  > .v-caption {
	box-sizing: border-box;
	padding: 0 12px;
	line-height: 36px;
	border-bottom: 1px solid #d5d5d5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #f6f6f6 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #f6f6f6 98%);
	color: #464646;
	font-weight: 400;
	font-size: 14px;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #eeeeee;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #eeeeee;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	display: block;
	background: transparent;
	border-bottom-color: #c9c9c9;
	border-radius: inherit;
	cursor: pointer;
	position: relative;
}

.valo .v-accordion-item-caption  > .v-caption:hover:before, .valo .v-accordion-item-caption  > .v-caption:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.valo .v-accordion-item-caption  > .v-caption:hover:before {
	background-color: rgba(186, 186, 186, 0.1);
	border: none;
}

.valo .v-accordion-item-caption  > .v-caption:active:before {
	background-color: rgba(125, 125, 125, 0.2);
}

.valo .v-accordion-item-content {
	-webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.05);
	background-color: white;
	box-sizing: border-box;
}

.valo .v-accordion-item-content  > .v-margin-top {
	padding-top: 12px;
}

.valo .v-accordion-item-content  > .v-margin-right {
	padding-right: 12px;
}

.valo .v-accordion-item-content  > .v-margin-bottom {
	padding-bottom: 12px;
}

.valo .v-accordion-item-content  > .v-margin-left {
	padding-left: 12px;
}

.valo .v-accordion-borderless {
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo .v-accordion-borderless  > .v-accordion-item, .valo .v-accordion-borderless  > .v-accordion-item > div > .v-caption, .valo .v-accordion-borderless  > .v-accordion-item > .v-accordion-item-content {
	border-radius: 0;
}

.valo .v-select-twincol {
	white-space: normal;
	position: relative;
}

.valo .v-select-twincol select {
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	color: #464646;
}

.valo .v-select-twincol select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-select-twincol .v-textfield, .valo .v-select-twincol .v-nativebutton {
	width: auto !important;
	margin-top: 9px;
}

.valo .v-select-twincol .v-nativebutton {
	margin-left: 9px;
}

.v-win.v-ff .valo .v-select-twincol {
	display: inline-flex;
	flex-wrap: wrap;
}

.v-win.v-ff .valo .v-select-twincol .v-select-twincol-options, .v-win.v-ff .valo .v-select-twincol .v-select-twincol-selections {
	height: unset;
}

.v-lin.v-ff .valo .v-select-twincol {
	display: inline-block;
	vertical-align: top;
}

.valo .v-select-twincol-options, .valo .v-select-twincol-selections {
	height: 100%;
}

.valo .v-select-twincol-caption-left, .valo .v-select-twincol-caption-right {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
}

.valo .v-select-twincol-buttons {
	white-space: nowrap;
	display: inline-block;
	vertical-align: top;
	position: relative;
	min-width: 3.5em;
}

.valo .v-select-twincol-buttons .v-button {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	white-space: normal;
	position: absolute;
	left: 9px;
	right: 9px;
	top: 36px;
	padding: 0;
	text-align: center;
}

.valo .v-select-twincol-buttons .v-button:first-child {
	top: 0;
}

.valo .v-select-twincol-buttons .v-button-caption {
	display: none;
}

.valo .v-select-twincol-buttons .v-button:focus {
	z-index: 1;
}

.valo .v-select-twincol-buttons .v-button:first-child {
	border-radius: 4px 4px 0 0;
}

.valo .v-select-twincol-buttons .v-button:last-child {
	border-radius: 0 0 4px 4px;
}

.valo .v-select-twincol-buttons .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.valo .v-select-twincol-buttons .v-button:first-child .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.valo .v-select-twincol-error .v-select-twincol-options, .valo .v-select-twincol-error .v-select-twincol-selections {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.valo .v-select-twincol-error-info .v-select-twincol-options, .valo .v-select-twincol-error-info .v-select-twincol-selections {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.valo .v-select-twincol-error-warning .v-select-twincol-options, .valo .v-select-twincol-error-warning .v-select-twincol-selections {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.valo .v-select-twincol-error-error .v-select-twincol-options, .valo .v-select-twincol-error-error .v-select-twincol-selections {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.valo .v-select-twincol-error-critical .v-select-twincol-options, .valo .v-select-twincol-error-critical .v-select-twincol-selections {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.valo .v-select-twincol-error-system .v-select-twincol-options, .valo .v-select-twincol-error-system .v-select-twincol-selections {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.valo .v-select select {
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	color: #464646;
}

.valo .v-select select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-select-select {
	display: block;
}

.valo .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 9px;
}

.valo .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 9px;
	margin-left: 9px;
}

.valo .v-select-error .v-select-select {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.valo .v-calendar-header-day {
	font-weight: 400;
	text-align: center;
	padding: 7px 0;
}

.valo .v-calendar-header-week .v-calendar-back, .valo .v-calendar-header-week .v-calendar-next {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	outline: none;
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-calendar-header-week .v-calendar-back:focus, .valo .v-calendar-header-week .v-calendar-next:focus {
	outline: none;
}

.valo .v-calendar-header-week .v-calendar-back:hover, .valo .v-calendar-header-week .v-calendar-next:hover {
	opacity: 1;
	filter: none ;
}

.valo .v-calendar-header-week .v-calendar-back:active, .valo .v-calendar-header-week .v-calendar-next:active {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-calendar-header-week .v-calendar-back:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.valo .v-calendar-header-week .v-calendar-next:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.valo .v-calendar-month {
	outline: none;
	overflow: hidden;
}

.valo .v-calendar-month td {
	vertical-align: top;
}

.valo .v-calendar-week-number {
	cursor: pointer;
	width: 20px;
	text-align: center;
	font-size: 0.8em;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-calendar-week-number:hover {
	opacity: 1;
	filter: none ;
}

.valo .v-calendar-month-day {
	outline: none;
	box-sizing: border-box;
	line-height: 1.2;
}

.valo .v-calendar-bottom-spacer, .valo .v-calendar-spacer, .valo .v-calendar-bottom-spacer-empty {
	height: 19px;
	margin-bottom: 3px;
}

.valo .v-calendar-bottom-spacer {
	font-size: 0.8em;
	padding: 0 5px;
	cursor: pointer;
}

.valo .v-calendar-bottom-spacer:hover {
	color: #197de1;
}

.valo .v-calendar-day-number {
	line-height: 25px;
	font-size: 16px;
	text-align: right;
	margin: 0 5px;
	white-space: nowrap;
	border-top: 1px solid #f2f2f2;
	cursor: pointer;
}

.valo .v-calendar-day-number:hover {
	color: #197de1;
}

.valo .v-calendar-month-day-today {
	background: #eef3f8;
}

.valo .v-calendar-month-day-today .v-calendar-day-number {
	font-weight: 400;
	color: #197de1;
	border-top: 2px solid #197de1;
	line-height: 24px;
	margin: 0;
	padding: 0 5px;
}

.valo .v-calendar-month-day-selected {
	background-color: #e3edf7;
}

.valo .v-calendar-month-day-dragemphasis {
	background-color: #a8a8a8;
}

.valo .v-calendar-month-day-scrollable {
	overflow-y: scroll;
}

.valo .v-calendar-weekly-longevents {
	margin-left: 50px;
	border-bottom: 3px solid #e0e0e0;
}

.valo .v-calendar-weekly-longevents .v-calendar-event-all-day {
	height: 22px;
	line-height: 1.6;
	margin-bottom: 3px;
}

.valo .v-calendar-header-week td {
	vertical-align: middle !important;
}

.valo .v-calendar-header-week .v-calendar-header-day {
	cursor: pointer;
}

.valo .v-calendar-times {
	width: 50px;
	font-size: 0.77em;
	line-height: 1;
	white-space: nowrap;
}

.valo .v-calendar-time {
	text-align: right;
	padding-right: 9px;
	margin-top: -6px;
	padding-bottom: 6px;
}

.valo .v-calendar-day-times, .valo .v-calendar-day-times-today {
	outline: none;
	border-right: 1px solid transparent;
}

.valo .v-calendar-day-times:focus, .valo .v-calendar-day-times-today:focus {
	outline: none;
}

.valo .v-calendar .v-datecellslot, .valo .v-calendar .v-datecellslot-even {
	border-top: 1px solid #dfdfdf;
}

.valo .v-calendar .v-datecellslot:first-child, .valo .v-calendar .v-datecellslot-even:first-child {
	border-top-color: transparent;
}

.valo .v-calendar .v-datecellslot {
	border-top-style: dotted;
}

.valo .v-calendar .v-datecellslot, .valo .v-calendar .v-datecellslot-even {
	margin-right: 5px;
}

.valo .v-calendar-current-time {
	background: #197de1;
	line-height: 1px;
	pointer-events: none;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-calendar-current-time:before {
	content: "\2022";
	color: #197de1;
	font-size: 22px;
	margin-left: -0.07em;
}

.valo .v-calendar .v-daterange {
	position: relative;
}

.valo .v-calendar .v-daterange:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: -1px;
	left: 0;
	background: #197de1;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	border-radius: 4px 4px 0 0;
}

.valo .v-calendar .v-daterange  + .v-daterange {
	border-color: transparent;
}

.valo .v-calendar .v-daterange  + .v-daterange:before {
	border-radius: 0;
}

.valo .v-calendar-event {
	font-size: 0.85em;
	overflow: hidden;
	cursor: pointer;
	outline: none;
	border-radius: 4px;
}

.valo .v-calendar-event:focus {
	outline: none;
}

.valo .v-calendar-event-month {
	padding: 0 5px;
	box-sizing: border-box;
	margin-bottom: 3px;
	white-space: nowrap;
	text-overflow: ellipsis;
	height: 19px;
	line-height: 19px;
}

.valo .v-calendar-event-month .v-calendar-event-time {
	float: right;
	font-size: 0.9em;
	line-height: 19px;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-calendar-event-month:before {
	content: "\25cf";
	margin-right: 0.2em;
}

.valo .v-calendar-event-all-day {
	padding: 0 5px;
	box-sizing: border-box;
	height: 19px;
	line-height: 19px;
	border-radius: 0;
	margin-left: -1px;
	white-space: nowrap;
}

.valo .v-calendar-event-all-day:before {
	content: "";
}

.valo .v-calendar-event-start {
	overflow: visible;
	margin-left: 0;
}

.valo .v-calendar-event-start.v-calendar-event-continued-to, .valo .v-calendar-event-start.v-calendar-event-end {
	overflow: hidden;
	text-overflow: ellipsis;
}

.valo .v-calendar-event-start {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	margin-left: 5px;
}

.valo .v-calendar-event-end {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	margin-right: 5px;
}

.valo .v-calendar-event-caption {
	font-weight: 500;
	line-height: 1.2;
	padding: 5px 0;
	position: absolute;
	overflow: hidden;
	right: 9px;
	left: 5px;
	bottom: 0;
	top: 0;
}

.valo .v-calendar-event-caption span {
	font-weight: 300;
	white-space: nowrap;
}

.valo .v-calendar-week-wrapper .v-calendar-event {
	overflow: visible;
}

.valo .v-calendar-week-wrapper .v-calendar-event-content {
	margin-top: -1px;
	border-radius: 5px;
	border: 1px solid #fafafa;
	padding-top: 3px;
	margin-right: 5px;
}

.valo .v-calendar-event-month:before {
	color: #00ace0;
}

.valo .v-calendar-event-all-day {
	background-color: #c8eaf4;
	background-color: rgba(200, 234, 244, 0.8);
	color: #00ace0;
}

.valo .v-calendar-week-wrapper .v-calendar-event {
	color: #00ace0;
}

.valo .v-calendar-week-wrapper .v-calendar-event .v-calendar-event-content {
	background-color: #c8eaf4;
	background-color: rgba(200, 234, 244, 0.8);
}

.valo .v-calendar-event-month[class*="color2"]:before {
	color: #2d9f19;
}

.valo .v-calendar-event-all-day[class*="color2"] {
	background-color: #d1e7cd;
	background-color: rgba(209, 231, 205, 0.8);
	color: #2d9f19;
}

.valo .v-calendar-week-wrapper .v-calendar-event[class*="color2"] {
	color: #2d9f19;
}

.valo .v-calendar-week-wrapper .v-calendar-event[class*="color2"] .v-calendar-event-content {
	background-color: #d1e7cd;
	background-color: rgba(209, 231, 205, 0.8);
}

.valo .v-calendar-event-month[class*="color3"]:before {
	color: #d18100;
}

.valo .v-calendar-event-all-day[class*="color3"] {
	background-color: #f1e1c8;
	background-color: rgba(241, 225, 200, 0.8);
	color: #d18100;
}

.valo .v-calendar-week-wrapper .v-calendar-event[class*="color3"] {
	color: #d18100;
}

.valo .v-calendar-week-wrapper .v-calendar-event[class*="color3"] .v-calendar-event-content {
	background-color: #f1e1c8;
	background-color: rgba(241, 225, 200, 0.8);
}

.valo .v-calendar-event-month[class*="color4"]:before {
	color: #ce3812;
}

.valo .v-calendar-event-all-day[class*="color4"] {
	background-color: #f1d3cb;
	background-color: rgba(241, 211, 203, 0.8);
	color: #ce3812;
}

.valo .v-calendar-week-wrapper .v-calendar-event[class*="color4"] {
	color: #ce3812;
}

.valo .v-calendar-week-wrapper .v-calendar-event[class*="color4"] .v-calendar-event-content {
	background-color: #f1d3cb;
	background-color: rgba(241, 211, 203, 0.8);
}

.valo .v-calendar-event-month[class*="color5"]:before {
	color: #2d55cd;
}

.valo .v-calendar-event-all-day[class*="color5"] {
	background-color: #d1d9f1;
	background-color: rgba(209, 217, 241, 0.8);
	color: #2d55cd;
}

.valo .v-calendar-week-wrapper .v-calendar-event[class*="color5"] {
	color: #2d55cd;
}

.valo .v-calendar-week-wrapper .v-calendar-event[class*="color5"] .v-calendar-event-content {
	background-color: #d1d9f1;
	background-color: rgba(209, 217, 241, 0.8);
}

.valo .v-calendar.v-disabled * {
	cursor: default;
}

.valo .v-label {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.valo .v-label.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-label-undef-w {
	white-space: nowrap;
}

.valo h1, .valo .v-label-h1, .valo h2, .valo .v-label-h2, .valo h3, .valo .v-label-h3 {
	line-height: 1.1;
	font-weight: 200;
	color: #141414;
}

.valo h1, .valo .v-label-h1 {
	font-size: 2.4em;
	margin-top: 1.4em;
	margin-bottom: 1em;
	
	letter-spacing: -0.03em;
}

.valo h2, .valo .v-label-h2 {
	font-size: 1.6em;
	
	margin-top: 1.6em;
	margin-bottom: 0.77em;
	letter-spacing: -0.02em;
}

.valo h3, .valo .v-label-h3 {
	font-size: 1.2em;
	
	margin-top: 1.8em;
	margin-bottom: 0.77em;
	letter-spacing: 0;
}

.valo h4, .valo .v-label-h4 {
	line-height: 1.1;
	font-weight: 500;
	font-size: 14px;
	color: #414141;
	text-transform: uppercase;
	letter-spacing: 0;
	margin-top: 2.4em;
	margin-bottom: 0.8em;
}

.valo .v-csslayout  > h1:first-child, .valo .v-csslayout  > h2:first-child, .valo .v-csslayout  > h3:first-child, .valo .v-csslayout  > h4 > .v-label-h1:first-child, .valo .v-csslayout  > .v-label-h2:first-child, .valo .v-csslayout  > .v-label-h3:first-child, .valo .v-csslayout  > .v-label-h4:first-child {
	margin-top: 16px;
}

.valo .v-verticallayout > .v-slot:first-child h1, .valo .v-verticallayout > .v-slot:first-child .v-label-h1, .valo .v-verticallayout > .v-slot:first-child h2, .valo .v-verticallayout > .v-slot:first-child .v-label-h2, .valo .v-verticallayout > .v-slot:first-child h3, .valo .v-verticallayout > .v-slot:first-child .v-label-h3, .valo .v-verticallayout > .v-slot:first-child h4, .valo .v-verticallayout > .v-slot:first-child .v-label-h4, .valo .v-verticallayout > div > .v-slot:first-child h1, .valo .v-verticallayout > div > .v-slot:first-child .v-label-h1, .valo .v-verticallayout > div > .v-slot:first-child h2, .valo .v-verticallayout > div > .v-slot:first-child .v-label-h2, .valo .v-verticallayout > div > .v-slot:first-child h3, .valo .v-verticallayout > div > .v-slot:first-child .v-label-h3, .valo .v-verticallayout > div > .v-slot:first-child h4, .valo .v-verticallayout > div > .v-slot:first-child .v-label-h4 {
	margin-top: 16px;
}

.valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h1, .valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h2, .valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h3, .valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h4, .valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h4, .valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h1, .valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h2, .valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h3, .valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h4, .valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h4 {
	margin-top: -0.5em;
}

.valo h1.no-margin, .valo .v-label-h1.no-margin, .valo h2.no-margin, .valo .v-label-h2.no-margin, .valo h3.no-margin, .valo .v-label-h3.no-margin, .valo h4.no-margin, .valo .v-label-h4.no-margin {
	margin: 0 !important;
}

.valo .v-label-colored {
	color: #197de1;
}

.valo .v-label-large {
	font-size: 20px;
}

.valo .v-label-small {
	font-size: 14px;
}

.valo .v-label-tiny {
	font-size: 12px;
}

.valo .v-label-huge {
	font-size: 26px;
}

.valo .v-label-bold {
	font-weight: 500;
}

.valo .v-label-light {
	font-weight: 200;
	color: #7d7d7d;
}

.valo .v-label-align-right {
	text-align: right;
}

.valo .v-label-align-center {
	text-align: center;
}

.valo .v-label-spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(25, 125, 225, 0.2);
	border-top-color: #197de1;
	border-right-color: #197de1;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
}

.valo .v-label-success, .valo .v-label-failure {
	background: white;
	color: #474747;
	border: 2px solid #2c9720;
	border-radius: 4px;
	padding: 7px 19px 7px 37px;
	font-weight: 400;
	font-size: 15px;
}

.valo .v-label-success:before, .valo .v-label-failure:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
	margin-left: -19px;
	color: #2c9720;
}

.valo .v-label-failure {
	border-color: #ed473b;
}

.valo .v-label-failure:before {
	content: "\f05e";
	color: #ed473b;
}

.valo [draggable=true] {
	-khtml-user-drag: element;
	-webkit-user-drag: element;
}

.valo .v-ddwrapper {
	position: relative;
}

.valo .v-ddwrapper-over:before, .valo .v-ddwrapper-over:after {
	content: "";
	position: absolute;
	z-index: 10;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	border: 0 solid #197de1;
}

.valo .v-ddwrapper-over-top:before {
	border-top-width: 2px;
}

.valo .v-ddwrapper-over-right:before {
	border-right-width: 2px;
}

.valo .v-ddwrapper-over-bottom:before {
	border-bottom-width: 2px;
}

.valo .v-ddwrapper-over-left:before {
	border-left-width: 2px;
}

.valo .no-vertical-drag-hints .v-ddwrapper-over-top:before, .valo .no-vertical-drag-hints.v-ddwrapper-over-top:before {
	border-top-width: 0;
}

.valo .no-vertical-drag-hints .v-ddwrapper-over-top:after, .valo .no-vertical-drag-hints.v-ddwrapper-over-top:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #8abef2;
}

.valo .no-vertical-drag-hints .v-ddwrapper-over-bottom:before, .valo .no-vertical-drag-hints.v-ddwrapper-over-bottom:before {
	border-bottom-width: 0;
}

.valo .no-vertical-drag-hints .v-ddwrapper-over-bottom:after, .valo .no-vertical-drag-hints.v-ddwrapper-over-bottom:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #8abef2;
}

.valo .no-horizontal-drag-hints.v-ddwrapper-over-left:before, .valo .no-horizontal-drag-hints .v-ddwrapper-over-left:before {
	border-left-width: 0;
}

.valo .no-horizontal-drag-hints.v-ddwrapper-over-left:after, .valo .no-horizontal-drag-hints .v-ddwrapper-over-left:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #8abef2;
}

.valo .no-horizontal-drag-hints.v-ddwrapper-over-right:before, .valo .no-horizontal-drag-hints .v-ddwrapper-over-right:before {
	border-right-width: 0;
}

.valo .no-horizontal-drag-hints.v-ddwrapper-over-right:after, .valo .no-horizontal-drag-hints .v-ddwrapper-over-right:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #8abef2;
}

.valo .v-ddwrapper-over-middle:after, .valo .v-ddwrapper-over-center:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #8abef2;
}

.valo .no-box-drag-hints.v-ddwrapper:after, .valo .no-box-drag-hints .v-ddwrapper:after {
	display: none !important;
	content: none;
}

.valo button {
	font: inherit;
	font-weight: 400;
	line-height: 1.55;
}

.valo .v-nativebutton {
	-webkit-touch-callout: none;
}

.valo .v-select select {
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	color: #464646;
}

.valo .v-select select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.valo .v-select-select {
	display: block;
}

.valo .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 9px;
}

.valo .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 9px;
	margin-left: 9px;
}

.valo .v-select-error .v-select-select {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.valo .v-popupview {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.valo .v-popupview:hover {
	color: #4396ea;
}

.valo .v-popupview.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.valo .v-popupview-popup {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.valo .v-popupview-popup[class*="animate-in"] {
	-webkit-animation: v-popupview-animate-in 120ms;
	-moz-animation: v-popupview-animate-in 120ms;
	animation: v-popupview-animate-in 120ms;
}

.valo .v-popupview-popup[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.valo .v-popupview-popup .popupContent  > .v-margin-top {
	padding-top: 12px;
}

.valo .v-popupview-popup .popupContent  > .v-margin-right {
	padding-right: 12px;
}

.valo .v-popupview-popup .popupContent  > .v-margin-bottom {
	padding-bottom: 12px;
}

.valo .v-popupview-popup .popupContent  > .v-margin-left {
	padding-left: 12px;
}

.valo .v-popupview-loading {
	margin: 12px 12px;
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(25, 125, 225, 0.2);
	border-top-color: #197de1;
	border-right-color: #197de1;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
}

.valo .v-richtextarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 37px;
	border-radius: 4px;
	padding: 0;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	overflow: hidden;
}

.valo .v-richtextarea[class*="prompt"] {
	color: #a3a3a3;
}

.valo .v-richtextarea .gwt-RichTextToolbar {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	border-bottom: 1px solid #c5c5c5;
	color: #464646;
}

.valo .v-richtextarea .gwt-ToggleButton, .valo .v-richtextarea .gwt-PushButton {
	display: inline-block;
	line-height: 37px;
	width: 37px;
	text-align: center;
	outline: none;
}

.valo .v-richtextarea .gwt-ToggleButton:hover, .valo .v-richtextarea .gwt-PushButton:hover {
	color: black;
}

.valo .v-richtextarea .gwt-ToggleButton-down, .valo .v-richtextarea .gwt-ToggleButton-down-hovering {
	background-color: #e0e0e0;
	background-image: -webkit-linear-gradient(bottom, #e0e0e0 2%, #dcdcdc 98%);
	background-image: linear-gradient(to top,#e0e0e0 2%, #dcdcdc 98%);
}

.valo .v-richtextarea .gwt-RichTextToolbar-top img {
	display: none;
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div:before {
	font-family: ThemeIcons;
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Bold"]:before {
	content: "\f032";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Italic"]:before {
	content: "\f033";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Underline"]:before {
	content: "\f0cd";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Subscript"]:before {
	content: "\f12c";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Superscript"]:before {
	content: "\f12b";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Left Justify"]:before {
	content: "\f036";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Center"]:before {
	content: "\f037";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Right Justify"]:before {
	content: "\f038";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Strikethrough"]:before {
	content: "\f0cc";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Right"]:before {
	content: "\f03c";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Left"]:before {
	content: "\f03b";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Horizontal Rule"]:before {
	content: "\2014";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Ordered List"]:before {
	content: "\f0cb";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Unordered List"]:before {
	content: "\f0ca";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Image"]:before {
	content: "\f03e";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Create Link"]:before {
	content: "\f0c1";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Link"]:before {
	content: "\f127";
}

.valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Formatting"]:before {
	content: "\f12d";
}

.valo .v-richtextarea .gwt-RichTextToolbar-bottom {
	font-size: 13px;
	padding: 0 9px 9px 0;
}

.valo .v-richtextarea .gwt-RichTextToolbar-bottom select {
	margin: 9px 0 0 9px;
}

.valo .v-richtextarea .gwt-RichTextArea {
	background: #fff;
	border: none;
	display: block;
}

.valo .v-richtextarea-readonly {
	padding: 5px 7px;
	background: transparent;
}

.valo .v-upload .v-button {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	white-space: normal;
}

.valo .v-upload-immediate .v-button {
	width: 100%;
}

.valo .v-upload-immediate input[type="file"] {
	opacity: 0;
	filter: alpha(opacity=0) ;
	z-index: -1;
	position: absolute;
	right: 0;
	height: 37px;
	text-align: right;
	border: none;
	background: transparent;
}

.valo .v-Notification.v-position-top {
	top: 12px;
}

.valo .v-Notification.v-position-right {
	right: 12px;
}

.valo .v-Notification.v-position-bottom {
	bottom: 12px;
}

.valo .v-Notification.v-position-left {
	left: 12px;
}

.valo .v-Notification.v-position-assistive {
	top: -9999px;
	left: -9999px;
}

.valo .v-Notification-animate-in {
	-webkit-animation: valo-animate-in-fade 180ms 10ms backwards;
	-moz-animation: valo-animate-in-fade 180ms 10ms backwards;
	animation: valo-animate-in-fade 180ms 10ms backwards;
}

.valo .v-Notification-animate-in.v-position-top {
	-webkit-animation: valo-animate-in-slide-down 400ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-down 400ms 10ms backwards;
	animation: valo-animate-in-slide-down 400ms 10ms backwards;
}

.valo .v-Notification-animate-in.v-position-bottom {
	-webkit-animation: valo-animate-in-slide-up 400ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-up 400ms 10ms backwards;
	animation: valo-animate-in-slide-up 400ms 10ms backwards;
}

.valo .v-Notification-animate-out {
	-webkit-animation: valo-animate-out-fade 150ms;
	-moz-animation: valo-animate-out-fade 150ms;
	animation: valo-animate-out-fade 150ms;
}

.valo .v-Notification-animate-out.v-position-top, .valo .v-Notification-animate-out.v-position-bottom {
	-webkit-animation: valo-animate-out-slide-down-fade 200ms;
	-moz-animation: valo-animate-out-slide-down-fade 200ms;
	animation: valo-animate-out-slide-down-fade 200ms;
}

.valo .v-Notification {
	border-radius: 4px;
	text-align: center;
	position: fixed !important;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	background: white;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
	padding: 19px 22px;
}

.valo .v-Notification .v-Notification-caption {
	color: #197de1;
	font-size: 19px;
	line-height: 1;
}

.valo .v-Notification .v-Notification-description {
	line-height: 1.4;
}

.valo .v-Notification-caption {
	margin: 0;
	display: inline-block;
	text-align: left;
	font-weight: inherit;
	line-height: inherit;
	white-space: nowrap;
	letter-spacing: 0;
}

.valo .v-Notification-description, .valo .v-Notification-details {
	margin: 0;
	display: inline-block;
	vertical-align: middle;
	max-width: 30em;
	text-align: left;
	max-height: 20em;
	overflow: auto;
}

.valo .v-Notification-caption ~ .v-Notification-description, .valo .v-Notification-caption ~ .v-Notification-details {
	margin-left: 24px;
}

.valo .v-icon + .v-Notification-caption {
	margin-left: 16px;
}

.valo .v-Notification-system {
	left: 0 !important;
	right: 0;
	max-width: 100%;
	margin: 0 !important;
	border-radius: 0;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	padding: 12px 15px;
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 400;
	line-height: 22px;
}

.valo .v-Notification-system .v-Notification-description, .valo .v-Notification-system .v-Notification-details {
	max-width: 50em;
}

.valo .v-Notification-system.v-position-top {
	top: 0;
}

.valo .v-Notification-system.v-position-top[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	animation: valo-animate-in-slide-down 300ms 10ms backwards;
}

.valo .v-Notification-system.v-position-top[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-up 200ms;
	-moz-animation: valo-animate-out-slide-up 200ms;
	animation: valo-animate-out-slide-up 200ms;
}

.valo .v-Notification-system.v-position-bottom {
	bottom: 0;
}

.valo .v-Notification-system.v-position-bottom[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	animation: valo-animate-in-slide-up 300ms 10ms backwards;
}

.valo .v-Notification-system.v-position-bottom[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-down 200ms;
	-moz-animation: valo-animate-out-slide-down 200ms;
	animation: valo-animate-out-slide-down 200ms;
}

.valo .v-Notification-system .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.valo .v-Notification-system .v-Notification-description, .valo .v-Notification-system .v-Notification-details {
	color: #e6e6e6;
}

.valo .v-Notification-system u {
	text-decoration: none;
}

.valo .v-Notification.tray {
	text-align: left;
}

.valo .v-Notification.tray .v-Notification-caption + .v-Notification-description {
	display: block;
	margin: 0.5em 0 0;
}

.valo .v-Notification.warning {
	background: #FFF3D2;
}

.valo .v-Notification.warning .v-Notification-caption {
	color: #AC7C00;
}

.valo .v-Notification.warning .v-Notification-description {
	color: #9D874D;
}

.valo .v-Notification.error {
	background: #ed473b;
	font-weight: 400;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
	padding-right: 59px;
	overflow: hidden !important;
	cursor: pointer;
}

.valo .v-Notification.error .v-Notification-caption {
	color: white;
}

.valo .v-Notification.error .v-Notification-description {
	color: #f4e0df;
}

.valo .v-Notification.error:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -12px;
	right: 12px;
	width: 25px;
	height: 25px;
	line-height: 24px;
	cursor: pointer;
	color: #000;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	text-align: center;
	border: 1px solid #000;
	border-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
}

.valo .v-Notification.error:hover:after {
	opacity: 1;
	filter: none ;
}

.valo .v-Notification.error:active:after {
	background-color: #000;
	color: #fff;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	-webkit-transition: none 200ms;
	-moz-transition: none 200ms;
	transition: none 200ms;
}

.valo .v-Notification.error:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.valo .v-Notification.error:active:after {
	background-color: #fff;
	color: #000;
}

.valo .v-Notification.dark {
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 400;
	line-height: 22px;
}

.valo .v-Notification.dark .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.valo .v-Notification.dark .v-Notification-description, .valo .v-Notification.dark .v-Notification-details {
	color: #e6e6e6;
}

.valo .v-Notification.bar {
	left: 0 !important;
	right: 0;
	max-width: 100%;
	margin: 0 !important;
	border-radius: 0;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	padding: 12px 15px;
}

.valo .v-Notification.bar .v-Notification-description, .valo .v-Notification.bar .v-Notification-details {
	max-width: 50em;
}

.valo .v-Notification.bar.v-position-top {
	top: 0;
}

.valo .v-Notification.bar.v-position-top[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	animation: valo-animate-in-slide-down 300ms 10ms backwards;
}

.valo .v-Notification.bar.v-position-top[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-up 200ms;
	-moz-animation: valo-animate-out-slide-up 200ms;
	animation: valo-animate-out-slide-up 200ms;
}

.valo .v-Notification.bar.v-position-bottom {
	bottom: 0;
}

.valo .v-Notification.bar.v-position-bottom[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	animation: valo-animate-in-slide-up 300ms 10ms backwards;
}

.valo .v-Notification.bar.v-position-bottom[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-down 200ms;
	-moz-animation: valo-animate-out-slide-down 200ms;
	animation: valo-animate-out-slide-down 200ms;
}

.valo .v-Notification.small {
	padding: 11px 13px;
}

.valo .v-Notification.small .v-Notification-caption {
	font-size: 16px;
}

.valo .v-Notification.small .v-Notification-description {
	font-size: 14px;
}

.valo .v-Notification.critical-error {
	background: #ed473b;
	font-weight: 400;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
}

.valo .v-Notification.critical-error .v-Notification-caption {
	color: white;
}

.valo .v-Notification.critical-error .v-Notification-description {
	color: #f4e0df;
}

.valo .v-Notification.closable {
	padding-right: 59px;
	overflow: hidden !important;
	cursor: pointer;
}

.valo .v-Notification.closable:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -12px;
	right: 12px;
	width: 25px;
	height: 25px;
	line-height: 24px;
	cursor: pointer;
	color: #000;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	text-align: center;
	border: 1px solid #000;
	border-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
}

.valo .v-Notification.closable:hover:after {
	opacity: 1;
	filter: none ;
}

.valo .v-Notification.closable:active:after {
	background-color: #000;
	color: #fff;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	-webkit-transition: none 200ms;
	-moz-transition: none 200ms;
	transition: none 200ms;
}

.valo .v-Notification.closable.dark:after, .valo .v-Notification.closable.critical-error:after, .valo .v-Notification.closable.system:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.valo .v-Notification.closable.dark:active:after, .valo .v-Notification.closable.critical-error:active:after, .valo .v-Notification.closable.system:active:after {
	background-color: #fff;
	color: #000;
}

.valo .v-Notification.closable.tray:after {
	top: 16px;
	margin-top: 0;
}

.valo .v-Notification.success, .valo .v-Notification.failure {
	background: #fff;
	color: #555;
	border: 2px solid #2c9720;
}

.valo .v-Notification.success .v-Notification-caption, .valo .v-Notification.failure .v-Notification-caption {
	color: #2c9720;
	font-weight: 400;
}

.valo .v-Notification.success .v-Notification-caption:before, .valo .v-Notification.failure .v-Notification-caption:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
}

.valo .v-Notification.success.bar, .valo .v-Notification.failure.bar {
	margin: -2px !important;
}

.valo .v-Notification.failure {
	border-color: #ed473b;
}

.valo .v-Notification.failure .v-Notification-caption {
	color: #ed473b;
}

.valo .v-Notification.failure .v-Notification-caption:before {
	content: "\f05e";
}

.valo .valo-menu {
	height: 100%;
	background-color: #4b4b4b;
	background-image: -webkit-linear-gradient(right, #414141 0%, #4b4b4b 9px);
	background-image: linear-gradient(to left,#414141 0%, #4b4b4b 9px);
	color: #a5a5a5;
	font-size: 14px;
	line-height: 30px;
	border-right: 1px solid #3b3b3b;
	white-space: nowrap;
}

.valo .valo-menu-toggle {
	display: none;
	position: fixed;
	z-index: 200;
	top: 3px;
	left: 3px;
	min-width: 0;
}

.valo .valo-menu-part {
	border-left: 1px solid #414141;
	height: 100%;
	padding-bottom: 37px;
	overflow: auto;
}

.valo .valo-menu-part:first-child {
	border-left: none;
}

.valo .valo-menu-title, .valo .valo-menu-subtitle, .valo .valo-menu-item {
	display: block;
	line-height: inherit;
	white-space: nowrap;
	position: relative;
}

.valo .valo-menu-title .valo-menu-badge, .valo .valo-menu-subtitle .valo-menu-badge, .valo .valo-menu-item .valo-menu-badge {
	position: absolute;
	right: 19px;
}

.valo .valo-menu-title {
	line-height: 1.2;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: white;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	padding: 12px 19px;
	font-size: 14px;
	border-bottom: 1px solid #1362b1;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.valo .valo-menu-title .v-menubar.v-menubar {
	background: transparent;
	border-color: #1362b1;
	color: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: inherit;
}

.valo .valo-menu-title .v-menubar-menuitem {
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
	box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
	text-shadow: inherit;
	font-size: 16px;
	border-color: inherit;
}

.valo .valo-menu-title h1, .valo .valo-menu-title .v-label-h1, .valo .valo-menu-title h2, .valo .valo-menu-title .v-label-h2, .valo .valo-menu-title h3, .valo .valo-menu-title .v-label-h3, .valo .valo-menu-title h4, .valo .valo-menu-title .v-label-h4 {
	margin-top: 0;
	margin-bottom: 0;
	color: inherit;
}

.valo .v-menubar-user-menu {
	border: none;
	border-radius: 0;
	padding: 1px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background: transparent;
	color: inherit;
	margin: 19px 7px;
	display: block;
	overflow: hidden;
	text-align: center;
	height: auto;
	color: inherit;
}

.valo .v-menubar-user-menu:focus:after {
	display: none;
}

.valo .v-menubar-user-menu .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 4px;
	color: #197de1;
	padding: 0 12px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.valo .v-menubar-user-menu .v-menubar-menuitem:first-child, .valo .v-menubar-user-menu .v-menubar-menuitem:last-child, .valo .v-menubar-user-menu .v-menubar-menuitem:first-child:last-child {
	border-radius: 4px;
}

.valo .v-menubar-user-menu .v-menubar-menuitem:before {
	content: none;
}

.valo .v-menubar-user-menu .v-menubar-menuitem:hover {
	color: #4396ea;
}

.valo .v-menubar-user-menu .v-menubar-menuitem:active {
	color: inherit;
}

.valo .v-menubar-user-menu .v-menubar-menuitem-checked, .valo .v-menubar-user-menu .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c5c5c5;
	color: #197de1;
}

.valo .v-menubar-user-menu .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .valo .v-menubar-user-menu .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.valo .v-menubar-user-menu .v-menubar-menuitem-selected {
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.valo .v-menubar-user-menu .v-menubar-menuitem-selected:hover {
	color: #ecf2f8;
}

.valo .v-menubar-user-menu .v-menubar-menuitem-disabled, .valo .v-menubar-user-menu .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.valo .v-menubar-user-menu  > .v-menubar-menuitem {
	color: inherit;
	white-space: normal;
	line-height: 1.4;
	margin: 0;
}

.valo .v-menubar-user-menu  > .v-menubar-menuitem img.v-icon {
	width: 56px;
	height: 56px;
	border-radius: 29px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	display: block;
	margin: 0 auto 0.3em;
	border: 1px solid #c5c5c5;
}

.valo .v-menubar-user-menu  > .v-menubar-menuitem:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.valo .v-menubar-user-menu .v-menubar-menuitem-selected {
	background: transparent;
}

.valo .valo-menu-subtitle {
	color: #868686;
	margin: 7px 0 7px 19px;
	border-bottom: 1px solid #666666;
}

.valo .valo-menu-subtitle [class*="badge"] {
	color: #73a5d7;
}

.valo .valo-menuitems {
	display: block;
}

.valo .valo-menu-item {
	outline: none;
	font-weight: 400;
	padding: 0 37px 0 19px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
	-webkit-transition: background-color 300ms, color 60ms;
	-moz-transition: background-color 300ms, color 60ms;
	transition: background-color 300ms, color 60ms;
}

.valo .valo-menu-item [class*="caption"] {
	vertical-align: middle;
	display: inline-block;
	width: 90%;
	max-width: 15em;
	padding-right: 19px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.valo .valo-menu-item [class*="badge"] {
	color: #73a5d7;
}

.valo .valo-menu-item.selected {
	background: #434343;
}

.valo .valo-menu-item.selected .v-icon {
	color: #197de1;
}

.valo .valo-menu-item.selected [class*="badge"] {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #c8dbed;
}

.valo .valo-menu-item:focus, .valo .valo-menu-item:hover, .valo .valo-menu-item.selected {
	color: white;
}

.valo .valo-menu-item span.v-icon {
	min-width: 1em;
	margin-right: 19px;
	text-align: center;
	vertical-align: middle;
	-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(black), to(rgba(0, 0, 0, 0.75)));
}

.valo .valo-menu-item span.v-icon  + span {
	margin-left: 0;
}

.valo .valo-menu-item [class*="badge"] {
	background-color: #585858;
	-webkit-transition: background-color 300ms;
	-moz-transition: background-color 300ms;
	transition: background-color 300ms;
	line-height: 1;
	padding: 4px 6px;
	min-width: 11px;
	text-align: center;
	top: 4px;
	border-radius: 4px;
}

.valo .valo-menu-part.large-icons {
	background-color: #4b4b4b;
	min-width: 74px;
	max-width: 111px;
}

.valo .valo-menu-part.large-icons .valo-menu-title {
	font-size: 12px;
}

.valo .valo-menu-part.large-icons .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.valo .valo-menu-part.large-icons .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 11px;
}

.valo .valo-menu-part.large-icons .v-menubar-user-menu img.v-icon {
	width: 28px;
	height: 28px;
}

.valo .valo-menu-part.large-icons [class*="subtitle"] {
	margin: 9px 0 0;
	padding: 7px 25px 7px 9px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #3c3c3c;
	font-size: 13px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.valo .valo-menu-part.large-icons [class*="subtitle"] [class*="badge"] {
	right: 9px;
}

.valo .valo-menu-part.large-icons [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.valo .valo-menu-part.large-icons .valo-menu-item {
	display: block;
	font-size: 26px;
	line-height: 1;
	padding: 12px;
	text-align: center;
	border-top: 1px solid #555555;
}

.valo .valo-menu-part.large-icons .valo-menu-item:first-child {
	border-top: none;
}

.valo .valo-menu-part.large-icons .valo-menu-item [class*="caption"] {
	display: block;
	width: auto;
	margin: 0.3em 0 0;
	padding: 0;
	font-size: 11px;
	line-height: 1.3;
}

.valo .valo-menu-part.large-icons .valo-menu-item .v-icon {
	margin: 0;
}

.valo .valo-menu-part.large-icons .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.valo .valo-menu-part.large-icons .valo-menu-item.selected {
	background: #434343;
}

.valo .valo-menu-part.large-icons .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.valo .valo-menu-part.large-icons .valo-menu-item.selected [class*="badge"] {
	border-color: #434343;
}

.valo .valo-menu-part.large-icons .valo-menu-item [class*="badge"] {
	padding-left: 4px;
	padding-right: 4px;
	top: 7px;
	right: 7px;
	border: 2px solid #4b4b4b;
}

.valo .valo-menu-logo {
	display: block;
	overflow: hidden;
	width: 44px !important;
	height: 44px;
	border-radius: 4px;
	text-align: center;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: white;
	font-size: 25px;
	line-height: 44px;
	margin: 19px auto;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.valo .valo-menu-logo:focus {
	outline: none;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part {
	background-color: #4b4b4b;
	min-width: 74px;
	max-width: 111px;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title {
	font-size: 12px;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 11px;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu img.v-icon {
	width: 28px;
	height: 28px;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] {
	margin: 9px 0 0;
	padding: 7px 25px 7px 9px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #3c3c3c;
	font-size: 13px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] [class*="badge"] {
	right: 9px;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item {
	display: block;
	font-size: 26px;
	line-height: 1;
	padding: 12px;
	text-align: center;
	border-top: 1px solid #555555;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item:first-child {
	border-top: none;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item [class*="caption"] {
	display: block;
	width: auto;
	margin: 0.3em 0 0;
	padding: 0;
	font-size: 11px;
	line-height: 1.3;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item .v-icon {
	margin: 0;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected {
	background: #434343;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected [class*="badge"] {
	border-color: #434343;
}

.valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item [class*="badge"] {
	padding-left: 4px;
	padding-right: 4px;
	top: 7px;
	right: 7px;
	border: 2px solid #4b4b4b;
}

.valo .valo-menu-responsive[width-range~="0-800px"] {
	padding-top: 37px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.valo .valo-menu-responsive[width-range~="0-800px"] .v-loading-indicator {
	top: 37px;
}

.valo .valo-menu-responsive[width-range~="0-800px"]  > .v-widget {
	position: relative !important;
}

.valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu {
	border-right: none;
}

.valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu-part {
	overflow: visible;
}

.valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu-toggle {
	display: inline-block;
}

.valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu-title {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	height: 37px !important;
	padding-top: 0;
	padding-bottom: 0;
	-webkit-backface-visibility: hidden;
}

.valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	height: 37px;
	color: #97bee5;
	max-width: 30%;
	-webkit-backface-visibility: hidden;
}

.valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem {
	line-height: 36px;
	white-space: nowrap;
}

.valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu img.v-icon {
	display: inline-block;
	margin: 0 6px 0 0;
	width: 19px;
	height: 19px;
	border-radius: 10px;
	border: none;
}

.valo .valo-menu-responsive[width-range~="0-800px"] .valo-menuitems {
	height: 100%;
	background-color: #4b4b4b;
	background-image: -webkit-linear-gradient(right, #414141 0%, #4b4b4b 9px);
	background-image: linear-gradient(to left,#414141 0%, #4b4b4b 9px);
	color: #a5a5a5;
	font-size: 14px;
	line-height: 30px;
	border-right: 1px solid #3b3b3b;
	white-space: nowrap;
	position: fixed;
	z-index: 9000;
	top: 37px;
	bottom: 0;
	height: auto;
	max-width: 100%;
	overflow: auto;
	padding: 19px 0;
	-webkit-transform: translatex(-100%);
	-moz-transform: translatex(-100%);
	-ms-transform: translatex(-100%);
	-o-transform: translatex(-100%);
	transform: translatex(-100%);
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	transition: all 300ms;
}

.valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu-visible .valo-menuitems, .valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu-hover:hover .valo-menuitems {
	-webkit-transform: translatex(0%);
	-moz-transform: translatex(0%);
	-ms-transform: translatex(0%);
	-o-transform: translatex(0%);
	transform: translatex(0%);
}

.valo .valo-menu-responsive[width-range~="0-500px"] .valo-menu-toggle .v-button-caption {
	display: none;
}

.valo .valo-menu-responsive[width-range~="0-500px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem-caption {
	display: inline-block;
	width: 19px;
	overflow: hidden;
}

.kelainformationrequestapp .v-textarea {
	width: 100% !important;
}

.publicfeedbackformapp .postalFields {
	max-width: 30em !important;
}

@font-face {
	font-family: "Open Sans";
	src: local("Open Sans"), local("OpenSans"), url('fonts/open-sans/OpenSans-Regular-webfont.eot'), url('fonts/open-sans/OpenSans-Regular-webfont.eot?#iefix') format("embedded-opentype"), url('fonts/open-sans/OpenSans-Regular-webfont.woff') format("woff"), url('fonts/open-sans/OpenSans-Regular-webfont.ttf') format("truetype");
}

@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 600;
	src: local("Open Sans Semibold"), local("OpenSans-Semibold"), url('fonts/open-sans/OpenSans-Semibold-webfont.eot'), url('fonts/open-sans/OpenSans-Semibold-webfont.eot?#iefix') format("embedded-opentype"), url('fonts/open-sans/OpenSans-Semibold-webfont.woff') format("woff"), url('fonts/open-sans/OpenSans-Semibold-webfont.ttf') format("truetype");
}

@font-face {
	font-family: "Roboto";
	src: url('fonts/roboto/Roboto-Regular-webfont.eot');
	src: local("Roboto"), url('fonts/roboto/Roboto-Regular-webfont.eot'), url('fonts/roboto/Roboto-Regular-webfont.eot?#iefix') format("embedded-opentype"), url('fonts/roboto/Roboto-Regular-webfont.woff') format("woff"), url('fonts/roboto/Roboto-Regular-webfont.ttf') format("truetype");
}

.kela.v-app, .kela.v-app-loading {
	font: 300 16px/1.55 "Open Sans", sans-serif;
	color: #464646;
	background-color: #fafafa;
	cursor: default;
}

.kela .v-app-loading {
	width: 100%;
	height: 100%;
	background: #fafafa;
}

.kela .v-app-loading:before {
	content: "";
	position: fixed;
	z-index: 100;
	top: 45%;
	left: 50%;
	width: 28px;
	height: 28px;
	padding: 9px;
	margin-top: -24px;
	margin-left: -24px;
	background: #fff url(../valo/shared/img/spinner.gif) no-repeat 50%;
	border-radius: 4px;
}

.kela .v-loading-indicator {
	position: fixed !important;
	z-index: 99999;
	left: 0;
	right: auto;
	top: 0;
	width: 50%;
	opacity: 1;
	height: 4px;
	background-color: #197de1;
	pointer-events: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	-webkit-animation: v-progress-start 1000ms 200ms both;
	-moz-animation: v-progress-start 1000ms 200ms both;
	animation: v-progress-start 1000ms 200ms both;
}

.kela .v-loading-indicator[style*="none"] {
	display: block !important;
	width: 100% !important;
	opacity: 0;
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
	-webkit-transition: opacity 500ms 300ms, width 300ms;
	-moz-transition: opacity 500ms 300ms, width 300ms;
	transition: opacity 500ms 300ms, width 300ms;
}

.kela .v-loading-indicator-delay {
	width: 90%;
	-webkit-animation: v-progress-delay 3.8s forwards;
	-moz-animation: v-progress-delay 3.8s forwards;
	animation: v-progress-delay 3.8s forwards;
}

.v-ff .kela .v-loading-indicator-delay {
	width: 50%;
}

.kela .v-loading-indicator-wait {
	width: 96%;
	-webkit-animation: v-progress-wait 5s forwards, v-progress-wait-pulse 1s 4s infinite backwards;
	-moz-animation: v-progress-wait 5s forwards, v-progress-wait-pulse 1s 4s infinite backwards;
	animation: v-progress-wait 5s forwards, v-progress-wait-pulse 1s 4s infinite backwards;
}

.v-ff .kela .v-loading-indicator-wait {
	width: 90%;
}

.kela .v-scrollable:focus {
	outline: none;
}

.kela img.v-icon {
	vertical-align: middle;
}

.kela .v-caption {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
}

.kela .v-caption-on-left .v-caption, .kela .v-caption-on-right .v-caption {
	padding-top: 0;
	padding-bottom: 0;
}

.kela .v-icon + .v-captiontext, .kela .v-icon + span {
	margin-left: 7px;
}

.kela .v-icon + .v-captiontext:empty, .kela .v-icon + span:empty {
	margin-left: 0;
}

.kela .v-errorindicator {
	color: red;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.kela .v-errorindicator:before {
	content: "!";
}

.kela .v-errorindicator-info {
	color: #00a7f5;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.kela .v-errorindicator-info:before {
	content: "!";
}

.kela .v-errorindicator-warning {
	color: #fc9c00;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.kela .v-errorindicator-warning:before {
	content: "!";
}

.kela .v-errorindicator-error {
	color: #ed473b;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.kela .v-errorindicator-error:before {
	content: "!";
}

.kela .v-errorindicator-critical {
	color: #fa007d;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.kela .v-errorindicator-critical:before {
	content: "!";
}

.kela .v-errorindicator-system {
	color: #bb00ff;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.kela .v-errorindicator-system:before {
	content: "!";
}

.kela .v-required-field-indicator {
	color: #ed473b;
	padding: 0 0.2em;
}

.kela select {
	font: inherit;
	font-weight: 400;
	line-height: inherit;
	padding: 5px;
	margin: 0;
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	color: #464646;
}

.kela select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-disabled {
	cursor: default !important;
}

.kela .v-drag-element {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	overflow: hidden;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-draggable {
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	-webkit-user-select: none !important;
	user-select: none !important;
}

.kela .v-tooltip {
	background-color: rgba(50, 50, 50, 0.9);
	-webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	color: white;
	padding: 5px 9px;
	border-radius: 3px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 14px;
}

.kela .v-tooltip div[style*="width"] {
	width: auto !important;
}

.kela .v-tooltip .v-errormessage {
	background-color: white;
	background-color: #fff;
	color: #ed473b;
	margin: -5px -9px;
	padding: 5px 9px;
	max-height: 10em;
	overflow: auto;
	font-weight: 400;
}

.kela .v-tooltip .v-errormessage h2:only-child {
	font: inherit;
	line-height: inherit;
}

.kela .v-tooltip .v-errormessage-info {
	color: #00a7f5;
}

.kela .v-tooltip .v-errormessage-warning {
	color: #fc9c00;
}

.kela .v-tooltip .v-errormessage-error {
	color: #ed473b;
}

.kela .v-tooltip .v-errormessage-critical {
	color: #fa007d;
}

.kela .v-tooltip .v-errormessage-system {
	color: #bb00ff;
}

.kela .v-tooltip .v-tooltip-text {
	max-height: 10em;
	overflow: auto;
	margin-top: 10px;
}

.kela .v-tooltip .v-tooltip-text pre {
	margin: 0px;
}

.kela .v-tooltip .v-errormessage[aria-hidden="true"] + .v-tooltip-text {
	margin-top: 0;
}

.kela .v-tooltip h1, .kela .v-tooltip h2, .kela .v-tooltip h3, .kela .v-tooltip h4 {
	color: inherit;
}

.kela .v-tooltip pre.v-tooltip-pre {
	font: inherit;
	white-space: pre-wrap;
}

.kela .v-contextmenu {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 4px 4px;
}

.kela .v-contextmenu[class*="animate-in"] {
	-webkit-animation: valo-overlay-animate-in 120ms;
	-moz-animation: valo-overlay-animate-in 120ms;
	animation: valo-overlay-animate-in 120ms;
}

.kela .v-contextmenu[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.kela .v-contextmenu table {
	border-spacing: 0;
}

.kela .v-contextmenu .gwt-MenuItem {
	cursor: pointer;
	line-height: 27px;
	padding: 0 20px 0 10px;
	border-radius: 3px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	display: block;
}

.kela .v-contextmenu .gwt-MenuItem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #0957a6;
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.kela .v-contextmenu .gwt-MenuItem .v-icon {
	max-height: 27px;
	margin-right: 5px;
	min-width: 1em;
}

.kela .v-contextmenu .gwt-MenuItem-selected {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.kela .v-reconnect-dialog {
	color: white;
	top: 12px;
	right: 12px;
	max-width: 100%;
	border-radius: 0;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	padding: 12px 15px;
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	line-height: 22px;
	text-align: center;
}

.kela .v-reconnect-dialog .text {
	display: inline-block;
	padding-left: 10px;
}

.kela .v-reconnect-dialog .spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(25, 125, 225, 0.2);
	border-top-color: #197de1;
	border-right-color: #197de1;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
	display: none;
	vertical-align: middle;
}

.kela .v-reconnect-dialog.active .spinner {
	display: inline-block;
}

.kela .v-absolutelayout-wrapper {
	position: absolute;
}

.kela .v-absolutelayout-margin, .kela .v-absolutelayout-canvas {
	box-sizing: border-box;
}

.kela .v-absolutelayout.v-has-height > div, .kela .v-absolutelayout.v-has-height .v-absolutelayout-margin {
	height: 100%;
}

.kela .v-absolutelayout.v-has-height > div, .kela .v-absolutelayout.v-has-width .v-absolutelayout-margin {
	width: 100%;
}

.kela .v-margin-top {
	padding-top: 37px;
}

.kela .v-margin-right {
	padding-right: 37px;
}

.kela .v-margin-bottom {
	padding-bottom: 37px;
}

.kela .v-margin-left {
	padding-left: 37px;
}

.kela .v-spacing {
	width: 12px;
	height: 12px;
}

.kela .v-verticallayout-well, .kela .v-horizontallayout-well {
	background: #f5f5f5;
	color: #454545;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	border: 1px solid #c5c5c5;
}

.kela .v-verticallayout-well  > div > [class*="-caption"], .kela .v-horizontallayout-well  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-verticallayout-well  > .v-margin-top, .kela .v-horizontallayout-well  > .v-margin-top {
	padding-top: 12px;
}

.kela .v-verticallayout-well  > .v-margin-right, .kela .v-horizontallayout-well  > .v-margin-right {
	padding-right: 12px;
}

.kela .v-verticallayout-well  > .v-margin-bottom, .kela .v-horizontallayout-well  > .v-margin-bottom {
	padding-bottom: 12px;
}

.kela .v-verticallayout-well  > .v-margin-left, .kela .v-horizontallayout-well  > .v-margin-left {
	padding-left: 12px;
}

.kela .v-verticallayout-card, .kela .v-horizontallayout-card {
	background: white;
	color: #474747;
	border-radius: 4px;
	border: 1px solid #d5d5d5;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.kela .v-verticallayout-card  > .v-margin-top, .kela .v-horizontallayout-card  > .v-margin-top {
	padding-top: 12px;
}

.kela .v-verticallayout-card  > .v-margin-right, .kela .v-horizontallayout-card  > .v-margin-right {
	padding-right: 12px;
}

.kela .v-verticallayout-card  > .v-margin-bottom, .kela .v-horizontallayout-card  > .v-margin-bottom {
	padding-bottom: 12px;
}

.kela .v-verticallayout-card  > .v-margin-left, .kela .v-horizontallayout-card  > .v-margin-left {
	padding-left: 12px;
}

.kela .v-horizontallayout-wrapping {
	white-space: normal !important;
}

.kela .v-horizontallayout-wrapping > .v-spacing + .v-slot, .kela .v-horizontallayout-wrapping > .v-slot:first-child {
	margin-bottom: 12px;
}

.kela .v-horizontallayout-wrapping > .v-slot:first-child:last-child {
	margin-bottom: 0;
}

.kela .v-button {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.kela .v-button:before {
	content: "";
	display: inline-block;
	width: 0;
	height: 100%;
	vertical-align: middle;
}

.kela .v-button > div {
	vertical-align: middle;
}

.v-sa .kela .v-button:before {
	height: 110%;
}

.v-ff .kela .v-button:before {
	height: 107%;
}

.v-ie .kela .v-button:before {
	margin-top: 4px;
}

.kela .v-button:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
}

.kela .v-button:focus:after {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.kela .v-button.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-button.v-disabled:after {
	display: none;
}

.kela .v-button:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-button:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.kela .v-button:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-button:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.kela .v-button-primary {
	height: 37px;
	padding: 0 16px;
	color: #ecf2f8;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #1362b1;
	border-top-color: #156ab3;
	border-bottom-color: #1156a8;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	-webkit-box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	padding: 0 19px;
	font-weight: bold;
	min-width: 81px;
}

.kela .v-button-primary:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-button-primary:hover:after {
	background-color: rgba(90, 163, 237, 0.1);
}

.kela .v-button-primary:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-button-primary:active:after {
	background-color: rgba(2, 62, 122, 0.2);
}

.kela .v-button-friendly {
	height: 37px;
	padding: 0 16px;
	color: #eaf4e9;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #227719;
	border-top-color: #257d1a;
	border-bottom-color: #1e6b15;
	background-color: #2c9720;
	background-image: -webkit-linear-gradient(top, #2f9f22 2%, #26881b 98%);
	background-image: linear-gradient(to bottom,#2f9f22 2%, #26881b 98%);
	-webkit-box-shadow: inset 0 1px 0 #46b33a, inset 0 -1px 0 #26811b, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #46b33a, inset 0 -1px 0 #26811b, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.kela .v-button-friendly:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-button-friendly:hover:after {
	background-color: rgba(65, 211, 48, 0.1);
}

.kela .v-button-friendly:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-button-friendly:active:after {
	background-color: rgba(14, 86, 6, 0.2);
}

.kela .v-button-danger {
	height: 37px;
	padding: 0 16px;
	
	font-weight: 400;
	
	
	border-radius: 4px;
}

.kela .v-button-danger:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-button-danger:hover:after {
	background-color: rgba(255, 76, 77, 0.1);
}

.kela .v-button-danger:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-button-danger:active:after {
	background-color: rgba(128, 0, 0, 0.2);
}

.kela .v-button-borderless {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	color: inherit;
}

.kela .v-button-borderless:hover:after {
	background: transparent;
}

.kela .v-button-borderless:active:not(.v-disabled) {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
}

.kela .v-button-borderless:active:not(.v-disabled):after {
	background: transparent;
}

.kela .v-button-borderless-colored {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	color: #197de1;
}

.kela .v-button-borderless-colored:hover {
	color: #4396ea;
}

.kela .v-button-borderless-colored:hover:after {
	background: transparent;
}

.kela .v-button-borderless-colored:active:not(.v-disabled) {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
}

.kela .v-button-borderless-colored:active:not(.v-disabled):after {
	background: transparent;
}

.kela .v-button-quiet {
	visibility: hidden;
}

.kela .v-button-quiet:focus, .kela .v-button-quiet:hover {
	visibility: visible;
}

.kela .v-button-quiet [class*="wrap"] {
	visibility: visible;
}

.kela .v-button-quiet [class*="caption"] {
	display: inline-block;
}

.kela .v-button-link {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	color: inherit;
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.kela .v-button-link:hover:after {
	background: transparent;
}

.kela .v-button-link:active:not(.v-disabled) {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
}

.kela .v-button-link:active:not(.v-disabled):after {
	background: transparent;
}

.kela .v-button-link:hover {
	color: #4396ea;
}

.kela .v-button-link.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-button-tiny {
	height: 28px;
	padding: 0 13px;
	
	
	font-size: 12px;
	
	border-radius: 4px;
}

.kela .v-button-tiny:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-button-small {
	height: 31px;
	padding: 0 14px;
	
	
	font-size: 14px;
	
	border-radius: 4px;
}

.kela .v-button-small:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-button-large {
	height: 44px;
	padding: 0 19px;
	
	
	font-size: 20px;
	
	border-radius: 4px;
}

.kela .v-button-large:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-button-huge {
	height: 59px;
	padding: 0 26px;
	
	
	font-size: 26px;
	
	border-radius: 4px;
}

.kela .v-button-huge:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-button-icon-align-right [class*="wrap"] {
	display: inline-block;
}

.kela .v-button-icon-align-right .v-icon {
	float: right;
	margin-left: 13px;
}

.kela .v-button-icon-align-right .v-icon  + span:not(:empty) {
	margin-left: 0;
}

.kela .v-button-icon-align-top {
	height: auto;
	padding-top: 5px;
	padding-bottom: 5px;
}

.kela .v-button-icon-align-top [class*="wrap"] {
	display: inline-block;
}

.kela .v-button-icon-align-top .v-icon {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.kela .v-button-icon-align-top .v-icon  + span:not(:empty) {
	margin-top: 7px;
	margin-left: 0;
}

.kela .v-button-icon-only {
	width: 37px;
	padding: 0;
}

.kela .v-button-icon-only.v-button-tiny {
	width: 28px;
}

.kela .v-button-icon-only.v-button-small {
	width: 31px;
}

.kela .v-button-icon-only.v-button-large {
	width: 44px;
}

.kela .v-button-icon-only.v-button-huge {
	width: 59px;
}

.kela .v-button-icon-only .v-button-caption {
	display: none;
}

.kela .v-checkbox {
	position: relative;
	line-height: 19px;
	white-space: nowrap;
}

.kela .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .kela .v-checkbox {
	padding-left: 25px;
}

:root .kela .v-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .kela .v-checkbox > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .kela .v-checkbox > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .kela .v-checkbox > input ~ label:before, :root .kela .v-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 19px;
	height: 19px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 13px;
	text-align: center;
}

:root .kela .v-checkbox > input ~ label:before {
	height: 18.5px;
	padding: 0 9px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 19px;
}

:root .kela .v-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .kela .v-checkbox > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .kela .v-checkbox > input:checked ~ label:after {
	color: #197de1;
}

.kela .v-checkbox > .v-icon, .kela .v-checkbox > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.kela .v-checkbox.v-disabled  > label, .kela .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .kela .v-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.kela .v-checkbox.v-readonly  > label, .kela .v-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.kela .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .kela .v-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .kela .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-checkbox-small {
	position: relative;
	line-height: 16px;
	white-space: nowrap;
	font-size: 14px;
}

.kela .v-checkbox-small.v-has-width label {
	white-space: normal;
}

:root .kela .v-checkbox-small {
	padding-left: 21px;
}

:root .kela .v-checkbox-small label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .kela .v-checkbox-small > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .kela .v-checkbox-small > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .kela .v-checkbox-small > input ~ label:before, :root .kela .v-checkbox-small > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 11px;
	text-align: center;
}

:root .kela .v-checkbox-small > input ~ label:before {
	height: 15.5px;
	padding: 0 7px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 16px;
}

:root .kela .v-checkbox-small > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .kela .v-checkbox-small > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .kela .v-checkbox-small > input:checked ~ label:after {
	color: #197de1;
}

.kela .v-checkbox-small > .v-icon, .kela .v-checkbox-small > label .v-icon {
	margin: 0 5px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.kela .v-checkbox-small.v-disabled  > label, .kela .v-checkbox-small.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-checkbox-small.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .kela .v-checkbox-small.v-disabled > input:active ~ label:after {
	background: transparent;
}

.kela .v-checkbox-small.v-readonly  > label, .kela .v-checkbox-small.v-readonly  > .v-icon {
	cursor: default;
}

.kela .v-checkbox-small.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .kela .v-checkbox-small.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .kela .v-checkbox-small.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-checkbox-large {
	position: relative;
	line-height: 22px;
	white-space: nowrap;
	font-size: 20px;
}

.kela .v-checkbox-large.v-has-width label {
	white-space: normal;
}

:root .kela .v-checkbox-large {
	padding-left: 29px;
}

:root .kela .v-checkbox-large label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .kela .v-checkbox-large > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .kela .v-checkbox-large > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .kela .v-checkbox-large > input ~ label:before, :root .kela .v-checkbox-large > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 15px;
	text-align: center;
}

:root .kela .v-checkbox-large > input ~ label:before {
	height: 22px;
	padding: 0 10px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 22px;
}

:root .kela .v-checkbox-large > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .kela .v-checkbox-large > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .kela .v-checkbox-large > input:checked ~ label:after {
	color: #197de1;
}

.kela .v-checkbox-large > .v-icon, .kela .v-checkbox-large > label .v-icon {
	margin: 0 7px 0 4px;
	min-width: 1em;
	cursor: pointer;
}

.kela .v-checkbox-large.v-disabled  > label, .kela .v-checkbox-large.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-checkbox-large.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .kela .v-checkbox-large.v-disabled > input:active ~ label:after {
	background: transparent;
}

.kela .v-checkbox-large.v-readonly  > label, .kela .v-checkbox-large.v-readonly  > .v-icon {
	cursor: default;
}

.kela .v-checkbox-large.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .kela .v-checkbox-large.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .kela .v-checkbox-large.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-filterselect {
	position: relative;
	width: 185px;
	height: 37px;
	border-radius: 4px;
	white-space: nowrap;
}

.kela .v-filterselect [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 37px;
	border-radius: 4px;
	padding: 4px 9px;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 38px;
	border-radius: inherit;
}

.kela .v-filterselect [class*="input"].v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-filterselect [class*="input"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-filterselect [class*="input"][class*="prompt"] {
	color: #a3a3a3;
}

.kela .v-filterselect .v-icon + [class*="input"] {
	padding-left: 37px;
}

.kela .v-filterselect img.v-icon {
	max-height: 37px;
	margin-left: 9px;
}

.kela .v-filterselect span.v-icon {
	color: #474747;
	width: 37px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 9px;
}

.kela .v-filterselect[class*="prompt"] > [class*="input"] {
	color: #a3a3a3;
}

.kela .v-filterselect [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 37px;
	top: 1px;
	right: 1px;
	bottom: 1px;
	border-left: 1px solid #e4e4e4;
	color: #a3a3a3;
	border-radius: 0 3px 3px 0;
}

.kela .v-filterselect [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	position: absolute;
	width: 37px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.kela .v-filterselect [class$="button"]:hover:before {
	color: #474747;
}

.kela .v-filterselect [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
	background-color: rgba(128, 128, 128, 0.2);
}

.kela .v-filterselect.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-filterselect.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-filterselect.v-disabled [class$="button"]:active:after {
	display: none;
}

.kela .v-filterselect.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-filterselect.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.kela .v-filterselect.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-filterselect.v-readonly [class$="button"]:active:after {
	display: none;
}

.kela .v-filterselect.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.kela .v-filterselect.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-filterselect.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-filterselect .v-icon {
	position: absolute;
	pointer-events: none;
}

.kela .v-filterselect .v-icon.FontAwesome {
	margin-left: 0px;
}

.kela .v-filterselect-error .v-filterselect-input {
	border-color: red !important;
	background: #fffafa;
	color: #741919;
}

.kela .v-filterselect-error .v-filterselect-button {
	color: red;
	border-color: red;
}

.kela .v-filterselect-error-info .v-filterselect-input {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.kela .v-filterselect-error-info .v-filterselect-button {
	color: #00a7f5;
	border-color: #00a7f5;
}

.kela .v-filterselect-error-warning .v-filterselect-input {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.kela .v-filterselect-error-warning .v-filterselect-button {
	color: #fc9c00;
	border-color: #fc9c00;
}

.kela .v-filterselect-error-error .v-filterselect-input {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.kela .v-filterselect-error-error .v-filterselect-button {
	color: #ed473b;
	border-color: #ed473b;
}

.kela .v-filterselect-error-critical .v-filterselect-input {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.kela .v-filterselect-error-critical .v-filterselect-button {
	color: #fa007d;
	border-color: #fa007d;
}

.kela .v-filterselect-error-system .v-filterselect-input {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.kela .v-filterselect-error-system .v-filterselect-button {
	color: #bb00ff;
	border-color: #bb00ff;
}

.kela .v-filterselect-suggestpopup {
	margin-top: 5px !important;
}

.kela .v-filterselect-suggestpopup[class*="animate-in"] {
	-webkit-animation: valo-overlay-animate-in 120ms;
	-moz-animation: valo-overlay-animate-in 120ms;
	animation: valo-overlay-animate-in 120ms;
}

.kela .v-filterselect-suggestpopup [class$="suggestmenu"] {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 4px 4px;
	box-sizing: content-box;
	position: relative;
	z-index: 1;
	display: block;
}

.kela .v-filterselect-suggestpopup table, .kela .v-filterselect-suggestpopup tbody, .kela .v-filterselect-suggestpopup tr, .kela .v-filterselect-suggestpopup td {
	display: block;
	width: 100%;
	overflow-y: hidden;
	float: left;
	clear: both;
}

.kela .v-filterselect-suggestpopup .gwt-MenuItem {
	cursor: pointer;
	line-height: 27px;
	padding: 0 20px 0 10px;
	border-radius: 3px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	height: 27px;
	box-sizing: border-box;
	text-overflow: ellipsis;
	overflow-x: hidden;
}

.kela .v-filterselect-suggestpopup .gwt-MenuItem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #0957a6;
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.kela .v-filterselect-suggestpopup .gwt-MenuItem .v-icon {
	max-height: 27px;
	margin-right: 5px;
	min-width: 1em;
}

.kela .v-filterselect-suggestpopup .gwt-MenuItem-selected {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.kela .v-filterselect-suggestpopup [class$="status"] {
	position: absolute;
	right: 4px;
	background: rgba(212, 212, 212, 0.9);
	color: #3b3b3b;
	border-radius: 0 0 4px 4px;
	height: 23px;
	bottom: -23px;
	font-size: 12px;
	line-height: 23px;
	padding: 0 6px;
	cursor: default;
	pointer-events: none;
	-webkit-animation: valo-animate-in-slide-down 200ms 80ms backwards;
	-moz-animation: valo-animate-in-slide-down 200ms 80ms backwards;
	animation: valo-animate-in-slide-down 200ms 80ms backwards;
}

.kela .v-filterselect-suggestpopup [class$="status"]  > * {
	color: #3b3b3b;
	text-decoration: none;
}

.kela .v-filterselect-suggestpopup div[class*="page"] {
	position: absolute;
	z-index: 3;
	right: 0;
	opacity: 0.2;
	filter: alpha(opacity=20) ;
	cursor: pointer;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	font-family: ThemeIcons;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	color: #464646;
}

.kela .v-filterselect-suggestpopup div[class*="page"]:after {
	content: "";
	position: absolute;
	display: block;
	border-radius: 50%;
}

.kela .v-filterselect-suggestpopup div[class*="page"]:hover {
	opacity: 1;
	filter: none ;
	background: rgba(250, 250, 250, 0.5);
}

.kela .v-filterselect-suggestpopup div[class*="page"]:hover:after {
	top: -10px;
	bottom: -10px;
	left: -20px;
	right: -20px;
}

.kela .v-filterselect-suggestpopup div[class*="page"] span {
	display: none;
}

.kela .v-filterselect-suggestpopup:hover div[class*="page"] {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.kela .v-filterselect-suggestpopup div[class*="prev"] {
	top: 0;
	-webkit-transform-origin: 100% 0%;
	-moz-transform-origin: 100% 0%;
	-ms-transform-origin: 100% 0%;
	-o-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
	border-radius: 0 4px 0 4px;
}

.kela .v-filterselect-suggestpopup div[class*="prev"]:before {
	content: "\f0d8";
}

.kela .v-filterselect-suggestpopup div[class*="next"] {
	bottom: 0;
	-webkit-transform-origin: 100% 100%;
	-moz-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	-o-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
	border-radius: 4px 0 4px 0;
}

.kela .v-filterselect-suggestpopup div[class*="next"]:before {
	content: "\f0d7";
}

.kela .v-filterselect-suggestpopup div[class*="-off"] {
	display: none;
}

.kela .v-filterselect-no-input {
	cursor: pointer;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.kela .v-filterselect-no-input [class*="input"] {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	cursor: inherit;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	text-shadow: inherit;
	text-overflow: ellipsis;
	border-radius: inherit;
}

.kela .v-filterselect-no-input [class*="input"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-filterselect-no-input [class$="button"] {
	border-left: none !important;
}

.kela .v-filterselect-no-input:hover [class$="button"]:before {
	color: inherit;
}

.kela .v-filterselect-borderless .v-filterselect-input {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.kela .v-filterselect-borderless .v-filterselect-input:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-filterselect-borderless .v-filterselect-input[class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-filterselect-borderless .v-filterselect-button {
	border: none;
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-filterselect-borderless.v-filterselect-prompt .v-filterselect-input {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-filterselect-align-right input {
	text-align: right;
}

.kela .v-filterselect-align-center input {
	text-align: center;
}

.kela .v-filterselect-tiny {
	height: 28px;
	
	font-size: 12px;
}

.kela .v-filterselect-tiny [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 28px;
	
	padding: 3px 5px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 29px;
	border-radius: inherit;
}

.kela .v-filterselect-tiny .v-icon + [class*="input"] {
	padding-left: 28px;
}

.kela .v-filterselect-tiny img.v-icon {
	max-height: 28px;
	margin-left: 5px;
}

.kela .v-filterselect-tiny span.v-icon {
	
	width: 28px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 5px;
}

.kela .v-filterselect-tiny [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 28px;
	border-radius: 0 4px 4px 0;
}

.kela .v-filterselect-tiny [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	position: absolute;
	width: 28px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.kela .v-filterselect-tiny [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.kela .v-filterselect-tiny.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-filterselect-tiny.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-filterselect-tiny.v-disabled [class$="button"]:active:after {
	display: none;
}

.kela .v-filterselect-tiny.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-filterselect-tiny.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.kela .v-filterselect-tiny.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-filterselect-tiny.v-readonly [class$="button"]:active:after {
	display: none;
}

.kela .v-filterselect-tiny.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.kela .v-filterselect-tiny.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-filterselect-tiny.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-filterselect-compact, .kela .v-filterselect-small {
	height: 31px;
	
}

.kela .v-filterselect-compact [class*="input"], .kela .v-filterselect-small [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 31px;
	
	padding: 3px 6px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 32px;
	border-radius: inherit;
}

.kela .v-filterselect-compact .v-icon + [class*="input"], .kela .v-filterselect-small .v-icon + [class*="input"] {
	padding-left: 31px;
}

.kela .v-filterselect-compact img.v-icon, .kela .v-filterselect-small img.v-icon {
	max-height: 31px;
	margin-left: 6px;
}

.kela .v-filterselect-compact span.v-icon, .kela .v-filterselect-small span.v-icon {
	
	width: 31px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 6px;
}

.kela .v-filterselect-compact [class$="button"], .kela .v-filterselect-small [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 31px;
	border-radius: 0 4px 4px 0;
}

.kela .v-filterselect-compact [class$="button"]:before, .kela .v-filterselect-small [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	position: absolute;
	width: 31px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.kela .v-filterselect-compact [class$="button"]:active:after, .kela .v-filterselect-small [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.kela .v-filterselect-compact.v-disabled, .kela .v-filterselect-small.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-filterselect-compact.v-disabled [class$="button"], .kela .v-filterselect-small.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-filterselect-compact.v-disabled [class$="button"]:active:after, .kela .v-filterselect-small.v-disabled [class$="button"]:active:after {
	display: none;
}

.kela .v-filterselect-compact.v-readonly [class*="input"], .kela .v-filterselect-small.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-filterselect-compact.v-readonly [class*="input"]:focus, .kela .v-filterselect-small.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.kela .v-filterselect-compact.v-readonly [class$="button"], .kela .v-filterselect-small.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-filterselect-compact.v-readonly [class$="button"]:active:after, .kela .v-filterselect-small.v-readonly [class$="button"]:active:after {
	display: none;
}

.kela .v-filterselect-compact.v-readonly.borderless [class*="input"], .kela .v-filterselect-small.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.kela .v-filterselect-compact.v-readonly.borderless [class*="input"]:focus, .kela .v-filterselect-small.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-filterselect-compact.v-readonly.borderless [class*="input"][class*="prompt"], .kela .v-filterselect-small.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-filterselect-small {
	font-size: 14px;
}

.kela .v-filterselect-large {
	height: 44px;
	
	font-size: 20px;
}

.kela .v-filterselect-large [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 44px;
	
	padding: 5px 8px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 45px;
	border-radius: inherit;
}

.kela .v-filterselect-large .v-icon + [class*="input"] {
	padding-left: 44px;
}

.kela .v-filterselect-large img.v-icon {
	max-height: 44px;
	margin-left: 8px;
}

.kela .v-filterselect-large span.v-icon {
	
	width: 44px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 8px;
}

.kela .v-filterselect-large [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 44px;
	border-radius: 0 4px 4px 0;
}

.kela .v-filterselect-large [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	position: absolute;
	width: 44px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.kela .v-filterselect-large [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.kela .v-filterselect-large.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-filterselect-large.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-filterselect-large.v-disabled [class$="button"]:active:after {
	display: none;
}

.kela .v-filterselect-large.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-filterselect-large.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.kela .v-filterselect-large.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-filterselect-large.v-readonly [class$="button"]:active:after {
	display: none;
}

.kela .v-filterselect-large.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.kela .v-filterselect-large.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-filterselect-large.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-filterselect-huge {
	height: 59px;
	
	font-size: 26px;
}

.kela .v-filterselect-huge [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 59px;
	
	padding: 7px 10px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 60px;
	border-radius: inherit;
}

.kela .v-filterselect-huge .v-icon + [class*="input"] {
	padding-left: 59px;
}

.kela .v-filterselect-huge img.v-icon {
	max-height: 59px;
	margin-left: 10px;
}

.kela .v-filterselect-huge span.v-icon {
	
	width: 59px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 10px;
}

.kela .v-filterselect-huge [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 59px;
	border-radius: 0 4px 4px 0;
}

.kela .v-filterselect-huge [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	position: absolute;
	width: 59px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.kela .v-filterselect-huge [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.kela .v-filterselect-huge.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-filterselect-huge.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-filterselect-huge.v-disabled [class$="button"]:active:after {
	display: none;
}

.kela .v-filterselect-huge.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-filterselect-huge.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.kela .v-filterselect-huge.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-filterselect-huge.v-readonly [class$="button"]:active:after {
	display: none;
}

.kela .v-filterselect-huge.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.kela .v-filterselect-huge.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-filterselect-huge.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-csslayout-well {
	background: #f5f5f5;
	color: #454545;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	border: 1px solid #c5c5c5;
}

.kela .v-csslayout-well  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-csslayout-well  > .v-margin-top {
	padding-top: 12px;
}

.kela .v-csslayout-well  > .v-margin-right {
	padding-right: 12px;
}

.kela .v-csslayout-well  > .v-margin-bottom {
	padding-bottom: 12px;
}

.kela .v-csslayout-well  > .v-margin-left {
	padding-left: 12px;
}

.kela .v-csslayout-card {
	background: white;
	color: #474747;
	border-radius: 4px;
	border: 1px solid #d5d5d5;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.kela .v-csslayout-card  > .v-margin-top {
	padding-top: 12px;
}

.kela .v-csslayout-card  > .v-margin-right {
	padding-right: 12px;
}

.kela .v-csslayout-card  > .v-margin-bottom {
	padding-bottom: 12px;
}

.kela .v-csslayout-card  > .v-margin-left {
	padding-left: 12px;
}

.kela .v-csslayout-v-component-group {
	white-space: nowrap;
	position: relative;
}

.kela .v-csslayout-v-component-group .v-widget ~ .v-widget:not(:last-child) {
	border-radius: 0;
}

.kela .v-csslayout-v-component-group .v-widget ~ .v-widget.v-upload:not(:last-child) .v-button {
	border-radius: 0;
}

.kela .v-csslayout-v-component-group .v-widget:last-child {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.kela .v-csslayout-v-component-group .v-widget.v-upload:last-child .v-button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.kela .v-csslayout-v-component-group .v-widget:first-child, .kela .v-csslayout-v-component-group .v-caption:first-child + .v-widget {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.kela .v-csslayout-v-component-group .v-widget.v-upload:first-child .v-button, .kela .v-csslayout-v-component-group .v-caption:first-child + .v-widget.v-upload .v-button {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.kela .v-csslayout-v-component-group .v-widget ~ .v-widget.first.first {
	border-radius: 4px 0 0 4px;
}

.kela .v-csslayout-v-component-group .v-widget ~ .v-widget.first.first.v-upload .v-button {
	border-radius: 4px 0 0 4px;
}

.kela .v-csslayout-v-component-group .v-widget ~ .v-widget.last.last {
	border-radius: 0 4px 4px 0;
}

.kela .v-csslayout-v-component-group .v-widget ~ .v-widget.last.last.v-upload .v-button {
	border-radius: 0 4px 4px 0;
}

.kela .v-csslayout-v-component-group .v-widget {
	vertical-align: middle;
	margin-left: -1px;
}

.kela .v-csslayout-v-component-group .v-widget:first-child {
	margin-left: 0;
}

.kela .v-csslayout-v-component-group .v-widget:focus, .kela .v-csslayout-v-component-group .v-widget[class*="focus"], .kela .v-csslayout-v-component-group .v-widget [class*="focus"] {
	position: relative;
	z-index: 5;
}

.kela .v-form fieldset {
	border: none;
	padding: 0;
	margin: 0;
	height: 100%;
}

.kela .v-form-content {
	height: 100%;
	box-sizing: border-box;
}

.kela [class*="spacing"] > tbody > [class*="row"] > td {
	padding-top: 12px;
}

.kela [class*="spacing"] > tbody > [class*="firstrow"] > td {
	padding-top: 0;
}

.kela [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 37px;
}

.kela [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 37px;
}

.kela [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 37px;
}

.kela [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .kela [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .kela [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 37px;
}

.kela [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 37px;
}

.kela [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .kela [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .kela [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 37px;
}

.kela .v-formlayout > table {
	border-spacing: 0;
	position: relative;
}

.kela .v-formlayout.v-has-width > table, .kela .v-formlayout.v-has-width .v-formlayout-contentcell {
	width: 100%;
}

.kela .v-formlayout-error-indicator {
	width: 19px;
}

.kela .v-formlayout-captioncell {
	vertical-align: top;
	line-height: 36px;
}

.kela .v-formlayout-captioncell .v-caption {
	padding-bottom: 0;
}

.kela .v-formlayout-captioncell .v-caption-h2, .kela .v-formlayout-captioncell .v-caption-h3, .kela .v-formlayout-captioncell .v-caption-h4 {
	height: 3em;
}

.kela .v-formlayout-contentcell .v-checkbox, .kela .v-formlayout-contentcell .v-radiobutton {
	font-weight: 400;
}

.kela .v-formlayout-contentcell  > .v-label-h2, .kela .v-formlayout-contentcell  > .v-label-h3, .kela .v-formlayout-contentcell  > .v-label-h4 {
	position: absolute;
	left: 0;
	right: 0;
	width: auto !important;
	margin-top: -0.5em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #dfdfdf;
}

.kela .v-formlayout.light  > table {
	padding: 0;
}

.kela .v-formlayout.light  > table > tbody > tr > td {
	padding-top: 0;
	height: 37px;
	border-bottom: 1px solid #eaeaea;
}

.kela .v-formlayout.light  > table > tbody > [class*="lastrow"] > td {
	border-bottom: none;
}

.kela .v-formlayout.light  > table > tbody > tr > [class*="captioncell"] {
	color: #7d7d7d;
	text-align: right;
	padding-left: 13px;
	line-height: 37px;
}

.kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 0;
}

.kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect-input, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield-textfield {
	width: 100%;
}

.kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 37px;
	border-radius: 0;
	padding: 4px 7px;
	
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	background: transparent;
	border: none;
	color: inherit;
}

.kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield.v-disabled, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea.v-disabled, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input.v-disabled, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input.v-disabled, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield:focus, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea:focus, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input:focus, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input:focus, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), none;
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), none;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield:focus, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea:focus, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input:focus, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input:focus, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea:focus {
	box-shadow: none;
}

.kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield-prompt, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea-prompt, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect-prompt input, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield-prompt input {
	color: #a3a3a3;
}

.kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea {
	height: auto;
}

.kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	border-bottom: none;
	left: 0;
	right: 0;
}

.kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .kela .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	margin-top: 0;
}

.kela .v-formlayout.light .v-richtextarea {
	margin: 5px 0;
}

.kela .v-formlayout.light .v-filterselect-button, .kela .v-formlayout.light .v-datefield-button {
	border: none;
}

.kela .v-formlayout.light .v-filterselect-button:active:after, .kela .v-formlayout.light .v-datefield-button:active:after {
	display: none;
}

.kela .v-formlayout.light .v-datefield-button {
	right: 0;
	left: auto;
}

.kela .v-formlayout.light .v-checkbox {
	margin-left: 7px;
}

.kela .v-grid {
	position: relative;
}

.kela .v-grid-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.kela .v-grid-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.kela .v-grid-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.kela .v-grid-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.kela .v-grid-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.kela .v-grid-header-deco, .kela .v-grid-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.kela .v-grid-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.kela .v-grid-header, .kela .v-grid-body, .kela .v-grid-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.kela .v-grid-header, .kela .v-grid-header-deco {
	top: 0;
}

.kela .v-grid-footer, .kela .v-grid-footer-deco {
	bottom: 0;
}

.kela .v-grid-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.kela .v-grid-body .v-grid-row {
	position: absolute;
	top: 0;
	left: 0;
}

.kela .v-grid-body .v-grid-header > .v-grid-row {
	position: relative;
}

.kela .v-grid-row {
	display: block;
}

.kela .v-grid-row  > td, .kela .v-grid-row  > th {
	background-color: white;
}

.kela .v-grid-row {
	width: inherit;
}

.kela .v-grid-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 16px;
}

.kela .v-grid-cell.frozen {
	position: relative;
	z-index: 1;
}

.kela .v-grid-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.kela .v-grid-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.kela .v-grid {
	outline: none;
}

.kela .v-grid-scroller-vertical, .kela .v-grid-scroller-horizontal {
	border: 1px solid #d4d4d4;
}

.kela .v-grid-scroller-vertical {
	border-left: none;
}

.kela .v-grid-scroller-horizontal {
	border-top: none;
}

.kela .v-grid-tablewrapper {
	border: 1px solid #d4d4d4;
}

.kela .v-grid .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.kela .v-grid .header-drag-table .v-grid-header {
	position: absolute;
}

.kela .v-grid .header-drag-table .v-grid-header  > .v-grid-cell {
	border: 1px solid #d4d4d4;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.kela .v-grid .header-drag-table .v-grid-header  > .v-grid-drop-marker {
	background-color: #197de1;
	position: absolute;
	width: 3px;
}

.kela .v-grid-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	padding: 0;
	z-index: 5;
}

.kela .v-grid-sidebar.v-contextmenu.v-grid-sidebar-popup {
	right: auto;
}

.kela .v-grid-sidebar.v-contextmenu .v-grid-sidebar-button {
	background: transparent;
	border: none;
	color: inherit;
	cursor: pointer;
	outline: none;
	padding: 0 4px;
	text-align: right;
	line-height: 1;
}

.kela .v-grid-sidebar.v-contextmenu .v-grid-sidebar-button[disabled] {
	cursor: default;
}

.kela .v-grid-sidebar.v-contextmenu .v-grid-sidebar-button::-moz-focus-inner {
	border: 0;
}

.kela .v-grid-sidebar.v-contextmenu .v-grid-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 14px;
}

.kela .v-grid-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.kela .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-button {
	width: 100%;
}

.kela .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-button:after {
	content: "\f0c9";
	font-size: 14px;
	line-height: 1;
}

.v-ie .kela .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-button {
	vertical-align: middle;
}

.kela .v-grid-sidebar.v-contextmenu .v-grid-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.kela .v-grid-sidebar.v-contextmenu .v-grid-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.kela .v-grid-cell {
	background-color: white;
	padding: 0 18px;
	line-height: 37px;
	text-overflow: ellipsis;
}

.kela .v-grid-cell  > * {
	line-height: 1.55;
	vertical-align: middle;
}

.kela .v-grid-cell  > div {
	display: inline-block;
}

.kela .v-grid-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	position: relative;
	z-index: 11;
}

.kela .v-grid-cell.frozen  + th, .kela .v-grid-cell.frozen  + td {
	border-left: none;
}

.kela .v-grid-cell div.component-wrap {
	width: 100%;
}

.kela .v-grid-row > td, .kela .v-grid-editor-cells > div {
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}

.kela .v-grid-row > td:first-child, .kela .v-grid-editor-cells > div:first-child {
	border-left: none;
}

.kela .v-grid-editor-cells.frozen > div {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	border-left: none;
}

.kela .v-grid-row-stripe > td {
	background-color: #f5f5f5;
}

.kela .v-grid-row-selected > td {
	background: #197de1;
}

.kela .v-grid-row-focused > td {
	
}

.kela .v-grid-header th {
	position: relative;
	background-color: #fafafa;
	font-size: 14px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
	
	text-align: left;
}

.kela .v-grid-header th:first-child {
	border-left: none;
}

.kela .v-grid-header .sort-asc, .kela .v-grid-header .sort-desc {
	padding-right: 35px;
}

.kela .v-grid-header .sort-asc:after, .kela .v-grid-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 18px;
	font-size: 12px;
}

.kela .v-grid-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.kela .v-grid-column-resize-handle {
	position: absolute;
	width: 36px;
	right: -18px;
	top: 0px;
	bottom: 0px;
	cursor: col-resize;
	z-index: 10;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.kela .v-grid-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 18px;
	z-index: 9001;
	background: #fff;
	box-shadow: 0px 0px 5px #000;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.kela .v-grid-footer td {
	background-color: #fafafa;
	font-size: 14px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-bottom: none;
	
}

.kela .v-grid-footer td:first-child {
	border-left: none;
}

.kela .v-grid-header .v-grid-cell, .kela .v-grid-footer .v-grid-cell {
	overflow: visible;
}

.kela .v-grid-column-header-content, .kela .v-grid-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 37px;
	vertical-align: baseline;
}

.kela .v-grid-header-deco {
	border-top: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.kela .v-grid-footer-deco {
	border-bottom: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.kela .v-grid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	border-top: none;
}

.kela .v-grid-cell-focused {
	position: relative;
}

.kela .v-grid-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #197de1;
	display: none;
	pointer-events: none;
}

.kela .v-grid:focus .v-grid-cell-focused:before {
	display: block;
}

.kela .v-grid.v-disabled:focus .v-grid-cell-focused:before {
	display: none;
}

.kela .v-grid-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #d4d4d4;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-top: -1px;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}

.kela .v-grid-editor.unbuffered .v-grid-editor-footer {
	width: 100%;
}

.kela .v-grid-editor-cells {
	position: relative;
	white-space: nowrap;
}

.kela .v-grid-editor-cells.frozen {
	z-index: 2;
}

.kela .v-grid-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.kela .v-grid-editor-cells  > div:first-child {
	border-left: none;
}

.kela .v-grid-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.kela .v-grid-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.kela .v-grid-editor-cells  > div input[type="text"], .kela .v-grid-editor-cells  > div input[type="text"].v-filterselect-input, .kela .v-grid-editor-cells  > div input[type="password"] {
	padding-left: 18px;
}

.kela .v-grid-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .kela .v-grid-editor-cells  > div input[type="password"] {
	padding-right: 9px;
}

.kela .v-grid-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 18px;
}

.kela .v-grid-editor-cells  > div .v-textfield, .kela .v-grid-editor-cells  > div .v-datefield, .kela .v-grid-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.kela .v-grid-editor-cells  > div .v-select, .kela .v-grid-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.kela .v-grid-editor-cells  > div.not-editable.v-grid-cell {
	float: none;
}

.kela .v-grid-editor-cells .error::before {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	content: "";
	border-top: 5px solid red;
	border-right: 5px solid transparent;
}

.kela .v-grid-editor-cells .error, .kela .v-grid-editor-cells .error > input {
	background-color: #fee;
}

.kela .v-grid-editor-footer {
	display: table;
	height: 37px;
	border-top: 1px solid #d4d4d4;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.kela .v-grid-editor-footer  + .v-grid-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4d4d4;
}

.kela .v-grid-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4d4d4;
	margin-bottom: -1px;
}

.kela .v-grid-editor-message, .kela .v-grid-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.kela .v-grid-editor-message {
	width: 100%;
	position: relative;
}

.kela .v-grid-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 37px;
	top: 0;
}

.kela .v-grid-editor-save {
	margin-right: 4px;
}

.kela .v-grid-spacer {
	padding-left: 1px;
}

.kela .v-grid-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #d4d4d4;
}

.kela .v-grid-spacer.stripe > td {
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #d4d4d4;
}

.kela .v-grid-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.kela .v-grid-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #197de1;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.kela .v-grid-cell > .v-progressbar {
	width: 100%;
}

.kela .v-grid {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #fafafa;
}

.kela .v-grid.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-grid-header .v-grid-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.kela .v-grid-header .v-grid-cell.dragged {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.kela .v-grid-header .v-grid-cell.dragged-column-header {
	margin-top: -19px;
}

.kela .v-grid-footer .v-grid-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.kela .v-grid-header-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.kela .v-grid-footer-deco, .kela .v-grid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.kela .v-grid-row-selected  > .v-grid-cell {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #c8dbed;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #1d69b4;
}

.kela .v-grid-row-selected  > .v-grid-cell-focused:before {
	border-color: #71b0ef;
}

.kela .v-grid-editor {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	border-color: #197de1;
}

.kela .v-grid-editor-footer {
	font-size: 14px;
	padding: 0 6px;
	background: #fafafa;
	-webkit-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
}

.kela .v-grid-editor-footer:first-child {
	-webkit-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
}

.kela .v-grid-editor-cells {
	z-index: 1;
}

.kela .v-grid-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.kela .v-grid-editor-cells > div.not-editable.v-grid-cell {
	float: none;
}

.kela .v-grid-editor-cells > div .error::before {
	border-top: 9px solid red;
	border-right: 9px solid transparent;
}

.kela .v-grid-editor-cells > div .error, .kela .v-grid-editor-cells > div .error > input {
	background-color: #fffafa;
}

.kela .v-grid-editor-cells > div .v-textfield, .kela .v-grid-editor-cells > div .v-textfield-focus, .kela .v-grid-editor-cells > div .v-datefield, .kela .v-grid-editor-cells > div .v-datefield .v-textfield-focus, .kela .v-grid-editor-cells > div .v-filterselect-input, .kela .v-grid-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #f2f2f2;
	box-shadow: inset 0 1px 0 #f2f2f2;
}

.kela .v-grid-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 44.4px;
}

.kela .v-grid-editor-cells > div .v-textfield-focus, .kela .v-grid-editor-cells > div .v-datefield .v-textfield-focus, .kela .v-grid-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.kela .v-grid-editor-cells > div .v-select {
	padding-left: 9px;
	padding-right: 9px;
}

.kela .v-grid-editor-cells > div .v-checkbox.v-widget {
	margin: 0 9px 0 18px;
}

.kela .v-grid-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.kela .v-grid-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.kela .v-grid-editor-message > div:before {
	display: inline-block;
	color: red;
	font-weight: 600;
	width: 19px;
	text-align: center;
	content: "!";
}

.kela .v-grid-editor-save, .kela .v-grid-editor-cancel {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	font-weight: 400;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 6px 6px;
	margin: 0;
	outline: none;
}

.kela .v-grid-editor-save:hover, .kela .v-grid-editor-cancel:hover {
	color: #4396ea;
}

.kela .v-grid-editor-save.v-disabled, .kela .v-grid-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-grid-spacer {
	margin-top: -1px;
}

.kela .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.kela .v-grid-sidebar.v-contextmenu.closed {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.kela .v-grid-scroller::-webkit-scrollbar {
	border: none;
}

.kela .v-grid-scroller::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border: 4px solid transparent;
	background: rgba(0, 0, 0, 0.3);
	-webkit-background-clip: content-box;
	background-clip: content-box;
}

.kela .v-grid-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.kela .v-grid-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.kela .v-grid-row-drag-badge {
	background-color: red;
	color: white;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	line-height: 30px;
	text-align: center;
	float: left;
}

.kela .v-grid-row-drag-top, .kela .v-grid-row-drag-bottom {
	z-index: 100;
}

.kela .v-grid-row-drag-top:before, .kela .v-grid-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #197de1;
	pointer-events: none;
	border: none;
}

.kela .v-grid-row-drag-bottom:after {
	bottom: -1px;
}

.kela .v-grid-row-drag-top:before {
	top: -1px;
}

.kela .v-grid-row-drag-top:first-child:before {
	top: 0;
}

.kela .v-grid-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #197de1;
	pointer-events: none;
}

.kela .v-grid-row-selected.v-grid-row-drag-center:after {
	border-color: #1463b3;
}

.kela .v-grid-row-selected.v-grid-row-drag-top:before, .kela .v-grid-row-selected.v-grid-row-drag-bottom:after {
	background: #1463b3;
}

.kela .v-grid-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #197de1;
	z-index: 100;
}

.kela .v-textfield {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 37px;
	border-radius: 4px;
	padding: 4px 9px;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 185px;
}

.kela .v-textfield.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-textfield:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-textfield[class*="prompt"] {
	color: #a3a3a3;
}

.kela .v-textfield-readonly {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-textfield-readonly:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.kela .v-textfield-error {
	border-color: red !important;
	background: #fffafa;
	color: #741919;
}

.kela .v-textfield-error-info {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.kela .v-textfield-error-warning {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.kela .v-textfield-error-error {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.kela .v-textfield-error-critical {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.kela .v-textfield-error-system {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.kela .v-textfield-borderless {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.kela .v-textfield-borderless:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-textfield-borderless[class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-textfield-tiny {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 28px;
	border-radius: 4px;
	padding: 3px 7px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 12px;
}

.kela .v-textfield-compact, .kela .v-textfield-small {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 31px;
	border-radius: 4px;
	padding: 3px 8px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
}

.kela .v-textfield-small {
	font-size: 14px;
}

.kela .v-textfield-large {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 44px;
	border-radius: 4px;
	padding: 5px 10px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 20px;
}

.kela .v-textfield-huge {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 59px;
	border-radius: 4px;
	padding: 7px 12px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 26px;
}

.kela .v-slot-inline-icon {
	position: relative;
}

.kela .v-caption-inline-icon {
	padding: 0;
}

.kela .v-caption-inline-icon .v-captiontext {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.kela .v-caption-inline-icon .v-icon {
	position: absolute;
	z-index: 10;
}

.kela .v-caption-inline-icon span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 37px;
	line-height: 35px;
	text-align: center;
	font-size: 16px;
}

.kela .v-caption-inline-icon img.v-icon {
	left: 11px;
	bottom: 11px;
}

.kela .v-textfield-inline-icon  {
	padding-left: 37px;
}

.kela .v-slot-inline-icon.v-slot-tiny {
	position: relative;
}

.kela .v-caption-inline-icon.v-caption-tiny {
	padding: 0;
}

.kela .v-caption-inline-icon.v-caption-tiny .v-captiontext {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.kela .v-caption-inline-icon.v-caption-tiny .v-icon {
	position: absolute;
	z-index: 10;
}

.kela .v-caption-inline-icon.v-caption-tiny span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 28px;
	line-height: 26px;
	text-align: center;
	font-size: 12px;
}

.kela .v-caption-inline-icon.v-caption-tiny img.v-icon {
	left: 6px;
	bottom: 6px;
}

.kela .v-textfield-inline-icon.v-textfield-tiny  {
	padding-left: 28px;
}

.kela .v-slot-inline-icon.v-slot-compact {
	position: relative;
}

.kela .v-caption-inline-icon.v-caption-compact {
	padding: 0;
}

.kela .v-caption-inline-icon.v-caption-compact .v-captiontext {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.kela .v-caption-inline-icon.v-caption-compact .v-icon {
	position: absolute;
	z-index: 10;
}

.kela .v-caption-inline-icon.v-caption-compact span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 31px;
	line-height: 29px;
	text-align: center;
	font-size: 16px;
}

.kela .v-caption-inline-icon.v-caption-compact img.v-icon {
	left: 8px;
	bottom: 8px;
}

.kela .v-textfield-inline-icon.v-textfield-compact  {
	padding-left: 31px;
}

.kela .v-slot-inline-icon.v-slot-small {
	position: relative;
}

.kela .v-caption-inline-icon.v-caption-small {
	padding: 0;
}

.kela .v-caption-inline-icon.v-caption-small .v-captiontext {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.kela .v-caption-inline-icon.v-caption-small .v-icon {
	position: absolute;
	z-index: 10;
}

.kela .v-caption-inline-icon.v-caption-small span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 31px;
	line-height: 29px;
	text-align: center;
	font-size: 14px;
}

.kela .v-caption-inline-icon.v-caption-small img.v-icon {
	left: 8px;
	bottom: 8px;
}

.kela .v-textfield-inline-icon.v-textfield-small  {
	padding-left: 31px;
}

.kela .v-slot-inline-icon.v-slot-large {
	position: relative;
}

.kela .v-caption-inline-icon.v-caption-large {
	padding: 0;
}

.kela .v-caption-inline-icon.v-caption-large .v-captiontext {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.kela .v-caption-inline-icon.v-caption-large .v-icon {
	position: absolute;
	z-index: 10;
}

.kela .v-caption-inline-icon.v-caption-large span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 44px;
	line-height: 42px;
	text-align: center;
	font-size: 20px;
}

.kela .v-caption-inline-icon.v-caption-large img.v-icon {
	left: 14px;
	bottom: 14px;
}

.kela .v-textfield-inline-icon.v-textfield-large  {
	padding-left: 44px;
}

.kela .v-slot-inline-icon.v-slot-huge {
	position: relative;
}

.kela .v-caption-inline-icon.v-caption-huge {
	padding: 0;
}

.kela .v-caption-inline-icon.v-caption-huge .v-captiontext {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.kela .v-caption-inline-icon.v-caption-huge .v-icon {
	position: absolute;
	z-index: 10;
}

.kela .v-caption-inline-icon.v-caption-huge span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 59px;
	line-height: 57px;
	text-align: center;
	font-size: 26px;
}

.kela .v-caption-inline-icon.v-caption-huge img.v-icon {
	left: 22px;
	bottom: 22px;
}

.kela .v-textfield-inline-icon.v-textfield-huge  {
	padding-left: 59px;
}

.kela .v-textfield-align-right {
	text-align: right;
}

.kela .v-textfield-align-center {
	text-align: center;
}

.kela .v-textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 37px;
	border-radius: 4px;
	padding: 6px;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	width: 185px;
}

.kela .v-textarea.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-textarea:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-textarea[class*="prompt"] {
	color: #a3a3a3;
}

.kela .v-textarea-readonly {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-textarea-readonly:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.kela .v-textarea-error {
	border-color: red !important;
	background: #fffafa;
	color: #741919;
}

.kela .v-textarea-borderless {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.kela .v-textarea-borderless:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-textarea-borderless[class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-textarea-tiny {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 28px;
	border-radius: 4px;
	padding: 6px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 12px;
}

.kela .v-textarea-small {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 31px;
	border-radius: 4px;
	padding: 6px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 14px;
}

.kela .v-textarea-large {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 44px;
	border-radius: 4px;
	padding: 6px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 20px;
}

.kela .v-textarea-huge {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 59px;
	border-radius: 4px;
	padding: 6px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 26px;
}

.kela .v-textarea-align-right {
	text-align: right;
}

.kela .v-textarea-align-center {
	text-align: center;
}

.kela .v-datefield {
	position: relative;
	width: 185px;
	height: 37px;
	border-radius: 4px;
}

.kela .v-datefield [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 37px;
	border-radius: 4px;
	padding: 4px 9px;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 44.4px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.kela .v-datefield [class*="textfield"].v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-datefield [class*="textfield"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-datefield [class*="textfield"][class*="prompt"] {
	color: #a3a3a3;
}

.kela .v-datefield[class*="prompt"] > [class*="textfield"] {
	color: #a3a3a3;
}

.kela .v-datefield [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 37px;
	line-height: 35px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	top: 1px;
	bottom: 1px;
	left: 1px;
	border: none;
	border-right: 1px solid #e4e4e4;
	color: #a3a3a3;
	border-radius: 3px 0 0 3px;
}

.kela .v-datefield [class*="button"]:hover {
	color: #474747;
}

.kela .v-datefield [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.kela .v-datefield [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(128, 128, 128, 0.2);
	border-radius: inherit;
}

.kela .v-datefield.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-datefield.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-datefield.v-disabled [class*="button"]:active:after {
	display: none;
}

.kela .v-datefield.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-datefield.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.kela .v-datefield.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-datefield.v-readonly [class*="button"]:active:after {
	display: none;
}

.kela .v-datefield.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.kela .v-datefield.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-datefield.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-datefield-error .v-datefield-textfield {
	border-color: red !important;
	background: #fffafa;
	color: #741919;
}

.kela .v-datefield-error .v-datefield-button {
	color: red;
	border-color: red;
}

.kela .v-datefield-error-info .v-datefield-textfield {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.kela .v-datefield-error-info .v-datefield-button {
	color: #00a7f5;
	border-color: #00a7f5;
}

.kela .v-datefield-error-warning .v-datefield-textfield {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.kela .v-datefield-error-warning .v-datefield-button {
	color: #fc9c00;
	border-color: #fc9c00;
}

.kela .v-datefield-error-error .v-datefield-textfield {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.kela .v-datefield-error-error .v-datefield-button {
	color: #ed473b;
	border-color: #ed473b;
}

.kela .v-datefield-error-critical .v-datefield-textfield {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.kela .v-datefield-error-critical .v-datefield-button {
	color: #fa007d;
	border-color: #fa007d;
}

.kela .v-datefield-error-system .v-datefield-textfield {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.kela .v-datefield-error-system .v-datefield-button {
	color: #bb00ff;
	border-color: #bb00ff;
}

.kela .v-datefield-full {
	width: 240px;
}

.kela .v-datefield-day {
	width: 185px;
}

.kela .v-datefield-month {
	width: 120px;
}

.kela .v-datefield-year {
	width: 104px;
}

.kela .v-datefield-popup {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	margin-top: 5px !important;
	margin-bottom: 5px !important;
	margin-right: 5px !important;
	cursor: default;
	width: auto;
}

.kela .v-datefield-popup[class*="animate-in"] {
	-webkit-animation: valo-overlay-animate-in 120ms;
	-moz-animation: valo-overlay-animate-in 120ms;
	animation: valo-overlay-animate-in 120ms;
}

.kela .v-datefield-popup[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.kela .v-datefield-popup table {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 auto;
}

.kela .v-datefield-popup td {
	padding: 2px;
}

.kela .v-datefield-popup .v-datefield-calendarpanel {
	font-size: 16px;
	text-align: center;
}

.kela .v-datefield-popup .v-datefield-calendarpanel:focus {
	outline: none;
}

.kela .v-datefield-popup .v-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 30px;
	height: 26px;
	border: 1px solid transparent;
	line-height: 26px;
	text-align: center;
	font-size: 14px;
	background: #fafafa;
	border-radius: 2px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.kela .v-datefield-popup .v-datefield-calendarpanel-day:hover {
	color: #197de1;
}

.kela .v-datefield-popup .v-datefield-calendarpanel-day-offmonth {
	color: #a0a0a0;
	background: transparent;
}

.kela .v-datefield-popup .v-datefield-calendarpanel-day-today {
	color: #191919;
	font-weight: 600;
	border-color: #afafaf;
}

.kela .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .kela .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #c8dbed;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	border: none;
	font-weight: 600;
}

.kela .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	position: relative;
}

.kela .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .kela .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
	color: #a0a0a0;
	cursor: not-allowed;
}

.kela .v-datefield-popup .v-datefield-calendarpanel-weekdays {
	height: 26px;
	color: rgba(133, 133, 133, 0.85);
}

.kela .v-datefield-popup .v-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 14px;
}

.kela .v-datefield-popup .v-datefield-calendarpanel-header {
	white-space: nowrap;
}

.kela .v-datefield-popup td[class*="year"] button, .kela .v-datefield-popup td[class*="month"] button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	width: 19px;
	height: 25px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.kela .v-datefield-popup td[class*="year"] button:before, .kela .v-datefield-popup td[class*="month"] button:before {
	color: #a0a0a0;
	font-size: 21px;
	line-height: 24px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

.kela .v-datefield-popup td[class*="year"] button:hover:before, .kela .v-datefield-popup td[class*="month"] button:hover:before {
	color: #197de1;
}

.kela .v-datefield-popup td[class*="year"] button.outside-range, .kela .v-datefield-popup td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.kela .v-datefield-popup td[class*="year"] button.outside-range:hover:before, .kela .v-datefield-popup td[class*="month"] button.outside-range:hover:before {
	color: #a0a0a0;
}

.kela .v-datefield-popup .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.kela .v-datefield-popup .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.kela .v-datefield-popup .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.kela .v-datefield-popup .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.kela .v-datefield-popup td.v-datefield-calendarpanel-month {
	width: 148px;
	cursor: default;
	color: #197de1;
}

.kela .v-datefield-popup td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.kela .v-datefield-popup .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 74px;
}

.kela .v-datefield-popup .v-datefield-calendarpanel-weeknumber, .kela .v-datefield-popup .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
	width: 30px;
	color: rgba(133, 133, 133, 0.85);
	font-size: 14px;
	display: inline-block;
	text-align: left;
}

.kela .v-datefield-popup .v-datefield-calendarpanel-weeknumber {
	position: relative;
}

.kela .v-datefield-popup .v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 38px;
	bottom: 0;
	left: 0;
	width: 34px;
	border-top: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	background: #fafafa;
}

.kela .v-datefield-popup td.v-datefield-calendarpanel-time {
	width: 100%;
	font-size: 14px;
}

.kela .v-datefield-popup td.v-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.kela .v-datefield-calendarpanel {
	font-size: 16px;
	text-align: center;
}

.kela .v-datefield-calendarpanel:focus {
	outline: none;
}

.kela .v-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 30px;
	height: 26px;
	border: 1px solid transparent;
	line-height: 26px;
	text-align: center;
	font-size: 14px;
	background: #fafafa;
	border-radius: 2px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.kela .v-datefield-calendarpanel-day:hover {
	color: #197de1;
}

.kela .v-datefield-calendarpanel-day-offmonth {
	color: #a0a0a0;
	background: transparent;
}

.kela .v-datefield-calendarpanel-day-today {
	color: #191919;
	font-weight: 600;
	border-color: #afafaf;
}

.kela .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .kela .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #c8dbed;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	border: none;
	font-weight: 600;
}

.kela .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	position: relative;
}

.kela .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .kela .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
	color: #a0a0a0;
	cursor: not-allowed;
}

.kela .v-datefield-calendarpanel-weekdays {
	height: 26px;
	color: rgba(133, 133, 133, 0.85);
}

.kela .v-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 14px;
}

.kela .v-datefield-calendarpanel-header {
	white-space: nowrap;
}

.kela td[class*="year"] button, .kela td[class*="month"] button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	width: 19px;
	height: 25px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.kela td[class*="year"] button:before, .kela td[class*="month"] button:before {
	color: #a0a0a0;
	font-size: 21px;
	line-height: 24px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

.kela td[class*="year"] button:hover:before, .kela td[class*="month"] button:hover:before {
	color: #197de1;
}

.kela td[class*="year"] button.outside-range, .kela td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.kela td[class*="year"] button.outside-range:hover:before, .kela td[class*="month"] button.outside-range:hover:before {
	color: #a0a0a0;
}

.kela .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.kela .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.kela .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.kela .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.kela td.v-datefield-calendarpanel-month {
	width: 148px;
	cursor: default;
	color: #197de1;
}

.kela td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.kela .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 74px;
}

.kela .v-datefield-calendarpanel-weeknumber, .kela .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
	width: 30px;
	color: rgba(133, 133, 133, 0.85);
	font-size: 14px;
	display: inline-block;
	text-align: left;
}

.kela .v-datefield-calendarpanel-weeknumber {
	position: relative;
}

.kela .v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 38px;
	bottom: 0;
	left: 0;
	width: 34px;
	border-top: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	background: #fafafa;
}

.kela td.v-datefield-calendarpanel-time {
	width: 100%;
	font-size: 14px;
}

.kela td.v-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.kela .v-datefield-borderless .v-datefield-textfield {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.kela .v-datefield-borderless .v-datefield-textfield:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-datefield-borderless .v-datefield-textfield[class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-datefield-borderless .v-datefield-button {
	border: none;
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-datefield-align-right input {
	text-align: right;
}

.kela .v-datefield-align-center input {
	text-align: center;
}

.kela .v-datefield-tiny {
	height: 28px;
	border-radius: 4px;
	font-size: 12px;
}

.kela .v-datefield-tiny [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 28px;
	border-radius: 4px;
	padding: 3px 7px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 33.6px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.kela .v-datefield-tiny [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 28px;
	line-height: 28px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

.kela .v-datefield-tiny [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.kela .v-datefield-tiny [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.kela .v-datefield-tiny.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-datefield-tiny.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-datefield-tiny.v-disabled [class*="button"]:active:after {
	display: none;
}

.kela .v-datefield-tiny.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-datefield-tiny.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.kela .v-datefield-tiny.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-datefield-tiny.v-readonly [class*="button"]:active:after {
	display: none;
}

.kela .v-datefield-tiny.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.kela .v-datefield-tiny.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-datefield-tiny.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-datefield-compact, .kela .v-datefield-small {
	height: 31px;
	border-radius: 4px;
}

.kela .v-datefield-compact [class*="textfield"], .kela .v-datefield-small [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 31px;
	border-radius: 4px;
	padding: 3px 8px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 37.2px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.kela .v-datefield-compact [class*="button"], .kela .v-datefield-small [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 31px;
	line-height: 31px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

.kela .v-datefield-compact [class*="button"]:before, .kela .v-datefield-small [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.kela .v-datefield-compact [class*="button"]:active:after, .kela .v-datefield-small [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.kela .v-datefield-compact.v-disabled, .kela .v-datefield-small.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-datefield-compact.v-disabled [class*="button"], .kela .v-datefield-small.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-datefield-compact.v-disabled [class*="button"]:active:after, .kela .v-datefield-small.v-disabled [class*="button"]:active:after {
	display: none;
}

.kela .v-datefield-compact.v-readonly [class*="textfield"], .kela .v-datefield-small.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-datefield-compact.v-readonly [class*="textfield"]:focus, .kela .v-datefield-small.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.kela .v-datefield-compact.v-readonly [class*="button"], .kela .v-datefield-small.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-datefield-compact.v-readonly [class*="button"]:active:after, .kela .v-datefield-small.v-readonly [class*="button"]:active:after {
	display: none;
}

.kela .v-datefield-compact.v-readonly.borderless [class*="textfield"], .kela .v-datefield-small.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.kela .v-datefield-compact.v-readonly.borderless [class*="textfield"]:focus, .kela .v-datefield-small.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-datefield-compact.v-readonly.borderless [class*="textfield"][class*="prompt"], .kela .v-datefield-small.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-datefield-small {
	font-size: 14px;
}

.kela .v-datefield-large {
	height: 44px;
	border-radius: 4px;
	font-size: 20px;
}

.kela .v-datefield-large [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 44px;
	border-radius: 4px;
	padding: 5px 10px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 52.8px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.kela .v-datefield-large [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 44px;
	line-height: 44px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

.kela .v-datefield-large [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.kela .v-datefield-large [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.kela .v-datefield-large.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-datefield-large.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-datefield-large.v-disabled [class*="button"]:active:after {
	display: none;
}

.kela .v-datefield-large.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-datefield-large.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.kela .v-datefield-large.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-datefield-large.v-readonly [class*="button"]:active:after {
	display: none;
}

.kela .v-datefield-large.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.kela .v-datefield-large.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-datefield-large.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-datefield-huge {
	height: 59px;
	border-radius: 4px;
	font-size: 26px;
}

.kela .v-datefield-huge [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 59px;
	border-radius: 4px;
	padding: 7px 12px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 70.8px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.kela .v-datefield-huge [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 59px;
	line-height: 59px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

.kela .v-datefield-huge [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.kela .v-datefield-huge [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.kela .v-datefield-huge.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-datefield-huge.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-datefield-huge.v-disabled [class*="button"]:active:after {
	display: none;
}

.kela .v-datefield-huge.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-datefield-huge.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.kela .v-datefield-huge.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.kela .v-datefield-huge.v-readonly [class*="button"]:active:after {
	display: none;
}

.kela .v-datefield-huge.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.kela .v-datefield-huge.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-datefield-huge.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-inline-datefield-calendarpanel {
	font-size: 16px;
	text-align: center;
}

.kela .v-inline-datefield-calendarpanel:focus {
	outline: none;
}

.kela .v-inline-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 30px;
	height: 26px;
	border: 1px solid transparent;
	line-height: 26px;
	text-align: center;
	font-size: 14px;
	background: #fafafa;
	border-radius: 2px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.kela .v-inline-datefield-calendarpanel-day:hover {
	color: #197de1;
}

.kela .v-inline-datefield-calendarpanel-day-offmonth {
	color: #a0a0a0;
	background: transparent;
}

.kela .v-inline-datefield-calendarpanel-day-today {
	color: #191919;
	font-weight: 600;
	border-color: #afafaf;
}

.kela .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected, .kela .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected:hover {
	color: #c8dbed;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	border: none;
	font-weight: 600;
}

.kela .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	position: relative;
}

.kela .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range, .kela .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range:hover {
	color: #a0a0a0;
	cursor: not-allowed;
}

.kela .v-inline-datefield-calendarpanel-weekdays {
	height: 26px;
	color: rgba(133, 133, 133, 0.85);
}

.kela .v-inline-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 14px;
}

.kela .v-inline-datefield-calendarpanel-header {
	white-space: nowrap;
}

.kela td[class*="year"] button, .kela td[class*="month"] button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	width: 19px;
	height: 25px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.kela td[class*="year"] button:before, .kela td[class*="month"] button:before {
	color: #a0a0a0;
	font-size: 21px;
	line-height: 24px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

.kela td[class*="year"] button:hover:before, .kela td[class*="month"] button:hover:before {
	color: #197de1;
}

.kela td[class*="year"] button.outside-range, .kela td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.kela td[class*="year"] button.outside-range:hover:before, .kela td[class*="month"] button.outside-range:hover:before {
	color: #a0a0a0;
}

.kela .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.kela .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.kela .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.kela .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.kela td.v-inline-datefield-calendarpanel-month {
	width: 148px;
	cursor: default;
	color: #197de1;
}

.kela td.v-inline-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.kela .v-inline-datefield-calendarpanel-year td.v-inline-datefield-calendarpanel-month {
	width: 74px;
}

.kela .v-inline-datefield-calendarpanel-weeknumber, .kela .v-inline-datefield-calendarpanel-weekdays.v-inline-datefield-calendarpanel-weeknumbers td:first-child {
	width: 30px;
	color: rgba(133, 133, 133, 0.85);
	font-size: 14px;
	display: inline-block;
	text-align: left;
}

.kela .v-inline-datefield-calendarpanel-weeknumber {
	position: relative;
}

.kela .v-inline-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 38px;
	bottom: 0;
	left: 0;
	width: 34px;
	border-top: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	background: #fafafa;
}

.kela td.v-inline-datefield-calendarpanel-time {
	width: 100%;
	font-size: 14px;
}

.kela td.v-inline-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.kela .v-inline-datefield-calendarpanel {
	position: relative;
	background: white;
	padding: 6px;
}

.kela .v-gridlayout-margin-top {
	padding-top: 37px;
}

.kela .v-gridlayout-margin-bottom {
	padding-bottom: 37px;
}

.kela .v-gridlayout-margin-left {
	padding-left: 37px;
}

.kela .v-gridlayout-margin-right {
	padding-right: 37px;
}

.kela .v-gridlayout-spacing-on {
	padding-left: 12px;
	padding-top: 12px;
}

.kela .v-menubar {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	cursor: default;
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	text-align: left;
	line-height: 35px;
}

.kela .v-menubar:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
}

.kela .v-menubar:focus:after {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.kela .v-menubar.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-menubar.v-disabled:after {
	display: none;
}

.kela .v-menubar:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-menubar:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-menubar  > .v-menubar-menuitem {
	padding: 0 14px;
}

.kela .v-menubar  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 37px;
}

.kela .v-menubar:active:after {
	background: transparent;
}

.kela .v-menubar > .v-menubar-menuitem {
	position: relative;
	z-index: 1;
	display: inline-block;
	box-sizing: border-box;
	height: 37px;
	padding: 0 15px;
	color: inherit;
	font-weight: 400;
	
	cursor: pointer;
	border-radius: 0;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-width: 0 1px 0 0;
	border-color: inherit;
	height: 100%;
	line-height: inherit;
	vertical-align: top;
	text-align: center;
}

.kela .v-menubar > .v-menubar-menuitem:first-child {
	border-left-width: 0;
	border-radius: 3px 0 0 3px;
}

.kela .v-menubar > .v-menubar-menuitem:last-child {
	border-radius: 0 3px 3px 0;
	border-right-width: 0;
}

.kela .v-menubar > .v-menubar-menuitem:first-child:last-child {
	border-radius: 3px;
}

.kela .v-menubar > .v-menubar-menuitem:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.kela .v-menubar > .v-menubar-menuitem:hover {
	zoom: 1;
}

.kela .v-menubar > .v-menubar-menuitem:hover:before {
	background-color: rgba(186, 186, 186, 0.1);
	border: none;
}

.kela .v-menubar > .v-menubar-menuitem:active:before {
	background-color: rgba(125, 125, 125, 0.2);
}

.kela .v-menubar > .v-menubar-menuitem .v-icon {
	margin: 0 4px 0 -4px;
	cursor: inherit;
}

.kela .v-menubar > .v-menubar-menuitem[class*="-icon-only"] {
	width: 37px;
	padding: 0;
}

.kela .v-menubar > .v-menubar-menuitem[class*="-icon-only"] .v-icon {
	margin: 0;
}

.kela .v-menubar > .v-menubar-menuitem-checked {
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #ededed;
	background-image: -webkit-linear-gradient(bottom, #ededed 2%, #e9e9e9 98%);
	background-image: linear-gradient(to top,#ededed 2%, #e9e9e9 98%);
	color: #181818;
}

.kela .v-disabled > .v-menubar-menuitem, .kela .v-menubar > .v-menubar-menuitem-disabled {
	cursor: default;
}

.kela .v-disabled > .v-menubar-menuitem:before, .kela .v-menubar > .v-menubar-menuitem-disabled:before {
	display: none;
}

.kela .v-menubar-menuitem-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-menubar > .v-menubar-menuitem-selected {
	color: #ecf2f8;
	
	
	
	border-radius: 0;
	border: 1px solid #1362b1;
	border-top-color: #156ab3;
	border-bottom-color: #1156a8;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	-webkit-box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
	box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-top-width: 0;
	border-left-width: 0;
	border-bottom-width: 0;
	z-index: 2;
}

.kela .v-menubar > .v-menubar-menuitem-selected:hover:before {
	background: none;
}

.kela .v-menubar .v-menubar-submenu-indicator {
	display: none;
}

.kela .v-menubar .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:after {
	font-family: ThemeIcons;
	content: "\f078";
	font-size: 0.7em;
	vertical-align: 0.15em;
	margin: 0 -0.2em 0 0.5em;
	opacity: 0.5;
}

.kela .v-menubar .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:empty:after {
	margin-left: -0.2em;
}

.kela .v-menubar-popup {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 4px 4px;
	margin: 5px 0 0 1px !important;
}

.kela .v-menubar-popup[class*="animate-in"] {
	-webkit-animation: valo-overlay-animate-in 120ms;
	-moz-animation: valo-overlay-animate-in 120ms;
	animation: valo-overlay-animate-in 120ms;
}

.kela .v-menubar-popup[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.kela .v-menubar-popup .v-menubar-submenu {
	outline: none;
}

.kela .v-menubar-popup .v-menubar-menuitem {
	display: block;
	cursor: pointer;
	line-height: 27px;
	padding: 0 20px 0 10px;
	border-radius: 3px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	padding-left: 32px;
	padding-right: 37px;
	position: relative;
}

.kela .v-menubar-popup .v-menubar-menuitem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #0957a6;
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.kela .v-menubar-popup .v-menubar-menuitem .v-icon {
	max-height: 27px;
	margin-right: 5px;
	min-width: 1em;
}

.kela .v-menubar-popup .v-menubar-submenu-indicator {
	display: none;
}

.kela .v-menubar-popup .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:after {
	position: absolute;
	right: 10px;
	font-family: ThemeIcons;
	content: "\f054";
	line-height: 29px;
}

.kela .v-menubar-popup .v-menubar-menuitem-selected {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.kela .v-menubar-popup .v-menubar-separator {
	display: block;
	margin: 4px 0;
	height: 0;
	overflow: hidden;
	border-bottom: 1px solid #e4e4e4;
}

.kela .v-menubar-popup [class*="checked"] .v-menubar-menuitem-caption:before {
	content: "\f00c";
	font-family: ThemeIcons;
	position: absolute;
	left: 10px;
}

.kela .v-menubar-popup [class*="unchecked"] .v-menubar-menuitem-caption:before {
	content: "";
}

.kela .v-menubar-popup [class*="disabled"] {
	cursor: default;
}

.kela .v-menubar-small {
	height: 31px;
	padding: 0 14px;
	
	font-weight: 400;
	
	cursor: default;
	border-radius: 4px;
	padding: 0;
	text-align: left;
	line-height: 29px;
	font-size: 14px;
}

.kela .v-menubar-small:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-menubar-small  > .v-menubar-menuitem {
	padding: 0 12px;
}

.kela .v-menubar-small  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 31px;
}

.kela .v-menubar-borderless {
	border: none;
	border-radius: 0;
	padding: 1px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background: transparent;
	color: inherit;
}

.kela .v-menubar-borderless:focus:after {
	display: none;
}

.kela .v-menubar-borderless .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 4px;
	color: #197de1;
	padding: 0 12px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.kela .v-menubar-borderless .v-menubar-menuitem:first-child, .kela .v-menubar-borderless .v-menubar-menuitem:last-child, .kela .v-menubar-borderless .v-menubar-menuitem:first-child:last-child {
	border-radius: 4px;
}

.kela .v-menubar-borderless .v-menubar-menuitem:before {
	content: none;
}

.kela .v-menubar-borderless .v-menubar-menuitem:hover {
	color: #4396ea;
}

.kela .v-menubar-borderless .v-menubar-menuitem:active {
	color: inherit;
}

.kela .v-menubar-borderless .v-menubar-menuitem-checked, .kela .v-menubar-borderless .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c5c5c5;
	color: #197de1;
}

.kela .v-menubar-borderless .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .kela .v-menubar-borderless .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.kela .v-menubar-borderless .v-menubar-menuitem-selected {
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.kela .v-menubar-borderless .v-menubar-menuitem-selected:hover {
	color: #ecf2f8;
}

.kela .v-menubar-borderless .v-menubar-menuitem-disabled, .kela .v-menubar-borderless .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.kela .v-radiobutton {
	position: relative;
	line-height: 19px;
	white-space: nowrap;
}

.kela .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .kela .v-radiobutton {
	padding-left: 25px;
}

:root .kela .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .kela .v-radiobutton > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .kela .v-radiobutton > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .kela .v-radiobutton > input ~ label:before, :root .kela .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 19px;
	height: 19px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 13px;
	text-align: center;
}

:root .kela .v-radiobutton > input ~ label:before {
	height: 18.5px;
	padding: 0 9px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 19px;
}

:root .kela .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .kela .v-radiobutton > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .kela .v-radiobutton > input:checked ~ label:after {
	color: #197de1;
}

.kela .v-radiobutton > .v-icon, .kela .v-radiobutton > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.kela .v-radiobutton.v-disabled  > label, .kela .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .kela .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.kela .v-radiobutton.v-readonly  > label, .kela .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.kela .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .kela .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .kela .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .kela .v-radiobutton > input:checked ~ label:after {
	width: 7px;
	height: 7px;
	top: 6px;
	left: 6px;
	background: #197de1;
}

:root .kela .v-radiobutton > input ~ label:before, :root .kela .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.kela .v-select-optiongroup .v-radiobutton, .kela .v-select-optiongroup .v-checkbox {
	display: block;
	margin: 9px 16px 0 0;
}

.kela .v-select-optiongroup .v-radiobutton:first-child, .kela .v-select-optiongroup .v-checkbox:first-child {
	margin-top: 6px;
}

.kela .v-select-optiongroup .v-radiobutton:last-child, .kela .v-select-optiongroup .v-checkbox:last-child {
	margin-bottom: 6px;
}

.kela .v-select-optiongroup.v-has-width label {
	white-space: normal;
}

.kela .v-select-optiongroup-small {
	font-size: 14px;
}

.kela .v-select-optiongroup-small .v-checkbox {
	position: relative;
	line-height: 16px;
	white-space: nowrap;
}

.kela .v-select-optiongroup-small .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .kela .v-select-optiongroup-small .v-checkbox {
	padding-left: 21px;
}

:root .kela .v-select-optiongroup-small .v-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .kela .v-select-optiongroup-small .v-checkbox > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .kela .v-select-optiongroup-small .v-checkbox > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .kela .v-select-optiongroup-small .v-checkbox > input ~ label:before, :root .kela .v-select-optiongroup-small .v-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 11px;
	text-align: center;
}

:root .kela .v-select-optiongroup-small .v-checkbox > input ~ label:before {
	height: 15.5px;
	padding: 0 7px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 16px;
}

:root .kela .v-select-optiongroup-small .v-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .kela .v-select-optiongroup-small .v-checkbox > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .kela .v-select-optiongroup-small .v-checkbox > input:checked ~ label:after {
	color: #197de1;
}

.kela .v-select-optiongroup-small .v-checkbox > .v-icon, .kela .v-select-optiongroup-small .v-checkbox > label .v-icon {
	margin: 0 5px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.kela .v-select-optiongroup-small .v-checkbox.v-disabled  > label, .kela .v-select-optiongroup-small .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-select-optiongroup-small .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .kela .v-select-optiongroup-small .v-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.kela .v-select-optiongroup-small .v-checkbox.v-readonly  > label, .kela .v-select-optiongroup-small .v-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.kela .v-select-optiongroup-small .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .kela .v-select-optiongroup-small .v-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .kela .v-select-optiongroup-small .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-select-optiongroup-small .v-radiobutton {
	position: relative;
	line-height: 16px;
	white-space: nowrap;
}

.kela .v-select-optiongroup-small .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .kela .v-select-optiongroup-small .v-radiobutton {
	padding-left: 21px;
}

:root .kela .v-select-optiongroup-small .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .kela .v-select-optiongroup-small .v-radiobutton > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .kela .v-select-optiongroup-small .v-radiobutton > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .kela .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .kela .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 11px;
	text-align: center;
}

:root .kela .v-select-optiongroup-small .v-radiobutton > input ~ label:before {
	height: 15.5px;
	padding: 0 7px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 16px;
}

:root .kela .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .kela .v-select-optiongroup-small .v-radiobutton > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .kela .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	color: #197de1;
}

.kela .v-select-optiongroup-small .v-radiobutton > .v-icon, .kela .v-select-optiongroup-small .v-radiobutton > label .v-icon {
	margin: 0 5px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.kela .v-select-optiongroup-small .v-radiobutton.v-disabled  > label, .kela .v-select-optiongroup-small .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-select-optiongroup-small .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .kela .v-select-optiongroup-small .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.kela .v-select-optiongroup-small .v-radiobutton.v-readonly  > label, .kela .v-select-optiongroup-small .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.kela .v-select-optiongroup-small .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .kela .v-select-optiongroup-small .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .kela .v-select-optiongroup-small .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .kela .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	width: 6px;
	height: 6px;
	top: 5px;
	left: 5px;
	background: #197de1;
}

:root .kela .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .kela .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.kela .v-select-optiongroup-small .v-radiobutton, .kela .v-select-optiongroup-small .v-checkbox {
	display: block;
	margin: 8px 16px 0 0;
}

.kela .v-select-optiongroup-small .v-radiobutton:first-child, .kela .v-select-optiongroup-small .v-checkbox:first-child {
	margin-top: 5px;
}

.kela .v-select-optiongroup-small .v-radiobutton:last-child, .kela .v-select-optiongroup-small .v-checkbox:last-child {
	margin-bottom: 5px;
}

.kela .v-select-optiongroup-small.v-has-width label {
	white-space: normal;
}

.kela .v-select-optiongroup-large {
	font-size: 20px;
}

.kela .v-select-optiongroup-large .v-checkbox {
	position: relative;
	line-height: 22px;
	white-space: nowrap;
}

.kela .v-select-optiongroup-large .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .kela .v-select-optiongroup-large .v-checkbox {
	padding-left: 29px;
}

:root .kela .v-select-optiongroup-large .v-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .kela .v-select-optiongroup-large .v-checkbox > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .kela .v-select-optiongroup-large .v-checkbox > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .kela .v-select-optiongroup-large .v-checkbox > input ~ label:before, :root .kela .v-select-optiongroup-large .v-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 15px;
	text-align: center;
}

:root .kela .v-select-optiongroup-large .v-checkbox > input ~ label:before {
	height: 22px;
	padding: 0 10px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 22px;
}

:root .kela .v-select-optiongroup-large .v-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .kela .v-select-optiongroup-large .v-checkbox > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .kela .v-select-optiongroup-large .v-checkbox > input:checked ~ label:after {
	color: #197de1;
}

.kela .v-select-optiongroup-large .v-checkbox > .v-icon, .kela .v-select-optiongroup-large .v-checkbox > label .v-icon {
	margin: 0 7px 0 4px;
	min-width: 1em;
	cursor: pointer;
}

.kela .v-select-optiongroup-large .v-checkbox.v-disabled  > label, .kela .v-select-optiongroup-large .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-select-optiongroup-large .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .kela .v-select-optiongroup-large .v-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.kela .v-select-optiongroup-large .v-checkbox.v-readonly  > label, .kela .v-select-optiongroup-large .v-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.kela .v-select-optiongroup-large .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .kela .v-select-optiongroup-large .v-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .kela .v-select-optiongroup-large .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-select-optiongroup-large .v-radiobutton {
	position: relative;
	line-height: 22px;
	white-space: nowrap;
}

.kela .v-select-optiongroup-large .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .kela .v-select-optiongroup-large .v-radiobutton {
	padding-left: 29px;
}

:root .kela .v-select-optiongroup-large .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .kela .v-select-optiongroup-large .v-radiobutton > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .kela .v-select-optiongroup-large .v-radiobutton > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .kela .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .kela .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 15px;
	text-align: center;
}

:root .kela .v-select-optiongroup-large .v-radiobutton > input ~ label:before {
	height: 22px;
	padding: 0 10px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 22px;
}

:root .kela .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .kela .v-select-optiongroup-large .v-radiobutton > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .kela .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	color: #197de1;
}

.kela .v-select-optiongroup-large .v-radiobutton > .v-icon, .kela .v-select-optiongroup-large .v-radiobutton > label .v-icon {
	margin: 0 7px 0 4px;
	min-width: 1em;
	cursor: pointer;
}

.kela .v-select-optiongroup-large .v-radiobutton.v-disabled  > label, .kela .v-select-optiongroup-large .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-select-optiongroup-large .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .kela .v-select-optiongroup-large .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.kela .v-select-optiongroup-large .v-radiobutton.v-readonly  > label, .kela .v-select-optiongroup-large .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.kela .v-select-optiongroup-large .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .kela .v-select-optiongroup-large .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .kela .v-select-optiongroup-large .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .kela .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	width: 8px;
	height: 8px;
	top: 7px;
	left: 7px;
	background: #197de1;
}

:root .kela .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .kela .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.kela .v-select-optiongroup-large .v-radiobutton, .kela .v-select-optiongroup-large .v-checkbox {
	display: block;
	margin: 11px 16px 0 0;
}

.kela .v-select-optiongroup-large .v-radiobutton:first-child, .kela .v-select-optiongroup-large .v-checkbox:first-child {
	margin-top: 7px;
}

.kela .v-select-optiongroup-large .v-radiobutton:last-child, .kela .v-select-optiongroup-large .v-checkbox:last-child {
	margin-bottom: 7px;
}

.kela .v-select-optiongroup-large.v-has-width label {
	white-space: normal;
}

.kela .v-select-optiongroup-horizontal {
	white-space: nowrap;
}

.kela .v-select-optiongroup-horizontal .v-radiobutton, .kela .v-select-optiongroup-horizontal .v-checkbox {
	display: inline-block;
}

.kela .v-select-optiongroup-horizontal.v-has-width {
	white-space: normal;
}

.kela .v-select-optiongroup-horizontal.v-has-width label {
	white-space: nowrap;
}

.kela .v-link {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.kela .v-link:hover {
	color: #4396ea;
}

.kela .v-link.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-link a {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	cursor: inherit;
	color: inherit;
	text-decoration: inherit;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	transition: inherit;
}

.kela .v-link a:hover {
	color: #4396ea;
}

.kela .v-link a.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-link .v-icon {
	cursor: inherit;
}

.kela .v-link-small {
	font-size: 14px;
}

.kela .v-link-large {
	font-size: 20px;
}

.kela .v-window {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 16px 80px -6px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 16px 80px -6px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	padding: 0;
	min-width: 148px !important;
	min-height: 37px !important;
	white-space: nowrap;
	overflow: hidden !important;
	-webkit-transition: width 200ms, height 200ms, top 200ms, left 200ms;
	-moz-transition: width 200ms, height 200ms, top 200ms, left 200ms;
	transition: width 200ms, height 200ms, top 200ms, left 200ms;
}

.kela .v-window[class*="animate-in"] {
	-webkit-animation: valo-animate-in-fade 140ms;
	-moz-animation: valo-animate-in-fade 140ms;
	animation: valo-animate-in-fade 140ms;
}

.kela .v-window[class*="animate-out"] {
	-webkit-animation: valo-animate-out-scale-down-fade 100ms;
	-moz-animation: valo-animate-out-scale-down-fade 100ms;
	animation: valo-animate-out-scale-down-fade 100ms;
}

.kela .v-window.v-window-animate-in {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.kela .v-window-modalitycurtain {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #222;
	background-image: -webkit-radial-gradient(50% 50%, circle, #222, #0e0e0e);
	background-image: radial-gradient(  circle at 50% 50%, #222, #0e0e0e);
	opacity: 0.72;
	filter: alpha(opacity=72) ;
	-webkit-animation: valo-animate-in-fade 400ms 100ms backwards;
	-moz-animation: valo-animate-in-fade 400ms 100ms backwards;
	animation: valo-animate-in-fade 400ms 100ms backwards;
}

.v-op12 .kela .v-window-modalitycurtain {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.kela .v-window-draggingCurtain {
	position: fixed !important;
}

.kela .v-window-resizingCurtain + .v-window, .kela .v-window-draggingCurtain + .v-window {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.kela .v-window-outerheader {
	cursor: move;
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
	-ms-transform: translatez(0);
	-o-transform: translatez(0);
	transform: translatez(0);
}

.kela .v-window-outerheader:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #dfdfdf;
	border-color: rgba(197, 197, 197, 0.5);
}

.kela .v-window-header {
	line-height: 36px;
	padding-left: 12px;
	margin-right: 74px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #7e7e7e;
}

.kela .v-window-restorebox-disabled  ~ .v-window-closebox ~ .v-window-header, .kela .v-window-maximizebox-disabled  ~ .v-window-closebox ~ .v-window-header {
	margin-right: 37px;
}

.kela .v-window-restorebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header, .kela .v-window-maximizebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header {
	margin-right: 12px;
}

.kela .v-window-closebox, .kela .v-window-maximizebox, .kela .v-window-restorebox {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	box-sizing: border-box;
	width: 33px;
	height: 36px;
	background-color: white;
	line-height: 34px;
	text-align: center;
	cursor: pointer;
	font-size: 21px;
	color: #999999;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.kela .v-window-closebox:focus, .kela .v-window-maximizebox:focus, .kela .v-window-restorebox:focus {
	outline: none;
}

.kela .v-window-closebox:hover, .kela .v-window-maximizebox:hover, .kela .v-window-restorebox:hover {
	opacity: 1;
	filter: none ;
	color: #197de1;
}

.kela .v-window-closebox:active, .kela .v-window-maximizebox:active, .kela .v-window-restorebox:active {
	color: inherit;
}

.kela .v-window-closebox:focus::after {
	content: "";
	position: absolute;
	top: 6px;
	right: 6px;
	bottom: 6px;
	left: 2px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-window-maximizebox:focus::after, .kela .v-window-restorebox:focus::after {
	content: "";
	position: absolute;
	top: 6px;
	right: 2px;
	bottom: 6px;
	left: 6px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-window-closebox {
	padding-right: 4px;
	border-radius: 0 4px 0 4px;
}

.kela .v-window-closebox:before {
	content: "\00d7";
}

.kela .v-window-maximizebox, .kela .v-window-restorebox {
	right: 33px;
	padding-left: 4px;
	border-radius: 0 0 0 4px;
}

.kela .v-window-maximizebox  + .v-window-closebox, .kela .v-window-restorebox  + .v-window-closebox {
	border-bottom-left-radius: 0;
}

.kela .v-window-closebox-disabled, .kela .v-window-resizebox-disabled, .kela .v-window-restorebox-disabled, .kela .v-window-maximizebox-disabled {
	display: none;
}

.kela .v-window-closebox-disabled  + .v-window-closebox, .kela .v-window-resizebox-disabled  + .v-window-closebox, .kela .v-window-restorebox-disabled  + .v-window-closebox, .kela .v-window-maximizebox-disabled  + .v-window-closebox {
	width: 37px;
	padding-right: 0;
	border-bottom-left-radius: 4px;
}

.kela .v-window-closebox-disabled  + .v-window-closebox:focus::after, .kela .v-window-resizebox-disabled  + .v-window-closebox:focus::after, .kela .v-window-restorebox-disabled  + .v-window-closebox:focus::after, .kela .v-window-maximizebox-disabled  + .v-window-closebox:focus::after {
	left: 6px;
}

.kela .v-window-maximizebox:before {
	content: "+";
}

.kela .v-window-restorebox:before {
	content: "\2013";
}

.kela .v-window > .popupContent, .kela .v-window-wrap, .kela .v-window-contents, .kela .v-window-contents > .v-scrollable {
	height: 100%;
}

.kela .v-window-contents {
	box-sizing: border-box;
	border-radius: 4px;
	margin-top: 0 !important;
}

.kela .v-window-contents  > .v-scrollable {
	position: relative;
}

.kela .v-window-contents  > .v-scrollable  > .v-margin-top {
	padding-top: 12px;
}

.kela .v-window-contents  > .v-scrollable  > .v-margin-right {
	padding-right: 12px;
}

.kela .v-window-contents  > .v-scrollable  > .v-margin-bottom {
	padding-bottom: 12px;
}

.kela .v-window-contents  > .v-scrollable  > .v-margin-left {
	padding-left: 12px;
}

.kela .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 12px;
}

.kela .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 12px;
}

.kela .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 12px;
}

.kela .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .kela .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .kela .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 12px;
}

.kela .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 12px;
}

.kela .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .kela .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .kela .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 12px;
}

.kela .v-window-contents  > .v-scrollable:focus {
	outline: none;
}

.kela .v-window-contents  > .v-scrollable:before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	height: 0;
	border-top: 1px solid white;
	left: 0;
	right: 0;
}

.kela .v-window-contents  > .v-scrollable .v-panel-captionwrap:after {
	border-color: #dfdfdf;
}

.kela .v-window-contents  > .v-scrollable .v-panel-content:before {
	border-color: white;
}

.kela .v-window-footer {
	height: 0;
}

.kela .v-window-resizebox {
	position: absolute;
	z-index: 1000;
	right: 0;
	bottom: 0;
	width: 19px;
	height: 19px;
	cursor: nwse-resize;
}

.kela .v-window-modalitycurtain:active  ~ .v-window {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.kela .v-window-top-toolbar  > .v-widget, .kela .v-window-bottom-toolbar  > .v-widget {
	vertical-align: top;
}

.kela .v-window-top-toolbar .v-label, .kela .v-window-bottom-toolbar .v-label {
	line-height: 36px;
}

.kela .v-window-top-toolbar .v-spacing, .kela .v-window-bottom-toolbar .v-spacing {
	width: 6px;
}

.kela .v-window-top-toolbar.v-layout {
	padding: 7px 12px;
	position: relative;
	z-index: 2;
	border-top: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
	background-color: #fafafa;
}

.kela .v-window-top-toolbar.v-menubar {
	margin: 12px 12px 6px;
}

.kela .v-window-top-toolbar.v-menubar-borderless {
	padding-left: 6px;
	padding-right: 6px;
	margin: 5px 0;
}

.kela .v-window-bottom-toolbar.v-layout {
	padding: 7px 12px;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #f0f0f0 0, #fafafa 4px);
	background-image: linear-gradient(to bottom,#f0f0f0 0, #fafafa 4px);
	border-top: 1px solid #dfdfdf;
	border-radius: 0 0 4px 4px;
}

.kela .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-layout {
	box-sizing: content-box;
	margin: -12px -12px 0;
}

.kela .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar {
	margin: 0;
}

.kela .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar-borderless {
	margin: -6px -6px 0;
	padding: 0;
}

.kela .v-margin-left.v-margin-right.v-margin-bottom .v-window-bottom-toolbar.v-layout {
	box-sizing: content-box;
	margin: 0 -12px -12px;
}

.kela .v-tree {
	position: relative;
	white-space: nowrap;
}

.kela .v-tree:focus {
	outline: none;
}

.kela .v-tree-node:before {
	content: "";
	position: absolute;
	display: inline-block;
	z-index: 3;
	width: 1.9em;
	height: 28px;
	cursor: pointer;
	background: red;
	opacity: 0;
}

.kela .v-tree-node-caption {
	height: 28px;
	line-height: 27px;
	overflow: hidden;
	white-space: nowrap;
	vertical-align: top;
}

.kela .v-tree-node-caption > div {
	display: inline-block;
	width: 100%;
	position: relative;
	z-index: 2;
}

.kela .v-tree-node-caption > div:before {
	content: "\f0da";
	font-family: ThemeIcons;
	display: inline-block;
	width: 0.5em;
	text-align: center;
	margin: 0 0.6em 0 0.8em;
	-webkit-transition: all 100ms;
	-moz-transition: all 100ms;
	transition: all 100ms;
}

.kela .v-tree-node-caption span {
	padding-right: 28px;
	cursor: pointer;
	display: inline-block;
	width: 100%;
}

.v-ie .kela .v-tree-node-caption span {
	width: auto;
}

.kela .v-tree-node-caption .v-icon {
	padding-right: 0;
	width: auto;
	min-width: 1em;
}

.kela .v-tree-node-caption:after {
	content: "";
	display: block;
	vertical-align: top;
	position: absolute;
	z-index: 1;
	left: 0;
	margin-top: -28px;
	width: 100%;
	height: 28px;
	border-radius: 4px;
	opacity: 0;
	-webkit-transition: opacity 120ms;
	-moz-transition: opacity 120ms;
	transition: opacity 120ms;
}

.kela .v-tree-node-expanded > .v-tree-node-caption > div:before {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
	content: "\f0da";
	font-family: ThemeIcons;
}

.kela .v-tree-node-leaf:before, .kela .v-tree-node-leaf > .v-tree-node-caption > div:before {
	visibility: hidden;
}

.kela .v-tree-node-focused:after {
	opacity: 1;
	border: 1px solid #197de1;
}

.kela .v-tree-node-selected {
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.kela .v-tree-node-selected:after {
	opacity: 1;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	border: none;
}

.kela .v-tree-node-children {
	padding-left: 19px;
}

.kela .v-tree-node-drag-top:before, .kela .v-tree-node-drag-bottom:after, .kela .v-tree-node-drag-bottom.v-tree-node-dragfolder.v-tree-node-expanded > .v-tree-node-children:before {
	content: "\2022";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #197de1;
	font-size: 32px;
	line-height: 2px;
	color: #197de1;
	text-indent: -4px;
	text-shadow: 0 0 1px #fafafa, 0 0 1px #fafafa;
	opacity: 1;
	visibility: visible;
}

.kela .v-tree-node-drag-bottom.v-tree-node-dragfolder.v-tree-node-expanded:after {
	content: none;
}

.kela .v-tree-node-caption-drag-center {
	-webkit-box-shadow: 0 0 0 2px #197de1;
	box-shadow: 0 0 0 2px #197de1;
	position: relative;
	border-radius: 4px;
}

.v-ff .kela .v-tree-node-drag-top:before, .v-ff .kela .v-tree-node-drag-bottom:after {
	line-height: 1px;
}

.kela .v-tree8 {
	position: relative;
}

.kela .v-tree8-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.kela .v-tree8-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.kela .v-tree8-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.kela .v-tree8-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.kela .v-tree8-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.kela .v-tree8-header-deco, .kela .v-tree8-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.kela .v-tree8-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.kela .v-tree8-header, .kela .v-tree8-body, .kela .v-tree8-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.kela .v-tree8-header, .kela .v-tree8-header-deco {
	top: 0;
}

.kela .v-tree8-footer, .kela .v-tree8-footer-deco {
	bottom: 0;
}

.kela .v-tree8-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.kela .v-tree8-body .v-tree8-row {
	position: absolute;
	top: 0;
	left: 0;
}

.kela .v-tree8-body .v-tree8-header > .v-tree8-row {
	position: relative;
}

.kela .v-tree8-row {
	display: block;
}

.kela .v-tree8-row  > td, .kela .v-tree8-row  > th {
	background-color: white;
}

.kela .v-tree8-row {
	width: inherit;
}

.kela .v-tree8-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 16px;
}

.kela .v-tree8-cell.frozen {
	position: relative;
	z-index: 1;
}

.kela .v-tree8-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.kela .v-tree8-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.kela .v-tree8 {
	outline: none;
}

.kela .v-tree8-scroller-vertical, .kela .v-tree8-scroller-horizontal {
	border: 1px solid #d4d4d4;
}

.kela .v-tree8-scroller-vertical {
	border-left: none;
}

.kela .v-tree8-scroller-horizontal {
	border-top: none;
}

.kela .v-tree8-tablewrapper {
	border: 1px solid #d4d4d4;
}

.kela .v-tree8 .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.kela .v-tree8 .header-drag-table .v-tree8-header {
	position: absolute;
}

.kela .v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-cell {
	border: 1px solid #d4d4d4;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.kela .v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-drop-marker {
	background-color: #197de1;
	position: absolute;
	width: 3px;
}

.kela .v-tree8-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	padding: 0;
	z-index: 5;
}

.kela .v-tree8-sidebar.v-contextmenu.v-tree8-sidebar-popup {
	right: auto;
}

.kela .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button {
	background: transparent;
	border: none;
	color: inherit;
	cursor: pointer;
	outline: none;
	padding: 0 4px;
	text-align: right;
	line-height: 1;
}

.kela .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button[disabled] {
	cursor: default;
}

.kela .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button::-moz-focus-inner {
	border: 0;
}

.kela .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 14px;
}

.kela .v-tree8-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.kela .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	width: 100%;
}

.kela .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button:after {
	content: "\f0c9";
	font-size: 14px;
	line-height: 1;
}

.v-ie .kela .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	vertical-align: middle;
}

.kela .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.kela .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.kela .v-tree8-cell {
	background-color: white;
	padding: 0 18px;
	line-height: 37px;
	text-overflow: ellipsis;
}

.kela .v-tree8-cell  > * {
	line-height: 1.55;
	vertical-align: middle;
}

.kela .v-tree8-cell  > div {
	display: inline-block;
}

.kela .v-tree8-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	position: relative;
	z-index: 11;
}

.kela .v-tree8-cell.frozen  + th, .kela .v-tree8-cell.frozen  + td {
	border-left: none;
}

.kela .v-tree8-cell div.component-wrap {
	width: 100%;
}

.kela .v-tree8-row > td, .kela .v-tree8-editor-cells > div {
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}

.kela .v-tree8-row > td:first-child, .kela .v-tree8-editor-cells > div:first-child {
	border-left: none;
}

.kela .v-tree8-editor-cells.frozen > div {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	border-left: none;
}

.kela .v-tree8-row-stripe > td {
	background-color: #f5f5f5;
}

.kela .v-tree8-row-selected > td {
	background: #197de1;
}

.kela .v-tree8-row-focused > td {
	
}

.kela .v-tree8-header th {
	position: relative;
	background-color: #fafafa;
	font-size: 14px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
	
	text-align: left;
}

.kela .v-tree8-header th:first-child {
	border-left: none;
}

.kela .v-tree8-header .sort-asc, .kela .v-tree8-header .sort-desc {
	padding-right: 35px;
}

.kela .v-tree8-header .sort-asc:after, .kela .v-tree8-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 18px;
	font-size: 12px;
}

.kela .v-tree8-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.kela .v-tree8-column-resize-handle {
	position: absolute;
	width: 36px;
	right: -18px;
	top: 0px;
	bottom: 0px;
	cursor: col-resize;
	z-index: 10;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.kela .v-tree8-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 18px;
	z-index: 9001;
	background: #fff;
	box-shadow: 0px 0px 5px #000;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.kela .v-tree8-footer td {
	background-color: #fafafa;
	font-size: 14px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-bottom: none;
	
}

.kela .v-tree8-footer td:first-child {
	border-left: none;
}

.kela .v-tree8-header .v-tree8-cell, .kela .v-tree8-footer .v-tree8-cell {
	overflow: visible;
}

.kela .v-tree8-column-header-content, .kela .v-tree8-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 37px;
	vertical-align: baseline;
}

.kela .v-tree8-header-deco {
	border-top: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.kela .v-tree8-footer-deco {
	border-bottom: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.kela .v-tree8-horizontal-scrollbar-deco {
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	border-top: none;
}

.kela .v-tree8-cell-focused {
	position: relative;
}

.kela .v-tree8-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #197de1;
	display: none;
	pointer-events: none;
}

.kela .v-tree8:focus .v-tree8-cell-focused:before {
	display: block;
}

.kela .v-tree8.v-disabled:focus .v-tree8-cell-focused:before {
	display: none;
}

.kela .v-tree8-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #d4d4d4;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-top: -1px;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}

.kela .v-tree8-editor.unbuffered .v-tree8-editor-footer {
	width: 100%;
}

.kela .v-tree8-editor-cells {
	position: relative;
	white-space: nowrap;
}

.kela .v-tree8-editor-cells.frozen {
	z-index: 2;
}

.kela .v-tree8-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.kela .v-tree8-editor-cells  > div:first-child {
	border-left: none;
}

.kela .v-tree8-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.kela .v-tree8-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.kela .v-tree8-editor-cells  > div input[type="text"], .kela .v-tree8-editor-cells  > div input[type="text"].v-filterselect-input, .kela .v-tree8-editor-cells  > div input[type="password"] {
	padding-left: 18px;
}

.kela .v-tree8-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .kela .v-tree8-editor-cells  > div input[type="password"] {
	padding-right: 9px;
}

.kela .v-tree8-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 18px;
}

.kela .v-tree8-editor-cells  > div .v-textfield, .kela .v-tree8-editor-cells  > div .v-datefield, .kela .v-tree8-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.kela .v-tree8-editor-cells  > div .v-select, .kela .v-tree8-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.kela .v-tree8-editor-cells  > div.not-editable.v-tree8-cell {
	float: none;
}

.kela .v-tree8-editor-cells .error::before {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	content: "";
	border-top: 5px solid red;
	border-right: 5px solid transparent;
}

.kela .v-tree8-editor-cells .error, .kela .v-tree8-editor-cells .error > input {
	background-color: #fee;
}

.kela .v-tree8-editor-footer {
	display: table;
	height: 37px;
	border-top: 1px solid #d4d4d4;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.kela .v-tree8-editor-footer  + .v-tree8-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4d4d4;
}

.kela .v-tree8-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4d4d4;
	margin-bottom: -1px;
}

.kela .v-tree8-editor-message, .kela .v-tree8-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.kela .v-tree8-editor-message {
	width: 100%;
	position: relative;
}

.kela .v-tree8-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 37px;
	top: 0;
}

.kela .v-tree8-editor-save {
	margin-right: 4px;
}

.kela .v-tree8-spacer {
	padding-left: 1px;
}

.kela .v-tree8-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #d4d4d4;
}

.kela .v-tree8-spacer.stripe > td {
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #d4d4d4;
}

.kela .v-tree8-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.kela .v-tree8-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #197de1;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.kela .v-tree8-cell > .v-progressbar {
	width: 100%;
}

.kela .v-tree8 {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #fafafa;
}

.kela .v-tree8.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-tree8-header .v-tree8-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.kela .v-tree8-header .v-tree8-cell.dragged {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.kela .v-tree8-header .v-tree8-cell.dragged-column-header {
	margin-top: -19px;
}

.kela .v-tree8-footer .v-tree8-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.kela .v-tree8-header-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.kela .v-tree8-footer-deco, .kela .v-tree8-horizontal-scrollbar-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.kela .v-tree8-row-selected  > .v-tree8-cell {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #c8dbed;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #1d69b4;
}

.kela .v-tree8-row-selected  > .v-tree8-cell-focused:before {
	border-color: #71b0ef;
}

.kela .v-tree8-editor {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	border-color: #197de1;
}

.kela .v-tree8-editor-footer {
	font-size: 14px;
	padding: 0 6px;
	background: #fafafa;
	-webkit-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
}

.kela .v-tree8-editor-footer:first-child {
	-webkit-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
}

.kela .v-tree8-editor-cells {
	z-index: 1;
}

.kela .v-tree8-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.kela .v-tree8-editor-cells > div.not-editable.v-tree8-cell {
	float: none;
}

.kela .v-tree8-editor-cells > div .error::before {
	border-top: 9px solid red;
	border-right: 9px solid transparent;
}

.kela .v-tree8-editor-cells > div .error, .kela .v-tree8-editor-cells > div .error > input {
	background-color: #fffafa;
}

.kela .v-tree8-editor-cells > div .v-textfield, .kela .v-tree8-editor-cells > div .v-textfield-focus, .kela .v-tree8-editor-cells > div .v-datefield, .kela .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .kela .v-tree8-editor-cells > div .v-filterselect-input, .kela .v-tree8-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #f2f2f2;
	box-shadow: inset 0 1px 0 #f2f2f2;
}

.kela .v-tree8-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 44.4px;
}

.kela .v-tree8-editor-cells > div .v-textfield-focus, .kela .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .kela .v-tree8-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.kela .v-tree8-editor-cells > div .v-select {
	padding-left: 9px;
	padding-right: 9px;
}

.kela .v-tree8-editor-cells > div .v-checkbox.v-widget {
	margin: 0 9px 0 18px;
}

.kela .v-tree8-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.kela .v-tree8-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.kela .v-tree8-editor-message > div:before {
	display: inline-block;
	color: red;
	font-weight: 600;
	width: 19px;
	text-align: center;
	content: "!";
}

.kela .v-tree8-editor-save, .kela .v-tree8-editor-cancel {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	font-weight: 400;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 6px 6px;
	margin: 0;
	outline: none;
}

.kela .v-tree8-editor-save:hover, .kela .v-tree8-editor-cancel:hover {
	color: #4396ea;
}

.kela .v-tree8-editor-save.v-disabled, .kela .v-tree8-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-tree8-spacer {
	margin-top: -1px;
}

.kela .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.kela .v-tree8-sidebar.v-contextmenu.closed {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.kela .v-tree8-scroller::-webkit-scrollbar {
	border: none;
}

.kela .v-tree8-scroller::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border: 4px solid transparent;
	background: rgba(0, 0, 0, 0.3);
	-webkit-background-clip: content-box;
	background-clip: content-box;
}

.kela .v-tree8-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.kela .v-tree8-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.kela .v-tree8-row-drag-badge {
	background-color: red;
	color: white;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	line-height: 30px;
	text-align: center;
	float: left;
}

.kela .v-tree8-row-drag-top, .kela .v-tree8-row-drag-bottom {
	z-index: 100;
}

.kela .v-tree8-row-drag-top:before, .kela .v-tree8-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #197de1;
	pointer-events: none;
	border: none;
}

.kela .v-tree8-row-drag-bottom:after {
	bottom: -1px;
}

.kela .v-tree8-row-drag-top:before {
	top: -1px;
}

.kela .v-tree8-row-drag-top:first-child:before {
	top: 0;
}

.kela .v-tree8-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #197de1;
	pointer-events: none;
}

.kela .v-tree8-row-selected.v-tree8-row-drag-center:after {
	border-color: #1463b3;
}

.kela .v-tree8-row-selected.v-tree8-row-drag-top:before, .kela .v-tree8-row-selected.v-tree8-row-drag-bottom:after {
	background: #1463b3;
}

.kela .v-tree8-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #197de1;
	z-index: 100;
}

.kela .v-tree8-expander {
	display: inline-block;
	vertical-align: top;
}

.kela .v-tree8-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.kela .v-tree8-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.kela .v-tree8-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.kela .v-tree8-expander.collapse-disabled::before {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
}

.kela .v-tree8-node.depth-0 {
	padding-left: 0em;
}

.kela .v-tree8-node.depth-1 {
	padding-left: 1em;
}

.kela .v-tree8-node.depth-2 {
	padding-left: 2em;
}

.kela .v-tree8-node.depth-3 {
	padding-left: 3em;
}

.kela .v-tree8-node.depth-4 {
	padding-left: 4em;
}

.kela .v-tree8-node.depth-5 {
	padding-left: 5em;
}

.kela .v-tree8-node.depth-6 {
	padding-left: 6em;
}

.kela .v-tree8-node.depth-7 {
	padding-left: 7em;
}

.kela .v-tree8-node.depth-8 {
	padding-left: 8em;
}

.kela .v-tree8-node.depth-9 {
	padding-left: 9em;
}

.kela .v-tree8-node.depth-10 {
	padding-left: 10em;
}

.kela .v-tree8-node.depth-11 {
	padding-left: 11em;
}

.kela .v-tree8-node.depth-12 {
	padding-left: 12em;
}

.kela .v-tree8-node.depth-13 {
	padding-left: 13em;
}

.kela .v-tree8-node.depth-14 {
	padding-left: 14em;
}

.kela .v-tree8-node.depth-15 {
	padding-left: 15em;
}

.kela .v-tree8-node.depth-16 {
	padding-left: 16em;
}

.kela .v-tree8-node.depth-17 {
	padding-left: 17em;
}

.kela .v-tree8-node.depth-18 {
	padding-left: 18em;
}

.kela .v-tree8-node.depth-19 {
	padding-left: 19em;
}

.kela .v-tree8-node.depth-20 {
	padding-left: 20em;
}

.kela .v-tree8-node.depth-21 {
	padding-left: 21em;
}

.kela .v-tree8-node.depth-22 {
	padding-left: 22em;
}

.kela .v-tree8-node.depth-23 {
	padding-left: 23em;
}

.kela .v-tree8-node.depth-24 {
	padding-left: 24em;
}

.kela .v-tree8-node.depth-25 {
	padding-left: 25em;
}

.kela .v-tree8-node.depth-26 {
	padding-left: 26em;
}

.kela .v-tree8-node.depth-27 {
	padding-left: 27em;
}

.kela .v-tree8-node.depth-28 {
	padding-left: 28em;
}

.kela .v-tree8-node.depth-29 {
	padding-left: 29em;
}

.kela .v-tree8-node.depth-30 {
	padding-left: 30em;
}

.kela .v-tree8-node.depth-31 {
	padding-left: 31em;
}

.kela .v-tree8-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.kela .v-tree8-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #197de1;
	display: none;
	pointer-events: none;
}

.kela .v-tree8-cell-focused {
	position: static;
}

.kela .v-tree8-cell-focused::before {
	display: none;
}

.kela .v-tree8:focus .v-tree8-row-focused::before {
	display: block;
}

.kela .v-tree8.v-disabled:focus .v-tree8-row-focused::before {
	display: none;
}

.kela .v-tree8:focus .v-tree8-cell-focused::before {
	display: none;
}

.kela .v-tree8 {
	background-color: transparent;
}

.kela .v-tree8-row > td {
	background-color: transparent;
	border: 0;
	line-height: 28px;
}

.kela .v-tree8-row > td  > * {
	vertical-align: baseline;
}

.kela .v-tree8-tablewrapper {
	background-color: transparent;
	border: none;
}

.kela .v-tree8-row::before {
	content: "";
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	pointer-events: none;
	border-width: 1px;
}

.kela .v-tree8-cell {
	position: relative;
}

.kela .v-tree8-row-selected  > .v-tree8-cell {
	background: transparent;
}

.kela .v-tree8-row-selected::before {
	display: block;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
}

.kela .v-tree8:focus .v-tree8-row-selected.v-tree8-row-focused::before {
	border-color: transparent;
	box-shadow: inset 0 0 0 1px #c8dbed;
}

.kela .v-tree8-scroller-vertical {
	border: none;
}

.kela .v-tree8-scroller-horizontal {
	border: none;
}

.kela .v-tree8-header-deco, .kela .v-tree8-footer-deco, .kela .v-tree8-horizontal-scrollbar-deco {
	border: none;
	background: transparent;
}

.kela .v-treegrid {
	position: relative;
}

.kela .v-treegrid-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.kela .v-treegrid-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.kela .v-treegrid-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.kela .v-treegrid-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.kela .v-treegrid-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.kela .v-treegrid-header-deco, .kela .v-treegrid-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.kela .v-treegrid-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.kela .v-treegrid-header, .kela .v-treegrid-body, .kela .v-treegrid-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.kela .v-treegrid-header, .kela .v-treegrid-header-deco {
	top: 0;
}

.kela .v-treegrid-footer, .kela .v-treegrid-footer-deco {
	bottom: 0;
}

.kela .v-treegrid-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.kela .v-treegrid-body .v-treegrid-row {
	position: absolute;
	top: 0;
	left: 0;
}

.kela .v-treegrid-body .v-treegrid-header > .v-treegrid-row {
	position: relative;
}

.kela .v-treegrid-row {
	display: block;
}

.kela .v-treegrid-row  > td, .kela .v-treegrid-row  > th {
	background-color: white;
}

.kela .v-treegrid-row {
	width: inherit;
}

.kela .v-treegrid-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 16px;
}

.kela .v-treegrid-cell.frozen {
	position: relative;
	z-index: 1;
}

.kela .v-treegrid-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.kela .v-treegrid-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.kela .v-treegrid {
	outline: none;
}

.kela .v-treegrid-scroller-vertical, .kela .v-treegrid-scroller-horizontal {
	border: 1px solid #d4d4d4;
}

.kela .v-treegrid-scroller-vertical {
	border-left: none;
}

.kela .v-treegrid-scroller-horizontal {
	border-top: none;
}

.kela .v-treegrid-tablewrapper {
	border: 1px solid #d4d4d4;
}

.kela .v-treegrid .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.kela .v-treegrid .header-drag-table .v-treegrid-header {
	position: absolute;
}

.kela .v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-cell {
	border: 1px solid #d4d4d4;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.kela .v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-drop-marker {
	background-color: #197de1;
	position: absolute;
	width: 3px;
}

.kela .v-treegrid-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	padding: 0;
	z-index: 5;
}

.kela .v-treegrid-sidebar.v-contextmenu.v-treegrid-sidebar-popup {
	right: auto;
}

.kela .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button {
	background: transparent;
	border: none;
	color: inherit;
	cursor: pointer;
	outline: none;
	padding: 0 4px;
	text-align: right;
	line-height: 1;
}

.kela .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button[disabled] {
	cursor: default;
}

.kela .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button::-moz-focus-inner {
	border: 0;
}

.kela .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 14px;
}

.kela .v-treegrid-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.kela .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	width: 100%;
}

.kela .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	font-size: 14px;
	line-height: 1;
}

.v-ie .kela .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	vertical-align: middle;
}

.kela .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.kela .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.kela .v-treegrid-cell {
	background-color: white;
	padding: 0 18px;
	line-height: 37px;
	text-overflow: ellipsis;
}

.kela .v-treegrid-cell  > * {
	line-height: 1.55;
	vertical-align: middle;
}

.kela .v-treegrid-cell  > div {
	display: inline-block;
}

.kela .v-treegrid-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	position: relative;
	z-index: 11;
}

.kela .v-treegrid-cell.frozen  + th, .kela .v-treegrid-cell.frozen  + td {
	border-left: none;
}

.kela .v-treegrid-cell div.component-wrap {
	width: 100%;
}

.kela .v-treegrid-row > td, .kela .v-treegrid-editor-cells > div {
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}

.kela .v-treegrid-row > td:first-child, .kela .v-treegrid-editor-cells > div:first-child {
	border-left: none;
}

.kela .v-treegrid-editor-cells.frozen > div {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	border-left: none;
}

.kela .v-treegrid-row-stripe > td {
	background-color: #f5f5f5;
}

.kela .v-treegrid-row-selected > td {
	background: #197de1;
}

.kela .v-treegrid-row-focused > td {
	
}

.kela .v-treegrid-header th {
	position: relative;
	background-color: #fafafa;
	font-size: 14px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
	
	text-align: left;
}

.kela .v-treegrid-header th:first-child {
	border-left: none;
}

.kela .v-treegrid-header .sort-asc, .kela .v-treegrid-header .sort-desc {
	padding-right: 35px;
}

.kela .v-treegrid-header .sort-asc:after, .kela .v-treegrid-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 18px;
	font-size: 12px;
}

.kela .v-treegrid-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.kela .v-treegrid-column-resize-handle {
	position: absolute;
	width: 36px;
	right: -18px;
	top: 0px;
	bottom: 0px;
	cursor: col-resize;
	z-index: 10;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.kela .v-treegrid-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 18px;
	z-index: 9001;
	background: #fff;
	box-shadow: 0px 0px 5px #000;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.kela .v-treegrid-footer td {
	background-color: #fafafa;
	font-size: 14px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-bottom: none;
	
}

.kela .v-treegrid-footer td:first-child {
	border-left: none;
}

.kela .v-treegrid-header .v-treegrid-cell, .kela .v-treegrid-footer .v-treegrid-cell {
	overflow: visible;
}

.kela .v-treegrid-column-header-content, .kela .v-treegrid-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 37px;
	vertical-align: baseline;
}

.kela .v-treegrid-header-deco {
	border-top: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.kela .v-treegrid-footer-deco {
	border-bottom: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.kela .v-treegrid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	border-top: none;
}

.kela .v-treegrid-cell-focused {
	position: relative;
}

.kela .v-treegrid-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #197de1;
	display: none;
	pointer-events: none;
}

.kela .v-treegrid:focus .v-treegrid-cell-focused:before {
	display: block;
}

.kela .v-treegrid.v-disabled:focus .v-treegrid-cell-focused:before {
	display: none;
}

.kela .v-treegrid-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #d4d4d4;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-top: -1px;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}

.kela .v-treegrid-editor.unbuffered .v-treegrid-editor-footer {
	width: 100%;
}

.kela .v-treegrid-editor-cells {
	position: relative;
	white-space: nowrap;
}

.kela .v-treegrid-editor-cells.frozen {
	z-index: 2;
}

.kela .v-treegrid-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.kela .v-treegrid-editor-cells  > div:first-child {
	border-left: none;
}

.kela .v-treegrid-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.kela .v-treegrid-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.kela .v-treegrid-editor-cells  > div input[type="text"], .kela .v-treegrid-editor-cells  > div input[type="text"].v-filterselect-input, .kela .v-treegrid-editor-cells  > div input[type="password"] {
	padding-left: 18px;
}

.kela .v-treegrid-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .kela .v-treegrid-editor-cells  > div input[type="password"] {
	padding-right: 9px;
}

.kela .v-treegrid-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 18px;
}

.kela .v-treegrid-editor-cells  > div .v-textfield, .kela .v-treegrid-editor-cells  > div .v-datefield, .kela .v-treegrid-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.kela .v-treegrid-editor-cells  > div .v-select, .kela .v-treegrid-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.kela .v-treegrid-editor-cells  > div.not-editable.v-treegrid-cell {
	float: none;
}

.kela .v-treegrid-editor-cells .error::before {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	content: "";
	border-top: 5px solid red;
	border-right: 5px solid transparent;
}

.kela .v-treegrid-editor-cells .error, .kela .v-treegrid-editor-cells .error > input {
	background-color: #fee;
}

.kela .v-treegrid-editor-footer {
	display: table;
	height: 37px;
	border-top: 1px solid #d4d4d4;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.kela .v-treegrid-editor-footer  + .v-treegrid-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4d4d4;
}

.kela .v-treegrid-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4d4d4;
	margin-bottom: -1px;
}

.kela .v-treegrid-editor-message, .kela .v-treegrid-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.kela .v-treegrid-editor-message {
	width: 100%;
	position: relative;
}

.kela .v-treegrid-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 37px;
	top: 0;
}

.kela .v-treegrid-editor-save {
	margin-right: 4px;
}

.kela .v-treegrid-spacer {
	padding-left: 1px;
}

.kela .v-treegrid-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #d4d4d4;
}

.kela .v-treegrid-spacer.stripe > td {
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #d4d4d4;
}

.kela .v-treegrid-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.kela .v-treegrid-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #197de1;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.kela .v-treegrid-cell > .v-progressbar {
	width: 100%;
}

.kela .v-treegrid {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #fafafa;
}

.kela .v-treegrid.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-treegrid-header .v-treegrid-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.kela .v-treegrid-header .v-treegrid-cell.dragged {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.kela .v-treegrid-header .v-treegrid-cell.dragged-column-header {
	margin-top: -19px;
}

.kela .v-treegrid-footer .v-treegrid-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.kela .v-treegrid-header-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.kela .v-treegrid-footer-deco, .kela .v-treegrid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.kela .v-treegrid-row-selected  > .v-treegrid-cell {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #c8dbed;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #1d69b4;
}

.kela .v-treegrid-row-selected  > .v-treegrid-cell-focused:before {
	border-color: #71b0ef;
}

.kela .v-treegrid-editor {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	border-color: #197de1;
}

.kela .v-treegrid-editor-footer {
	font-size: 14px;
	padding: 0 6px;
	background: #fafafa;
	-webkit-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
}

.kela .v-treegrid-editor-footer:first-child {
	-webkit-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
}

.kela .v-treegrid-editor-cells {
	z-index: 1;
}

.kela .v-treegrid-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.kela .v-treegrid-editor-cells > div.not-editable.v-treegrid-cell {
	float: none;
}

.kela .v-treegrid-editor-cells > div .error::before {
	border-top: 9px solid red;
	border-right: 9px solid transparent;
}

.kela .v-treegrid-editor-cells > div .error, .kela .v-treegrid-editor-cells > div .error > input {
	background-color: #fffafa;
}

.kela .v-treegrid-editor-cells > div .v-textfield, .kela .v-treegrid-editor-cells > div .v-textfield-focus, .kela .v-treegrid-editor-cells > div .v-datefield, .kela .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .kela .v-treegrid-editor-cells > div .v-filterselect-input, .kela .v-treegrid-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #f2f2f2;
	box-shadow: inset 0 1px 0 #f2f2f2;
}

.kela .v-treegrid-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 44.4px;
}

.kela .v-treegrid-editor-cells > div .v-textfield-focus, .kela .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .kela .v-treegrid-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.kela .v-treegrid-editor-cells > div .v-select {
	padding-left: 9px;
	padding-right: 9px;
}

.kela .v-treegrid-editor-cells > div .v-checkbox.v-widget {
	margin: 0 9px 0 18px;
}

.kela .v-treegrid-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.kela .v-treegrid-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.kela .v-treegrid-editor-message > div:before {
	display: inline-block;
	color: red;
	font-weight: 600;
	width: 19px;
	text-align: center;
	content: "!";
}

.kela .v-treegrid-editor-save, .kela .v-treegrid-editor-cancel {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	font-weight: 400;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 6px 6px;
	margin: 0;
	outline: none;
}

.kela .v-treegrid-editor-save:hover, .kela .v-treegrid-editor-cancel:hover {
	color: #4396ea;
}

.kela .v-treegrid-editor-save.v-disabled, .kela .v-treegrid-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-treegrid-spacer {
	margin-top: -1px;
}

.kela .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.kela .v-treegrid-sidebar.v-contextmenu.closed {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.kela .v-treegrid-scroller::-webkit-scrollbar {
	border: none;
}

.kela .v-treegrid-scroller::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border: 4px solid transparent;
	background: rgba(0, 0, 0, 0.3);
	-webkit-background-clip: content-box;
	background-clip: content-box;
}

.kela .v-treegrid-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.kela .v-treegrid-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.kela .v-treegrid-row-drag-badge {
	background-color: red;
	color: white;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	line-height: 30px;
	text-align: center;
	float: left;
}

.kela .v-treegrid-row-drag-top, .kela .v-treegrid-row-drag-bottom {
	z-index: 100;
}

.kela .v-treegrid-row-drag-top:before, .kela .v-treegrid-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #197de1;
	pointer-events: none;
	border: none;
}

.kela .v-treegrid-row-drag-bottom:after {
	bottom: -1px;
}

.kela .v-treegrid-row-drag-top:before {
	top: -1px;
}

.kela .v-treegrid-row-drag-top:first-child:before {
	top: 0;
}

.kela .v-treegrid-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #197de1;
	pointer-events: none;
}

.kela .v-treegrid-row-selected.v-treegrid-row-drag-center:after {
	border-color: #1463b3;
}

.kela .v-treegrid-row-selected.v-treegrid-row-drag-top:before, .kela .v-treegrid-row-selected.v-treegrid-row-drag-bottom:after {
	background: #1463b3;
}

.kela .v-treegrid-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #197de1;
	z-index: 100;
}

.kela .v-treegrid-expander {
	display: inline-block;
	vertical-align: top;
}

.kela .v-treegrid-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.kela .v-treegrid-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.kela .v-treegrid-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.kela .v-treegrid-expander.collapse-disabled::before {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
}

.kela .v-treegrid-node.depth-0 {
	padding-left: 0em;
}

.kela .v-treegrid-node.depth-1 {
	padding-left: 1em;
}

.kela .v-treegrid-node.depth-2 {
	padding-left: 2em;
}

.kela .v-treegrid-node.depth-3 {
	padding-left: 3em;
}

.kela .v-treegrid-node.depth-4 {
	padding-left: 4em;
}

.kela .v-treegrid-node.depth-5 {
	padding-left: 5em;
}

.kela .v-treegrid-node.depth-6 {
	padding-left: 6em;
}

.kela .v-treegrid-node.depth-7 {
	padding-left: 7em;
}

.kela .v-treegrid-node.depth-8 {
	padding-left: 8em;
}

.kela .v-treegrid-node.depth-9 {
	padding-left: 9em;
}

.kela .v-treegrid-node.depth-10 {
	padding-left: 10em;
}

.kela .v-treegrid-node.depth-11 {
	padding-left: 11em;
}

.kela .v-treegrid-node.depth-12 {
	padding-left: 12em;
}

.kela .v-treegrid-node.depth-13 {
	padding-left: 13em;
}

.kela .v-treegrid-node.depth-14 {
	padding-left: 14em;
}

.kela .v-treegrid-node.depth-15 {
	padding-left: 15em;
}

.kela .v-treegrid-node.depth-16 {
	padding-left: 16em;
}

.kela .v-treegrid-node.depth-17 {
	padding-left: 17em;
}

.kela .v-treegrid-node.depth-18 {
	padding-left: 18em;
}

.kela .v-treegrid-node.depth-19 {
	padding-left: 19em;
}

.kela .v-treegrid-node.depth-20 {
	padding-left: 20em;
}

.kela .v-treegrid-node.depth-21 {
	padding-left: 21em;
}

.kela .v-treegrid-node.depth-22 {
	padding-left: 22em;
}

.kela .v-treegrid-node.depth-23 {
	padding-left: 23em;
}

.kela .v-treegrid-node.depth-24 {
	padding-left: 24em;
}

.kela .v-treegrid-node.depth-25 {
	padding-left: 25em;
}

.kela .v-treegrid-node.depth-26 {
	padding-left: 26em;
}

.kela .v-treegrid-node.depth-27 {
	padding-left: 27em;
}

.kela .v-treegrid-node.depth-28 {
	padding-left: 28em;
}

.kela .v-treegrid-node.depth-29 {
	padding-left: 29em;
}

.kela .v-treegrid-node.depth-30 {
	padding-left: 30em;
}

.kela .v-treegrid-node.depth-31 {
	padding-left: 31em;
}

.kela .v-treegrid-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.kela .v-treegrid-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #197de1;
	display: none;
	pointer-events: none;
}

.kela .v-treegrid-cell-focused {
	position: static;
}

.kela .v-treegrid-cell-focused::before {
	display: none;
}

.kela .v-treegrid:focus .v-treegrid-row-focused::before {
	display: block;
}

.kela .v-treegrid.v-disabled:focus .v-treegrid-row-focused::before {
	display: none;
}

.kela .v-treegrid:focus .v-treegrid-cell-focused::before {
	display: none;
}

.kela .v-table {
	position: relative;
	background: #fafafa;
	color: #464646;
	overflow: hidden;
}

.kela .v-table-header table, .kela .v-table-footer table, .kela .v-table-table {
	-webkit-box-shadow: 0 0 0 1px #d4d4d4;
	box-shadow: 0 0 0 1px #d4d4d4;
}

.kela .v-table-header-wrap, .kela .v-table-footer-wrap, .kela .v-table-header-drag {
	border: 1px solid #d4d4d4;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	white-space: nowrap;
	font-size: 14px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.kela .v-table-header-wrap {
	position: relative;
	border-bottom: none;
}

.kela .v-table-footer-wrap {
	border-top: none;
}

.kela .v-table-footer td {
	border-left: 1px solid #d4d4d4;
}

.kela .v-table-footer-container, .kela .v-table-caption-container {
	overflow: hidden;
	line-height: 1;
	min-height: 37px;
	box-sizing: border-box;
}

.kela .v-table-footer-container {
	padding: 11px 12px 12px;
	float: right;
}

.kela [class^="v-table-header-cell"] {
	position: relative;
}

.kela .v-table-caption-container, .kela .v-table-header-drag {
	padding: 12px 12px 11px;
	border-left: 1px solid #d4d4d4;
}

.kela .v-table-caption-container-align-right {
	padding-right: 4px;
}

.kela .v-table-resizer {
	height: 37px;
	width: 8px;
	cursor: e-resize;
	cursor: col-resize;
	position: relative;
	right: -4px;
	z-index: 1;
	margin-left: -8px;
}

.kela .v-table-cell-content {
	border-left: 1px solid #d4d4d4;
	overflow: hidden;
	height: 38px;
	vertical-align: middle;
}

.kela .v-table-cell-content:first-child {
	border-left: none;
	padding-left: 1px;
}

.kela .v-table-header td:first-child .v-table-caption-container, .kela .v-table-footer td:first-child {
	border-left-color: transparent;
}

.kela .v-table-cell-wrapper {
	line-height: 1;
	padding: 0 12px;
	box-sizing: border-box;
	margin-right: 0 !important;
}

.kela .v-table-cell-wrapper  > .v-widget {
	margin: 3px -6px;
}

.kela .v-table-cell-wrapper  > .v-widget.v-label, .kela .v-table-cell-wrapper  > .v-widget.v-checkbox, .kela .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.kela .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.kela .v-table-body {
	border: 1px solid #d4d4d4;
	overflow-anchor: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.kela .v-table-table {
	background-color: white;
	white-space: nowrap;
}

.kela .v-table-table td {
	border-top: 1px solid #d4d4d4;
	box-sizing: border-box;
}

.kela .v-table-table tr:first-child > td {
	height: 37px;
	border-top: none;
}

.kela .v-table-row {
	background-color: white;
	cursor: pointer;
}

.kela .v-table-row-odd {
	background-color: #f5f5f5;
	cursor: pointer;
}

.kela .v-table-body-noselection .v-table-row, .kela .v-table-body-noselection .v-table-row-odd {
	cursor: default;
}

.kela .v-table [class*="-row"].v-selected {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	background-origin: border-box;
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.kela .v-table [class*="-row"].v-selected  + .v-selected {
	background: #166ed5;
}

.kela .v-table [class*="-row"].v-selected  + .v-selected td {
	border-top-color: #166ed5;
}

.kela .v-table [class*="-row"].v-selected .v-table-cell-content {
	border-color: transparent;
	border-left-color: #1d69b4;
}

.kela .v-table [class*="-row"].v-selected .v-table-cell-content:first-child {
	border-left-color: transparent;
}

.kela .v-table-header-cell-asc .v-table-sort-indicator, .kela .v-table-header-cell-desc .v-table-sort-indicator {
	background: transparent;
	width: 19px;
	height: 37px;
	line-height: 37px;
	margin-left: -19px;
}

.kela .v-table-header-cell-asc .v-table-sort-indicator:before, .kela .v-table-header-cell-desc .v-table-sort-indicator:before {
	font-style: normal;
	font-weight: normal;
	display: inline-block;
}

.kela .v-table-header-cell-asc .v-table-sort-indicator:before {
	content: "\f0de";
	font-family: ThemeIcons;
}

.kela .v-table-header-cell-desc .v-table-sort-indicator:before {
	content: "\f0dd";
	font-family: ThemeIcons;
}

.kela [class*="rowheader"] span.v-icon {
	min-width: 1em;
}

.kela .v-table-focus {
	outline: 1px solid #197de1;
	outline-offset: -1px;
}

.kela .v-drag-element.v-table-focus, .kela .v-drag-element .v-table-focus {
	outline: none;
}

.kela .v-table-header-drag {
	position: absolute;
	opacity: 0.9;
	filter: alpha(opacity=90) ;
	margin-top: -19px;
	z-index: 30000;
	line-height: 1;
}

.kela .v-table-focus-slot-right {
	border-right: 3px solid #197de1;
	right: -2px;
	margin-left: -11px !important;
}

.kela .v-table-focus-slot-left {
	float: left;
	border-left: 3px solid #197de1;
	left: -1px;
	right: auto;
	margin-left: 0 !important;
	margin-right: -11px;
}

.kela .v-table-column-selector {
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	width: 19px;
	height: 19px;
	line-height: 19px;
	padding: 0;
	border-top-width: 0;
	border-right-width: 0;
	border-radius: 0 0 0 4px;
	cursor: pointer;
	text-align: center;
	opacity: 0;
	filter: alpha(opacity=0) ;
	-webkit-transition: opacity 200ms 2s;
	-moz-transition: opacity 200ms 2s;
	transition: opacity 200ms 2s;
}

.kela .v-table-column-selector:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-table-column-selector:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.kela .v-table-column-selector:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-table-column-selector:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.kela .v-table-column-selector:after {
	content: "";
	position: absolute;
	border: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.kela .v-table-column-selector:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.kela .v-table-column-selector:before {
	font-family: ThemeIcons;
	content: "\f013";
}

.kela .v-table-header-wrap:hover .v-table-column-selector {
	opacity: 1;
	filter: none ;
	-webkit-transition-delay: 200ms;
	-moz-transition-delay: 200ms;
	transition-delay: 200ms;
}

.kela .v-on:before, .kela .v-off:before {
	content: "\f00c";
	font-family: ThemeIcons;
	font-size: 0.9em;
	margin-right: 6px;
}

.kela .v-on div, .kela .v-off div {
	display: inline;
}

.kela .v-on.v-disabled, .kela .v-off.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-off:before {
	visibility: hidden;
}

.kela tbody.v-drag-element {
	display: block;
	overflow: visible;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	opacity: 1;
	filter: none ;
}

.kela tbody.v-drag-element tr {
	display: block;
	
	
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	overflow: hidden;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	background: white;
}

.kela .v-table-body {
	position: relative;
	z-index: 1;
}

.kela .v-table-scrollposition {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 37px;
	line-height: 37px;
	margin: -19px 0 0 !important;
	text-align: center;
}

.kela .v-table-drag {
	overflow: visible;
}

.kela .v-table-drag .v-table-body {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	border-color: #197de1;
}

.kela .v-table-drag .v-table-body .v-table-focus {
	outline: none;
}

.kela .v-table-row-drag-middle .v-table-cell-content {
	background-color: #d1e5f9;
	color: #214060;
}

.kela .v-table-row-drag-bottom td.v-table-cell-content {
	border-bottom: 2px solid #197de1;
	height: 36px;
}

.kela .v-table-row-drag-bottom .v-table-cell-wrapper {
	margin-bottom: -2px;
}

.kela .v-table-row-drag-top td.v-table-cell-content {
	border-top: 2px solid #197de1;
	height: 37px;
}

.kela .v-table-row-drag-top .v-table-cell-wrapper {
	margin-top: -1px;
}

.kela .v-table-no-stripes .v-table-row, .kela .v-table-no-stripes .v-table-row-odd {
	background: transparent;
}

.kela .v-table-no-vertical-lines .v-table-cell-content {
	border-left: none;
	padding-left: 1px;
}

.kela .v-table-no-vertical-lines.v-treetable .v-table-cell-content {
	padding-left: 13px;
}

.kela .v-table-no-horizontal-lines .v-table-cell-content {
	border-top: none;
	border-bottom: none;
}

.kela .v-table-no-horizontal-lines .v-table-row-drag-top .v-table-cell-content, .kela .v-table-no-horizontal-lines .v-table-row-drag-bottom .v-table-cell-content {
	height: 37px;
}

.kela .v-table-no-header .v-table-header-wrap {
	display: none;
}

.kela .v-table-borderless .v-table-header-wrap, .kela .v-table-borderless .v-table-footer-wrap, .kela .v-table-borderless .v-table-header-drag, .kela .v-table-borderless .v-table-body {
	border: none;
}

.kela .v-table-borderless .v-table-header-wrap {
	border-bottom: 1px solid #d9d9d9;
}

.kela .v-table-borderless .v-table-footer-wrap {
	border-top: 1px solid #d9d9d9;
}

.kela .v-table-compact .v-table-header-wrap, .kela .v-table-compact .v-table-footer-wrap, .kela .v-table-compact .v-table-header-drag, .kela .v-table-small .v-table-header-wrap, .kela .v-table-small .v-table-footer-wrap, .kela .v-table-small .v-table-header-drag {
	font-size: 14px;
}

.kela .v-table-compact .v-table-footer-container, .kela .v-table-small .v-table-footer-container {
	padding: 8px 7px 9px;
}

.kela .v-table-compact .v-table-caption-container, .kela .v-table-compact .v-table-header-drag, .kela .v-table-small .v-table-caption-container, .kela .v-table-small .v-table-header-drag {
	padding-top: 9px;
	padding-bottom: 8px;
	padding-left: 6px;
	padding-right: 6px;
}

.kela .v-table-compact .v-table-caption-container-align-right, .kela .v-table-small .v-table-caption-container-align-right {
	padding-right: 0;
}

.kela .v-table-compact .v-table-resizer, .kela .v-table-small .v-table-resizer {
	height: 31px;
}

.kela .v-table-compact .v-table-cell-content, .kela .v-table-small .v-table-cell-content {
	height: 31px;
}

.kela .v-table-compact .v-table-cell-wrapper, .kela .v-table-small .v-table-cell-wrapper {
	padding-left: 6px;
	padding-right: 6px;
}

.kela .v-table-compact .v-table-cell-wrapper  > .v-widget, .kela .v-table-small .v-table-cell-wrapper  > .v-widget {
	margin: 2px -3px;
}

.kela .v-table-compact .v-table-cell-wrapper  > .v-widget.v-label, .kela .v-table-compact .v-table-cell-wrapper  > .v-widget.v-checkbox, .kela .v-table-compact .v-table-cell-wrapper  > .v-widget.v-select-optiongroup, .kela .v-table-small .v-table-cell-wrapper  > .v-widget.v-label, .kela .v-table-small .v-table-cell-wrapper  > .v-widget.v-checkbox, .kela .v-table-small .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.kela .v-table-compact .v-table-cell-wrapper  > .v-widget.v-progressbar, .kela .v-table-small .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.kela .v-table-compact .v-table-header-cell-asc .v-table-sort-indicator, .kela .v-table-compact .v-table-header-cell-desc .v-table-sort-indicator, .kela .v-table-small .v-table-header-cell-asc .v-table-sort-indicator, .kela .v-table-small .v-table-header-cell-desc .v-table-sort-indicator {
	height: 31px;
	line-height: 31px;
}

.kela .v-table-compact .v-table-header-drag, .kela .v-table-small .v-table-header-drag {
	margin-top: -16px;
}

.kela .v-table-compact.v-treetable .v-table-cell-wrapper, .kela .v-table-small.v-treetable .v-table-cell-wrapper {
	padding-left: 0;
	padding-right: 0;
	min-height: 16px;
}

.kela .v-table-compact.v-treetable .v-table-cell-content, .kela .v-table-small.v-treetable .v-table-cell-content {
	padding-left: 6px;
	padding-right: 6px;
}

.kela .v-table-compact.v-treetable .v-table-cell-content:first-child, .kela .v-table-small.v-treetable .v-table-cell-content:first-child {
	padding-left: 7px;
}

.kela .v-table-compact.v-treetable .v-table-footer-container, .kela .v-table-small.v-treetable .v-table-footer-container {
	padding-left: 6px;
	padding-right: 6px;
}

.kela .v-table-compact .v-table-row-drag-top .v-table-cell-content, .kela .v-table-compact .v-table-row-drag-bottom .v-table-cell-content, .kela .v-table-small .v-table-row-drag-top .v-table-cell-content, .kela .v-table-small .v-table-row-drag-bottom .v-table-cell-content {
	height: 30px;
}

.kela .v-table-small {
	font-size: 14px;
}

.kela .v-table-small.v-treetable .v-table-cell-wrapper {
	min-height: 14px;
}

.kela .v-treetable [class*="caption-container"], .kela .v-treetable [class*="footer-container"], .kela .v-treetable [class*="cell-wrapper"] {
	box-sizing: content-box;
	padding-left: 0;
	padding-right: 0;
}

.kela .v-treetable [class*="caption-container"], .kela .v-treetable [class*="footer-container"] {
	min-height: 14px;
}

.kela .v-treetable [class*="cell-wrapper"] {
	min-height: 16px;
}

.kela .v-treetable [class*="caption-container"] {
	padding-left: 12px;
}

.kela .v-treetable [class*="caption-container-align-right"] {
	padding-left: 20px;
}

.kela .v-treetable [class*="footer-container"] {
	padding-right: 12px;
}

.kela .v-treetable [class*="cell-content"] {
	padding-left: 12px;
	padding-right: 12px;
}

.kela .v-treetable [class*="cell-content"]:first-child {
	padding-left: 13px;
}

.kela .v-treetable-treespacer {
	display: inline-block;
	position: absolute;
	width: 19px !important;
	margin-left: -25px;
	text-align: center;
	cursor: pointer;
}

.kela .v-treetable-node-closed:before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.kela .v-treetable-node-open:before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.kela .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter {
	width: 1px;
}

.kela .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter:after {
	left: -6px;
	right: -6px;
}

.kela .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before {
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(left, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to right,#fafafa 2%, #efefef 98%);
}

.kela .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.kela .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.kela .v-splitpanel-horizontal  > div > .v-splitpanel-second-container {
	margin-left: 1px;
}

.kela .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter {
	height: 1px;
}

.kela .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter:after {
	top: -6px;
	bottom: -6px;
}

.kela .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before {
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
}

.kela .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.kela .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.kela .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter {
	width: 12px;
}

.kela .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter:after {
	left: 0px;
	right: 0px;
}

.kela .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before {
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(left, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to right,#fafafa 2%, #efefef 98%);
}

.kela .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.kela .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.kela .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:after {
	content: "";
	border: 1px solid #dadada;
	border-top-color: #bababa;
	border-left-color: #bababa;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 37px;
	margin-left: -1px;
	margin-top: -19px;
}

.kela .v-splitpanel-horizontal.large  > div > .v-splitpanel-second-container {
	margin-left: 12px;
}

.kela .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter {
	height: 12px;
}

.kela .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter:after {
	top: 0px;
	bottom: 0px;
}

.kela .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before {
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
}

.kela .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.kela .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.kela .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:after {
	content: "";
	border: 1px solid #dadada;
	border-top-color: #bababa;
	border-left-color: #bababa;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 37px;
	height: 0;
	margin-left: -19px;
	margin-top: -1px;
}

.kela .v-progressbar-wrapper {
	border-radius: 4px;
	height: 9px;
	background-color: #d4d4d4;
	background-image: -webkit-linear-gradient(bottom, #d7d7d7 2%, #c7c7c7 98%);
	background-image: linear-gradient(to top,#d7d7d7 2%, #c7c7c7 98%);
	box-sizing: border-box;
	min-width: 74px;
}

.kela .v-progressbar-indicator {
	border-radius: 4px;
	height: inherit;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	
	
	border: 1px solid #1362b1;
	box-sizing: border-box;
	max-width: 100%;
	min-width: 8px;
	-webkit-transition: width 160ms;
	-moz-transition: width 160ms;
	transition: width 160ms;
}

.kela .v-progressbar-point .v-progressbar-indicator {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	text-align: right;
	overflow: hidden;
}

.kela .v-progressbar-point .v-progressbar-indicator:before {
	content: "";
	display: inline-block;
	border-radius: 4px;
	height: inherit;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	
	
	border: 1px solid #1362b1;
	box-sizing: border-box;
	max-width: 100%;
	width: 9px;
	vertical-align: top;
}

.kela .v-progressbar-indeterminate {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(25, 125, 225, 0.2);
	border-top-color: #197de1;
	border-right-color: #197de1;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
}

.kela .v-progressbar-indeterminate .v-progressbar-wrapper {
	display: none;
}

.kela .v-slider {
	position: relative;
}

.kela .v-slider:focus {
	outline: none;
}

.kela .v-slider:focus .v-slider-handle:after {
	opacity: 1;
}

.kela .v-slider.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-slider-base {
	border-radius: 4px;
	height: 9px;
	background-color: #d4d4d4;
	background-image: -webkit-linear-gradient(bottom, #d7d7d7 2%, #c7c7c7 98%);
	background-image: linear-gradient(to top,#d7d7d7 2%, #c7c7c7 98%);
	box-sizing: border-box;
	min-width: 74px;
	height: 6px;
	margin: 16px 11px;
	white-space: nowrap;
	overflow: hidden;
	
}

.kela .v-slider-base:before {
	content: "";
	position: absolute;
	top: 16px;
	bottom: 16px;
	left: 11px;
	width: 8px;
	border-radius: 4px;
	border-left: 1px solid #1362b1;
}

.kela .v-slider-base:after {
	border-radius: 4px;
	height: inherit;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	
	
	border: 1px solid #1362b1;
	box-sizing: border-box;
	max-width: 100%;
	content: "";
	display: inline-block;
	margin-left: -100%;
	width: 100%;
	vertical-align: top;
}

.kela .v-has-width > .v-slider-base {
	min-width: 0;
}

.kela .v-slider-handle {
	margin-top: -16px;
	width: 0.1px;
	display: inline-block;
	vertical-align: top;
}

.kela .v-slider-handle:before {
	height: 37px;
	padding: 0 16px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.kela .v-slider-handle:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.kela .v-slider-handle:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.kela .v-slider-handle:before:focus:after {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-slider-handle:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.kela .v-slider-handle:after {
	border: 1px solid #c5c5c5;
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	opacity: 0;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
}

.kela .v-slider-handle:before, .kela .v-slider-handle:after {
	content: "";
	box-sizing: border-box;
	padding: 0;
	width: 22px;
	height: 22px;
	border-radius: 11px;
	position: absolute;
	z-index: 1;
	margin-top: 8px;
	margin-left: -11px;
}

.kela .v-slider-feedback {
	background-color: rgba(50, 50, 50, 0.9);
	-webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	color: white;
	padding: 5px 9px;
	border-radius: 3px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 14px;
}

.kela .v-slider-vertical {
	padding: 11px 0;
	height: 96px;
}

.kela .v-slider-vertical .v-slider-base {
	background-color: #d4d4d4;
	background-image: -webkit-linear-gradient(right, #d7d7d7 2%, #c7c7c7 98%);
	background-image: linear-gradient(to left,#d7d7d7 2%, #c7c7c7 98%);
	width: 6px;
	height: 100% !important;
	min-width: 0;
	margin: 0 16px;
}

.kela .v-slider-vertical .v-slider-base:before {
	top: auto;
	bottom: 11px;
	left: 16px;
	right: 16px;
	width: auto;
	height: 8px;
	border-left: none;
	border-bottom: 1px solid #1362b1;
}

.kela .v-slider-vertical .v-slider-base:after {
	height: 101%;
	margin-left: 0;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(left, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to right,#1b87e3 2%, #166ed5 98%);
}

.kela .v-slider-vertical .v-slider-handle {
	width: 0;
	height: 0.1px;
	width: 37px;
	display: block;
}

.kela .v-slider-vertical .v-slider-handle:before, .kela .v-slider-vertical .v-slider-handle:after {
	width: 22px;
	height: 22px;
	margin-top: -11px;
	margin-left: -8px;
}

.kela .v-slider-no-indicator .v-slider-base:before, .kela .v-slider-no-indicator .v-slider-base:after {
	display: none;
}

.kela .v-tabsheet:not(.v-has-width) {
	width: auto !important;
}

.kela .v-tabsheet-spacertd {
	display: none !important;
}

.kela .v-tabsheet-tabcontainer {
	position: relative;
	box-sizing: border-box;
}

.kela .v-tabsheet-tabcontainer:before {
	content: "";
	position: absolute;
	height: 0;
	border-top: 1px solid #dfdfdf;
	bottom: 0;
	left: 0;
	right: 0;
}

.kela .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	position: relative;
}

.kela .v-tabsheet-tabitemcell {
	vertical-align: bottom;
}

.kela .v-tabsheet-tabitemcell .v-tabsheet-tabitem {
	line-height: 0;
	overflow: hidden;
}

.kela .v-tabsheet-tabitemcell .v-caption {
	margin-left: 19px;
	padding: 0 4px;
	box-sizing: border-box;
	cursor: pointer;
	text-align: center;
	line-height: 37px;
	font-size: 15px;
	font-weight: 300;
	color: #696969;
	width: auto !important;
	overflow: hidden;
	text-overflow: ellipsis;
	border-bottom: 2px solid transparent;
	position: relative;
	-webkit-transition: border-bottom 200ms, color 200ms;
	-moz-transition: border-bottom 200ms, color 200ms;
	transition: border-bottom 200ms, color 200ms;
}

.kela .v-tabsheet-tabitemcell .v-caption .v-captiontext {
	display: inline;
}

.kela .v-tabsheet-tabitemcell .v-caption .v-icon + .v-captiontext {
	margin-left: 9px;
}

.kela .v-tabsheet-tabitemcell .v-caption:hover {
	color: #197de1;
}

.kela .v-tabsheet-tabitemcell .v-caption.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
	color: inherit !important;
}

.kela .v-tabsheet-tabitemcell:first-child .v-caption, .kela .v-tabsheet-tabitemcell[aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.kela .v-tabsheet-tabitemcell:not([aria-hidden="true"]) ~ td .v-caption {
	margin-left: 19px;
}

.kela .v-tabsheet-tabitemcell:focus {
	outline: none;
}

.kela .v-tabsheet-tabitemcell:focus .v-caption {
	color: #197de1;
}

.kela .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	border-bottom-color: #197de1;
	color: #197de1;
}

.kela .v-tabsheet-tabitemcell .v-caption-closable {
	padding-right: 22px;
}

.kela .v-tabsheet-tabitemcell.icons-on-top .v-caption-closable {
	padding-right: 4px;
}

.kela .v-tabsheet-tabitemcell .v-tabsheet-caption-close {
	position: absolute;
	right: 0;
	top: 50%;
	margin: -8px 0 0;
	font-size: 18px;
	line-height: 18px;
	width: 18px;
	text-align: center;
	border-radius: 2px;
	color: #969696;
}

.kela .v-tabsheet-tabitemcell .v-tabsheet-caption-close:hover {
	background: rgba(0, 0, 0, 0.03);
	color: #197de1;
}

.kela .v-tabsheet-tabitemcell .v-tabsheet-caption-close:active {
	background: #197de1;
	color: #c8dbed;
}

.kela .v-tabsheet-scroller {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding-left: 19px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(right, #fafafa 70%, rgba(250, 250, 250, 0) 100%);
	background-image: linear-gradient(to left,#fafafa 70%, rgba(250, 250, 250, 0) 100%);
	pointer-events: none;
}

.kela .v-tabsheet-scroller:after {
	content: "";
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	background-color: transparent;
	background-image: -webkit-linear-gradient(right, #dfdfdf 70%, rgba(223, 223, 223, 0) 100%);
	background-image: linear-gradient(to left,#dfdfdf 70%, rgba(223, 223, 223, 0) 100%);
}

.kela .v-tabsheet-scroller button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	font: inherit;
	color: inherit;
	height: 100%;
	margin: 0;
	padding: 0 9px;
	outline: none;
	cursor: pointer;
	pointer-events: auto;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-tabsheet-scroller button:hover {
	opacity: 1;
	filter: none ;
	color: #197de1;
}

.kela .v-tabsheet-scroller button:active {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
	color: #197de1;
}

.kela .v-tabsheet-scroller button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.kela .v-tabsheet-scroller [class*="Next"] {
	padding-left: 5px;
}

.kela .v-tabsheet-scroller [class*="Next"]:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.kela .v-tabsheet-scroller [class*="Prev"] {
	padding-right: 5px;
}

.kela .v-tabsheet-scroller [class*="Prev"]:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.kela .v-tabsheet-scroller [class*="disabled"] {
	cursor: default;
	color: inherit !important;
	opacity: 0.1 !important;
	filter: alpha(opacity=10) !important;
}

.kela .v-tabsheet-tabsheetpanel > .v-scrollable > .v-widget {
	-webkit-animation: valo-animate-in-fade 300ms backwards;
	-moz-animation: valo-animate-in-fade 300ms backwards;
	animation: valo-animate-in-fade 300ms backwards;
}

.kela .v-tabsheet-deco {
	height: 20px !important;
	width: 20px !important;
	box-sizing: border-box;
	border: 2px solid rgba(25, 125, 225, 0.2);
	border-top-color: #197de1;
	border-right-color: #197de1;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
	display: none;
	position: absolute;
	z-index: 1;
	bottom: 50%;
	margin-bottom: -29px;
	left: 50%;
	margin-left: -10px;
}

.kela .v-tabsheet-loading .v-tabsheet-deco {
	display: block;
}

.kela .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer table, .kela .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tbody, .kela .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	width: 100%;
}

.kela .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	display: table;
	table-layout: fixed;
}

.kela .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer td {
	display: table-cell;
}

.kela .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer .v-caption {
	margin: 0;
	display: block;
}

.kela .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption {
	margin-left: 4px;
	padding: 0 12px;
	background-color: #fafafa;
	border: 1px solid transparent;
	line-height: 36px;
	border-radius: 4px 4px 0 0;
	font-weight: 400;
	-webkit-transition: background-color 160ms;
	-moz-transition: background-color 160ms;
	transition: background-color 160ms;
}

.kela .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption:hover {
	background-color: #f2f2f2;
	border-bottom-color: #dfdfdf;
}

.kela .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption.v-disabled:hover {
	background-color: #fafafa;
}

.kela .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 30px;
}

.kela .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	right: 4px;
	margin-top: 0;
}

.kela .v-tabsheet-framed  > .v-tabsheet-tabcontainer td:first-child .v-caption, .kela .v-tabsheet-framed  > .v-tabsheet-tabcontainer [aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.kela .v-tabsheet-framed  > .v-tabsheet-tabcontainer :not([aria-hidden="true"]) ~ td .v-caption {
	margin-left: 4px;
}

.kela .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	border-color: #dfdfdf;
}

.kela .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	background: white;
	border-color: #dfdfdf;
	border-bottom: none;
	padding-bottom: 1px;
}

.kela .v-tabsheet-framed  > .v-tabsheet-content {
	border: 1px solid #dfdfdf;
	border-top: none;
}

.kela .v-tabsheet-framed  > .v-tabsheet-content  > div {
	background: white;
}

.kela .v-tabsheet-framed.padded-tabbar  > .v-tabsheet-tabcontainer {
	border: 1px solid #dfdfdf;
	border-bottom: none;
	background: #fafafa;
	padding-top: 6px;
}

.kela .v-tabsheet-framed.icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	padding-bottom: 7px;
}

.kela .v-tabsheet-centered-tabs  > .v-tabsheet-tabcontainer {
	text-align: center;
}

.kela .v-tabsheet-right-aligned-tabs  > .v-tabsheet-tabcontainer {
	text-align: right;
}

.kela .v-tabsheet-right-aligned-tabs .v-tabsheet-spacertd {
	display: inline-block !important;
}

.kela .v-tabsheet-right-aligned-tabs .v-tabsheet-scroller {
	padding-left: 9px;
}

.kela .v-tabsheet-padded-tabbar  > .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	padding: 0 9px;
}

.kela .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption {
	padding-top: 6px;
	padding-bottom: 6px;
	line-height: 1.2;
}

.kela .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon {
	display: block;
}

.kela .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon  + .v-captiontext.v-captiontext {
	margin-left: 0;
}

.kela .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 12px;
}

.kela .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	margin-top: 0;
}

.kela .v-tabsheet-compact-tabbar  > .v-tabsheet-tabcontainer-compact-tabbar .v-caption {
	line-height: 1.8;
}

.kela .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	visibility: hidden;
}

.kela .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-tabsheet-caption-close {
	visibility: visible;
}

.kela .v-colorpicker-popup.v-window {
	min-width: 220px !important;
}

.kela .v-colorpicker-popup .v-tabsheet-tabs {
	padding: 0 9px;
}

.kela .v-colorpicker-popup [class$="sliders"] {
	padding: 12px;
}

.kela .v-colorpicker-popup [class$="sliders"] .v-widget {
	width: 100% !important;
	vertical-align: middle;
}

.kela .v-colorpicker-popup [class$="sliders"] .v-has-caption {
	white-space: nowrap;
	padding-left: 48px;
}

.kela .v-colorpicker-popup [class$="sliders"] .v-caption {
	display: inline-block;
	margin-left: -48px;
	width: 48px;
}

.kela .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-has-caption {
	padding-left: 80px;
}

.kela .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-caption {
	margin-left: -80px;
	width: 80px;
}

.kela .v-colorpicker-popup .v-slider-red .v-slider-base:after {
	background: red;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-colorpicker-popup .v-slider-green .v-slider-base:after {
	background: green;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-colorpicker-popup .v-slider-blue .v-slider-base:after {
	background: blue;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-colorpicker-popup .v-margin-bottom {
	padding-bottom: 0;
}

.kela .v-colorpicker-popup .resize-button {
	width: 100% !important;
	height: auto !important;
	text-align: center;
	outline: none;
}

.kela .v-colorpicker-popup .resize-button:before {
	font-family: ThemeIcons;
	content: "\f141";
}

.kela .v-colorpicker-popup .resize-button-caption {
	display: none;
}

.kela .v-colorpicker-popup .v-horizontallayout {
	height: auto !important;
	padding: 9px 0;
	background-color: #fafafa;
	border-top: 1px solid #ededed;
}

.kela .v-colorpicker-popup .v-horizontallayout .v-expand {
	overflow: visible;
}

.kela .v-colorpicker-popup .v-horizontallayout .v-button {
	width: 80% !important;
}

.kela .v-colorpicker-preview {
	width: 100% !important;
	height: auto !important;
	padding: 9px;
	display: inline-flex;
}

.kela .v-colorpicker-preview-textfield {
	height: auto !important;
	text-align: center;
	border: none;
}

.kela .v-colorpicker {
	width: auto;
}

.kela .v-colorpicker-button-color {
	position: absolute;
	top: 6px;
	right: 6px;
	bottom: 6px;
	left: 6px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	max-width: 23px;
}

.kela .v-colorpicker-button-color  + .v-button-caption:not(:empty) {
	margin-left: 19px;
}

.kela .v-panel {
	background: white;
	color: #474747;
	border-radius: 4px;
	border: 1px solid #d5d5d5;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	overflow: visible !important;
}

.kela .v-panel-caption {
	box-sizing: border-box;
	padding: 0 12px;
	line-height: 36px;
	border-bottom: 1px solid #d5d5d5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #f6f6f6 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #f6f6f6 98%);
	color: #464646;
	font-weight: 400;
	font-size: 14px;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #eeeeee;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #eeeeee;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	border-radius: 3px 3px 0 0;
}

.kela .v-panel-content {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.kela .v-panel-content  > .v-margin-top {
	padding-top: 12px;
}

.kela .v-panel-content  > .v-margin-right {
	padding-right: 12px;
}

.kela .v-panel-content  > .v-margin-bottom {
	padding-bottom: 12px;
}

.kela .v-panel-content  > .v-margin-left {
	padding-left: 12px;
}

.kela .v-panel-borderless {
	background: transparent;
	color: inherit;
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-panel-borderless  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
	padding: 0;
	margin: 0 12px;
	border-bottom: none;
}

.kela .v-panel-well {
	background: #f5f5f5;
	color: #454545;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	border: 1px solid #c5c5c5;
}

.kela .v-panel-well  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-panel-scroll-divider  > [class*="-captionwrap"] {
	position: relative;
	z-index: 2;
}

.kela .v-panel-scroll-divider  > [class*="-captionwrap"]:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #dfdfdf;
	border-color: rgba(197, 197, 197, 0.5);
}

.kela .v-panel-scroll-divider  > [class*="-content"]:before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	height: 0;
	border-top: 1px solid #fafafa;
	left: 0;
	right: 0;
}

.kela .v-panel-caption.v-horizontallayout {
	height: auto !important;
	line-height: 0;
}

.kela .v-panel-caption.v-horizontallayout .v-slot {
	vertical-align: middle;
}

.kela .v-panel-caption.v-horizontallayout .v-label {
	line-height: 37px;
}

.kela .v-accordion {
	background: white;
	color: #474747;
	border-radius: 4px;
	border: 1px solid #d5d5d5;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #f4f4f4 98%);
	overflow: hidden;
}

.kela .v-accordion-item {
	position: relative;
}

.kela .v-accordion-item:first-child {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.kela .v-accordion-item:last-child {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

.kela .v-accordion-item:last-child [class*="item-content"] {
	border-radius: inherit;
}

.kela .v-accordion-item[class*="item-open"]:last-child > div > .v-caption {
	border-radius: 0;
}

.kela .v-accordion-item:not([class*="item-open"]):last-child > div > .v-caption {
	border-bottom: none;
	margin-bottom: 0;
}

.kela .v-accordion-item[class*="item-open"] + [class*="item"] {
	border-top: 1px solid #d9d9d9;
}

.kela .v-accordion-item-caption {
	border-radius: inherit;
}

.kela .v-accordion-item-caption  > .v-caption {
	box-sizing: border-box;
	padding: 0 12px;
	line-height: 36px;
	border-bottom: 1px solid #d5d5d5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #f6f6f6 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #f6f6f6 98%);
	color: #464646;
	font-weight: 400;
	font-size: 14px;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #eeeeee;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #eeeeee;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	display: block;
	background: transparent;
	border-bottom-color: #c9c9c9;
	border-radius: inherit;
	cursor: pointer;
	position: relative;
}

.kela .v-accordion-item-caption  > .v-caption:hover:before, .kela .v-accordion-item-caption  > .v-caption:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.kela .v-accordion-item-caption  > .v-caption:hover:before {
	background-color: rgba(186, 186, 186, 0.1);
	border: none;
}

.kela .v-accordion-item-caption  > .v-caption:active:before {
	background-color: rgba(125, 125, 125, 0.2);
}

.kela .v-accordion-item-content {
	-webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.05);
	background-color: white;
	box-sizing: border-box;
}

.kela .v-accordion-item-content  > .v-margin-top {
	padding-top: 12px;
}

.kela .v-accordion-item-content  > .v-margin-right {
	padding-right: 12px;
}

.kela .v-accordion-item-content  > .v-margin-bottom {
	padding-bottom: 12px;
}

.kela .v-accordion-item-content  > .v-margin-left {
	padding-left: 12px;
}

.kela .v-accordion-borderless {
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.kela .v-accordion-borderless  > .v-accordion-item, .kela .v-accordion-borderless  > .v-accordion-item > div > .v-caption, .kela .v-accordion-borderless  > .v-accordion-item > .v-accordion-item-content {
	border-radius: 0;
}

.kela .v-select-twincol {
	white-space: normal;
	position: relative;
}

.kela .v-select-twincol select {
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	color: #464646;
}

.kela .v-select-twincol select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-select-twincol .v-textfield, .kela .v-select-twincol .v-nativebutton {
	width: auto !important;
	margin-top: 9px;
}

.kela .v-select-twincol .v-nativebutton {
	margin-left: 9px;
}

.v-win.v-ff .kela .v-select-twincol {
	display: inline-flex;
	flex-wrap: wrap;
}

.v-win.v-ff .kela .v-select-twincol .v-select-twincol-options, .v-win.v-ff .kela .v-select-twincol .v-select-twincol-selections {
	height: unset;
}

.v-lin.v-ff .kela .v-select-twincol {
	display: inline-block;
	vertical-align: top;
}

.kela .v-select-twincol-options, .kela .v-select-twincol-selections {
	height: 100%;
}

.kela .v-select-twincol-caption-left, .kela .v-select-twincol-caption-right {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
}

.kela .v-select-twincol-buttons {
	white-space: nowrap;
	display: inline-block;
	vertical-align: top;
	position: relative;
	min-width: 3.5em;
}

.kela .v-select-twincol-buttons .v-button {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	white-space: normal;
	position: absolute;
	left: 9px;
	right: 9px;
	top: 36px;
	padding: 0;
	text-align: center;
}

.kela .v-select-twincol-buttons .v-button:first-child {
	top: 0;
}

.kela .v-select-twincol-buttons .v-button-caption {
	display: none;
}

.kela .v-select-twincol-buttons .v-button:focus {
	z-index: 1;
}

.kela .v-select-twincol-buttons .v-button:first-child {
	border-radius: 4px 4px 0 0;
}

.kela .v-select-twincol-buttons .v-button:last-child {
	border-radius: 0 0 4px 4px;
}

.kela .v-select-twincol-buttons .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.kela .v-select-twincol-buttons .v-button:first-child .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.kela .v-select-twincol-error .v-select-twincol-options, .kela .v-select-twincol-error .v-select-twincol-selections {
	border-color: red !important;
	background: #fffafa;
	color: #741919;
}

.kela .v-select-twincol-error-info .v-select-twincol-options, .kela .v-select-twincol-error-info .v-select-twincol-selections {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.kela .v-select-twincol-error-warning .v-select-twincol-options, .kela .v-select-twincol-error-warning .v-select-twincol-selections {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.kela .v-select-twincol-error-error .v-select-twincol-options, .kela .v-select-twincol-error-error .v-select-twincol-selections {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.kela .v-select-twincol-error-critical .v-select-twincol-options, .kela .v-select-twincol-error-critical .v-select-twincol-selections {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.kela .v-select-twincol-error-system .v-select-twincol-options, .kela .v-select-twincol-error-system .v-select-twincol-selections {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.kela .v-select select {
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	color: #464646;
}

.kela .v-select select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-select-select {
	display: block;
}

.kela .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 9px;
}

.kela .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 9px;
	margin-left: 9px;
}

.kela .v-select-error .v-select-select {
	border-color: red !important;
	background: #fffafa;
	color: #741919;
}

.kela .v-calendar-header-day {
	font-weight: 400;
	text-align: center;
	padding: 7px 0;
}

.kela .v-calendar-header-week .v-calendar-back, .kela .v-calendar-header-week .v-calendar-next {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	outline: none;
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-calendar-header-week .v-calendar-back:focus, .kela .v-calendar-header-week .v-calendar-next:focus {
	outline: none;
}

.kela .v-calendar-header-week .v-calendar-back:hover, .kela .v-calendar-header-week .v-calendar-next:hover {
	opacity: 1;
	filter: none ;
}

.kela .v-calendar-header-week .v-calendar-back:active, .kela .v-calendar-header-week .v-calendar-next:active {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-calendar-header-week .v-calendar-back:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.kela .v-calendar-header-week .v-calendar-next:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.kela .v-calendar-month {
	outline: none;
	overflow: hidden;
}

.kela .v-calendar-month td {
	vertical-align: top;
}

.kela .v-calendar-week-number {
	cursor: pointer;
	width: 20px;
	text-align: center;
	font-size: 0.8em;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-calendar-week-number:hover {
	opacity: 1;
	filter: none ;
}

.kela .v-calendar-month-day {
	outline: none;
	box-sizing: border-box;
	line-height: 1.2;
}

.kela .v-calendar-bottom-spacer, .kela .v-calendar-spacer, .kela .v-calendar-bottom-spacer-empty {
	height: 19px;
	margin-bottom: 3px;
}

.kela .v-calendar-bottom-spacer {
	font-size: 0.8em;
	padding: 0 5px;
	cursor: pointer;
}

.kela .v-calendar-bottom-spacer:hover {
	color: #197de1;
}

.kela .v-calendar-day-number {
	line-height: 25px;
	font-size: 16px;
	text-align: right;
	margin: 0 5px;
	white-space: nowrap;
	border-top: 1px solid #f2f2f2;
	cursor: pointer;
}

.kela .v-calendar-day-number:hover {
	color: #197de1;
}

.kela .v-calendar-month-day-today {
	background: #eef3f8;
}

.kela .v-calendar-month-day-today .v-calendar-day-number {
	font-weight: 400;
	color: #197de1;
	border-top: 2px solid #197de1;
	line-height: 24px;
	margin: 0;
	padding: 0 5px;
}

.kela .v-calendar-month-day-selected {
	background-color: #e3edf7;
}

.kela .v-calendar-month-day-dragemphasis {
	background-color: #a8a8a8;
}

.kela .v-calendar-month-day-scrollable {
	overflow-y: scroll;
}

.kela .v-calendar-weekly-longevents {
	margin-left: 50px;
	border-bottom: 3px solid #e0e0e0;
}

.kela .v-calendar-weekly-longevents .v-calendar-event-all-day {
	height: 22px;
	line-height: 1.6;
	margin-bottom: 3px;
}

.kela .v-calendar-header-week td {
	vertical-align: middle !important;
}

.kela .v-calendar-header-week .v-calendar-header-day {
	cursor: pointer;
}

.kela .v-calendar-times {
	width: 50px;
	font-size: 0.77em;
	line-height: 1;
	white-space: nowrap;
}

.kela .v-calendar-time {
	text-align: right;
	padding-right: 9px;
	margin-top: -6px;
	padding-bottom: 6px;
}

.kela .v-calendar-day-times, .kela .v-calendar-day-times-today {
	outline: none;
	border-right: 1px solid transparent;
}

.kela .v-calendar-day-times:focus, .kela .v-calendar-day-times-today:focus {
	outline: none;
}

.kela .v-calendar .v-datecellslot, .kela .v-calendar .v-datecellslot-even {
	border-top: 1px solid #dfdfdf;
}

.kela .v-calendar .v-datecellslot:first-child, .kela .v-calendar .v-datecellslot-even:first-child {
	border-top-color: transparent;
}

.kela .v-calendar .v-datecellslot {
	border-top-style: dotted;
}

.kela .v-calendar .v-datecellslot, .kela .v-calendar .v-datecellslot-even {
	margin-right: 5px;
}

.kela .v-calendar-current-time {
	background: #197de1;
	line-height: 1px;
	pointer-events: none;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-calendar-current-time:before {
	content: "\2022";
	color: #197de1;
	font-size: 22px;
	margin-left: -0.07em;
}

.kela .v-calendar .v-daterange {
	position: relative;
}

.kela .v-calendar .v-daterange:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: -1px;
	left: 0;
	background: #197de1;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	border-radius: 4px 4px 0 0;
}

.kela .v-calendar .v-daterange  + .v-daterange {
	border-color: transparent;
}

.kela .v-calendar .v-daterange  + .v-daterange:before {
	border-radius: 0;
}

.kela .v-calendar-event {
	font-size: 0.85em;
	overflow: hidden;
	cursor: pointer;
	outline: none;
	border-radius: 4px;
}

.kela .v-calendar-event:focus {
	outline: none;
}

.kela .v-calendar-event-month {
	padding: 0 5px;
	box-sizing: border-box;
	margin-bottom: 3px;
	white-space: nowrap;
	text-overflow: ellipsis;
	height: 19px;
	line-height: 19px;
}

.kela .v-calendar-event-month .v-calendar-event-time {
	float: right;
	font-size: 0.9em;
	line-height: 19px;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-calendar-event-month:before {
	content: "\25cf";
	margin-right: 0.2em;
}

.kela .v-calendar-event-all-day {
	padding: 0 5px;
	box-sizing: border-box;
	height: 19px;
	line-height: 19px;
	border-radius: 0;
	margin-left: -1px;
	white-space: nowrap;
}

.kela .v-calendar-event-all-day:before {
	content: "";
}

.kela .v-calendar-event-start {
	overflow: visible;
	margin-left: 0;
}

.kela .v-calendar-event-start.v-calendar-event-continued-to, .kela .v-calendar-event-start.v-calendar-event-end {
	overflow: hidden;
	text-overflow: ellipsis;
}

.kela .v-calendar-event-start {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	margin-left: 5px;
}

.kela .v-calendar-event-end {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	margin-right: 5px;
}

.kela .v-calendar-event-caption {
	font-weight: 500;
	line-height: 1.2;
	padding: 5px 0;
	position: absolute;
	overflow: hidden;
	right: 9px;
	left: 5px;
	bottom: 0;
	top: 0;
}

.kela .v-calendar-event-caption span {
	font-weight: 300;
	white-space: nowrap;
}

.kela .v-calendar-week-wrapper .v-calendar-event {
	overflow: visible;
}

.kela .v-calendar-week-wrapper .v-calendar-event-content {
	margin-top: -1px;
	border-radius: 5px;
	border: 1px solid #fafafa;
	padding-top: 3px;
	margin-right: 5px;
}

.kela .v-calendar-event-month:before {
	color: #00ace0;
}

.kela .v-calendar-event-all-day {
	background-color: #c8eaf4;
	background-color: rgba(200, 234, 244, 0.8);
	color: #00ace0;
}

.kela .v-calendar-week-wrapper .v-calendar-event {
	color: #00ace0;
}

.kela .v-calendar-week-wrapper .v-calendar-event .v-calendar-event-content {
	background-color: #c8eaf4;
	background-color: rgba(200, 234, 244, 0.8);
}

.kela .v-calendar-event-month[class*="color2"]:before {
	color: #2d9f19;
}

.kela .v-calendar-event-all-day[class*="color2"] {
	background-color: #d1e7cd;
	background-color: rgba(209, 231, 205, 0.8);
	color: #2d9f19;
}

.kela .v-calendar-week-wrapper .v-calendar-event[class*="color2"] {
	color: #2d9f19;
}

.kela .v-calendar-week-wrapper .v-calendar-event[class*="color2"] .v-calendar-event-content {
	background-color: #d1e7cd;
	background-color: rgba(209, 231, 205, 0.8);
}

.kela .v-calendar-event-month[class*="color3"]:before {
	color: #d18100;
}

.kela .v-calendar-event-all-day[class*="color3"] {
	background-color: #f1e1c8;
	background-color: rgba(241, 225, 200, 0.8);
	color: #d18100;
}

.kela .v-calendar-week-wrapper .v-calendar-event[class*="color3"] {
	color: #d18100;
}

.kela .v-calendar-week-wrapper .v-calendar-event[class*="color3"] .v-calendar-event-content {
	background-color: #f1e1c8;
	background-color: rgba(241, 225, 200, 0.8);
}

.kela .v-calendar-event-month[class*="color4"]:before {
	color: #ce3812;
}

.kela .v-calendar-event-all-day[class*="color4"] {
	background-color: #f1d3cb;
	background-color: rgba(241, 211, 203, 0.8);
	color: #ce3812;
}

.kela .v-calendar-week-wrapper .v-calendar-event[class*="color4"] {
	color: #ce3812;
}

.kela .v-calendar-week-wrapper .v-calendar-event[class*="color4"] .v-calendar-event-content {
	background-color: #f1d3cb;
	background-color: rgba(241, 211, 203, 0.8);
}

.kela .v-calendar-event-month[class*="color5"]:before {
	color: #2d55cd;
}

.kela .v-calendar-event-all-day[class*="color5"] {
	background-color: #d1d9f1;
	background-color: rgba(209, 217, 241, 0.8);
	color: #2d55cd;
}

.kela .v-calendar-week-wrapper .v-calendar-event[class*="color5"] {
	color: #2d55cd;
}

.kela .v-calendar-week-wrapper .v-calendar-event[class*="color5"] .v-calendar-event-content {
	background-color: #d1d9f1;
	background-color: rgba(209, 217, 241, 0.8);
}

.kela .v-calendar.v-disabled * {
	cursor: default;
}

.kela .v-label {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.kela .v-label.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-label-undef-w {
	white-space: nowrap;
}

.kela h1, .kela .v-label-h1, .kela h2, .kela .v-label-h2, .kela h3, .kela .v-label-h3 {
	line-height: 1.1;
	font-weight: 200;
	color: #141414;
}

.kela h1, .kela .v-label-h1 {
	font-size: 2.4em;
	margin-top: 1.4em;
	margin-bottom: 1em;
	
	letter-spacing: -0.03em;
}

.kela h2, .kela .v-label-h2 {
	font-size: 1.6em;
	
	margin-top: 1.6em;
	margin-bottom: 0.77em;
	letter-spacing: -0.02em;
}

.kela h3, .kela .v-label-h3 {
	font-size: 1.2em;
	
	margin-top: 1.8em;
	margin-bottom: 0.77em;
	letter-spacing: 0;
}

.kela h4, .kela .v-label-h4 {
	line-height: 1.1;
	font-weight: 500;
	font-size: 14px;
	color: #414141;
	text-transform: uppercase;
	letter-spacing: 0;
	margin-top: 2.4em;
	margin-bottom: 0.8em;
}

.kela .v-csslayout  > h1:first-child, .kela .v-csslayout  > h2:first-child, .kela .v-csslayout  > h3:first-child, .kela .v-csslayout  > h4 > .v-label-h1:first-child, .kela .v-csslayout  > .v-label-h2:first-child, .kela .v-csslayout  > .v-label-h3:first-child, .kela .v-csslayout  > .v-label-h4:first-child {
	margin-top: 16px;
}

.kela .v-verticallayout > .v-slot:first-child h1, .kela .v-verticallayout > .v-slot:first-child .v-label-h1, .kela .v-verticallayout > .v-slot:first-child h2, .kela .v-verticallayout > .v-slot:first-child .v-label-h2, .kela .v-verticallayout > .v-slot:first-child h3, .kela .v-verticallayout > .v-slot:first-child .v-label-h3, .kela .v-verticallayout > .v-slot:first-child h4, .kela .v-verticallayout > .v-slot:first-child .v-label-h4, .kela .v-verticallayout > div > .v-slot:first-child h1, .kela .v-verticallayout > div > .v-slot:first-child .v-label-h1, .kela .v-verticallayout > div > .v-slot:first-child h2, .kela .v-verticallayout > div > .v-slot:first-child .v-label-h2, .kela .v-verticallayout > div > .v-slot:first-child h3, .kela .v-verticallayout > div > .v-slot:first-child .v-label-h3, .kela .v-verticallayout > div > .v-slot:first-child h4, .kela .v-verticallayout > div > .v-slot:first-child .v-label-h4 {
	margin-top: 16px;
}

.kela .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h1, .kela .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .kela .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h2, .kela .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .kela .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h3, .kela .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .kela .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h4, .kela .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h4, .kela .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h1, .kela .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .kela .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h2, .kela .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .kela .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h3, .kela .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .kela .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h4, .kela .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h4 {
	margin-top: -0.5em;
}

.kela h1.no-margin, .kela .v-label-h1.no-margin, .kela h2.no-margin, .kela .v-label-h2.no-margin, .kela h3.no-margin, .kela .v-label-h3.no-margin, .kela h4.no-margin, .kela .v-label-h4.no-margin {
	margin: 0 !important;
}

.kela .v-label-colored {
	color: #197de1;
}

.kela .v-label-large {
	font-size: 20px;
}

.kela .v-label-small {
	font-size: 14px;
}

.kela .v-label-tiny {
	font-size: 12px;
}

.kela .v-label-huge {
	font-size: 26px;
}

.kela .v-label-bold {
	font-weight: 500;
}

.kela .v-label-light {
	font-weight: 200;
	color: #7d7d7d;
}

.kela .v-label-align-right {
	text-align: right;
}

.kela .v-label-align-center {
	text-align: center;
}

.kela .v-label-spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(25, 125, 225, 0.2);
	border-top-color: #197de1;
	border-right-color: #197de1;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
}

.kela .v-label-success, .kela .v-label-failure {
	background: white;
	color: #474747;
	border: 2px solid #2c9720;
	border-radius: 4px;
	padding: 7px 19px 7px 37px;
	font-weight: 400;
	font-size: 15px;
}

.kela .v-label-success:before, .kela .v-label-failure:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
	margin-left: -19px;
	color: #2c9720;
}

.kela .v-label-failure {
	border-color: red;
}

.kela .v-label-failure:before {
	content: "\f05e";
	color: red;
}

.kela [draggable=true] {
	-khtml-user-drag: element;
	-webkit-user-drag: element;
}

.kela .v-ddwrapper {
	position: relative;
}

.kela .v-ddwrapper-over:before, .kela .v-ddwrapper-over:after {
	content: "";
	position: absolute;
	z-index: 10;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	border: 0 solid #197de1;
}

.kela .v-ddwrapper-over-top:before {
	border-top-width: 2px;
}

.kela .v-ddwrapper-over-right:before {
	border-right-width: 2px;
}

.kela .v-ddwrapper-over-bottom:before {
	border-bottom-width: 2px;
}

.kela .v-ddwrapper-over-left:before {
	border-left-width: 2px;
}

.kela .no-vertical-drag-hints .v-ddwrapper-over-top:before, .kela .no-vertical-drag-hints.v-ddwrapper-over-top:before {
	border-top-width: 0;
}

.kela .no-vertical-drag-hints .v-ddwrapper-over-top:after, .kela .no-vertical-drag-hints.v-ddwrapper-over-top:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #8abef2;
}

.kela .no-vertical-drag-hints .v-ddwrapper-over-bottom:before, .kela .no-vertical-drag-hints.v-ddwrapper-over-bottom:before {
	border-bottom-width: 0;
}

.kela .no-vertical-drag-hints .v-ddwrapper-over-bottom:after, .kela .no-vertical-drag-hints.v-ddwrapper-over-bottom:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #8abef2;
}

.kela .no-horizontal-drag-hints.v-ddwrapper-over-left:before, .kela .no-horizontal-drag-hints .v-ddwrapper-over-left:before {
	border-left-width: 0;
}

.kela .no-horizontal-drag-hints.v-ddwrapper-over-left:after, .kela .no-horizontal-drag-hints .v-ddwrapper-over-left:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #8abef2;
}

.kela .no-horizontal-drag-hints.v-ddwrapper-over-right:before, .kela .no-horizontal-drag-hints .v-ddwrapper-over-right:before {
	border-right-width: 0;
}

.kela .no-horizontal-drag-hints.v-ddwrapper-over-right:after, .kela .no-horizontal-drag-hints .v-ddwrapper-over-right:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #8abef2;
}

.kela .v-ddwrapper-over-middle:after, .kela .v-ddwrapper-over-center:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #8abef2;
}

.kela .no-box-drag-hints.v-ddwrapper:after, .kela .no-box-drag-hints .v-ddwrapper:after {
	display: none !important;
	content: none;
}

.kela button {
	font: inherit;
	font-weight: 400;
	line-height: 1.55;
}

.kela .v-nativebutton {
	-webkit-touch-callout: none;
}

.kela .v-select select {
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	color: #464646;
}

.kela .v-select select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.kela .v-select-select {
	display: block;
}

.kela .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 9px;
}

.kela .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 9px;
	margin-left: 9px;
}

.kela .v-select-error .v-select-select {
	border-color: red !important;
	background: #fffafa;
	color: #741919;
}

.kela .v-popupview {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.kela .v-popupview:hover {
	color: #4396ea;
}

.kela .v-popupview.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.kela .v-popupview-popup {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.kela .v-popupview-popup[class*="animate-in"] {
	-webkit-animation: v-popupview-animate-in 120ms;
	-moz-animation: v-popupview-animate-in 120ms;
	animation: v-popupview-animate-in 120ms;
}

.kela .v-popupview-popup[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.kela .v-popupview-popup .popupContent  > .v-margin-top {
	padding-top: 12px;
}

.kela .v-popupview-popup .popupContent  > .v-margin-right {
	padding-right: 12px;
}

.kela .v-popupview-popup .popupContent  > .v-margin-bottom {
	padding-bottom: 12px;
}

.kela .v-popupview-popup .popupContent  > .v-margin-left {
	padding-left: 12px;
}

.kela .v-popupview-loading {
	margin: 12px 12px;
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(25, 125, 225, 0.2);
	border-top-color: #197de1;
	border-right-color: #197de1;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
}

.kela .v-richtextarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 37px;
	border-radius: 4px;
	padding: 0;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	overflow: hidden;
}

.kela .v-richtextarea[class*="prompt"] {
	color: #a3a3a3;
}

.kela .v-richtextarea .gwt-RichTextToolbar {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	border-bottom: 1px solid #c5c5c5;
	color: #464646;
}

.kela .v-richtextarea .gwt-ToggleButton, .kela .v-richtextarea .gwt-PushButton {
	display: inline-block;
	line-height: 37px;
	width: 37px;
	text-align: center;
	outline: none;
}

.kela .v-richtextarea .gwt-ToggleButton:hover, .kela .v-richtextarea .gwt-PushButton:hover {
	color: black;
}

.kela .v-richtextarea .gwt-ToggleButton-down, .kela .v-richtextarea .gwt-ToggleButton-down-hovering {
	background-color: #e0e0e0;
	background-image: -webkit-linear-gradient(bottom, #e0e0e0 2%, #dcdcdc 98%);
	background-image: linear-gradient(to top,#e0e0e0 2%, #dcdcdc 98%);
}

.kela .v-richtextarea .gwt-RichTextToolbar-top img {
	display: none;
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div:before {
	font-family: ThemeIcons;
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Bold"]:before {
	content: "\f032";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Italic"]:before {
	content: "\f033";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Underline"]:before {
	content: "\f0cd";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Subscript"]:before {
	content: "\f12c";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Superscript"]:before {
	content: "\f12b";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Left Justify"]:before {
	content: "\f036";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Center"]:before {
	content: "\f037";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Right Justify"]:before {
	content: "\f038";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Strikethrough"]:before {
	content: "\f0cc";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Right"]:before {
	content: "\f03c";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Left"]:before {
	content: "\f03b";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Horizontal Rule"]:before {
	content: "\2014";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Ordered List"]:before {
	content: "\f0cb";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Unordered List"]:before {
	content: "\f0ca";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Image"]:before {
	content: "\f03e";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Create Link"]:before {
	content: "\f0c1";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Link"]:before {
	content: "\f127";
}

.kela .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Formatting"]:before {
	content: "\f12d";
}

.kela .v-richtextarea .gwt-RichTextToolbar-bottom {
	font-size: 13px;
	padding: 0 9px 9px 0;
}

.kela .v-richtextarea .gwt-RichTextToolbar-bottom select {
	margin: 9px 0 0 9px;
}

.kela .v-richtextarea .gwt-RichTextArea {
	background: #fff;
	border: none;
	display: block;
}

.kela .v-richtextarea-readonly {
	padding: 5px 7px;
	background: transparent;
}

.kela .v-upload .v-button {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	white-space: normal;
}

.kela .v-upload-immediate .v-button {
	width: 100%;
}

.kela .v-upload-immediate input[type="file"] {
	opacity: 0;
	filter: alpha(opacity=0) ;
	z-index: -1;
	position: absolute;
	right: 0;
	height: 37px;
	text-align: right;
	border: none;
	background: transparent;
}

.kela .v-Notification.v-position-top {
	top: 12px;
}

.kela .v-Notification.v-position-right {
	right: 12px;
}

.kela .v-Notification.v-position-bottom {
	bottom: 12px;
}

.kela .v-Notification.v-position-left {
	left: 12px;
}

.kela .v-Notification.v-position-assistive {
	top: -9999px;
	left: -9999px;
}

.kela .v-Notification-animate-in {
	-webkit-animation: valo-animate-in-fade 180ms 10ms backwards;
	-moz-animation: valo-animate-in-fade 180ms 10ms backwards;
	animation: valo-animate-in-fade 180ms 10ms backwards;
}

.kela .v-Notification-animate-in.v-position-top {
	-webkit-animation: valo-animate-in-slide-down 400ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-down 400ms 10ms backwards;
	animation: valo-animate-in-slide-down 400ms 10ms backwards;
}

.kela .v-Notification-animate-in.v-position-bottom {
	-webkit-animation: valo-animate-in-slide-up 400ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-up 400ms 10ms backwards;
	animation: valo-animate-in-slide-up 400ms 10ms backwards;
}

.kela .v-Notification-animate-out {
	-webkit-animation: valo-animate-out-fade 150ms;
	-moz-animation: valo-animate-out-fade 150ms;
	animation: valo-animate-out-fade 150ms;
}

.kela .v-Notification-animate-out.v-position-top, .kela .v-Notification-animate-out.v-position-bottom {
	-webkit-animation: valo-animate-out-slide-down-fade 200ms;
	-moz-animation: valo-animate-out-slide-down-fade 200ms;
	animation: valo-animate-out-slide-down-fade 200ms;
}

.kela .v-Notification {
	border-radius: 4px;
	text-align: center;
	position: fixed !important;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	background: white;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
	padding: 19px 22px;
}

.kela .v-Notification .v-Notification-caption {
	color: #197de1;
	font-size: 19px;
	line-height: 1;
}

.kela .v-Notification .v-Notification-description {
	line-height: 1.4;
}

.kela .v-Notification-caption {
	margin: 0;
	display: inline-block;
	text-align: left;
	font-weight: inherit;
	line-height: inherit;
	white-space: nowrap;
	letter-spacing: 0;
}

.kela .v-Notification-description, .kela .v-Notification-details {
	margin: 0;
	display: inline-block;
	vertical-align: middle;
	max-width: 30em;
	text-align: left;
	max-height: 20em;
	overflow: auto;
}

.kela .v-Notification-caption ~ .v-Notification-description, .kela .v-Notification-caption ~ .v-Notification-details {
	margin-left: 24px;
}

.kela .v-icon + .v-Notification-caption {
	margin-left: 16px;
}

.kela .v-Notification-system {
	left: 0 !important;
	right: 0;
	max-width: 100%;
	margin: 0 !important;
	border-radius: 0;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	padding: 12px 15px;
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 400;
	line-height: 22px;
}

.kela .v-Notification-system .v-Notification-description, .kela .v-Notification-system .v-Notification-details {
	max-width: 50em;
}

.kela .v-Notification-system.v-position-top {
	top: 0;
}

.kela .v-Notification-system.v-position-top[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	animation: valo-animate-in-slide-down 300ms 10ms backwards;
}

.kela .v-Notification-system.v-position-top[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-up 200ms;
	-moz-animation: valo-animate-out-slide-up 200ms;
	animation: valo-animate-out-slide-up 200ms;
}

.kela .v-Notification-system.v-position-bottom {
	bottom: 0;
}

.kela .v-Notification-system.v-position-bottom[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	animation: valo-animate-in-slide-up 300ms 10ms backwards;
}

.kela .v-Notification-system.v-position-bottom[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-down 200ms;
	-moz-animation: valo-animate-out-slide-down 200ms;
	animation: valo-animate-out-slide-down 200ms;
}

.kela .v-Notification-system .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.kela .v-Notification-system .v-Notification-description, .kela .v-Notification-system .v-Notification-details {
	color: #e6e6e6;
}

.kela .v-Notification-system u {
	text-decoration: none;
}

.kela .v-Notification.tray {
	text-align: left;
}

.kela .v-Notification.tray .v-Notification-caption + .v-Notification-description {
	display: block;
	margin: 0.5em 0 0;
}

.kela .v-Notification.warning {
	background: #FFF3D2;
}

.kela .v-Notification.warning .v-Notification-caption {
	color: #AC7C00;
}

.kela .v-Notification.warning .v-Notification-description {
	color: #9D874D;
}

.kela .v-Notification.error {
	background: red;
	font-weight: 400;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
	padding-right: 59px;
	overflow: hidden !important;
	cursor: pointer;
}

.kela .v-Notification.error .v-Notification-caption {
	
}

.kela .v-Notification.error .v-Notification-description {
	
}

.kela .v-Notification.error:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -12px;
	right: 12px;
	width: 25px;
	height: 25px;
	line-height: 24px;
	cursor: pointer;
	color: #000;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	text-align: center;
	border: 1px solid #000;
	border-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
}

.kela .v-Notification.error:hover:after {
	opacity: 1;
	filter: none ;
}

.kela .v-Notification.error:active:after {
	background-color: #000;
	color: #fff;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	-webkit-transition: none 200ms;
	-moz-transition: none 200ms;
	transition: none 200ms;
}

.kela .v-Notification.error:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.kela .v-Notification.error:active:after {
	background-color: #fff;
	color: #000;
}

.kela .v-Notification.dark {
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 400;
	line-height: 22px;
}

.kela .v-Notification.dark .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.kela .v-Notification.dark .v-Notification-description, .kela .v-Notification.dark .v-Notification-details {
	color: #e6e6e6;
}

.kela .v-Notification.bar {
	left: 0 !important;
	right: 0;
	max-width: 100%;
	margin: 0 !important;
	border-radius: 0;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	padding: 12px 15px;
}

.kela .v-Notification.bar .v-Notification-description, .kela .v-Notification.bar .v-Notification-details {
	max-width: 50em;
}

.kela .v-Notification.bar.v-position-top {
	top: 0;
}

.kela .v-Notification.bar.v-position-top[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	animation: valo-animate-in-slide-down 300ms 10ms backwards;
}

.kela .v-Notification.bar.v-position-top[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-up 200ms;
	-moz-animation: valo-animate-out-slide-up 200ms;
	animation: valo-animate-out-slide-up 200ms;
}

.kela .v-Notification.bar.v-position-bottom {
	bottom: 0;
}

.kela .v-Notification.bar.v-position-bottom[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	animation: valo-animate-in-slide-up 300ms 10ms backwards;
}

.kela .v-Notification.bar.v-position-bottom[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-down 200ms;
	-moz-animation: valo-animate-out-slide-down 200ms;
	animation: valo-animate-out-slide-down 200ms;
}

.kela .v-Notification.small {
	padding: 11px 13px;
}

.kela .v-Notification.small .v-Notification-caption {
	font-size: 16px;
}

.kela .v-Notification.small .v-Notification-description {
	font-size: 14px;
}

.kela .v-Notification.critical-error {
	background: red;
	font-weight: 400;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
}

.kela .v-Notification.critical-error .v-Notification-caption {
	
}

.kela .v-Notification.critical-error .v-Notification-description {
	
}

.kela .v-Notification.closable {
	padding-right: 59px;
	overflow: hidden !important;
	cursor: pointer;
}

.kela .v-Notification.closable:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -12px;
	right: 12px;
	width: 25px;
	height: 25px;
	line-height: 24px;
	cursor: pointer;
	color: #000;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	text-align: center;
	border: 1px solid #000;
	border-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
}

.kela .v-Notification.closable:hover:after {
	opacity: 1;
	filter: none ;
}

.kela .v-Notification.closable:active:after {
	background-color: #000;
	color: #fff;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	-webkit-transition: none 200ms;
	-moz-transition: none 200ms;
	transition: none 200ms;
}

.kela .v-Notification.closable.dark:after, .kela .v-Notification.closable.critical-error:after, .kela .v-Notification.closable.system:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.kela .v-Notification.closable.dark:active:after, .kela .v-Notification.closable.critical-error:active:after, .kela .v-Notification.closable.system:active:after {
	background-color: #fff;
	color: #000;
}

.kela .v-Notification.closable.tray:after {
	top: 16px;
	margin-top: 0;
}

.kela .v-Notification.success, .kela .v-Notification.failure {
	background: #fff;
	color: #555;
	border: 2px solid #2c9720;
}

.kela .v-Notification.success .v-Notification-caption, .kela .v-Notification.failure .v-Notification-caption {
	color: #2c9720;
	font-weight: 400;
}

.kela .v-Notification.success .v-Notification-caption:before, .kela .v-Notification.failure .v-Notification-caption:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
}

.kela .v-Notification.success.bar, .kela .v-Notification.failure.bar {
	margin: -2px !important;
}

.kela .v-Notification.failure {
	border-color: red;
}

.kela .v-Notification.failure .v-Notification-caption {
	color: red;
}

.kela .v-Notification.failure .v-Notification-caption:before {
	content: "\f05e";
}

.kela .valo-menu {
	height: 100%;
	background-color: #4b4b4b;
	background-image: -webkit-linear-gradient(right, #414141 0%, #4b4b4b 9px);
	background-image: linear-gradient(to left,#414141 0%, #4b4b4b 9px);
	color: #a5a5a5;
	font-size: 14px;
	line-height: 30px;
	border-right: 1px solid #3b3b3b;
	white-space: nowrap;
}

.kela .valo-menu-toggle {
	display: none;
	position: fixed;
	z-index: 200;
	top: 3px;
	left: 3px;
	min-width: 0;
}

.kela .valo-menu-part {
	border-left: 1px solid #414141;
	height: 100%;
	padding-bottom: 37px;
	overflow: auto;
}

.kela .valo-menu-part:first-child {
	border-left: none;
}

.kela .valo-menu-title, .kela .valo-menu-subtitle, .kela .valo-menu-item {
	display: block;
	line-height: inherit;
	white-space: nowrap;
	position: relative;
}

.kela .valo-menu-title .valo-menu-badge, .kela .valo-menu-subtitle .valo-menu-badge, .kela .valo-menu-item .valo-menu-badge {
	position: absolute;
	right: 19px;
}

.kela .valo-menu-title {
	line-height: 1.2;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: white;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	padding: 12px 19px;
	font-size: 14px;
	border-bottom: 1px solid #1362b1;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.kela .valo-menu-title .v-menubar.v-menubar {
	background: transparent;
	border-color: #1362b1;
	color: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: inherit;
}

.kela .valo-menu-title .v-menubar-menuitem {
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
	box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
	text-shadow: inherit;
	font-size: 16px;
	border-color: inherit;
}

.kela .valo-menu-title h1, .kela .valo-menu-title .v-label-h1, .kela .valo-menu-title h2, .kela .valo-menu-title .v-label-h2, .kela .valo-menu-title h3, .kela .valo-menu-title .v-label-h3, .kela .valo-menu-title h4, .kela .valo-menu-title .v-label-h4 {
	margin-top: 0;
	margin-bottom: 0;
	color: inherit;
}

.kela .v-menubar-user-menu {
	border: none;
	border-radius: 0;
	padding: 1px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background: transparent;
	color: inherit;
	margin: 19px 7px;
	display: block;
	overflow: hidden;
	text-align: center;
	height: auto;
	color: inherit;
}

.kela .v-menubar-user-menu:focus:after {
	display: none;
}

.kela .v-menubar-user-menu .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 4px;
	color: #197de1;
	padding: 0 12px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.kela .v-menubar-user-menu .v-menubar-menuitem:first-child, .kela .v-menubar-user-menu .v-menubar-menuitem:last-child, .kela .v-menubar-user-menu .v-menubar-menuitem:first-child:last-child {
	border-radius: 4px;
}

.kela .v-menubar-user-menu .v-menubar-menuitem:before {
	content: none;
}

.kela .v-menubar-user-menu .v-menubar-menuitem:hover {
	color: #4396ea;
}

.kela .v-menubar-user-menu .v-menubar-menuitem:active {
	color: inherit;
}

.kela .v-menubar-user-menu .v-menubar-menuitem-checked, .kela .v-menubar-user-menu .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c5c5c5;
	color: #197de1;
}

.kela .v-menubar-user-menu .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .kela .v-menubar-user-menu .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.kela .v-menubar-user-menu .v-menubar-menuitem-selected {
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.kela .v-menubar-user-menu .v-menubar-menuitem-selected:hover {
	color: #ecf2f8;
}

.kela .v-menubar-user-menu .v-menubar-menuitem-disabled, .kela .v-menubar-user-menu .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.kela .v-menubar-user-menu  > .v-menubar-menuitem {
	color: inherit;
	white-space: normal;
	line-height: 1.4;
	margin: 0;
}

.kela .v-menubar-user-menu  > .v-menubar-menuitem img.v-icon {
	width: 56px;
	height: 56px;
	border-radius: 29px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	display: block;
	margin: 0 auto 0.3em;
	border: 1px solid #c5c5c5;
}

.kela .v-menubar-user-menu  > .v-menubar-menuitem:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.kela .v-menubar-user-menu .v-menubar-menuitem-selected {
	background: transparent;
}

.kela .valo-menu-subtitle {
	color: #868686;
	margin: 7px 0 7px 19px;
	border-bottom: 1px solid #666666;
}

.kela .valo-menu-subtitle [class*="badge"] {
	color: #73a5d7;
}

.kela .valo-menuitems {
	display: block;
}

.kela .valo-menu-item {
	outline: none;
	font-weight: 400;
	padding: 0 37px 0 19px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
	-webkit-transition: background-color 300ms, color 60ms;
	-moz-transition: background-color 300ms, color 60ms;
	transition: background-color 300ms, color 60ms;
}

.kela .valo-menu-item [class*="caption"] {
	vertical-align: middle;
	display: inline-block;
	width: 90%;
	max-width: 15em;
	padding-right: 19px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.kela .valo-menu-item [class*="badge"] {
	color: #73a5d7;
}

.kela .valo-menu-item.selected {
	background: #434343;
}

.kela .valo-menu-item.selected .v-icon {
	color: #197de1;
}

.kela .valo-menu-item.selected [class*="badge"] {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #c8dbed;
}

.kela .valo-menu-item:focus, .kela .valo-menu-item:hover, .kela .valo-menu-item.selected {
	color: white;
}

.kela .valo-menu-item span.v-icon {
	min-width: 1em;
	margin-right: 19px;
	text-align: center;
	vertical-align: middle;
	-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(black), to(rgba(0, 0, 0, 0.75)));
}

.kela .valo-menu-item span.v-icon  + span {
	margin-left: 0;
}

.kela .valo-menu-item [class*="badge"] {
	background-color: #585858;
	-webkit-transition: background-color 300ms;
	-moz-transition: background-color 300ms;
	transition: background-color 300ms;
	line-height: 1;
	padding: 4px 6px;
	min-width: 11px;
	text-align: center;
	top: 4px;
	border-radius: 4px;
}

.kela .valo-menu-part.large-icons {
	background-color: #4b4b4b;
	min-width: 74px;
	max-width: 111px;
}

.kela .valo-menu-part.large-icons .valo-menu-title {
	font-size: 12px;
}

.kela .valo-menu-part.large-icons .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.kela .valo-menu-part.large-icons .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 11px;
}

.kela .valo-menu-part.large-icons .v-menubar-user-menu img.v-icon {
	width: 28px;
	height: 28px;
}

.kela .valo-menu-part.large-icons [class*="subtitle"] {
	margin: 9px 0 0;
	padding: 7px 25px 7px 9px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #3c3c3c;
	font-size: 13px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.kela .valo-menu-part.large-icons [class*="subtitle"] [class*="badge"] {
	right: 9px;
}

.kela .valo-menu-part.large-icons [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.kela .valo-menu-part.large-icons .valo-menu-item {
	display: block;
	font-size: 26px;
	line-height: 1;
	padding: 12px;
	text-align: center;
	border-top: 1px solid #555555;
}

.kela .valo-menu-part.large-icons .valo-menu-item:first-child {
	border-top: none;
}

.kela .valo-menu-part.large-icons .valo-menu-item [class*="caption"] {
	display: block;
	width: auto;
	margin: 0.3em 0 0;
	padding: 0;
	font-size: 11px;
	line-height: 1.3;
}

.kela .valo-menu-part.large-icons .valo-menu-item .v-icon {
	margin: 0;
}

.kela .valo-menu-part.large-icons .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.kela .valo-menu-part.large-icons .valo-menu-item.selected {
	background: #434343;
}

.kela .valo-menu-part.large-icons .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.kela .valo-menu-part.large-icons .valo-menu-item.selected [class*="badge"] {
	border-color: #434343;
}

.kela .valo-menu-part.large-icons .valo-menu-item [class*="badge"] {
	padding-left: 4px;
	padding-right: 4px;
	top: 7px;
	right: 7px;
	border: 2px solid #4b4b4b;
}

.kela .valo-menu-logo {
	display: block;
	overflow: hidden;
	width: 44px !important;
	height: 44px;
	border-radius: 4px;
	text-align: center;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: white;
	font-size: 25px;
	line-height: 44px;
	margin: 19px auto;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.kela .valo-menu-logo:focus {
	outline: none;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part {
	background-color: #4b4b4b;
	min-width: 74px;
	max-width: 111px;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title {
	font-size: 12px;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 11px;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu img.v-icon {
	width: 28px;
	height: 28px;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] {
	margin: 9px 0 0;
	padding: 7px 25px 7px 9px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #3c3c3c;
	font-size: 13px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] [class*="badge"] {
	right: 9px;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item {
	display: block;
	font-size: 26px;
	line-height: 1;
	padding: 12px;
	text-align: center;
	border-top: 1px solid #555555;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item:first-child {
	border-top: none;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item [class*="caption"] {
	display: block;
	width: auto;
	margin: 0.3em 0 0;
	padding: 0;
	font-size: 11px;
	line-height: 1.3;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item .v-icon {
	margin: 0;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected {
	background: #434343;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected [class*="badge"] {
	border-color: #434343;
}

.kela .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item [class*="badge"] {
	padding-left: 4px;
	padding-right: 4px;
	top: 7px;
	right: 7px;
	border: 2px solid #4b4b4b;
}

.kela .valo-menu-responsive[width-range~="0-800px"] {
	padding-top: 37px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.kela .valo-menu-responsive[width-range~="0-800px"] .v-loading-indicator {
	top: 37px;
}

.kela .valo-menu-responsive[width-range~="0-800px"]  > .v-widget {
	position: relative !important;
}

.kela .valo-menu-responsive[width-range~="0-800px"] .valo-menu {
	border-right: none;
}

.kela .valo-menu-responsive[width-range~="0-800px"] .valo-menu-part {
	overflow: visible;
}

.kela .valo-menu-responsive[width-range~="0-800px"] .valo-menu-toggle {
	display: inline-block;
}

.kela .valo-menu-responsive[width-range~="0-800px"] .valo-menu-title {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	height: 37px !important;
	padding-top: 0;
	padding-bottom: 0;
	-webkit-backface-visibility: hidden;
}

.kela .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	height: 37px;
	color: #97bee5;
	max-width: 30%;
	-webkit-backface-visibility: hidden;
}

.kela .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem {
	line-height: 36px;
	white-space: nowrap;
}

.kela .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu img.v-icon {
	display: inline-block;
	margin: 0 6px 0 0;
	width: 19px;
	height: 19px;
	border-radius: 10px;
	border: none;
}

.kela .valo-menu-responsive[width-range~="0-800px"] .valo-menuitems {
	height: 100%;
	background-color: #4b4b4b;
	background-image: -webkit-linear-gradient(right, #414141 0%, #4b4b4b 9px);
	background-image: linear-gradient(to left,#414141 0%, #4b4b4b 9px);
	color: #a5a5a5;
	font-size: 14px;
	line-height: 30px;
	border-right: 1px solid #3b3b3b;
	white-space: nowrap;
	position: fixed;
	z-index: 9000;
	top: 37px;
	bottom: 0;
	height: auto;
	max-width: 100%;
	overflow: auto;
	padding: 19px 0;
	-webkit-transform: translatex(-100%);
	-moz-transform: translatex(-100%);
	-ms-transform: translatex(-100%);
	-o-transform: translatex(-100%);
	transform: translatex(-100%);
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	transition: all 300ms;
}

.kela .valo-menu-responsive[width-range~="0-800px"] .valo-menu-visible .valo-menuitems, .kela .valo-menu-responsive[width-range~="0-800px"] .valo-menu-hover:hover .valo-menuitems {
	-webkit-transform: translatex(0%);
	-moz-transform: translatex(0%);
	-ms-transform: translatex(0%);
	-o-transform: translatex(0%);
	transform: translatex(0%);
}

.kela .valo-menu-responsive[width-range~="0-500px"] .valo-menu-toggle .v-button-caption {
	display: none;
}

.kela .valo-menu-responsive[width-range~="0-500px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem-caption {
	display: inline-block;
	width: 19px;
	overflow: hidden;
}

.kela .simple-info-label {
	padding-top: 50px;
}

.kela .min-width-150px {
	min-width: 150px;
}

.kela .v-window-closebox {
	display: block;
}

.kela .v-window-closebox .v-window-closebox-disabled {
	display: none;
}

.kela .v-window-closebox-disabled {
	display: none;
}

.kela .v-window-attributewindow .v-window-closebox {
	display: none;
}

.kela .hideordercolumn2 .v-table-header-wrap .v-table-header div table tbody tr td:nth-child(2) .v-table-sort-indicator {
	display: none;
}

.kela .statement-details-label {
	line-height: 25px !important;
	text-align: right;
}

.kela .v-slot-min-width-150px {
	min-width: 150px;
}

.kela .v-caption-not-required-form-element .v-captiontext {
	padding-top: 7px;
}

.kela .v-slot-admin-manual-update-table {
	margin-bottom: 50px;
}

.kela .portlet-title-text {
	margin-top: 0.5em;
}

.kela .v-margin-top {
	padding-top: 10px;
}

.kela .v-select-optiongroup-horizontal {
	display: block;
}

.kela .v-caption-force-width-100 {
	width: 100% !important;
}

.kela h1, .kela .v-label-h1, .kela h2, .kela .v-label-h2, .kela h3, .kela .v-label-h3, .kela h4, .kela .v-label-h4, .kela h5, .kela .v-label-h5 {
	color: #004894;
	font-weight: normal;
	line-height: 1em;
}

.kela h2 {
	white-space: normal;
}

.kela h1, .kela .v-label-h1 {
	font-size: 2.25em;
	margin-top: 0.44444em;
	margin-bottom: 0.22222em;
	word-spacing: -0.06em;
}

.kela h2, .kela .v-label-h2 {
	font-size: 1.875em;
	margin-top: 1.06667em;
	margin-bottom: 0.26667em;
	word-spacing: -0.04em;
}

.kela h3, .kela .v-label-h3 {
	font-size: 1.625em;
	margin-top: 1.23077em;
	margin-bottom: 0.30769em;
	word-spacing: -0.04em;
}

.kela h4, .kela .v-label-h4 {
	font-size: 1.375em;
	margin-top: 1.45455em;
	margin-bottom: 0.36364em;
	word-spacing: -0.05em;
}

.kela h5, .kela .v-label-h5 {
	font-size: 1.125em;
	margin-top: 1.77778em;
	margin-bottom: 0.44444em;
	word-spacing: -0.05em;
}

.kela .v-label-report {
	font-size: 1.125em;
	margin-top: 0em;
	margin-bottom: 0em;
	word-spacing: -0.05em;
	color: #004894;
	font-weight: normal;
	line-height: 1em;
}

.kela .v-label-editingUser {
	text-align: right;
	font-size: 14px;
}

.kela .v-label-portlet-title-text-feedback-form {
	margin-top: 1em;
	color: #004894;
	font-weight: normal;
	line-height: 1em !important;
	font-size: 1.875em;
	margin-top: 1.36667em;
	margin-bottom: 0.26667em;
	word-spacing: -0.04em;
}

.kela .portlet-title-ie9 {
	margin-top: 1em !important;
	color: #004894 !important;
	font-weight: bold !important;
	line-height: 1em !important;
	font-size: 1.475em !important;
	margin-bottom: 0.26667em !important;
	word-spacing: -0.04em !important;
	font-family: Meta, Arial, "Helvetica Neue", HelveticaNeue, Helvetica, "Lucida Grande", sans-serif;
}

.kela.v-app, .kela.v-app-loading {
	background: none;
	color: #2a2a2a;
	font-family: Arial, "Helvetica Neue", HelveticaNeue, Helvetica, "Lucida Grande", sans-serif;
	font-size: 100%;
	font-weight: normal;
	line-height: 1.25em;
}

.kela .margin-bottom-1 {
	margin-bottom: 1em;
}

.kela input[type="text"], .kela .aui input[type="text"], .kela input[type="password"], .kela .aui input[type="password"], .kela input[type="reset"], .kela .aui input[type="reset"], .kela select, .kela .aui select, .kela textarea, .kela .aui textarea, .kela .v-textarea, .kela .aui .v-textarea {
	background-color: white;
	border: 1px solid #ccc;
	border-radius: 4px;
	float: left;
	font-size: 100%;
	height: 100%;
	padding: 5px;
	width: 100%;
	color: #000;
}

.kela input[type="text"]:focus, .aui .kela input[type="text"]:focus, .kela .aui input[type="text"]:focus, .aui .kela .aui input[type="text"]:focus, .kela input[type="password"]:focus, .aui .kela input[type="password"]:focus, .kela .aui input[type="password"]:focus, .aui .kela .aui input[type="password"]:focus, .kela input[type="reset"]:focus, .aui .kela input[type="reset"]:focus, .kela .aui input[type="reset"]:focus, .aui .kela .aui input[type="reset"]:focus, .kela select:focus, .aui .kela select:focus, .kela .aui select:focus, .aui .kela .aui select:focus, .kela textarea:focus, .aui .kela textarea:focus, .kela .aui textarea:focus, .aui .kela .aui textarea:focus, .kela .v-textarea:focus, .aui .kela .v-textarea:focus, .kela .aui .v-textarea:focus, .aui .kela .aui .v-textarea:focus {
	border-color: rgba(0, 72, 148, 0.7);
	outline: 0;
	outline: thin dotted \9;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 72, 148, 0.6);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 72, 148, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 72, 148, 0.6);
}

.kela .hideCaptions .v-caption {
	display: none;
}

.kela .v-caption-forScreenReader {
	display: block !important;
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.kela .v-caption-showCaption {
	display: block !important;
}

.kela .v-widget.v-has-caption {
	width: 100%;
}

.kela .feedback-form .v-spacing {
	height: 5px;
}

.kela .feedback-form .ingress {
	margin-top: 1em;
	margin-bottom: 1em;
}

.kela .feedback-form .ingress .v-required-field-indicator {
	font-size: 1.4em;
}

.kela .feedback-form .v-captiontext {
	display: inline-block;
	line-height: inherit;
	font-size: 16px;
	color: #00265f;
	font-weight: bold;
}

.kela .feedback-form .v-horizontallayout.check-align-right label {
	color: #00265f !important;
}

.kela .feedback-form .v-label-counter {
	color: #004894;
	text-align: right;
	font-size: 14px;
	font-weight: 400;
}

.kela .feedback-form .v-checkbox-coloredcaption label {
	color: #004894;
}

.kela .feedback-form .v-caption-coloredcaption {
	color: #00265f;
	font-size: 16px;
	font-weight: bold;
}

.kela .feedback-form .user-data .v-caption {
	width: 140px;
}

.kela .feedback-form .user-data .recordrow {
	width: 140px;
}

.kela .feedback-form .v-required-field-indicator {
	font-size: 1.9em;
	color: black;
}

.kela .feedback-form .v-textfield-user-data-zip {
	margin-right: 10px;
}

.kela .feedback-form > table > tbody > .v-formlayout-firstrow {
	display: block;
}

.kela .feedback-form > table > tbody > .v-formlayout-firstrow .v-formlayout-captioncell, .kela .feedback-form > table > tbody > .v-formlayout-firstrow .v-formlayout-errorcell {
	display: none;
}

.kela .feedback-form > table > tbody > .v-formlayout-firstrow .v-formlayout-contentcell {
	display: block;
	font-size: 1.2em;
	font-style: italic;
	margin-bottom: 1em;
}

.kela .v-caption-feedback-recording-channel .v-required-field-indicator {
	margin-left: 7.5em;
}

.kela .v-label-feedback-recording-customer-rating {
	width: 100%;
	color: #004894;
	font-size: 14px;
	font-weight: 400;
}

.kela .v-caption-feedback-recording-customer-rating .v-required-field-indicator {
	display: none;
}

.kela .v-slot-feedback-recording-customer-rating .v-required-field-indicator {
	display: none;
}

.kela .v-slot-feedback-recording-margin {
	margin-top: 4em;
}

.kela .v-label {
	line-height: 2.4em;
}

.kela .v-label.PortletCaption {
	overflow: visible;
	text-overflow: clip;
	display: inline-block;
	max-width: 95%;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: top;
	white-space: nowrap;
	font-size: 2.25em;
	word-spacing: -0.06em;
	color: #004894;
	font-family: Meta, Arial, "Helvetica Neue", HelveticaNeue, Helvetica, "Lucida Grande", sans-serif;
	font-weight: normal;
	line-height: 1em;
}

:root .kela .v-checkbox > input:focus ~ label:before, :root .kela .v-radiobutton > input:focus ~ label:before, :root .kela .v-layout.buttons > input:focus ~ label:before {
	border-color: rgba(0, 72, 148, 0.7);
	outline: 0;
	outline: thin dotted \9;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 72, 148, 0.6);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 72, 148, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 72, 148, 0.6);
}

.kela .v-checkbox .v-togglebutton, .kela .v-radiobutton .v-togglebutton, .kela .v-layout.buttons .v-togglebutton {
	margin-right: 10px;
	margin-bottom: 10px;
}

.kela .v-checkbox.margin1emTopAndBottom, .kela .v-radiobutton.margin1emTopAndBottom, .kela .v-layout.buttons.margin1emTopAndBottom {
	margin-bottom: 1em;
	margin-top: 1em;
}

.kela .v-radiobutton label {
	color: #00265f;
}

:root .kela .v-radiobutton > input ~ label:before {
	border: 1px solid #27a6d2;
	background-image: none;
}

.kela .v-radiobutton input:checked ~ label:after {
	width: 9px !important;
	height: 9px !important;
	top: 5px !important;
	left: 5px !important;
	background: #074d97 !important;
}

.kela .v-togglebuttonlayout {
	width: auto;
}

.kela .v-togglebuttonlayout.horizontalButtonLayout .v-togglebutton {
	margin-right: 10px;
}

.kela .v-togglebuttonlayout.verticalButtonLayout .v-togglebutton {
	display: block;
	margin-bottom: 10px;
}

.kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout:focus {
	-webkit-box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.75);
}

.kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout .v-layout.v-widget {
	line-height: 50px;
	padding-top: 10px;
	width: 100%;
}

.kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout .v-layout.v-widget .v-button.v-togglebutton:first-child {
	border-top: none;
}

.kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout .v-layout.v-widget .v-button.v-togglebutton {
	text-align: left;
	border: 0;
	border-top: 1px dotted #e3f2f8;
	border-radius: 0;
	padding-left: 20px;
	padding-right: 20px;
	box-shadow: none;
	background-color: #FFF;
	margin: 0;
	height: 43px;
	line-height: 2.5em;
}

.kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout .v-layout.v-widget .v-button.v-togglebutton:hover, .kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout .v-layout.v-widget .v-button.v-togglebutton:hover .v-button-wrap .v-button-caption, .kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout .v-layout.v-widget .v-button.v-togglebutton:hover .v-button-wrap .v-button:after {
	color: #004894;
	text-decoration: underline;
	background-color: none;
}

.kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout .v-layout.v-widget .v-button.v-togglebutton .v-button-wrap .v-button-caption {
	font-weight: bold;
	color: #107cb6;
	text-decoration: none;
}

.kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout .v-layout.v-widget .v-button.v-togglebutton.selected {
	background-color: #e3f2f8;
	border-left: 2px solid #16A2D7;
	border-top: 2px solid #16A2D7;
	border-bottom: 2px solid #16A2D7;
	border-right: 0;
	box-shadow: none;
	border-radius: 5px;
	position: relative;
	line-height: 2.9em;
}

.kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout .v-layout.v-widget .v-button.v-togglebutton.selected:after {
	position: absolute;
	top: -6px;
	left: 98%;
	margin: 0;
	width: 4px;
	height: 4px;
	border-right: 2px solid #16A2D7;
	border-bottom: 2px solid #16A2D7;
	border-top: 0;
	border-left: 0;
	border-radius: 0 0 10px 0;
	content: "";
	z-index: 1;
	box-shadow: 0px 4px 0px #e3f2f8;
}

.kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout .v-layout.v-widget .v-button.v-togglebutton.selected:before {
	position: absolute;
	top: 39px;
	left: 98%;
	margin: 0;
	width: 4px;
	height: 4px;
	border-left: 0;
	border-bottom: 0;
	border-right: 2px solid #16A2D7;
	border-top: 2px solid #16A2D7;
	border-radius: 0 5px 0 0;
	box-shadow: 0px -4px 0px #e3f2f8;
	content: "";
	z-index: 1;
}

.kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout .v-layout.v-widget .v-button.v-togglebutton.selected .v-button-wrap:after {
	content: "";
	position: absolute;
	top: 0px;
	left: 98%;
	margin: 0;
	width: 10px;
	height: 39px;
	border-left: 0;
	border-bottom: 0;
	background: #e3f2f8;
	background: -moz-linear-gradient(left, #e3f2f8 0%, #e3f2f8 61%, rgba(227, 242, 248, 0) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, #e3f2f8), color-stop(61%, #e3f2f8), color-stop(100%, rgba(227, 242, 248, 0)));
	background: -webkit-linear-gradient(left, #e3f2f8 0%, #e3f2f8 61%, rgba(227, 242, 248, 0) 100%);
	background: -o-linear-gradient(left, #e3f2f8 0%, #e3f2f8 61%, rgba(227, 242, 248, 0) 100%);
	background: -ms-linear-gradient(left, #e3f2f8 0%, #e3f2f8 61%, rgba(227, 242, 248, 0) 100%);
	background: linear, to right, #e3f2f8 0%, #e3f2f8 61%, rgba(227, 242, 248, 0) 100%;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e3f2f8', endColorstr='#e3f2f8', GradientType=1);
}

.kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout .v-layout.v-widget .v-button.v-togglebutton.selected .v-button-caption, .kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout .v-layout.v-widget .v-button.v-togglebutton.selected:hover, .kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout .v-layout.v-widget .v-button.v-togglebutton.selected:hover .v-button-wrap .v-button-caption, .kela .togglebuttonlayout.buttonTabsheet.verticalButtonLayout .v-layout.v-widget .v-button.v-togglebutton.selected:hover .v-button-wrap .v-button:after {
	font-weight: bold;
	text-decoration: none;
	color: #f15b23;
}

.kela .buttonTabsheet.togglebuttonlayout.horizontalButtonLayout:focus {
	-webkit-box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.75);
}

.kela .buttonTabsheet.togglebuttonlayout.horizontalButtonLayout .v-csslayout.v-layout.v-widget .v-button.v-togglebutton {
	background-color: #FFF;
	padding-left: 40px;
	padding-right: 40px;
	border: 2px solid #e3f2f8;
	border-bottom-color: #16A2D7;
	border-radius: 6px 6px 0 0;
	margin: 0;
	margin-top: 5px;
	margin-right: -2px;
}

.kela .buttonTabsheet.togglebuttonlayout.horizontalButtonLayout .v-csslayout.v-layout.v-widget .v-button.v-togglebutton:focus {
	box-shadow: none;
}

.kela .buttonTabsheet.togglebuttonlayout.horizontalButtonLayout .v-csslayout.v-layout.v-widget .v-button.v-togglebutton:after {
	border: none;
}

.kela .buttonTabsheet.togglebuttonlayout.horizontalButtonLayout .v-csslayout.v-layout.v-widget .v-button.v-togglebutton .v-button-wrap {
	background-color: #FFF;
}

.kela .buttonTabsheet.togglebuttonlayout.horizontalButtonLayout .v-csslayout.v-layout.v-widget .v-button.v-togglebutton .v-button-wrap .v-button-caption {
	color: #464646;
	font-weight: normal;
}

.kela .buttonTabsheet.togglebuttonlayout.horizontalButtonLayout .v-csslayout.v-layout.v-widget .v-button.v-togglebutton.selected {
	border-bottom: 0;
	box-shadow: 3px -1px 3px #dfdfdf;
	border-color: #16A2D7;
	border-right-color: #16A2D7;
	border-left-color: #16A2D7;
	z-index: 1;
}

.kela .buttonTabsheet.togglebuttonlayout.horizontalButtonLayout .v-csslayout.v-layout.v-widget .v-button.v-togglebutton.selected .v-button-caption {
	color: #074d97;
	font-weight: bold;
}

.kela .v-button:not(.link), .kela .v-togglebutton:not(.link) {
	background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.15)), color-stop(100%, rgba(255, 255, 255, 0)));
	background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
	background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
	background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
	background-image: linear, top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%;
	border: none;
	border-radius: 0.33333em;
	color: #fff;
	cursor: pointer;
	background-color: #029acc;
	font-size: 0.9375em;
	font-weight: bold;
	padding: 0 0.66667em;
	height: 2.375rem;
	line-height: 2.375rem;
	display: inline-block;
}

.kela .v-button.margin1:not(.link), .kela .v-togglebutton.margin1:not(.link) {
	margin-left: 1em;
}

.kela .v-button.marginTop1:not(.link), .kela .v-togglebutton.marginTop1:not(.link) {
	margin-top: 1.36667em;
}

.kela .v-button.big:not(.link), .kela .v-togglebutton.big:not(.link) {
	background-color: #d5e85d;
	border-color: #d5e85d;
	color: #366805;
	margin-top: 1em;
}

.kela .v-button.big.clipboard-notification-button:not(.link), .kela .v-button.big.clipboard-notification-button:not(.link):hover, .kela .v-togglebutton.big.clipboard-notification-button:not(.link), .kela .v-togglebutton.big.clipboard-notification-button:not(.link):hover {
	display: none;
	background-color: #fff;
	color: dodgerblue;
	text-decoration: none;
	position: fixed !important;
	z-index: 10000;
	top: 0px;
	right: 10px;
	font-family: Arial;
	font-size: 18px;
	font-weight: normal;
	padding-top: 10px;
	padding-bottom: 10px;
	height: 60px;
	min-width: 340px;
}

.kela .v-button.big.clipboard-notification-button.error:not(.link), .kela .v-button.big.clipboard-notification-button.error:not(.link):hover, .kela .v-togglebutton.big.clipboard-notification-button.error:not(.link), .kela .v-togglebutton.big.clipboard-notification-button.error:not(.link):hover {
	color: #ff0303;
	min-width: 440px;
	padding-left: 30px;
}

.kela .v-button.big.clipboard-notification-button.error:not(.link):before, .kela .v-button.big.clipboard-notification-button.error:not(.link):hover:before, .kela .v-togglebutton.big.clipboard-notification-button.error:not(.link):before, .kela .v-togglebutton.big.clipboard-notification-button.error:not(.link):hover:before {
	font-family: FontAwesome;
	content: "\f071";
	position: relative;
	left: -25px;
}

.kela .v-button.big.clipboard-notification-button.open:not(.link), .kela .v-button.big.clipboard-notification-button.open:not(.link):hover, .kela .v-togglebutton.big.clipboard-notification-button.open:not(.link), .kela .v-togglebutton.big.clipboard-notification-button.open:not(.link):hover {
	display: block;
}

.kela .v-button.big:not(.link):hover, .kela .v-togglebutton.big:not(.link):hover {
	background-color: #d5e85d;
	border-color: #d5e85d;
	color: #366805;
	text-decoration: underline;
	margin-top: 1em;
}

.kela .v-button.big:not(.link):hover:after, .kela .v-togglebutton.big:not(.link):hover:after {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
	border: none;
}

.kela .v-button.search-layout-button:not(.link), .kela .v-togglebutton.search-layout-button:not(.link) {
	height: 2rem;
	line-height: 2rem;
}

.kela .v-button.functional-button:not(.link), .kela .v-togglebutton.functional-button:not(.link) {
	background-color: #d5e85d;
	border-color: #d5e85d;
	color: #366805 !important;
	line-height: 2rem;
}

.kela .v-button.functional-button:not(.link):hover, .kela .v-togglebutton.functional-button:not(.link):hover {
	background-color: #d5e85d;
	border-color: #d5e85d;
	color: #366805 !important;
	text-decoration: underline;
}

.kela .v-button.functional-button:not(.link):hover:after, .kela .v-togglebutton.functional-button:not(.link):hover:after {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
	border: none;
}

.kela .v-button:not(.link):hover, .kela .v-button.selected:not(.link):hover, .kela .v-togglebutton:not(.link):hover, .kela .v-togglebutton.selected:not(.link):hover {
	background-color: #074d97;
	border-color: #074d97;
	color: #fff;
}

.kela .v-button:not(.link):hover:after, .kela .v-button.selected:not(.link):hover:after, .kela .v-togglebutton:not(.link):hover:after, .kela .v-togglebutton.selected:not(.link):hover:after {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
	border: none;
}

.kela .v-button:not(.link):focus, .kela .v-button.selected:not(.link):focus, .kela .v-togglebutton:not(.link):focus, .kela .v-togglebutton.selected:not(.link):focus {
	border-color: rgba(0, 72, 148, 0.7);
	outline: 0;
	outline: thin dotted \9;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 72, 148, 0.6);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 72, 148, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 72, 148, 0.6);
}

.kela .v-button:not(.link):focus:after, .kela .v-button.selected:not(.link):focus:after, .kela .v-togglebutton:not(.link):focus:after, .kela .v-togglebutton.selected:not(.link):focus:after {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
	border: none;
}

.kela .v-button.selected:not(.link), .kela .v-togglebutton.selected:not(.link) {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
	background-color: #074d97;
	border-color: #074d97;
	color: #fff !important;
}

.kela .v-slot-download-button {
	float: right;
	margin-bottom: -37px;
}

.kela .v-button-download-button {
	top: -37px;
	line-height: 2rem !important;
	margin-left: 12px;
}

.kela .v-button-show-hide {
	border: 0px !important;
	background-color: white !important;
	background-image: none !important;
	box-shadow: none !important;
}

.kela .v-button-show-hide:hover, .kela .v-button-show-hide:focus, .kela .v-button-show-hide::after, .kela .v-button-show-hide::before {
	background-image: none !important;
	box-shadow: none !important;
	background-color: white !important;
	background: none !important;
}

.kela .v-slot-show-hide {
	margin-left: -0.6em;
}

.kela .v-label-report-infotexttitle {
	font-size: 0.9em;
	margin-top: 0.2em;
}

.kela .v-label-report-infotext {
	font-size: 0.88em;
	margin-top: 0.2em;
	line-height: 18px;
	padding-bottom: 0.5em;
	font-style: italic;
}

.kela .v-filterselect, .kela .v-datefield {
	width: 100%;
}

.kela .v-filterselect > [class*="input"], .kela .v-datefield > [class*="input"] {
	background-color: #fff;
	background-image: -webkit-linear-gradient(top, #fff 2%, #f5f5f6 98%);
	background-image: linear, to bottom, #fff 2%, #f5f5f6 98%;
	color: #2a2a2a;
	font-style: normal;
	margin: 0;
}

.kela .v-filterselect[class*="prompt"] > [class*="input"], .kela .v-datefield[class*="prompt"] > [class*="input"] {
	color: #2a2a2a;
}

.kela .v-filterselect > [class$="button"]:before, .kela .v-datefield > [class$="button"]:before {
	color: #2a2a2a;
}

.kela .v-filterselect > .v-filterselect-button:before, .kela .v-datefield > .v-filterselect-button:before {
	font-family: FontAwesome;
	content: "\f0d7";
}

.kela .v-filterselect-suggestmenu .FontAwesome {
	color: transparent;
}

.kela .v-filterselect .FontAwesome {
	color: transparent;
	font-size: 0px;
}

.kela .v-filterselect-suggestmenu .gwt-MenuItem-selected {
	background: #004894;
}

.kela .v-select-selecttesti {
	background-image: -webkit-linear-gradient(top, #fff 2%, #f5f5f6 98%);
	background-image: linear-gradient(to bottom, #fff 2%, #f5f5f6 98%);
}

.kela .v-select-selecttesti .v-select-select {
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: "";
	-webkit-appearance: none;
	background: url('img/arrow_down.png') no-repeat center right transparent !important;
	background-color: transparent !important;
	height: 37px;
	padding-left: 0.4em;
	font-size: 16px;
	line-height: 28px;
	padding-right: 2em;
}

.kela .v-select-selecttesti .v-select-select::-ms-expand {
	display: none;
}

.kela .v-select-free-report-select {
	background-image: -webkit-linear-gradient(top, #fff 2%, #f5f5f6 98%);
	background-image: linear-gradient(to bottom, #fff 2%, #f5f5f6 98%);
}

.kela .v-select-free-report-select .v-select-select {
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: "";
	-webkit-appearance: none;
	width: 392px;
	background: url('img/arrow_down.png') no-repeat center right transparent !important;
	background-color: transparent !important;
	height: 2.7em;
	padding-left: 0.4em;
	font-size: 14px !important;
}

.kela .v-select-free-report-select .v-select-select::-ms-expand {
	display: none;
}

.kela .v-select-kelaSelect {
	background-image: -webkit-linear-gradient(top, #fff 2%, #f5f5f6 98%);
	background-image: linear-gradient(to bottom, #fff 2%, #f5f5f6 98%);
}

.kela .v-select-kelaSelect .v-select-select {
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: "";
	-webkit-appearance: none;
	background: url('img/arrow_down.png') no-repeat center right transparent !important;
	background-color: transparent !important;
	height: 32px;
	padding-left: 0.4em;
	line-height: 22px;
}

.kela .v-select-kelaSelect .v-select-select::-ms-expand {
	display: none;
}

.kela .v-select > [class*="select"] {
	background-color: #fff;
	background-image: -webkit-linear-gradient(top, #fff 2%, #f5f5f6 98%);
	background-image: linear, to bottom, #fff 2%, #f5f5f6 98%;
	color: #2a2a2a;
	font-style: normal;
	margin: 0;
}

.kela .v-select > [class*="select"] option {
	font-size: 16px !important;
	border-radius: 3px;
	line-height: 1.2em;
	padding: 1px 10px;
	margin: 1px 0;
}

.kela .v-select > [class*="select"] option:checked {
	background: #004894;
	color: #fff;
}

.kela .headerUnderline h4 {
	text-transform: none;
}

.kela .VerDateBar .v-spacing {
	width: 4px;
}

.kela .VerDateBar .v-label {
	min-width: 65px;
}

.kela .v-caption-VerDateBar {
	padding-bottom: 0.1em;
}

.kela .v-select-search-resp-first {
	width: 97%;
}

.kela .v-select-search-resp-second {
	width: 97%;
}

.kela .search-resp-third {
	width: 25%;
}

.kela .v-button-text-search-button {
	margin-bottom: 0.7em;
}

.kela .FeedbackProcessingView .v-select {
	padding: 0px 0px;
}

.kela .FeedbackProcessingView .v-select-select {
	font-size: 12px;
	padding-top: 4px;
	padding-left: 4px;
	padding-bottom: 4px;
	padding-right: 4px;
}

.kela .FeedbackProcessingView .v-datefield {
	height: 32px;
	font-size: 12px;
}

.kela .FeedbackProcessingView .v-filterselect {
	height: 32px;
	font-size: 12px;
}

.kela .FeedbackProcessingView .v-textfield {
	height: 32px;
	font-size: 12px;
}

.kela .FeedbackProcessingView .v-button {
	font-size: 14px;
}

.kela .FeedbackProcessingView textarea.public-text-area.v-textarea-readonly {
	cursor: default;
}

.kela .v-horizontallayout-special-custom-selector {
	width: 864px;
}

.kela .v-horizontallayout-special-custom-selector .v-slot-search-resp-first {
	width: inherit;
}

.kela .v-horizontallayout-special-custom-selector .v-slot-search-resp-second .v-captiontext {
	font-size: 1em !important;
	color: #004894;
}

.kela .v-horizontallayout-special-custom-selector-report .v-spacing {
	width: 24px;
}

.kela .searchlayout .v-select {
	padding: 0px 0px;
}

.kela .searchlayout .v-select-select {
	font-size: 12px;
	padding-top: 4px;
	padding-left: 4px;
	padding-bottom: 4px;
	padding-right: 4px;
}

.kela .searchlayout .v-datefield {
	height: 32px;
	font-size: 12px;
}

.kela .searchlayout .v-filterselect {
	height: 32px;
	font-size: 12px;
}

.kela .searchlayout .v-textfield {
	height: 32px;
	font-size: 12px;
}

.kela .searchlayout .v-button {
	font-size: 14px;
}

.kela .searchlayout .smallselect .v-select-select {
	height: 100%;
}

.kela .searchlayout .v-label {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	height: 21.7px;
	line-height: 20px;
}

.kela .searchlayout .v-select {
	width: 100%;
}

.kela .searchlayout .v-select-select {
	height: 126px;
}

.kela .searchlayout .margin04 {
	margin-right: 0.4em;
}

.kela .searchlayout-freesearch .v-textfield {
	width: 400px;
}

.kela .searchlayout-hidden .v-button {
	width: 400px;
	text-align: left;
	margin-bottom: 1em;
}

.kela .searchlayout-hidden .v-caption-search-hidden-arrow {
	width: 35px !important;
	margin-left: 0.6em !important;
	margin-top: 5.5em !important;
}

.kela .searchlayout-hidden .v-slot-search-hidden-arrow {
	width: 2.5em !important;
}

.kela .freeReportlayout {
	margin-top: 1em;
}

.kela .freeReportlayout .v-select-select {
	width: 22em !important;
	height: 102px !important;
}

.kela .freeReportlayout .v-select-smallselect {
	width: 242px !important;
	height: 30px !important;
	background-image: -webkit-linear-gradient(top, #fff 2%, #f5f5f6 98%);
	background-image: linear-gradient(to bottom, #fff 2%, #f5f5f6 98%);
}

.kela .freeReportlayout .v-select-smallselect .v-select-select {
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: "";
	-webkit-appearance: none;
	width: 242px !important;
	background: url('img/arrow_down.png') no-repeat center right transparent !important;
	background-color: transparent !important;
	height: 30px !important;
	padding-left: 0.4em;
}

.kela .freeReportlayout .v-select-smallselect .v-select-select::-ms-expand {
	display: none;
}

.kela .v-filterselect-freereport {
	width: 16.9em;
	font-size: 0.9em;
	margin-right: 1em;
}

.kela .v-filterselect-freereport .v-has-caption {
	height: 1.8em;
	padding-top: 13px !important;
	margin-bottom: 1em;
	font-size: 14px !important;
	color: #004894;
}

.kela .v-filterselect-freereport .margin-minus {
	margin-top: -1em;
}

.kela .v-filterselect-freereport.v-filterselect-free-report-extras {
	height: 2em !important;
	margin-right: 0px;
	width: 16.8em;
}

.kela .v-filterselect-freereport.v-filterselect-v-filterselect-freereport {
	height: 2.5em;
}

.kela .v-filterselect-freereport .v-captiontext {
	font-size: 14px !important;
	color: #004894;
}

.kela .v-filterselect-freereport .v-filterselect-input {
	font-size: 14px !important;
}

.kela .v-filterselect-suggestpopup-v-filterselect-freereport .gwt-MenuItem {
	font-size: 14px !important;
}

.kela .v-slot-free-report-extras {
	margin-top: 0em;
}

.kela .v-caption-free-report-extras {
	font-size: 1.2em;
	color: #004894;
}

.kela .v-label-free-report-extras {
	font-size: 1.2em;
	color: #004894;
}

.kela .v-slot-v-filterselect-freereport.v-slot-usetop {
	border-top: 3px solid #2AAAE6;
	margin-top: 1.5em;
}

.kela .v-caption-custom-filter-selector {
	margin-top: 0px !important;
}

.kela .v-caption-custom-filter-selector .v-captiontext {
	font-size: 1em !important;
	color: #004894;
}

.kela .v-slot-custom-filter-selector .v-caption-on-top {
	padding-top: 0px !important;
}

.kela .v-slot-search-resp-first .v-caption-predefined-report .v-captiontext {
	color: inherit;
}

.kela .v-slot-search-resp-first .v-captiontext {
	font-size: 1em !important;
	color: #004894;
}

.kela .v-slot-search-resp-second .v-caption-predefined-report .v-captiontext {
	color: inherit;
}

.kela .v-slot-search-resp-second .v-captiontext {
	font-size: 1em !important;
	color: #004894;
}

.kela .v-slot-search-resp-second .v-captiontext.predefined-report {
	color: inherit;
}

.kela .v-slot-search-resp-second.v-slot-margin-02 {
	margin-left: 0.2em;
}

.kela .v-button.addFilterButton {
	height: 2.7em;
	width: 2.7em !important;
	font-size: 12px;
	line-height: 12px;
	margin-left: 1em !important;
}

.kela .v-button.addFilterButton .v-has-width {
	width: inherit !important;
}

.kela .v-button.deleteFrameButton {
	height: 2em;
	width: 2em !important;
	font-size: 12px;
	line-height: 12px;
	margin-top: 0em;
	margin-right: 2em;
	margin-left: -2em;
	background-color: #f15b23;
}

.kela .v-button.deleteFrameButton:hover {
	background-color: #f15b23;
}

.kela .v-button.deleteFrameButton .v-has-width {
	width: inherit !important;
}

.kela .v-button.deleteFrameButton.custom-dual-minus {
	margin-left: -13em;
}

.kela .v-horizontallayout-special-time-selector {
	margin-bottom: 1em;
}

.kela .v-horizontallayout-special-time-selector .v-captiontext {
	font-size: 1em !important;
	color: #004894;
}

.kela .v-horizontallayout-special-time-selector .v-button-deleteFrameButton.v-has-width {
	margin-left: -115px;
}

.kela .v-horizontallayout-special-time-selector .v-customcomponent.v-widget.v-has-width {
	width: 69em !important;
}

.kela .v-horizontallayout-special-time-selector .v-caption-left {
	margin-left: 0.4em;
}

.kela .v-horizontallayout-special-time-selector .left {
	margin-left: 0.4em;
}

.kela .v-horizontallayout-special-time-selector .v-caption-top {
	margin-top: 0.95em;
}

.kela .v-slot-predefined-left-column {
	width: 25.8% !important;
}

.kela .v-caption-predefined-target-selector {
	margin-top: 0.8em;
}

.kela .v-slot-predefined-time-period {
	width: 25.8%;
	margin-left: 0.4em;
}

.kela .v-verticallayout-report-progress-bar {
	position: fixed;
	top: 30%;
	left: 40%;
	background-color: red;
	text-align: center;
	width: 200px !important;
	height: 240px !important;
	margin: auto;
	padding-top: 5%;
	background-color: #e3f2f8;
	border: 1px solid #add7eb;
	z-index: 100;
}

.kela .v-verticallayout-report-progress-bar .v-button, .kela .v-verticallayout-report-progress-bar .v-button:hover, .kela .v-verticallayout-report-progress-bar .v-button:after {
	margin-top: 3em;
	background-color: #FF0303;
}

.kela .v-verticallayout-report-progress-bar .v-label {
	text-align: center;
}

.kela .v-grid .v-grid-cell {
	font-size: 12px;
}

.kela .v-grid .v-grid-header .v-grid-cell {
	background: #e3f2f8;
}

.kela .v-grid .v-grid-header .v-grid-cell:hover {
	background: #add7eb;
}

.kela .v-grid .v-grid-column-header-content {
	width: 200px !important;
	padding-right: 1px;
	color: #004894;
	font-weight: bold;
	font-size: 14px;
}

.kela .v-grid .v-grid-sort-indicator {
	width: 19px;
	height: 37px;
	line-height: 37px;
	margin-left: -19px;
	background: transparent;
}

.kela .v-grid .v-grid-sort-indicator:before {
	color: #d8d8d8;
	content: "\f0dc";
	font-family: FontAwesome;
}

.kela .v-grid.clickable-rows .v-label {
	line-height: 38px;
}

.kela .v-grid.clickable-rows .v-label.green, .kela .v-grid.clickable-rows .v-label.yellow, .kela .v-grid.clickable-rows .v-label.red {
	line-height: 1;
	margin: 13px 0 0;
}

.kela .v-treegrid .v-treegrid-cell {
	font-size: 12px;
}

.kela .v-treegrid .v-v-treegrid-header .v-v-treegrid-cell {
	background: #e3f2f8;
}

.kela .v-treegrid .v-v-treegrid-header .v-v-treegrid-cell:hover {
	background: #add7eb;
}

.kela .v-treegrid .v-v-treegrid-column-header-content {
	width: 200px !important;
	padding-right: 1px;
	color: #004894;
	font-weight: bold;
	font-size: 14px;
}

.kela .v-treegrid .v-v-treegrid-sort-indicator {
	width: 19px;
	height: 37px;
	line-height: 37px;
	margin-left: -19px;
	background: transparent;
}

.kela .v-treegrid .v-v-treegrid-sort-indicator:before {
	color: #d8d8d8;
	content: "\f0dc";
	font-family: FontAwesome;
}

.kela .v-treegrid.clickable-rows .v-label {
	line-height: 38px;
}

.kela .v-treegrid.clickable-rows .v-label.green, .kela .v-treegrid.clickable-rows .v-label.yellow, .kela .v-treegrid.clickable-rows .v-label.red {
	line-height: 1;
	margin: 13px 0 0;
}

.kela .v-formlayout.v-has-width > table > tbody {
	display: inline-grid;
}

.kela .v-slot-report-result-table {
	display: inline-grid;
	overflow-y: hidden;
	overflow-x: auto;
}

.kela .v-grid.report-result-table {
	font-family: Calibri;
	font-size: 10pt;
}

.kela .v-grid.report-result-table .v-grid-tablewrapper {
	padding-left: 2px;
	padding-right: 2px;
	width: 100% !important;
	text-align: inherit !important;
}

.kela .v-grid.report-result-table .v-grid-cell {
	background-color: white;
}

.kela .v-grid.report-result-table .v-grid-cell {
	padding-left: 2px;
	padding-right: 2px;
	text-align: inherit !important;
	white-space: pre;
}

.kela .v-grid.report-result-table .v-grid-cell.bold {
	font-weight: bold;
	text-align: left !important;
}

.kela .v-grid.report-result-table .v-grid-cell.normal {
	font-weight: normal;
	text-align: left !important;
}

.kela .v-grid.report-result-table .v-grid-cell.boldnumber {
	font-weight: bold;
	text-align: right !important;
	background-color: #ffffff !important;
}

.kela .v-grid.report-result-table .v-grid-cell.number {
	text-align: right !important;
	background-color: #ffffff !important;
}

.kela .v-grid.report-result-table .v-grid-cell:nth-child(1) {
	border-bottom: 1px solid #add7eb;
	background: #f6fafc;
	height: 30px;
	padding-right: 1em;
}

.kela .v-grid.report-result-table .v-grid-row:nth-of-type(1) .v-grid-cell {
	padding-left: 2px;
	padding-right: 2px;
	border-bottom: 1px solid #add7eb;
	border-right: 1px solid #add7eb;
	background: #f6fafc;
}

.kela .v-grid.report-result-table .v-grid-cell.bold {
	padding-left: 2px;
	padding-right: 2px;
	font-weight: bold;
	background: #f6fafc;
}

.kela .v-grid.report-result-table .v-grid-cell.bluecellleft, .kela .v-grid.report-result-table .v-grid-cell.bluecellright, .kela .v-grid.report-result-table .v-grid-cell.bluecellleftbold {
	padding-left: 2px;
	padding-right: 2px;
	background: #f6fafc !important;
	height: 30px;
}

.kela .v-grid.report-result-table .v-grid-cell.bluecellleft {
	text-align: left !important;
}

.kela .v-grid.report-result-table .v-grid-cell.bluecellright {
	text-align: right !important;
}

.kela .v-grid.report-result-table .v-grid-cell.bluecellleftbold {
	text-align: left !important;
	font-weight: bold;
}

.kela .v-grid.report-result-table .divided_cell {
	text-align: center;
	min-width: 2em;
	height: 100%;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	margin: 0px;
}

.kela .v-grid.report-result-table .divided_cell.left {
	border-right: 1px solid #D4D4D4;
	margin-right: 20px;
}

.kela .v-grid.report-result-table .layout_cell {
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

.kela .v-grid.result-layout .v-grid-header-wrap {
	width: 1215px;
}

.kela .v-grid.result-layout td.v-grid-cell.v-grid-cell.activeCell:hover {
	background: #add7eb;
	color: #004894;
	text-decoration: underline;
}

.kela .v-grid.result-layout td.v-grid-cell.v-grid-cell.activeCell:hover .v-grid-cell:hover {
	cursor: pointer;
	text-decoration: underline;
}

.kela .v-grid.result-layout .v-spacing {
	width: unset;
}

.kela .v-grid.result-layout .v-label.green {
	background-color: #33a532;
	line-height: 1;
	margin: 10px 0;
	margin-top: 1.1em;
	width: auto;
	visibility: inherit;
}

.kela .v-grid.result-layout .v-label.red {
	background-color: #ff0303;
	line-height: 1;
	margin: 10px 0;
	margin-top: 1.1em;
	width: auto;
	visibility: inherit;
}

.kela .v-grid.result-layout .v-label.yellow {
	background-color: #ffbe00;
	line-height: 1;
	margin: 10px 0;
	margin-top: 1.1em;
	width: auto;
	visibility: inherit;
}

.kela .v-grid.result-layout .v-button.v-widget {
	height: 1.6rem;
	margin-top: 0.6em;
	line-height: 1em;
}

.kela .v-grid.result-layout .v-grid-cell {
	width: 130px !important;
	padding-right: 1px;
}

.kela .v-grid.result-layout .v-grid-cell:nth-child(1) {
	width: 350px !important;
	padding-right: 1px;
}

.kela .v-grid.result-layout .v-grid-cell:nth-child(6) {
	width: 319px !important;
	border-right: 1px solid #D4D4D4;
}

.kela .v-grid.result-layout .v-grid-body {
	width: 1215px;
}

.kela .v-grid.clickable-rows-fixed .v-grid-header-wrap {
	width: 1215px;
}

.kela .v-grid.clickable-rows-fixed .v-grid-cell-focused {
	color: #004894;
	visibility: visible;
}

.kela .v-grid.clickable-rows-fixed .v-button.v-widget {
	height: 1.8rem;
	margin-top: 0.4em;
	margin-bottom: 0.4em;
	line-height: 1.2em;
	padding-left: 2em;
	padding-right: 2em;
}

.kela .v-grid.clickable-rows-fixed .v-grid-header-cell:nth-child(1) .v-grid-sort-indicator:before {
	display: none;
}

.kela .v-grid.clickable-rows-fixed .v-grid-header-cell:nth-child(1) .v-grid-sort-indicator:after {
	display: none;
}

.kela .v-grid.clickable-rows-fixed .v-grid-header-cell:nth-child(1) .v-grid-sort-indicator {
	display: none;
}

.kela .v-grid.clickable-rows-fixed .v-grid-cell:nth-child(1) {
	width: 180px !important;
	padding-right: 1px;
}

.kela .v-grid.clickable-rows-fixed .v-grid-cell:nth-child(2) {
	width: 150px !important;
	padding-right: 1px;
}

.kela .v-grid.clickable-rows-fixed .v-grid-cell:nth-child(3) {
	width: 90px !important;
	padding-right: 1px;
}

.kela .v-grid.clickable-rows-fixed .v-grid-cell:nth-child(4) {
	width: 140px !important;
	padding-right: 1px;
}

.kela .v-grid.clickable-rows-fixed .v-grid-cell:nth-child(5) {
	width: 444px !important;
	padding-right: 1px;
}

.kela .v-grid.clickable-rows-fixed .v-grid-cell:nth-child(6) {
	width: 185px !important;
	border-right: 1px solid #D4D4D4;
}

.kela .v-grid.clickable-rows-fixed .v-grid-header-wrap {
	width: 1215px;
}

.kela .v-grid.clickable-rows-fixed .v-grid-body {
	width: 1215px;
}

.kela .v-grid.clickable-rows-noscroll .v-grid-body {
	height: auto !important;
}

.kela .v-grid.search-result-layout .v-grid-header-wrap {
	width: 1215px;
}

.kela .v-grid.search-result-layout .v-grid-body {
	overflow: hidden;
	width: 1215px;
	height: 100% !important;
}

.kela .v-grid.search-result-layout .v-grid-cell-focused {
	color: #004894;
	visibility: visible;
}

.kela .v-grid.search-result-layout .v-button.v-widget {
	margin-left: 0.6em;
	margin-right: 0.6em;
	line-height: 1em;
	height: 1.6rem;
	margin-top: 0.2em;
	margin-bottom: 0.2em;
	padding-left: 1em;
	padding-right: 1em;
	width: 60px;
}

.kela .v-grid.search-result-layout .v-grid-cell-content.normalCell {
	width: 200px !important;
}

.kela .v-grid.search-result-layout .v-grid-cell:nth-child(1) {
	width: 106px !important;
	padding-right: 1px;
}

.kela .v-grid.search-result-layout .v-grid-cell:nth-child(2) {
	width: 200px !important;
}

.kela .v-grid.search-result-layout .v-grid-cell:nth-child(3) {
	width: 200px !important;
}

.kela .v-grid.search-result-layout .v-grid-cell:nth-child(4) {
	width: 200px !important;
}

.kela .v-grid.search-result-layout .v-grid-cell:nth-child(5) {
	width: 200px !important;
}

.kela .v-grid.search-result-layout .v-grid-cell:nth-child(6) {
	width: 306px !important;
	border-right: 1px solid #D4D4D4;
}

.kela .v-grid.search-result-layout .v-grid-cell:nth-child(1) {
	width: 106px !important;
	padding-right: 1px;
}

.kela .v-grid.search-result-layout .v-grid-cell:nth-child(1) .v-grid-sort-indicator:before {
	display: none;
}

.kela .v-grid.search-result-layout .v-grid-cell:nth-child(1) .v-grid-sort-indicator:after {
	display: none;
}

.kela .v-grid.search-result-layout .v-grid-cell:nth-child(1) .v-grid-sort-indicator {
	display: none;
}

.kela .v-grid.search-result-layout .v-grid-header-cell:nth-child(6) {
	width: 307px !important;
	padding-right: 1px;
}

.kela .normalLineBreaks {
	white-space: pre-wrap;
}

.kela .v-datefield-calendarpanel-day-outside-range {
	color: #a0a0a0;
}

.kela .breadcrumbTag {
	text-decoration: none;
}

.kela .LandingPage .LandingPageLinksLayout {
	margin-left: auto;
	margin-right: auto;
	display: table;
}

.kela .LandingPage .v-link.KelaLink {
	border: 1px solid;
	border-radius: 4px;
	margin: 10px;
	text-decoration: none;
	text-align: center;
	padding-left: 20px;
	padding-right: 20px;
	height: 120px;
	width: auto;
}

.kela .LandingPage .v-link.KelaLink a {
	display: table-cell;
	vertical-align: middle;
	height: 120px;
	width: 180px;
}

.kela .LandingPage .v-link.KelaLink:hover {
	text-decoration: underline;
	background-color: #f6fafc;
}

.kela .v-tabsheet-tabs.v-tabsheet-tabs-tabtitle {
	font-family: Arial, sans-serif;
	font-weight: 900;
	text-transform: uppercase;
}

.kela .v-tabsheet-tabcontainer.v-tabsheet-tabcontainer-tabtitle {
	text-align: center;
	background-color: #f5f5f5;
	margin-bottom: 15px;
}

.kela .v-icon {
	padding-bottom: 3px;
}

.kela .v-templateTypes {
	margin-bottom: 0.9em;
	width: 300px;
}

.kela .v-tabsheet-tabitemcell .v-caption {
	text-transform: uppercase;
	font-size: 13px;
	margin-left: 10px;
}

.kela .v-tabsheet-tabcontainer::before {
	border-top: 0px;
}

.kela .v-datefield-calendarpanel-day-outside-range {
	color: #a0a0a0;
}

.kela .v-datefield-calendarpanel-day-outside-range {
	color: #a0a0a0;
}

.kela .v-caption-numeric-title {
	font-family: Arial, "Helvetica Neue", HelveticaNeue, Helvetica, "Lucida Grande", sans-serif;
	line-height: 1.25em;
	color: #2a2a2a;
	width: 275px;
	padding-left: 15px;
	padding-top: 10px;
}

.kela .v-caption-numeric-unit {
	font-family: Arial, "Helvetica Neue", HelveticaNeue, Helvetica, "Lucida Grande", sans-serif;
	line-height: 1.25em;
	color: #2a2a2a;
	width: 50px;
	padding-left: 15px;
	padding-top: 10px;
}

.kela .v-caption-numeric-input {
	font-family: Arial, "Helvetica Neue", HelveticaNeue, Helvetica, "Lucida Grande", sans-serif;
	font-size: 12px;
	width: 150px;
	height: 25px;
	margin-left: 15px;
	margin-right: 10px;
}

.kela .v-label.v-widget.th-title.v-label-th-title {
	font-family: Arial, "Helvetica Neue", HelveticaNeue, Helvetica, "Lucida Grande", sans-serif;
	font-size: 1.125em;
	height: 25px;
	color: #366805;
	width: 275px;
	padding-left: 15px;
	padding-top: 0px;
	font-weight: 600;
	margin-bottom: 10px;
}

.kela .v-label.v-widget.th-input.v-label-th-input {
	font-family: Arial, "Helvetica Neue", HelveticaNeue, Helvetica, "Lucida Grande", sans-serif;
	font-size: 1.125em;
	color: #366805;
	width: 150px;
	height: 25px;
	text-align: left;
	padding-left: 15px;
	padding-top: 0px;
	font-weight: 600;
	margin-bottom: 10px;
}

.kela .v-label.v-widget.th-unit.v-label-th-unit {
	font-family: Arial, "Helvetica Neue", HelveticaNeue, Helvetica, "Lucida Grande", sans-serif;
	font-size: 1.125em;
	color: #366805;
	width: 50px;
	height: 25px;
	margin-right: 10px;
	text-align: left;
	padding-left: 29px;
	padding-top: 0px;
	font-weight: 600;
	margin-bottom: 10px;
}

.kela .v-horizontallayout.v-layout.v-horizontal.v-widget.numeric-layout-row.v-horizontallayout-numeric-layout-row {
	background: #efebe9;
	width: 55%;
	height: 55px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.kela .v-horizontallayout.v-layout.v-horizontal.v-widget.numeric-layout-row-odd.v-horizontallayout-numeric-layout-row-odd {
	background: #f9f7f5;
	width: 55%;
	height: 55px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.kela .v-horizontallayout.v-layout.v-horizontal.v-widget.numeric-layout-row-th.v-horizontallayout-numeric-layout-row-th {
	background: #d5e85d;
	width: 55%;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.kela .v-textfield.v-widget.numeric-input.v-textfield-numeric-input {
	width: 150px;
	height: 25px;
	margin-top: 5px;
}

.kela .v-slot.v-slot-numeric-layout-row-th {
	text-align: center;
}

.kela .v-slot.v-slot-numeric-layout-row-odd {
	text-align: center;
}

.kela .v-slot.v-slot-numeric-layout-row {
	text-align: center;
}

.kela .v-slot.v-slot-numeric-layout-row-bottom {
	width: 53%;
	text-align: center;
	padding-top: 5px;
}

.kela .v-slot.v-slot-time-combo-first {
	margin-right: 10px;
}

.kela .v-filterselect.v-widget.time-combo-first.v-filterselect-time-combo-first {
	width: 70px;
	height: 25px;
	margin-top: 5px;
}

.kela .v-filterselect.v-widget.time-combo.v-filterselect-time-combo {
	width: 70px;
	height: 25px;
	margin-top: 5px;
}

.kela .v-filterselect.v-widget.numeric-unit.v-filterselect-numeric-unit {
	width: 110px !important;
	margin-left: 10px;
	height: 25px;
	margin-top: 5px;
}

.kela .v-tabsheet-tabsheetpanel {
	height: 543px;
}

.kela .v-templateTable {
	margin-top: 10px;
}

.kela .v-templateTable .v-grid {
	-webkit-box-shadow: 0 0 0 0px #ffffff;
	box-shadow: 0 0 0 0px #ffffff;
}

.kela .v-templateTable .v-grid .v-grid-cell {
	border: 0px;
}

.kela .v-slot.v-slot-v-templateTable {
	text-align: left;
}

.kela .v-templateTable .v-grid .v-grid-header {
	background: #ffffff;
}

.kela .v-templateTable .v-grid-header .v-grid-cell {
	width: 100%;
	background: #d5e85d;
	font-size: 14px;
}

.kela .v-templateTable .v-grid-column-header-content {
	font-family: Arial, "Helvetica Neue", HelveticaNeue, Helvetica, "Lucida Grande", sans-serif;
	font-size: 1.125em;
	color: #366805;
	font-weight: 600;
}

.kela .v-templateTable .v-grid-header .v-grid-cell:hover {
	width: 100%;
	background: #d5e85d;
}

.kela .v-templateTable .v-grid-sort-indicator {
	display: none;
}

.kela .v-templateTable [class*="-row"].v-selected {
	background-color: inherit;
	background-image: inherit;
	background-origin: inherit;
	color: inherit;
}

.kela .v-templateTable .v-grid-header-wrap {
	border: none;
	background: none;
	background-image: none;
	background-color: #ffffff;
	width: 100%;
}

.kela .v-templateTable .v-grid-body {
	background: #ffffff;
	width: 100%;
}

.kela .v-templateTable .v-grid-body .v-grid-cell {
	border: none;
}

.kela .v-templateTable .v-grid {
	background: #ffffff;
	width: 100%;
}

.kela .v-templateTable .v-grid-tablewrapper {
	background: #ffffff;
	width: 100%;
	border: none;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.kela .v-templateTable .v-grid td {
	border: 0px;
}

.kela .v-templateTable .v-grid-cell-content {
	border: none;
}

.kela .v-attributeTable {
	width: 70%;
	margin: auto;
}

.kela .v-attributeTable .v-treegrid {
	-webkit-box-shadow: 0 0 0 0px #ffffff;
	box-shadow: 0 0 0 0px #ffffff;
}

.kela .v-attributeTable .v-treegrid .v-treegrid-cell {
	border: 0px;
}

.kela .v-slot.v-slot-v-attributeTable {
	text-align: left;
}

.kela .v-attributeTable .v-treegrid .v-treegrid-header {
	background: #ffffff;
}

.kela .v-attributeTable .v-treegrid-header .v-treegrid-cell {
	width: 100%;
	background: #d5e85d;
	font-size: 14px;
}

.kela .v-attributeTable .v-treegrid-column-header-content {
	font-family: Arial, "Helvetica Neue", HelveticaNeue, Helvetica, "Lucida Grande", sans-serif;
	font-size: 1.125em;
	color: #366805;
	font-weight: 600;
}

.kela .v-attributeTable .v-treegrid-header .v-treegrid-cell:hover {
	width: 100%;
	background: #d5e85d;
}

.kela .v-attributeTable .v-treegrid-cell:nth-child(1) {
	width: 225px !important;
	padding-right: 1px;
}

.kela .v-attributeTable .v-treegrid-cell:nth-child(2) {
	width: 688px !important;
	padding-right: 1px;
}

.kela .v-attributeTable .v-treegrid-cell:nth-child(3) {
	width: 175px !important;
	padding-right: 1px;
}

.kela .v-attributeTable .v-treegrid-cell:nth-child(4) {
	width: 125px !important;
	padding-right: 1px;
}

.kela .v-attributeTable .v-treegrid-sort-indicator {
	display: none;
}

.kela .v-attributeTable [class*="-row"].v-selected {
	background-color: inherit;
	background-image: inherit;
	background-origin: inherit;
	color: inherit;
}

.kela .v-attributeTable .v-treegrid-header-wrap {
	border: none;
	background: none;
	background-image: none;
	background-color: #ffffff;
	width: 100%;
}

.kela .v-attributeTable .v-treegrid-body {
	background: #ffffff;
	width: 100%;
}

.kela .v-attributeTable .v-treegrid-body .v-treegrid-cell {
	border: none;
}

.kela .v-attributeTable .v-treegrid {
	background: #ffffff;
	width: 100%;
}

.kela .v-attributeTable .v-treegrid-tablewrapper {
	background: #ffffff;
	width: 100%;
	border: none;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.kela .v-attributeTable .v-treegrid td {
	border: 0px;
}

.kela .v-attributeTable .v-treegrid-cell-content {
	border: none;
}

.kela .v-slot.v-slot-v-templateTypeNew {
	float: right;
}

.kela .v-horizontallayout.v-layout.v-horizontal.v-widget.v-TemplateTypeTopLine.v-horizontallayout-v-TemplateTypeTopLine {
	width: 100%;
}

.kela .v-button.v-widget.v-buttonDelete.v-button-v-buttonDelete {
	margin-left: 15px;
}

.kela .v-button.v-widget.v-buttonBack.v-button-v-buttonBack {
	margin-left: 155px;
}

.kela .v-slot.v-slot-v-buttonBack-AddForm {
	margin-left: 228px;
}

.kela .v-button.v-widget.v-buttonBack-AddForm.v-button-v-buttonBack-AddForm {
	margin-leftt: 228px;
}

.kela .v-TemplateFormTitle {
	font-family: Arial;
	font-size: 18px;
	color: #004894;
}

.kela .v-caption.v-caption-v-TemplateFormSubTitle {
	font-family: Arial;
	font-size: 16px;
	color: #107cb6;
}

.kela .v-horizontallayout.v-layout.v-horizontal.v-widget.v-buttonline.v-horizontallayout-v-buttonline {
	margin-bottom: 20px;
	margin-top: 10px;
}

.kela .v-Notification.notificationBox.v-Notification-notificationBox {
	border: 3px solid #2AAAE6;
}

.kela .v-Notification.notificationBox.v-Notification-notificationBox.v-Notification h1 ~ p {
	margin-left: 0px;
	font-family: Arial;
	color: #333;
}

.kela .v-Notification.failure h1:before {
	font-family: FontAwesome;
	content: "\f071";
}

.kela .v-Notification.notificationBoxError.v-Notification-notificationBoxError {
	border: 3px solid red;
	margin-top: 150px;
}

.kela .v-Notification.notificationBoxError.v-Notification-notificationBoxError.v-Notification h1 ~ p {
	margin-left: 0px;
	font-family: Arial;
	color: #333;
}

.kela .v-Notification.notificationBoxError {
	margin-top: 200px;
}

.kela .v-slot.v-slot-atne-menubar {
	width: 180px;
	margin-right: 20px;
}

.kela .v-verticallayout.v-layout.v-vertical.v-widget.atne-menubar.v-verticallayout-atne-menubar {
	border-radius: 0.3125em;
	border-top: 2px solid #fff;
	background: #e3f2f8;
}

.kela .v-button.v-widget.atne-menulink.v-button-atne-menulink {
	border: 0px;
	margin-bottom: 10px;
	border-radius: 0px;
	border-top-color: #ffffff;
	border-bottom-color: #ffffff;
	background-color: #e3f2f8;
	background-image: none;
	font-size: 0.9375em;
	font-weight: bold;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	color: #107cb6 !important;
}

.kela .v-button.v-widget.atne-menulink.v-button-atne-menulink:hover, .kela .v-button.v-widget.atne-menulink.v-button-atne-menulink.selected:hover {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
	background-color: #e3f2f8 !important;
	border-color: #e3f2f8 !important;
	color: #004894 !important;
	text-decoration: underline;
}

.kela .v-button.v-widget.atne-menulink.v-button-atne-menulink:hover:after, .kela .v-button.v-widget.atne-menulink.v-button-atne-menulink.selected:hover:after {
	background-color: transparent;
	color: #004894 !important;
}

.kela .v-button.v-widget.atne-menulink.v-button-atne-menulink.selected {
	color: #004894 !important;
	text-decoration: underline;
}

.kela .v-button.v-widget.atne-menulink.v-button-atne-menulink.selected:after {
	background-color: transparent;
	color: #004894 !important;
}

.kela .v-label.v-widget.atne-title.v-label-atne-title.v-has-width {
	font-family: arial;
	font-weight: bold;
	color: #004894;
	line-height: 1em;
	font-size: 14px;
	margin-bottom: 15px;
	margin-top: 5px;
}

.kela .v-button-atne-menulink:active::after {
	background-color: none;
}

.kela .v-textfield.v-widget.atne-ta-area.v-textfield-atne-ta-area {
	width: 300px;
	height: 26px;
}

.kela .v-slot.v-slot-atne-saveButton {
	margin-top: 20px;
}

.kela .v-verticallayout.v-layout.v-vertical.v-widget.v-has-width.atne-main.v-verticallayout-atne-main {
	width: 100%;
	text-align: center;
}

.kela .v-textfield.v-widget.notificationEmailInput.v-textfield-notificationEmailInput {
	width: 250px;
	height: 25px;
	margin-top: 5px;
}

.kela .v-accordion-item-caption {
	color: white;
	font-size: 16px;
	background-color: #029acc;
}

.kela .v-accordion-item-caption:hover {
	background-color: #074d97;
}

.kela .v-accordion-item-caption .v-caption {
	color: white;
	font-size: 16px;
	border-bottom: 0px;
}

.kela .v-accordion {
	border: 0px;
}

.kela .v-slot.v-slot-row-even {
	background-color: white;
}

.kela .v-slot.v-slot-row-even:hover {
	background-color: #074d97;
	color: white;
}

.kela .v-slot.v-slot-row-even .v-slot-report-link, .kela .v-slot.v-slot-row-even .v-slot-report-link:hover {
	background-color: white;
}

.kela .v-horizontallayout-reporting-row-even {
	background-color: white;
}

.kela .v-horizontallayout-reporting-row-even .v-slot-report-name:hover {
	background-color: #074d97;
	color: white;
}

.kela .v-horizontallayout-reporting-row-even .v-slot-link:hover {
	background-color: white;
}

.kela .v-horizontallayout-reporting-row-odd {
	background-color: #f5f5f5;
}

.kela .v-horizontallayout-reporting-row-odd .v-slot-report-name:hover {
	background-color: #074d97;
	color: white;
}

.kela .v-horizontallayout-reporting-row-odd .v-slot-link:hover {
	background-color: #f5f5f5;
}

.kela .v-slot.v-slot-row-odd {
	background-color: #f5f5f5;
}

.kela .v-slot.v-slot-row-odd:hover {
	background-color: #074d97;
	color: white;
}

.kela .v-label.v-widget.row-odd.v-label-row-odd.v-has-width {
	font-family: Arial, sans-serif;
	font-size: 14px;
	padding-left: 5px;
	padding-top: 3px;
	padding-bottom: 3px;
}

.kela .v-label.v-widget.row-even.v-label-row-even.v-has-width {
	font-family: Arial, sans-serif;
	font-size: 14px;
	padding-left: 5px;
	padding-top: 3px;
	padding-bottom: 3px;
}

.kela .v-label.v-widget.no-reports.v-label-no-reports.v-has-width {
	font-family: Arial, sans-serif;
	font-size: 14px;
	padding-left: 5px;
	padding-top: 3px;
	padding-bottom: 3px;
}

.kela .v-label-fb-reporting-description {
	font-family: Arial, sans-serif;
	font-size: 14px;
}

.kela .v-slot.v-slot-ingress.v-slot-fb-ingress {
	width: 75%;
}

.kela .v-slot.v-slot-counter {
	max-width: 42em;
}

.kela .v-caption.v-caption-field-layout-label.v-caption-coloredcaption.v-caption-warn-required {
	color: red;
}

.kela .v-caption.v-caption-coloredcaption.v-caption-warn-required {
	color: red;
}

.kela .v-caption.v-caption-coloredcaption.v-caption-warn-required-caption {
	color: red;
}

.kela .v-label-warn-required-caption {
	color: red;
}

.kela .v-checkbox-warn-required-caption {
	color: red !important;
}

.kela .v-caption-warn-required {
	color: red !important;
}

.kela .v-verticallayout.v-layout.v-vertical.v-widget.v-has-width.field-layout.v-verticallayout-field-layout.warn-required.v-verticallayout-warn-required {
	color: red;
}

.kela .v-caption.v-caption-layout.v-caption-v-layout.v-caption-togglebuttonlayout.v-caption-v-togglebuttonlayout.v-caption-horizontalButtonLayout.v-caption-coloredcaption.v-caption-warn-required-caption {
	color: red;
}

.kela .v-tooltip {
	background-color: rgba(255, 255, 170, 0.9);
}

.kela .v-errorindicator:before {
	content: "";
}

.kela .v-label-email-error {
	color: red;
	margin-top: -1em;
}

.kela .feedback-form .user-data .v-caption {
	color: #004894;
	font-size: 14px;
	font-weight: 400;
}

.kela .feedback-form .field-layout {
	color: #004894;
	font-size: 14px;
	font-weight: 400;
}

.kela .feedback-form .field-layout .v-required-field-indicator {
	display: none;
}

.kela .city-label {
	color: #004894;
	font-size: 14px;
	font-weight: 400;
}

.kela .v-slot-fb-margin {
	margin-bottom: 10px;
}

.kela .v-slot-fb-margin-all {
	margin-bottom: 10px;
	margin-left: 3px;
	margin-top: 2em;
}

.kela .selector-40 {
	width: 40%;
}

.kela .v-slot.v-slot-selector-40 {
	margin-bottom: 1em;
}

.kela .v-textfield.v-widget.selector-40.v-textfield-selector-40 {
	width: 40%;
}

.kela .v-table.v-widget.parameterSelector.v-table-parameterSelector {
	height: 229px;
	margin-top: 2.2em;
	background-color: white;
	background: white;
}

.kela .min-line-height {
	line-height: 1em;
}

.kela .ViewBottomBorder {
	border-bottom: 3px solid #16A2D7;
}

.kela .ViewBottomBorder.padding01 {
	padding-bottom: 1em;
}

.kela .ViewBottomBorder.margintop {
	margin-top: 1em;
	margin-bottom: 1em;
}

.kela .ViewBottomBorder.marginbottom {
	margin-bottom: 1em;
}

.kela .ViewBottomBorderWithMargin {
	border-bottom: 3px solid #16A2D7;
	margin-top: 1.2em;
	margin-bottom: 1.2em;
}

.kela .v-caption-chart-title {
	font-size: 0.8em;
	color: #004894;
	padding-top: 0.2em;
	white-space: normal;
}

.kela .v-label-chart-title {
	color: #004894;
	font-size: 1.3em;
	white-space: normal;
}

.kela .infoSeparator {
	border-bottom: 1px dotted #e3f2f8;
	margin-top: 10px;
}

.kela .v-filterselect-ReportView {
	height: 32px;
	font-size: 12px;
}

.kela .v-slot-v-filterselect-ReportView {
	margin-right: 1em;
}

.kela .v-filterselect-ReportView-right {
	height: 32px;
	font-size: 12px;
}

.kela .v-slot-v-filterselect-ReportView-right {
	margin-right: 0em;
}

.kela .v-verticallayout-width333 {
	width: 33.3333% !important;
}

.kela .v-slot-margin03 {
	margin-left: 0.3em !important;
}

.kela .width98 {
	width: 98.3%;
}

.kela .v-slot-ReportView {
	margin-right: 0.4em;
}

.kela .v-horizontallayout-report-row .v-expand {
	padding-left: 24px !important;
}

.kela .v-horizontallayout-report-row .v-slot-ReportView {
	margin-left: -24px !important;
}

.kela .v-horizontallayout-functional-buttons_layout {
	margin-top: 4em;
	width: 100%;
}

.kela .line-height-tight {
	line-height: 1.3em;
}

.kela .infoSeparator {
	border-bottom: 1px dotted #e3f2f8;
	margin-top: 10px;
}

.kela .v-textarea-infobox {
	margin-bottom: 1em;
	font-size: 0.85em;
	width: 100%;
	line-height: 1.5em;
}

.kela .v-verticallayout-new-info-box {
	width: 100%;
	height: 150px;
	overflow-y: scroll;
	padding: 10px;
	background-color: #d8d8d8;
	border-radius: 10px;
}

.kela .v-verticallayout-too-many-box {
	width: 100% !important;
	border: 2px solid #ff0303;
	border-radius: 10px;
	font-size: 15px;
	margin-bottom: 1.7em;
	padding-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}

.kela .v-verticallayout-too-many-box .v-label {
	line-height: 1.6em !important;
}

.kela .v-label-filterLabel {
	text-decoration: underline;
	font-size: 0.85em !important;
	font-weight: 700;
}

.kela .v-label-filterLabelTitle {
	font-size: 0.85em;
	line-height: 1.5em !important;
	font-weight: 700;
	padding-right: 1em;
}

.kela .v-label-filterLabelText {
	font-size: 0.85em;
	line-height: 1.5em !important;
}

.kela .v-label-specialPaddingTop {
	padding-top: 0.45em;
}

.kela .v-slot-button-margin {
	margin-right: 1em;
	margin-bottom: 1em;
}

.kela .AbstractFeedbackInfoProperty {
	min-width: 100px;
	border-bottom: 1px solid #e3f2f8;
}

.kela .AbstractFeedbackInfoProperty .AbstractFeedbackInfoPropertyCaption {
	font-size: 0.9em;
	line-height: 1.9em;
	padding-left: 5px;
}

.kela .AbstractFeedbackInfoProperty .AbstractFeedbackInfoPropertyCaption:after {
	content: ":";
}

.kela .AbstractFeedbackInfoProperty .AbstractFeedbackInfoPropertyValue {
	line-height: 1.6em;
	white-space: normal;
	font-size: 1em;
}

.kela .alignCaptionRight td.v-formlayout-captioncell {
	text-align: right;
}

.kela .messageContainer {
	border-bottom: 1px dotted #d5d5d5;
}

.kela .messageContainer .time, .kela .messageContainer .user {
	font-size: 14px;
}

.kela .messageContainer span {
	padding-left: 10px;
}

.kela .messageContainer .message {
	display: inline-block;
	line-height: 20px;
}

.kela .messageContainer.odd {
	background-color: #F2FAFF;
}

.kela .messageContainer.even {
	background-color: #FFF;
}

.kela .FeedbackControlling {
	padding-bottom: 20px;
	padding-top: 20px;
	border-top: 3px solid #16A2D7;
	border-bottom: 3px solid #16A2D7;
}

.kela .v-slot-FeedbackControlContent {
	border: 2px solid #16A2D7;
	padding: 20px;
	padding-top: 10px;
	min-height: 350px;
	width: 95% !important;
}

.kela .FeedbackMessagesEditorTabRow .v-button {
	margin-bottom: 2px;
}

.kela .FeedbackMessagesEditorTabRow .v-expand {
	border-bottom: 2px solid #16A2D7;
}

.kela .FeedbackMessagesEditorTabRow .v-expand .v-slot-layout {
	margin-bottom: -2px;
}

.kela .v-required-field-indicator {
	font-weight: bold;
	font-size: 1.3em;
	line-height: 1em;
}

.kela .MessageStateIndicator .messageStates .state {
	background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.15)), color-stop(100%, rgba(255, 255, 255, 0)));
	background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
	background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
	background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
	background-image: linear, top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%;
	padding: 10px 10px 10px 30px;
	background-color: #107cb6;
	color: #FFF;
	position: relative;
	font-weight: bold;
}

.kela .MessageStateIndicator .messageStates .state:after {
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-top: 19px solid transparent;
	border-bottom: 19px solid transparent;
	border-left: 10px solid #107cb6;
	position: absolute;
	top: 50%;
	margin-top: -19px;
	left: 100%;
	z-index: 2;
}

.kela .MessageStateIndicator .messageStates .state:before {
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-top: 19px solid transparent;
	border-bottom: 19px solid transparent;
	border-left: 10px solid white;
	position: absolute;
	top: 50%;
	margin-top: -19px;
	margin-left: 1px;
	left: 100%;
	z-index: 1;
}

.kela .MessageStateIndicator .messageStates .state.activeState {
	background-color: #366805;
	color: #FFF;
	font-weight: bold;
}

.kela .MessageStateIndicator .messageStates .state.activeState:after {
	border-left: 10px solid #366805;
}

.kela .MessageStateIndicator .messageStates .state:first-child {
	padding-left: 10px;
	border-radius: 4px 0 0 4px;
}

.kela .MessageStateIndicator .messageStates .state:last-child {
	border-radius: 0 4px 4px 0;
	padding-right: 20px;
}

.kela .MessageStateIndicator .messageStates .state:last-child:after, .kela .MessageStateIndicator .messageStates .state:last-child:before {
	display: none;
}

.kela .ContactInfo .highlight {
	font-weight: normal;
	background-color: #e3f2f8;
}

.kela .ContactInfo .caption {
	font-size: 14px;
	line-height: 1.5em;
	text-align: left;
}

.kela .ContactInfo .v-slot-contact-row-to-right {
	text-align: right;
}

.kela .ContactInfo .v-horizontallayout-contact-row-to-right {
	width: inherit !important;
}

.kela .preformattedText {
	white-space: pre-wrap;
	line-height: 1.4em;
	padding: 5px;
	word-wrap: break-word;
}

.kela .preformattedText em {
	font-style: normal;
	color: red;
}

.kela .preformattedTextWithTopPadding {
	padding-top: 8px;
	white-space: pre-wrap;
	line-height: 1.4em;
	word-wrap: break-word;
}

.kela .feedbackSummary {
	padding: 10px;
}

.kela .feedbackSummary .sumrow {
	padding-left: 20px;
}

.kela .feedbackSummary .sumrow:after {
	content: " ";
	display: table;
	clear: both;
	width: 100%;
}

.kela .feedbackSummary .column-half {
	float: left;
	width: 50%;
	padding: 0 0px;
	box-sizing: border-box;
}

.kela .feedbackSummary .header {
	border-bottom: 3px solid #16A2D7;
}

.kela .feedbackSummary .locked {
	position: relative;
	left: 200px;
	top: -25px;
}

.kela .feedbackSummary .locked .red {
	background: url("img/lock-16.png") no-repeat left center;
}

.kela .feedbackSummary .locked .user {
	padding-left: 20px;
}

.kela .feedbackSummary h2 {
	border-bottom: 3px solid #16A2D7;
}

.kela .feedbackSummary .footer {
	border-bottom: 3px solid #16A2D7;
	clear: both;
	height: 15px;
}

.kela .feedbackSummary .separator {
	width: 100%;
	height: 3px;
	background-color: #16A2D7;
	border: 0;
}

.kela .feedbackSummary .feedbackText {
	margin-bottom: 20px;
}

.kela .feedbackSummary .feedbackText .v-label {
	font-weight: bold;
	white-space: pre-wrap;
	line-height: 1.5em;
	padding-left: 20px;
	padding-right: 20px;
	overflow-x: auto;
	width: 100%;
}

.kela .feedbackSummary .column {
	width: 50%;
	padding-right: 10px;
	padding-left: 10px;
	box-sizing: border-box;
	min-width: 430px;
	float: left;
	display: block;
}

.kela .feedbackSummary .block {
	margin-bottom: 10px;
}

.kela .feedbackSummary .v-captionwrapper {
	content: " ";
	display: table;
	clear: both;
	width: 100%;
	white-space: normal;
	line-height: 1.8em;
	font-size: 1em;
	padding-bottom: 0.1em;
}

.kela .feedbackSummary .v-captionwrapper .v-caption {
	float: left;
	width: 50%;
	padding: 0 0px;
	box-sizing: border-box;
	white-space: normal;
	line-height: 1.8em;
	font-size: 1em;
}

.kela .feedbackSummary .v-captionwrapper .v-label {
	float: left;
	width: 50%;
	padding: 0 0px;
	box-sizing: border-box;
	white-space: normal;
	line-height: 1.8em;
	font-size: 1em;
}

.kela .feedbackSummary .propertyreward .v-captionwrapper {
	content: " ";
	display: table;
	clear: both;
	width: 100%;
	white-space: normal;
	line-height: 1.8em;
	font-size: 1em;
	padding-bottom: 0.1em;
	padding-left: 20px;
}

.kela .feedbackSummary .propertyreward .v-captionwrapper .v-caption {
	float: left;
	width: 30%;
	padding: 0 0px;
	box-sizing: border-box;
	white-space: normal;
	line-height: 1.8em;
	font-size: 1em;
}

.kela .feedbackSummary .propertyreward .v-captionwrapper .v-label {
	float: left;
	width: 70%;
	padding: 0 0px;
	box-sizing: border-box;
	white-space: normal;
	line-height: 1.8em;
	font-size: 1em;
}

.kela .feedbackSummary .htmlContent {
	line-height: 0em;
	width: 100%;
	margin-left: 20px;
}

.kela .feedbackSummary .htmlContent .messageContainer {
	line-height: 2em;
}

.kela .feedbackSummary .htmlContent .messageContainer .time, .kela .feedbackSummary .htmlContent .messageContainer .user {
	padding-top: 5px;
	display: inline-block;
	vertical-align: top;
	font-weight: bold;
}

.kela .feedbackSummary .htmlContent .messageContainer .message {
	display: block;
	line-height: 1.5em;
	white-space: pre-wrap;
	padding-left: 20px;
}

.kela .feedbackSummary .message {
	line-height: 1.5em;
	padding-left: 20px;
	border-top: 2px solid #e3f2f8;
	box-sizing: border-box;
	clear: both;
}

.kela .feedbackSummary .message:first-child {
	border-top: none;
}

.kela .feedbackSummary .message .property {
	padding: 5px;
}

.kela .feedbackSummary .message .property.highlight {
	background-color: #e3f2f8;
	font-weight: normal;
}

.kela .feedbackSummary .message .property .caption {
	float: left;
	width: 30%;
	padding: 0 0px;
	box-sizing: border-box;
}

.kela .feedbackSummary .message .property .value {
	float: left;
	width: 70%;
	padding: 0 0px;
	box-sizing: border-box;
}

.kela .feedbackSummary .title {
	width: 100%;
}

.kela .feedbackSummary .title .v-label {
	width: 100%;
}

.kela input.hiddenFeedbackUrl {
	position: absolute;
	left: -12000px;
	height: 28px;
}

.kela .borderSeparator {
	border-bottom: 2px solid #16A2D7;
	padding-bottom: 10px;
}

.kela .fakeCaption {
	font-size: 0.9em;
	white-space: nowrap;
	line-height: 2.5em;
}

.kela .trackingDate {
	font-size: 1.3em;
	color: #107cb6;
}

.kela .trafficLight .v-icon {
	font-size: 1.5em;
}

.kela .trafficLight.green {
	color: #33a532;
}

.kela .trafficLight.red {
	color: #ff0303;
}

.kela .trafficLight.yellow {
	color: #ffbe00;
}

.kela .floatingButtonLayout .v-button {
	margin-right: 6px;
	margin-top: 3px;
}

.kela .tableOverflowFix .v-table-body-wrapper {
	overflow-x: hidden !important;
	overflow-y: auto !important;
}

.kela .statementDateDetails {
	font-size: 14px;
}

.kela .statementDetails {
	width: 300px;
}

.kela .statementDetails span {
	line-height: 25px;
	text-align: right;
	display: block;
}

.kela .statementDetails .bypassed {
	font-weight: bold;
}

.kela .statementProperty {
	line-height: 25px;
}

.kela .statementProperty .caption {
	font-weight: bold;
	display: inline-block;
	width: 250px;
}

.kela pre.kelaPreStyle {
	padding: 0;
	border: none;
	background-color: inherit;
	line-height: inherit;
	font-family: inherit;
	font-size: inherit;
	margin: 0;
	word-break: keep-all;
}

.kela textarea.monospaceArea, .kela input.v-textfield.monospaceArea {
	font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
	border: 1px solid rgba(0, 0, 0, 0.15);
	line-height: 20px;
	font-size: 13px;
	background-color: #f5f5f5;
}

.kela textarea.monospaceArea.v-textarea:focus, .kela input.v-textfield.monospaceArea:focus {
	border: 1px solid rgba(0, 0, 0, 0.15);
	box-shadow: none;
}

.kela .linkButton {
	background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.15)), color-stop(100%, rgba(255, 255, 255, 0)));
	background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
	background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
	background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
	background-image: linear, top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%;
	padding: 10px 10px 6px 10px;
	background-color: #029acc;
	color: #FFF;
	position: relative;
	font-weight: bold;
	border-radius: 0.333em;
	text-decoration: none;
	line-height: 1.3em;
	font-size: 0.9em;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.kela .linkButton:hover {
	color: #FFF;
	background-color: #074d97;
}

.kela .redText {
	color: #F00;
	line-height: 1.4em;
	padding-top: 1em;
}

.kela .strong {
	font-weight: bold;
}

.kela .redWarningBorder {
	border: 2px solid red;
	padding: 6px;
	border-radius: 10px;
}

.kela .VaadinBreadcrumb .breadcrumbTag, .kela .VaadinBreadcrumb .v-link-breadcrumbTag {
	margin-right: 10px;
	text-decoration: none;
}

.kela .VaadinBreadcrumb .v-button-link.breadcrumbTag {
	color: #004894;
	padding: 0;
	margin-right: 10px;
	text-decoration: none;
}

.kela .VaadinBreadcrumb .v-button-link.breadcrumbTag:hover {
	text-decoration: underline;
}

.kela .VaadinBreadcrumb .v-button-link.breadcrumbTag:after {
	font-family: FontAwesome;
	content: " \203A";
	position: inherit;
	border: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.kela .VaadinBreadcrumb .v-button-link.breadcrumbTag:focus:after {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
	border: none;
	outline: 0;
}

.kela .VaadinBreadcrumb .v-button-link.breadcrumbTag:last-child:after {
	content: none;
}

.kela .ie .FeedbackProcessingView select, .kela .ie .FeedbackProcessingView option, .kela .ie .FeedbackProcessingView .v-select-select, .kela .ie .FeedbackProcessingView .v-select-select option {
	font-size: 14px !important;
}

@media only screen and (min-width: 532px) {
	.kela .feedback-form input[type="text"], .kela .feedback-form .aui input[type="text"], .kela .feedback-form input[type="password"], .kela .feedback-form .aui input[type="password"], .kela .feedback-form input[type="reset"], .kela .feedback-form .aui input[type="reset"], .kela .feedback-form select, .kela .feedback-form .v-filterselect, .kela .feedback-form .aui .v-filterselect, .kela .feedback-form .v-datefield, .kela .feedback-form .user-data .field-layout {
		max-width: 20em;
	}
	.kela .feedback-form .feedback-form .v-has-caption.v-has-width > .v-widget {
		width: auto !important;
	}
	.kela .feedback-form .responsiveButtonGroup {
		display: block;
	}
}

@media only screen and (min-width: 699px) {
	.kela .feedback-form textarea, .kela .feedback-form .aui textarea, .kela .feedback-form .v-textarea {
		max-width: 42em;
		height: 9em;
	}
	.kela .feedback-form .counter {
		line-height: 1em;
	}
	.kela .feedback-form .responsiveButtonGroup {
		display: block;
	}
}

@media only screen and (max-width: 767px) {
	.kela .field-layout {
		white-space: normal;
	}
	.kela .field-layout > .v-expand {
		padding-left: 0 !important;
	}
	.kela .field-layout > .v-expand > .v-slot {
		width: 100% !important;
		display: block;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.kela .field-layout > .v-expand > .v-slot > input {
		margin-top: 16px;
	}
	.kela .field-layout > .v-expand > .v-slot:first-child > input {
		margin-top: 0;
	}
	.kela .v-filterselect-suggestpopup-v-filterselect-freereport .gwt-MenuItem {
		line-height: 22px;
	}
	.kela .responsiveButtonGroup {
		display: block;
	}
}

@media only screen and (max-width: 531px) {
	.kela .responsiveButtonGroup, .kela .v-togglebutton, .kela .toggleButtons, .kela .v-select {
		width: 100%;
	}
	.kela .v-togglebutton {
		margin-bottom: 10px;
	}
	.kela .v-layout.buttons {
		width: 100%;
	}
	.kela .v-layout.buttons > .v-togglebutton {
		width: 100%;
	}
	.kela .feedback-form .v-has-caption.v-has-width > .v-widget {
		width: 100% !important;
	}
	.kela .v-formlayout.v-has-width > table tr {
		display: block;
	}
	.kela .v-formlayout.v-has-width > table tr td {
		display: block;
	}
	.kela .v-formlayout.v-has-width > table tr .v-formlayout-errorcell, .kela .v-formlayout.v-has-width > table tr .v-formlayout-contentcell {
		padding: 0;
	}
	.kela .v-select-mobile-form {
		width: 17em !important;
	}
	.kela .v-select {
		width: 100% !important;
		max-width: 17em;
	}
	.kela .v-select-select {
		width: 100% !important;
	}
	.kela .responsiveButtonGroup {
		display: block;
	}
	.kela .v-select-optiongroup[role='radiogroup'] span.v-radiobutton {
		display: block;
	}
	.kela .postalFields input[type='text'].city {
		width: 100% !important;
	}
}

@media only screen and (max-width: 587px) {
	.kela .v-togglebutton, .kela .toggleButtons, .kela .v-select {
		display: inline-grid;
	}
	.kela .responsiveButtonGroup {
		display: block;
	}
}