/**
 * 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: "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: 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: 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;
}

@-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: 3px;
	}
		3% {
		width: 91%;
		height: 5px;
	}
		100% {
		width: 96%;
		height: 5px;
	}
	}

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

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

@-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: -30px;
	}
	}

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

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

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

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

@keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -31px;
	}
		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: -30px;
	}
	}

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

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

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

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

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

/**
 *
 * @group table
 */

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

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

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

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

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

@keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -31px;
	}
		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.9.4";
}

.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.2;
}

.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.2;
}

.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.2;
}

.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: 10px;
}

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

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

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

.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;
}

.mytheme.v-app, .mytheme.v-app-loading {
	font: 300 13px/1.2 Verdana, Helvetica, Arial, "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
	color: #691717;
	background-color: #ffcccc;
	cursor: default;
}

.mytheme .v-app-loading {
	width: 100%;
	height: 100%;
	background: #ffcccc;
}

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

.mytheme .v-loading-indicator {
	position: fixed !important;
	z-index: 99999;
	left: 0;
	right: auto;
	top: 0;
	width: 50%;
	opacity: 1;
	height: 3px;
	background-color: #e60000;
	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;
}

.mytheme .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;
}

.mytheme .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 .mytheme .v-loading-indicator-delay {
	width: 50%;
}

.mytheme .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 .mytheme .v-loading-indicator-wait {
	width: 90%;
}

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

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

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

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

.mytheme .v-icon + .v-captiontext, .mytheme .v-icon + span {
	margin-left: 6px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mytheme select {
	font: inherit;
	font-weight: 400;
	line-height: inherit;
	padding: 4px;
	margin: 0;
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	color: #691717;
}

.mytheme select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

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

.mytheme .v-drag-element {
	background: #ffcccc;
	color: #691717;
	-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) ;
}

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

.mytheme .v-tooltip {
	background-color: rgba(92, 0, 0, 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: 4px 8px;
	border-radius: 3px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.mytheme .v-contextmenu {
	padding: 3px 3px;
	border-radius: 4px;
	background-color: #ffd6d6;
	color: #6c1818;
	-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.09787);
	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.09787);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 3px 3px;
}

.mytheme .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;
}

.mytheme .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;
}

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

.mytheme .v-contextmenu .gwt-MenuItem {
	cursor: pointer;
	line-height: 22px;
	padding: 0 16px 0 8px;
	border-radius: 3px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	display: block;
}

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

.mytheme .v-contextmenu .gwt-MenuItem .v-icon {
	max-height: 22px;
	margin-right: 4px;
	min-width: 1em;
}

.mytheme .v-contextmenu .gwt-MenuItem-selected {
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	color: #f9e9e9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.mytheme .v-reconnect-dialog {
	color: white;
	top: 10px;
	right: 10px;
	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: 10px 12px;
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	line-height: 18px;
	text-align: center;
}

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

.mytheme .v-reconnect-dialog .spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(230, 0, 0, 0.2);
	border-top-color: #e60000;
	border-right-color: #e60000;
	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;
}

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

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

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

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

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

.mytheme .v-margin-top {
	padding-top: 30px;
}

.mytheme .v-margin-right {
	padding-right: 30px;
}

.mytheme .v-margin-bottom {
	padding-bottom: 30px;
}

.mytheme .v-margin-left {
	padding-left: 30px;
}

.mytheme .v-spacing {
	width: 10px;
	height: 10px;
}

.mytheme .v-verticallayout-well, .mytheme .v-horizontallayout-well {
	background: #ffc2c2;
	color: #661717;
	-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 #c9a1a1;
}

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

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

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

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

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

.mytheme .v-verticallayout-card, .mytheme .v-horizontallayout-card {
	background: #fee6e6;
	color: #6d1b1b;
	border-radius: 4px;
	border: 1px solid #d9aeae;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

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

.mytheme .v-button {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 30px;
	padding: 0 13px;
	color: #240a0a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

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

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

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

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

.mytheme .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;
}

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

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

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

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

.mytheme .v-button:hover:after {
	background-color: rgba(255, 76, 77, 0.1);
}

.mytheme .v-button:focus:after {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

.mytheme .v-button:active:after {
	background-color: rgba(230, 0, 0, 0.2);
}

.mytheme .v-button-primary {
	height: 30px;
	padding: 0 13px;
	color: #f9e9e9;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #b50000;
	border-top-color: #b70000;
	border-bottom-color: #ac0000;
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	-webkit-box-shadow: inset 0 1px 0 #fd2121, inset 0 -1px 0 #ce0000, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #fd2121, inset 0 -1px 0 #ce0000, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	padding: 0 15px;
	font-weight: bold;
	min-width: 66px;
}

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

.mytheme .v-button-primary:hover:after {
	background-color: rgba(255, 51, 51, 0.1);
}

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

.mytheme .v-button-primary:active:after {
	background-color: rgba(115, 0, 0, 0.2);
}

.mytheme .v-button-friendly {
	height: 30px;
	padding: 0 13px;
	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);
}

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

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

.mytheme .v-button-friendly:focus:after {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

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

.mytheme .v-button-danger {
	height: 30px;
	padding: 0 13px;
	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);
}

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

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

.mytheme .v-button-danger:focus:after {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

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

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

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

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

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

.mytheme .v-button-borderless-colored {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	color: #e60000;
}

.mytheme .v-button-borderless-colored:hover {
	color: #ff1a1a;
}

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

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

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

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

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

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

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

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

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

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

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

.mytheme .v-button-link:hover {
	color: #ff1a1a;
}

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

.mytheme .v-button-tiny {
	height: 23px;
	padding: 0 11px;
	
	
	font-size: 10px;
	
	border-radius: 4px;
}

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

.mytheme .v-button-small {
	height: 26px;
	padding: 0 12px;
	
	
	font-size: 12px;
	
	border-radius: 4px;
}

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

.mytheme .v-button-large {
	height: 36px;
	padding: 0 16px;
	
	
	font-size: 16px;
	
	border-radius: 4px;
}

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

.mytheme .v-button-huge {
	height: 48px;
	padding: 0 21px;
	
	
	font-size: 21px;
	
	border-radius: 4px;
}

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

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

.mytheme .v-button-icon-align-right .v-icon {
	float: right;
	margin-left: 11px;
}

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

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

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

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

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

.mytheme .v-button-icon-only {
	width: 30px;
	padding: 0;
}

.mytheme .v-button-icon-only.v-button-tiny {
	width: 23px;
}

.mytheme .v-button-icon-only.v-button-small {
	width: 26px;
}

.mytheme .v-button-icon-only.v-button-large {
	width: 36px;
}

.mytheme .v-button-icon-only.v-button-huge {
	width: 48px;
}

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

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

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

:root .mytheme .v-checkbox {
	padding-left: 20px;
}

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

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

:root .mytheme .v-checkbox > input:focus ~ label:before {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

:root .mytheme .v-checkbox > input ~ label:before {
	height: 15px;
	padding: 0 7px;
	color: #240a0a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 15px;
}

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

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

:root .mytheme .v-checkbox > input:checked ~ label:after {
	color: #e60000;
}

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

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

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

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

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

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

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

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

.mytheme .v-checkbox-small {
	position: relative;
	line-height: 13px;
	white-space: nowrap;
	font-size: 12px;
}

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

:root .mytheme .v-checkbox-small {
	padding-left: 17px;
}

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

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

:root .mytheme .v-checkbox-small > input:focus ~ label:before {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

:root .mytheme .v-checkbox-small > input ~ label:before {
	height: 13px;
	padding: 0 6px;
	color: #240a0a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 13px;
}

:root .mytheme .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 .mytheme .v-checkbox-small > input:active ~ label:after {
	background-color: rgba(230, 0, 0, 0.2);
}

:root .mytheme .v-checkbox-small > input:checked ~ label:after {
	color: #e60000;
}

.mytheme .v-checkbox-small > .v-icon, .mytheme .v-checkbox-small > label .v-icon {
	margin: 0 4px 0 2px;
	min-width: 1em;
	cursor: pointer;
}

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

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

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

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

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

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

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

.mytheme .v-checkbox-large {
	position: relative;
	line-height: 18px;
	white-space: nowrap;
	font-size: 16px;
}

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

:root .mytheme .v-checkbox-large {
	padding-left: 24px;
}

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

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

:root .mytheme .v-checkbox-large > input:focus ~ label:before {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

:root .mytheme .v-checkbox-large > input ~ label:before {
	height: 18px;
	padding: 0 8px;
	color: #240a0a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 18px;
}

:root .mytheme .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 .mytheme .v-checkbox-large > input:active ~ label:after {
	background-color: rgba(230, 0, 0, 0.2);
}

:root .mytheme .v-checkbox-large > input:checked ~ label:after {
	color: #e60000;
}

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

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

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

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

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

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

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

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

.mytheme .v-filterselect {
	position: relative;
	width: 150px;
	height: 30px;
	border-radius: 4px;
	white-space: nowrap;
}

.mytheme .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: 30px;
	border-radius: 4px;
	padding: 3px 7px;
	border: 1px solid #c9a1a1;
	background: #fff5f5;
	color: #731919;
	-webkit-box-shadow: inset 0 1px 0 #fde7e7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #fde7e7, 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: 31px;
	border-radius: inherit;
}

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

.mytheme .v-filterselect [class*="input"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fde7e7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fde7e7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

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

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

.mytheme .v-filterselect img.v-icon {
	max-height: 30px;
	margin-left: 7px;
}

.mytheme .v-filterselect span.v-icon {
	color: #731919;
	width: 30px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 7px;
}

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

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

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

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

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

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

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

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

.mytheme .v-filterselect.v-readonly [class*="input"] {
	background: #ffcccc;
	color: #691717;
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mytheme .v-filterselect-suggestpopup {
	margin-top: 4px !important;
}

.mytheme .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;
}

.mytheme .v-filterselect-suggestpopup [class$="suggestmenu"] {
	padding: 3px 3px;
	border-radius: 4px;
	background-color: #ffd6d6;
	color: #6c1818;
	-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.09787);
	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.09787);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 3px 3px;
	box-sizing: content-box;
	position: relative;
	z-index: 1;
	display: block;
}

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

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

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

.mytheme .v-filterselect-suggestpopup .gwt-MenuItem .v-icon {
	max-height: 22px;
	margin-right: 4px;
	min-width: 1em;
}

.mytheme .v-filterselect-suggestpopup .gwt-MenuItem-selected {
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	color: #f9e9e9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.mytheme .v-filterselect-suggestpopup [class$="status"] {
	position: absolute;
	right: 4px;
	background: rgba(255, 135, 135, 0.9);
	color: #f9e3e3;
	border-radius: 0 0 4px 4px;
	height: 18px;
	bottom: -18px;
	font-size: 10px;
	line-height: 18px;
	padding: 0 5px;
	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;
}

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

.mytheme .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: 20px;
	height: 20px;
	line-height: 20px;
	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: #691717;
}

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

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

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

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

.mytheme .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);
}

.mytheme .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;
}

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

.mytheme .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;
}

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

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

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

.mytheme .v-filterselect-no-input [class*="input"] {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	cursor: inherit;
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	text-shadow: inherit;
	text-overflow: ellipsis;
	border-radius: inherit;
}

.mytheme .v-filterselect-no-input [class*="input"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

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

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

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

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

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

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

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

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

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

.mytheme .v-filterselect-tiny {
	height: 23px;
	
	font-size: 10px;
}

.mytheme .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: 23px;
	
	padding: 3px 4px;
	
	
	-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: 24px;
	border-radius: inherit;
}

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

.mytheme .v-filterselect-tiny img.v-icon {
	max-height: 23px;
	margin-left: 4px;
}

.mytheme .v-filterselect-tiny span.v-icon {
	
	width: 23px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 4px;
}

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

.mytheme .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: 23px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

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

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

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

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

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

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

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

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

.mytheme .v-filterselect-compact, .mytheme .v-filterselect-small {
	height: 26px;
	
}

.mytheme .v-filterselect-compact [class*="input"], .mytheme .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: 26px;
	
	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: 27px;
	border-radius: inherit;
}

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

.mytheme .v-filterselect-compact img.v-icon, .mytheme .v-filterselect-small img.v-icon {
	max-height: 26px;
	margin-left: 5px;
}

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

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

.mytheme .v-filterselect-compact [class$="button"]:before, .mytheme .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: 26px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

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

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

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

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

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

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

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

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

.mytheme .v-filterselect-small {
	font-size: 12px;
}

.mytheme .v-filterselect-large {
	height: 36px;
	
	font-size: 16px;
}

.mytheme .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: 36px;
	
	padding: 4px 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: 37px;
	border-radius: inherit;
}

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

.mytheme .v-filterselect-large img.v-icon {
	max-height: 36px;
	margin-left: 6px;
}

.mytheme .v-filterselect-large span.v-icon {
	
	width: 36px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 6px;
}

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

.mytheme .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: 36px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

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

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

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

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

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

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

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

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

.mytheme .v-filterselect-huge {
	height: 48px;
	
	font-size: 21px;
}

.mytheme .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: 48px;
	
	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: 49px;
	border-radius: inherit;
}

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

.mytheme .v-filterselect-huge img.v-icon {
	max-height: 48px;
	margin-left: 8px;
}

.mytheme .v-filterselect-huge span.v-icon {
	
	width: 48px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 8px;
}

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

.mytheme .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: 48px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

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

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

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

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

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

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

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

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

.mytheme .v-csslayout-well {
	background: #ffc2c2;
	color: #661717;
	-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 #c9a1a1;
}

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

.mytheme .v-csslayout-well  > .v-margin-top {
	padding-top: 10px;
}

.mytheme .v-csslayout-well  > .v-margin-right {
	padding-right: 10px;
}

.mytheme .v-csslayout-well  > .v-margin-bottom {
	padding-bottom: 10px;
}

.mytheme .v-csslayout-well  > .v-margin-left {
	padding-left: 10px;
}

.mytheme .v-csslayout-card {
	background: #fee6e6;
	color: #6d1b1b;
	border-radius: 4px;
	border: 1px solid #d9aeae;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.mytheme .v-csslayout-card  > .v-margin-top {
	padding-top: 10px;
}

.mytheme .v-csslayout-card  > .v-margin-right {
	padding-right: 10px;
}

.mytheme .v-csslayout-card  > .v-margin-bottom {
	padding-bottom: 10px;
}

.mytheme .v-csslayout-card  > .v-margin-left {
	padding-left: 10px;
}

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

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

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

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

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

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

.mytheme .v-csslayout-v-component-group .v-widget.v-upload:first-child .v-button, .mytheme .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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mytheme .v-formlayout-error-indicator {
	width: 15px;
}

.mytheme .v-formlayout-captioncell {
	vertical-align: top;
	line-height: 29px;
}

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

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

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

.mytheme .v-formlayout-contentcell  > .v-label-h2, .mytheme .v-formlayout-contentcell  > .v-label-h3, .mytheme .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 #e4b6b6;
}

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

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

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

.mytheme .v-formlayout.light  > table > tbody > tr > [class*="captioncell"] {
	color: #c91d1d;
	text-align: right;
	padding-left: 10px;
	line-height: 30px;
}

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

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

.mytheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .mytheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .mytheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input, .mytheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input, .mytheme .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: 30px;
	border-radius: 0;
	padding: 3px 5px;
	
	-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;
}

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

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

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

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

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

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

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

.mytheme .v-formlayout.light .v-richtextarea {
	margin: 4px 0;
}

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

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

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

.mytheme .v-formlayout.light .v-checkbox {
	margin-left: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mytheme .v-grid-row  > td, .mytheme .v-grid-row  > th {
	background-color: #ffd6d6;
}

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

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

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

.mytheme .v-grid-spacer {
	position: absolute;
	display: block;
	background-color: #ffd6d6;
}

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

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

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

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

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

.mytheme .v-grid-tablewrapper {
	border: 1px solid #d4b2b2;
}

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

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

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

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

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

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

.mytheme .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;
}

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

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

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

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

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

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

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

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

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

.mytheme .v-grid-cell {
	background-color: #ffd6d6;
	padding: 0 15px;
	line-height: 30px;
	text-overflow: ellipsis;
}

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

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

.mytheme .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 #d4b2b2;
	position: relative;
	z-index: 11;
}

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

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

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

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

.mytheme .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 #d4b2b2;
	border-left: none;
}

.mytheme .v-grid-row-stripe > td {
	background-color: #ffc3c3;
}

.mytheme .v-grid-row-selected > td {
	background: #e60000;
}

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

.mytheme .v-grid-header th {
	position: relative;
	background-color: #ffcccc;
	font-size: 11px;
	font-weight: inherit;
	border-left: 1px solid #d4b2b2;
	border-bottom: 1px solid #d4b2b2;
	
	text-align: left;
}

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

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

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

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

.mytheme .v-grid-column-resize-handle {
	position: absolute;
	width: 30px;
	right: -15px;
	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;
}

.mytheme .v-grid-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 15px;
	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;
}

.mytheme .v-grid-footer td {
	background-color: #ffcccc;
	font-size: 11px;
	font-weight: inherit;
	border-left: 1px solid #d4b2b2;
	border-top: 1px solid #d4b2b2;
	border-bottom: none;
	
}

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

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

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

.mytheme .v-grid-header-deco {
	border-top: 1px solid #d4b2b2;
	border-right: 1px solid #d4b2b2;
	background-color: #ffcccc;
}

.mytheme .v-grid-footer-deco {
	border-bottom: 1px solid #d4b2b2;
	border-right: 1px solid #d4b2b2;
	background-color: #ffcccc;
}

.mytheme .v-grid-horizontal-scrollbar-deco {
	background-color: #ffcccc;
	border: 1px solid #d4b2b2;
	border-top: none;
}

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

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

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

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

.mytheme .v-grid-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #d4b2b2;
	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);
}

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

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

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

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

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

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

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

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

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

.mytheme .v-grid-editor-cells  > div input[type="checkbox"] {
	margin-left: 15px;
}

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

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

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

.mytheme .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;
}

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

.mytheme .v-grid-editor-footer {
	display: table;
	height: 30px;
	border-top: 1px solid #d4b2b2;
	margin-top: -1px;
	background: #ffd6d6;
	padding: 0 5px;
}

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

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

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

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

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

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

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

.mytheme .v-grid-spacer > td {
	display: block;
	padding: 0;
	background-color: #ffd6d6;
	border-top: 1px solid #eec8c8;
	border-bottom: 1px solid #d4b2b2;
}

.mytheme .v-grid-spacer.stripe > td {
	background-color: #ffc3c3;
	border-top: 1px solid #eeb6b6;
	border-bottom: 1px solid #d4b2b2;
}

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

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

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

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

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

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

.mytheme .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;
}

.mytheme .v-grid-header .v-grid-cell.dragged-column-header {
	margin-top: -15px;
}

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

.mytheme .v-grid-header-deco {
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
}

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

.mytheme .v-grid-row-selected  > .v-grid-cell {
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	color: #f1bfbf;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #b50808;
}

.mytheme .v-grid-row-selected  > .v-grid-cell-focused:before {
	border-color: #ff4c4d;
}

.mytheme .v-grid-editor {
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	border-color: #e60000;
}

.mytheme .v-grid-editor-footer {
	font-size: 12px;
	padding: 0 5px;
	background: #ffcccc;
	-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;
}

.mytheme .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;
}

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

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

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

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

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

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

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

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

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

.mytheme .v-grid-editor-cells > div .v-checkbox {
	margin: 0 8px 0 15px;
}

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

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

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

.mytheme .v-grid-editor-save, .mytheme .v-grid-editor-cancel {
	cursor: pointer;
	color: #e60000;
	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: 5px 5px;
	margin: 0;
	outline: none;
}

.mytheme .v-grid-editor-save:hover, .mytheme .v-grid-editor-cancel:hover {
	color: #ff1a1a;
}

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

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

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

.mytheme .v-grid-sidebar.v-contextmenu.closed {
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
}

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

.mytheme .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;
}

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

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

.mytheme .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;
}

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

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

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

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

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

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

.mytheme .v-grid-row-selected.v-grid-row-drag-center:after {
	border-color: #b30000;
}

.mytheme .v-grid-row-selected.v-grid-row-drag-top:before, .mytheme .v-grid-row-selected.v-grid-row-drag-bottom:after {
	background: #b30000;
}

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

.mytheme .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: 30px;
	border-radius: 4px;
	padding: 3px 7px;
	border: 1px solid #c9a1a1;
	background: #fff5f5;
	color: #731919;
	-webkit-box-shadow: inset 0 1px 0 #fde7e7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #fde7e7, 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: 150px;
}

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

.mytheme .v-textfield:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fde7e7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fde7e7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

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

.mytheme .v-textfield-readonly {
	background: #ffcccc;
	color: #691717;
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

.mytheme .v-textfield-error-critical {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.mytheme .v-textfield-error-system {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.mytheme .v-textfield-borderless {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.mytheme .v-textfield-borderless:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

.mytheme .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: 23px;
	border-radius: 4px;
	padding: 3px 6px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 10px;
}

.mytheme .v-textfield-compact, .mytheme .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: 26px;
	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;
}

.mytheme .v-textfield-small {
	font-size: 12px;
}

.mytheme .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: 36px;
	border-radius: 4px;
	padding: 4px 8px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 16px;
}

.mytheme .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: 48px;
	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: 21px;
}

.mytheme .v-slot-inline-icon {
	position: relative;
}

.mytheme .v-caption-inline-icon {
	padding: 0;
}

.mytheme .v-caption-inline-icon .v-captiontext {
	font-size: 12px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.mytheme .v-caption-inline-icon .v-icon {
	position: absolute;
	z-index: 10;
}

.mytheme .v-caption-inline-icon span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 30px;
	line-height: 28px;
	text-align: center;
	font-size: 13px;
}

.mytheme .v-caption-inline-icon img.v-icon {
	left: 7px;
	bottom: 7px;
}

.mytheme .v-textfield-inline-icon  {
	padding-left: 30px;
}

.mytheme .v-slot-inline-icon.v-slot-tiny {
	position: relative;
}

.mytheme .v-caption-inline-icon.v-caption-tiny {
	padding: 0;
}

.mytheme .v-caption-inline-icon.v-caption-tiny .v-captiontext {
	font-size: 12px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.mytheme .v-caption-inline-icon.v-caption-tiny .v-icon {
	position: absolute;
	z-index: 10;
}

.mytheme .v-caption-inline-icon.v-caption-tiny span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 23px;
	line-height: 21px;
	text-align: center;
	font-size: 10px;
}

.mytheme .v-caption-inline-icon.v-caption-tiny img.v-icon {
	left: 4px;
	bottom: 4px;
}

.mytheme .v-textfield-inline-icon.v-textfield-tiny  {
	padding-left: 23px;
}

.mytheme .v-slot-inline-icon.v-slot-compact {
	position: relative;
}

.mytheme .v-caption-inline-icon.v-caption-compact {
	padding: 0;
}

.mytheme .v-caption-inline-icon.v-caption-compact .v-captiontext {
	font-size: 12px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.mytheme .v-caption-inline-icon.v-caption-compact .v-icon {
	position: absolute;
	z-index: 10;
}

.mytheme .v-caption-inline-icon.v-caption-compact span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 26px;
	line-height: 24px;
	text-align: center;
	font-size: 13px;
}

.mytheme .v-caption-inline-icon.v-caption-compact img.v-icon {
	left: 5px;
	bottom: 5px;
}

.mytheme .v-textfield-inline-icon.v-textfield-compact  {
	padding-left: 26px;
}

.mytheme .v-slot-inline-icon.v-slot-small {
	position: relative;
}

.mytheme .v-caption-inline-icon.v-caption-small {
	padding: 0;
}

.mytheme .v-caption-inline-icon.v-caption-small .v-captiontext {
	font-size: 12px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.mytheme .v-caption-inline-icon.v-caption-small .v-icon {
	position: absolute;
	z-index: 10;
}

.mytheme .v-caption-inline-icon.v-caption-small span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 26px;
	line-height: 24px;
	text-align: center;
	font-size: 12px;
}

.mytheme .v-caption-inline-icon.v-caption-small img.v-icon {
	left: 5px;
	bottom: 5px;
}

.mytheme .v-textfield-inline-icon.v-textfield-small  {
	padding-left: 26px;
}

.mytheme .v-slot-inline-icon.v-slot-large {
	position: relative;
}

.mytheme .v-caption-inline-icon.v-caption-large {
	padding: 0;
}

.mytheme .v-caption-inline-icon.v-caption-large .v-captiontext {
	font-size: 12px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.mytheme .v-caption-inline-icon.v-caption-large .v-icon {
	position: absolute;
	z-index: 10;
}

.mytheme .v-caption-inline-icon.v-caption-large span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 36px;
	line-height: 34px;
	text-align: center;
	font-size: 16px;
}

.mytheme .v-caption-inline-icon.v-caption-large img.v-icon {
	left: 10px;
	bottom: 10px;
}

.mytheme .v-textfield-inline-icon.v-textfield-large  {
	padding-left: 36px;
}

.mytheme .v-slot-inline-icon.v-slot-huge {
	position: relative;
}

.mytheme .v-caption-inline-icon.v-caption-huge {
	padding: 0;
}

.mytheme .v-caption-inline-icon.v-caption-huge .v-captiontext {
	font-size: 12px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
	margin: 0;
}

.mytheme .v-caption-inline-icon.v-caption-huge .v-icon {
	position: absolute;
	z-index: 10;
}

.mytheme .v-caption-inline-icon.v-caption-huge span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 48px;
	line-height: 46px;
	text-align: center;
	font-size: 21px;
}

.mytheme .v-caption-inline-icon.v-caption-huge img.v-icon {
	left: 16px;
	bottom: 16px;
}

.mytheme .v-textfield-inline-icon.v-textfield-huge  {
	padding-left: 48px;
}

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

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

.mytheme .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: 30px;
	border-radius: 4px;
	padding: 5px;
	border: 1px solid #c9a1a1;
	background: #fff5f5;
	color: #731919;
	-webkit-box-shadow: inset 0 1px 0 #fde7e7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #fde7e7, 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: 150px;
}

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

.mytheme .v-textarea:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fde7e7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fde7e7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

.mytheme .v-textarea[class*="prompt"] {
	color: #cb7575;
}

.mytheme .v-textarea-readonly {
	background: #ffcccc;
	color: #691717;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mytheme .v-textarea-readonly:focus {
	box-shadow: none;
	border-color: #c9a1a1;
}

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

.mytheme .v-textarea-borderless {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.mytheme .v-textarea-borderless:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

.mytheme .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: 23px;
	border-radius: 4px;
	padding: 5px;
	
	
	
	-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: 10px;
}

.mytheme .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: 26px;
	border-radius: 4px;
	padding: 5px;
	
	
	
	-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;
}

.mytheme .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: 36px;
	border-radius: 4px;
	padding: 5px;
	
	
	
	-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: 16px;
}

.mytheme .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: 48px;
	border-radius: 4px;
	padding: 5px;
	
	
	
	-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: 21px;
}

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

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

.mytheme .v-datefield {
	position: relative;
	width: 150px;
	height: 30px;
	border-radius: 4px;
}

.mytheme .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: 30px;
	border-radius: 4px;
	padding: 3px 7px;
	border: 1px solid #c9a1a1;
	background: #fff5f5;
	color: #731919;
	-webkit-box-shadow: inset 0 1px 0 #fde7e7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #fde7e7, 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: 36px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.mytheme .v-datefield [class*="textfield"].v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mytheme .v-datefield [class*="textfield"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fde7e7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fde7e7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

.mytheme .v-datefield [class*="textfield"][class*="prompt"] {
	color: #cb7575;
}

.mytheme .v-datefield[class*="prompt"] > [class*="textfield"] {
	color: #cb7575;
}

.mytheme .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: 30px;
	line-height: 28px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	top: 1px;
	bottom: 1px;
	left: 1px;
	border: none;
	border-right: 1px solid #e4dbdb;
	color: #b98787;
	border-radius: 3px 0 0 3px;
}

.mytheme .v-datefield [class*="button"]:hover {
	color: #731919;
}

.mytheme .v-datefield [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

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

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

.mytheme .v-datefield.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mytheme .v-datefield.v-disabled [class*="button"]:active:after {
	display: none;
}

.mytheme .v-datefield.v-readonly [class*="textfield"] {
	background: #ffcccc;
	color: #691717;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mytheme .v-datefield.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c9a1a1;
}

.mytheme .v-datefield.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mytheme .v-datefield.v-readonly [class*="button"]:active:after {
	display: none;
}

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

.mytheme .v-datefield-error .v-datefield-button {
	color: #ed473b;
	border-color: #ed473b;
}

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

.mytheme .v-datefield-error-info .v-datefield-button {
	color: #00a7f5;
	border-color: #00a7f5;
}

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

.mytheme .v-datefield-error-warning .v-datefield-button {
	color: #fc9c00;
	border-color: #fc9c00;
}

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

.mytheme .v-datefield-error-error .v-datefield-button {
	color: #ed473b;
	border-color: #ed473b;
}

.mytheme .v-datefield-error-critical .v-datefield-textfield {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.mytheme .v-datefield-error-critical .v-datefield-button {
	color: #fa007d;
	border-color: #fa007d;
}

.mytheme .v-datefield-error-system .v-datefield-textfield {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.mytheme .v-datefield-error-system .v-datefield-button {
	color: #bb00ff;
	border-color: #bb00ff;
}

.mytheme .v-datefield-full {
	width: 195px;
}

.mytheme .v-datefield-day {
	width: 150px;
}

.mytheme .v-datefield-month {
	width: 98px;
}

.mytheme .v-datefield-year {
	width: 85px;
}

.mytheme .v-datefield-popup {
	padding: 3px 3px;
	border-radius: 4px;
	background-color: #ffd6d6;
	color: #6c1818;
	-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.09787);
	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.09787);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	margin-top: 4px !important;
	margin-bottom: 4px !important;
	margin-right: 4px !important;
	cursor: default;
	width: auto;
}

.mytheme .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;
}

.mytheme .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;
}

.mytheme .v-datefield-popup table {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 auto;
}

.mytheme .v-datefield-popup td {
	padding: 2px;
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel {
	font-size: 13px;
	text-align: center;
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel:focus {
	outline: none;
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 24px;
	height: 21px;
	border: 1px solid transparent;
	line-height: 21px;
	text-align: center;
	font-size: 12px;
	background: #ffcccc;
	border-radius: 2px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel-day:hover {
	color: #e60000;
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel-day-offmonth {
	color: #b47171;
	background: transparent;
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel-day-today {
	color: #240a0a;
	font-weight: 600;
	border-color: #f15050;
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .mytheme .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #f1bfbf;
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	border: none;
	font-weight: 600;
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	position: relative;
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .mytheme .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
	color: #b47171;
	cursor: not-allowed;
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel-weekdays {
	height: 21px;
	color: rgba(157, 86, 86, 0.85);
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 12px;
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel-header {
	white-space: nowrap;
}

.mytheme .v-datefield-popup td[class*="year"] button, .mytheme .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: 15px;
	height: 20px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.mytheme .v-datefield-popup td[class*="year"] button:before, .mytheme .v-datefield-popup td[class*="month"] button:before {
	color: #b47171;
	font-size: 17px;
	line-height: 20px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

.mytheme .v-datefield-popup td[class*="year"] button:hover:before, .mytheme .v-datefield-popup td[class*="month"] button:hover:before {
	color: #e60000;
}

.mytheme .v-datefield-popup td[class*="year"] button.outside-range, .mytheme .v-datefield-popup td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.mytheme .v-datefield-popup td[class*="year"] button.outside-range:hover:before, .mytheme .v-datefield-popup td[class*="month"] button.outside-range:hover:before {
	color: #b47171;
}

.mytheme .v-datefield-popup .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.mytheme .v-datefield-popup .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.mytheme .v-datefield-popup .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.mytheme .v-datefield-popup .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.mytheme .v-datefield-popup td.v-datefield-calendarpanel-month {
	width: 120px;
	cursor: default;
	color: #e60000;
}

.mytheme .v-datefield-popup td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 60px;
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel-weeknumber, .mytheme .v-datefield-popup .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
	width: 24px;
	color: rgba(157, 86, 86, 0.85);
	font-size: 12px;
	display: inline-block;
	text-align: left;
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel-weeknumber {
	position: relative;
}

.mytheme .v-datefield-popup .v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 30px;
	bottom: 0;
	left: 0;
	width: 27px;
	border-top: 1px solid #eebfbf;
	border-right: 1px solid #eebfbf;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	background: #ffcccc;
}

.mytheme .v-datefield-popup td.v-datefield-calendarpanel-time {
	width: 100%;
	font-size: 12px;
}

.mytheme .v-datefield-popup td.v-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.mytheme .v-datefield-calendarpanel {
	font-size: 13px;
	text-align: center;
}

.mytheme .v-datefield-calendarpanel:focus {
	outline: none;
}

.mytheme .v-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 24px;
	height: 21px;
	border: 1px solid transparent;
	line-height: 21px;
	text-align: center;
	font-size: 12px;
	background: #ffcccc;
	border-radius: 2px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.mytheme .v-datefield-calendarpanel-day:hover {
	color: #e60000;
}

.mytheme .v-datefield-calendarpanel-day-offmonth {
	color: #b47171;
	background: transparent;
}

.mytheme .v-datefield-calendarpanel-day-today {
	color: #240a0a;
	font-weight: 600;
	border-color: #f15050;
}

.mytheme .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .mytheme .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #f1bfbf;
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	border: none;
	font-weight: 600;
}

.mytheme .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	position: relative;
}

.mytheme .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .mytheme .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
	color: #b47171;
	cursor: not-allowed;
}

.mytheme .v-datefield-calendarpanel-weekdays {
	height: 21px;
	color: rgba(157, 86, 86, 0.85);
}

.mytheme .v-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 12px;
}

.mytheme .v-datefield-calendarpanel-header {
	white-space: nowrap;
}

.mytheme td[class*="year"] button, .mytheme 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: 15px;
	height: 20px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.mytheme td[class*="year"] button:before, .mytheme td[class*="month"] button:before {
	color: #b47171;
	font-size: 17px;
	line-height: 20px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

.mytheme td[class*="year"] button:hover:before, .mytheme td[class*="month"] button:hover:before {
	color: #e60000;
}

.mytheme td[class*="year"] button.outside-range, .mytheme td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.mytheme td[class*="year"] button.outside-range:hover:before, .mytheme td[class*="month"] button.outside-range:hover:before {
	color: #b47171;
}

.mytheme .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.mytheme .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.mytheme .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.mytheme .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.mytheme td.v-datefield-calendarpanel-month {
	width: 120px;
	cursor: default;
	color: #e60000;
}

.mytheme td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.mytheme .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 60px;
}

.mytheme .v-datefield-calendarpanel-weeknumber, .mytheme .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
	width: 24px;
	color: rgba(157, 86, 86, 0.85);
	font-size: 12px;
	display: inline-block;
	text-align: left;
}

.mytheme .v-datefield-calendarpanel-weeknumber {
	position: relative;
}

.mytheme .v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 30px;
	bottom: 0;
	left: 0;
	width: 27px;
	border-top: 1px solid #eebfbf;
	border-right: 1px solid #eebfbf;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	background: #ffcccc;
}

.mytheme td.v-datefield-calendarpanel-time {
	width: 100%;
	font-size: 12px;
}

.mytheme td.v-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.mytheme .v-datefield-borderless .v-datefield-textfield {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.mytheme .v-datefield-borderless .v-datefield-textfield:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

.mytheme .v-datefield-align-right input {
	text-align: right;
}

.mytheme .v-datefield-align-center input {
	text-align: center;
}

.mytheme .v-datefield-tiny {
	height: 23px;
	border-radius: 4px;
	font-size: 10px;
}

.mytheme .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: 23px;
	border-radius: 4px;
	padding: 3px 6px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 27.6px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.mytheme .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: 23px;
	line-height: 23px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

.mytheme .v-datefield-tiny [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

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

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

.mytheme .v-datefield-tiny.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mytheme .v-datefield-tiny.v-disabled [class*="button"]:active:after {
	display: none;
}

.mytheme .v-datefield-tiny.v-readonly [class*="textfield"] {
	background: #ffcccc;
	color: #691717;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mytheme .v-datefield-tiny.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c9a1a1;
}

.mytheme .v-datefield-tiny.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mytheme .v-datefield-tiny.v-readonly [class*="button"]:active:after {
	display: none;
}

.mytheme .v-datefield-compact, .mytheme .v-datefield-small {
	height: 26px;
	border-radius: 4px;
}

.mytheme .v-datefield-compact [class*="textfield"], .mytheme .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: 26px;
	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: 31.2px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.mytheme .v-datefield-compact [class*="button"], .mytheme .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: 26px;
	line-height: 26px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

.mytheme .v-datefield-compact [class*="button"]:before, .mytheme .v-datefield-small [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

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

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

.mytheme .v-datefield-compact.v-disabled [class*="button"], .mytheme .v-datefield-small.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mytheme .v-datefield-compact.v-disabled [class*="button"]:active:after, .mytheme .v-datefield-small.v-disabled [class*="button"]:active:after {
	display: none;
}

.mytheme .v-datefield-compact.v-readonly [class*="textfield"], .mytheme .v-datefield-small.v-readonly [class*="textfield"] {
	background: #ffcccc;
	color: #691717;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mytheme .v-datefield-compact.v-readonly [class*="textfield"]:focus, .mytheme .v-datefield-small.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c9a1a1;
}

.mytheme .v-datefield-compact.v-readonly [class*="button"], .mytheme .v-datefield-small.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mytheme .v-datefield-compact.v-readonly [class*="button"]:active:after, .mytheme .v-datefield-small.v-readonly [class*="button"]:active:after {
	display: none;
}

.mytheme .v-datefield-small {
	font-size: 12px;
}

.mytheme .v-datefield-large {
	height: 36px;
	border-radius: 4px;
	font-size: 16px;
}

.mytheme .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: 36px;
	border-radius: 4px;
	padding: 4px 8px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 43.2px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.mytheme .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: 36px;
	line-height: 36px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

.mytheme .v-datefield-large [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

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

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

.mytheme .v-datefield-large.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mytheme .v-datefield-large.v-disabled [class*="button"]:active:after {
	display: none;
}

.mytheme .v-datefield-large.v-readonly [class*="textfield"] {
	background: #ffcccc;
	color: #691717;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mytheme .v-datefield-large.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c9a1a1;
}

.mytheme .v-datefield-large.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mytheme .v-datefield-large.v-readonly [class*="button"]:active:after {
	display: none;
}

.mytheme .v-datefield-huge {
	height: 48px;
	border-radius: 4px;
	font-size: 21px;
}

.mytheme .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: 48px;
	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: 57.6px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.mytheme .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: 48px;
	line-height: 48px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

.mytheme .v-datefield-huge [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

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

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

.mytheme .v-datefield-huge.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mytheme .v-datefield-huge.v-disabled [class*="button"]:active:after {
	display: none;
}

.mytheme .v-datefield-huge.v-readonly [class*="textfield"] {
	background: #ffcccc;
	color: #691717;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mytheme .v-datefield-huge.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c9a1a1;
}

.mytheme .v-datefield-huge.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mytheme .v-datefield-huge.v-readonly [class*="button"]:active:after {
	display: none;
}

.mytheme .v-inline-datefield-calendarpanel {
	font-size: 13px;
	text-align: center;
}

.mytheme .v-inline-datefield-calendarpanel:focus {
	outline: none;
}

.mytheme .v-inline-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 24px;
	height: 21px;
	border: 1px solid transparent;
	line-height: 21px;
	text-align: center;
	font-size: 12px;
	background: #ffcccc;
	border-radius: 2px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.mytheme .v-inline-datefield-calendarpanel-day:hover {
	color: #e60000;
}

.mytheme .v-inline-datefield-calendarpanel-day-offmonth {
	color: #b47171;
	background: transparent;
}

.mytheme .v-inline-datefield-calendarpanel-day-today {
	color: #240a0a;
	font-weight: 600;
	border-color: #f15050;
}

.mytheme .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected, .mytheme .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected:hover {
	color: #f1bfbf;
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	border: none;
	font-weight: 600;
}

.mytheme .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	position: relative;
}

.mytheme .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range, .mytheme .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range:hover {
	color: #b47171;
	cursor: not-allowed;
}

.mytheme .v-inline-datefield-calendarpanel-weekdays {
	height: 21px;
	color: rgba(157, 86, 86, 0.85);
}

.mytheme .v-inline-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 12px;
}

.mytheme .v-inline-datefield-calendarpanel-header {
	white-space: nowrap;
}

.mytheme td[class*="year"] button, .mytheme 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: 15px;
	height: 20px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.mytheme td[class*="year"] button:before, .mytheme td[class*="month"] button:before {
	color: #b47171;
	font-size: 17px;
	line-height: 20px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

.mytheme td[class*="year"] button:hover:before, .mytheme td[class*="month"] button:hover:before {
	color: #e60000;
}

.mytheme td[class*="year"] button.outside-range, .mytheme td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.mytheme td[class*="year"] button.outside-range:hover:before, .mytheme td[class*="month"] button.outside-range:hover:before {
	color: #b47171;
}

.mytheme .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.mytheme .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.mytheme .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.mytheme .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.mytheme td.v-inline-datefield-calendarpanel-month {
	width: 120px;
	cursor: default;
	color: #e60000;
}

.mytheme td.v-inline-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.mytheme .v-inline-datefield-calendarpanel-year td.v-inline-datefield-calendarpanel-month {
	width: 60px;
}

.mytheme .v-inline-datefield-calendarpanel-weeknumber, .mytheme .v-inline-datefield-calendarpanel-weekdays.v-inline-datefield-calendarpanel-weeknumbers td:first-child {
	width: 24px;
	color: rgba(157, 86, 86, 0.85);
	font-size: 12px;
	display: inline-block;
	text-align: left;
}

.mytheme .v-inline-datefield-calendarpanel-weeknumber {
	position: relative;
}

.mytheme .v-inline-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 30px;
	bottom: 0;
	left: 0;
	width: 27px;
	border-top: 1px solid #eebfbf;
	border-right: 1px solid #eebfbf;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	background: #ffcccc;
}

.mytheme td.v-inline-datefield-calendarpanel-time {
	width: 100%;
	font-size: 12px;
}

.mytheme td.v-inline-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.mytheme .v-inline-datefield-calendarpanel {
	position: relative;
	background: #ffd6d6;
	padding: 5px;
}

.mytheme .v-gridlayout-margin-top {
	padding-top: 30px;
}

.mytheme .v-gridlayout-margin-bottom {
	padding-bottom: 30px;
}

.mytheme .v-gridlayout-margin-left {
	padding-left: 30px;
}

.mytheme .v-gridlayout-margin-right {
	padding-right: 30px;
}

.mytheme .v-gridlayout-spacing-on {
	padding-left: 10px;
	padding-top: 10px;
}

.mytheme .v-menubar {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 30px;
	padding: 0 13px;
	color: #240a0a;
	font-weight: 400;
	
	cursor: default;
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 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: 28px;
}

.mytheme .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;
}

.mytheme .v-menubar:focus:after {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

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

.mytheme .v-menubar.v-disabled:after {
	display: none;
}

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

.mytheme .v-menubar:focus:after {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

.mytheme .v-menubar  > .v-menubar-menuitem {
	padding: 0 12px;
}

.mytheme .v-menubar  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 30px;
}

.mytheme .v-menubar:active:after {
	background: transparent;
}

.mytheme .v-menubar > .v-menubar-menuitem {
	position: relative;
	z-index: 1;
	display: inline-block;
	box-sizing: border-box;
	height: 30px;
	padding: 0 12px;
	color: inherit;
	font-weight: 400;
	
	cursor: pointer;
	border-radius: 0;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5;
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5;
	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;
}

.mytheme .v-menubar > .v-menubar-menuitem:first-child {
	border-left-width: 0;
	border-radius: 3px 0 0 3px;
}

.mytheme .v-menubar > .v-menubar-menuitem:last-child {
	border-radius: 0 3px 3px 0;
	border-right-width: 0;
}

.mytheme .v-menubar > .v-menubar-menuitem:first-child:last-child {
	border-radius: 3px;
}

.mytheme .v-menubar > .v-menubar-menuitem:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.mytheme .v-menubar > .v-menubar-menuitem:hover {
	zoom: 1;
}

.mytheme .v-menubar > .v-menubar-menuitem:hover:before {
	background-color: rgba(255, 76, 77, 0.1);
	border: none;
}

.mytheme .v-menubar > .v-menubar-menuitem:active:before {
	background-color: rgba(230, 0, 0, 0.2);
}

.mytheme .v-menubar > .v-menubar-menuitem .v-icon {
	margin: 0 3px 0 -3px;
	cursor: inherit;
}

.mytheme .v-menubar > .v-menubar-menuitem[class*="-icon-only"] {
	width: 30px;
	padding: 0;
}

.mytheme .v-menubar > .v-menubar-menuitem[class*="-icon-only"] .v-icon {
	margin: 0;
}

.mytheme .v-menubar > .v-menubar-menuitem-checked {
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #fdb7b7;
	background-image: -webkit-linear-gradient(bottom, #fdb8b8 2%, #f9b3b3 98%);
	background-image: linear-gradient(to top,#fdb8b8 2%, #f9b3b3 98%);
	color: #210a0a;
}

.mytheme .v-disabled > .v-menubar-menuitem, .mytheme .v-menubar > .v-menubar-menuitem-disabled {
	cursor: default;
}

.mytheme .v-disabled > .v-menubar-menuitem:before, .mytheme .v-menubar > .v-menubar-menuitem-disabled:before {
	display: none;
}

.mytheme .v-menubar-menuitem-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mytheme .v-menubar > .v-menubar-menuitem-selected {
	color: #f9e9e9;
	
	
	
	border-radius: 0;
	border: 1px solid #b50000;
	border-top-color: #b70000;
	border-bottom-color: #ac0000;
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	-webkit-box-shadow: inset 0 1px 0 #fd2121, inset 0 -1px 0 #ce0000;
	box-shadow: inset 0 1px 0 #fd2121, inset 0 -1px 0 #ce0000;
	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;
}

.mytheme .v-menubar > .v-menubar-menuitem-selected:hover:before {
	background: none;
}

.mytheme .v-menubar .v-menubar-submenu-indicator {
	display: none;
}

.mytheme .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;
}

.mytheme .v-menubar .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:empty:after {
	margin-left: -0.2em;
}

.mytheme .v-menubar-popup {
	padding: 3px 3px;
	border-radius: 4px;
	background-color: #ffd6d6;
	color: #6c1818;
	-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.09787);
	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.09787);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 3px 3px;
	margin: 4px 0 0 1px !important;
}

.mytheme .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;
}

.mytheme .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;
}

.mytheme .v-menubar-popup .v-menubar-submenu {
	outline: none;
}

.mytheme .v-menubar-popup .v-menubar-menuitem {
	display: block;
	cursor: pointer;
	line-height: 22px;
	padding: 0 16px 0 8px;
	border-radius: 3px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	padding-left: 26px;
	padding-right: 30px;
	position: relative;
}

.mytheme .v-menubar-popup .v-menubar-menuitem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #a10000;
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.mytheme .v-menubar-popup .v-menubar-menuitem .v-icon {
	max-height: 22px;
	margin-right: 4px;
	min-width: 1em;
}

.mytheme .v-menubar-popup .v-menubar-submenu-indicator {
	display: none;
}

.mytheme .v-menubar-popup .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:after {
	position: absolute;
	right: 8px;
	font-family: ThemeIcons;
	content: "\f054";
	line-height: 24px;
}

.mytheme .v-menubar-popup .v-menubar-menuitem-selected {
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	color: #f9e9e9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.mytheme .v-menubar-popup .v-menubar-separator {
	display: block;
	margin: 3px 0;
	height: 0;
	overflow: hidden;
	border-bottom: 1px solid #e4bfbf;
}

.mytheme .v-menubar-popup [class*="checked"] .v-menubar-menuitem-caption:before {
	content: "\f00c";
	font-family: ThemeIcons;
	position: absolute;
	left: 8px;
}

.mytheme .v-menubar-popup [class*="unchecked"] .v-menubar-menuitem-caption:before {
	content: "";
}

.mytheme .v-menubar-popup [class*="disabled"] {
	cursor: default;
}

.mytheme .v-menubar-small {
	height: 26px;
	padding: 0 12px;
	
	font-weight: 400;
	
	cursor: default;
	border-radius: 4px;
	padding: 0;
	text-align: left;
	line-height: 24px;
	font-size: 12px;
}

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

.mytheme .v-menubar-small  > .v-menubar-menuitem {
	padding: 0 10px;
}

.mytheme .v-menubar-small  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 26px;
}

.mytheme .v-menubar-borderless {
	border: none;
	border-radius: 0;
	padding: 1px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background: transparent;
	color: inherit;
}

.mytheme .v-menubar-borderless:focus:after {
	display: none;
}

.mytheme .v-menubar-borderless .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 4px;
	color: #e60000;
	padding: 0 10px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.mytheme .v-menubar-borderless .v-menubar-menuitem:first-child, .mytheme .v-menubar-borderless .v-menubar-menuitem:last-child, .mytheme .v-menubar-borderless .v-menubar-menuitem:first-child:last-child {
	border-radius: 4px;
}

.mytheme .v-menubar-borderless .v-menubar-menuitem:before {
	content: none;
}

.mytheme .v-menubar-borderless .v-menubar-menuitem:hover {
	color: #ff1a1a;
}

.mytheme .v-menubar-borderless .v-menubar-menuitem:active {
	color: inherit;
}

.mytheme .v-menubar-borderless .v-menubar-menuitem-checked, .mytheme .v-menubar-borderless .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c9a1a1;
	color: #e60000;
}

.mytheme .v-menubar-borderless .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .mytheme .v-menubar-borderless .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.mytheme .v-menubar-borderless .v-menubar-menuitem-selected {
	color: #f9e9e9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.mytheme .v-menubar-borderless .v-menubar-menuitem-selected:hover {
	color: #f9e9e9;
}

.mytheme .v-menubar-borderless .v-menubar-menuitem-disabled, .mytheme .v-menubar-borderless .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.mytheme .v-radiobutton {
	position: relative;
	line-height: 15px;
	white-space: nowrap;
}

.mytheme .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .mytheme .v-radiobutton {
	padding-left: 20px;
}

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

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

:root .mytheme .v-radiobutton > input:focus ~ label:before {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

:root .mytheme .v-radiobutton > input ~ label:before {
	height: 15px;
	padding: 0 7px;
	color: #240a0a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 15px;
}

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

:root .mytheme .v-radiobutton > input:active ~ label:after {
	background-color: rgba(230, 0, 0, 0.2);
}

:root .mytheme .v-radiobutton > input:checked ~ label:after {
	color: #e60000;
}

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

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

.mytheme .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

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

.mytheme .v-radiobutton.v-readonly  > label, .mytheme .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.mytheme .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

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

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

:root .mytheme .v-radiobutton > input:checked ~ label:after {
	width: 5px;
	height: 5px;
	top: 5px;
	left: 5px;
	background: #e60000;
}

:root .mytheme .v-radiobutton > input ~ label:before, :root .mytheme .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.mytheme .v-select-optiongroup .v-radiobutton, .mytheme .v-select-optiongroup .v-checkbox {
	display: block;
	margin: 8px 13px 0 0;
}

.mytheme .v-select-optiongroup .v-radiobutton:first-child, .mytheme .v-select-optiongroup .v-checkbox:first-child {
	margin-top: 5px;
}

.mytheme .v-select-optiongroup .v-radiobutton:last-child, .mytheme .v-select-optiongroup .v-checkbox:last-child {
	margin-bottom: 5px;
}

.mytheme .v-select-optiongroup.v-has-width label {
	white-space: normal;
}

.mytheme .v-select-optiongroup-small {
	font-size: 12px;
}

.mytheme .v-select-optiongroup-small .v-checkbox {
	position: relative;
	line-height: 13px;
	white-space: nowrap;
}

.mytheme .v-select-optiongroup-small .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .mytheme .v-select-optiongroup-small .v-checkbox {
	padding-left: 17px;
}

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

:root .mytheme .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 .mytheme .v-select-optiongroup-small .v-checkbox > input:focus ~ label:before {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

:root .mytheme .v-select-optiongroup-small .v-checkbox > input ~ label:before {
	height: 13px;
	padding: 0 6px;
	color: #240a0a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 13px;
}

:root .mytheme .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 .mytheme .v-select-optiongroup-small .v-checkbox > input:active ~ label:after {
	background-color: rgba(230, 0, 0, 0.2);
}

:root .mytheme .v-select-optiongroup-small .v-checkbox > input:checked ~ label:after {
	color: #e60000;
}

.mytheme .v-select-optiongroup-small .v-checkbox > .v-icon, .mytheme .v-select-optiongroup-small .v-checkbox > label .v-icon {
	margin: 0 4px 0 2px;
	min-width: 1em;
	cursor: pointer;
}

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

.mytheme .v-select-optiongroup-small .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

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

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

.mytheme .v-select-optiongroup-small .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

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

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

.mytheme .v-select-optiongroup-small .v-radiobutton {
	position: relative;
	line-height: 13px;
	white-space: nowrap;
}

.mytheme .v-select-optiongroup-small .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .mytheme .v-select-optiongroup-small .v-radiobutton {
	padding-left: 17px;
}

:root .mytheme .v-select-optiongroup-small .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .mytheme .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 .mytheme .v-select-optiongroup-small .v-radiobutton > input:focus ~ label:before {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

:root .mytheme .v-select-optiongroup-small .v-radiobutton > input ~ label:before {
	height: 13px;
	padding: 0 6px;
	color: #240a0a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 13px;
}

:root .mytheme .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 .mytheme .v-select-optiongroup-small .v-radiobutton > input:active ~ label:after {
	background-color: rgba(230, 0, 0, 0.2);
}

:root .mytheme .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	color: #e60000;
}

.mytheme .v-select-optiongroup-small .v-radiobutton > .v-icon, .mytheme .v-select-optiongroup-small .v-radiobutton > label .v-icon {
	margin: 0 4px 0 2px;
	min-width: 1em;
	cursor: pointer;
}

.mytheme .v-select-optiongroup-small .v-radiobutton.v-disabled  > label, .mytheme .v-select-optiongroup-small .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mytheme .v-select-optiongroup-small .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .mytheme .v-select-optiongroup-small .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.mytheme .v-select-optiongroup-small .v-radiobutton.v-readonly  > label, .mytheme .v-select-optiongroup-small .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.mytheme .v-select-optiongroup-small .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .mytheme .v-select-optiongroup-small .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .mytheme .v-select-optiongroup-small .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .mytheme .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	width: 5px;
	height: 5px;
	top: 4px;
	left: 4px;
	background: #e60000;
}

:root .mytheme .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .mytheme .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.mytheme .v-select-optiongroup-small .v-radiobutton, .mytheme .v-select-optiongroup-small .v-checkbox {
	display: block;
	margin: 7px 13px 0 0;
}

.mytheme .v-select-optiongroup-small .v-radiobutton:first-child, .mytheme .v-select-optiongroup-small .v-checkbox:first-child {
	margin-top: 4px;
}

.mytheme .v-select-optiongroup-small .v-radiobutton:last-child, .mytheme .v-select-optiongroup-small .v-checkbox:last-child {
	margin-bottom: 4px;
}

.mytheme .v-select-optiongroup-small.v-has-width label {
	white-space: normal;
}

.mytheme .v-select-optiongroup-large {
	font-size: 16px;
}

.mytheme .v-select-optiongroup-large .v-checkbox {
	position: relative;
	line-height: 18px;
	white-space: nowrap;
}

.mytheme .v-select-optiongroup-large .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .mytheme .v-select-optiongroup-large .v-checkbox {
	padding-left: 24px;
}

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

:root .mytheme .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 .mytheme .v-select-optiongroup-large .v-checkbox > input:focus ~ label:before {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

:root .mytheme .v-select-optiongroup-large .v-checkbox > input ~ label:before {
	height: 18px;
	padding: 0 8px;
	color: #240a0a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 18px;
}

:root .mytheme .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 .mytheme .v-select-optiongroup-large .v-checkbox > input:active ~ label:after {
	background-color: rgba(230, 0, 0, 0.2);
}

:root .mytheme .v-select-optiongroup-large .v-checkbox > input:checked ~ label:after {
	color: #e60000;
}

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

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

.mytheme .v-select-optiongroup-large .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

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

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

.mytheme .v-select-optiongroup-large .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

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

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

.mytheme .v-select-optiongroup-large .v-radiobutton {
	position: relative;
	line-height: 18px;
	white-space: nowrap;
}

.mytheme .v-select-optiongroup-large .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .mytheme .v-select-optiongroup-large .v-radiobutton {
	padding-left: 24px;
}

:root .mytheme .v-select-optiongroup-large .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .mytheme .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 .mytheme .v-select-optiongroup-large .v-radiobutton > input:focus ~ label:before {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5), inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .mytheme .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .mytheme .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 12px;
	text-align: center;
}

:root .mytheme .v-select-optiongroup-large .v-radiobutton > input ~ label:before {
	height: 18px;
	padding: 0 8px;
	color: #240a0a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 18px;
}

:root .mytheme .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 .mytheme .v-select-optiongroup-large .v-radiobutton > input:active ~ label:after {
	background-color: rgba(230, 0, 0, 0.2);
}

:root .mytheme .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	color: #e60000;
}

.mytheme .v-select-optiongroup-large .v-radiobutton > .v-icon, .mytheme .v-select-optiongroup-large .v-radiobutton > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.mytheme .v-select-optiongroup-large .v-radiobutton.v-disabled  > label, .mytheme .v-select-optiongroup-large .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mytheme .v-select-optiongroup-large .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .mytheme .v-select-optiongroup-large .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.mytheme .v-select-optiongroup-large .v-radiobutton.v-readonly  > label, .mytheme .v-select-optiongroup-large .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.mytheme .v-select-optiongroup-large .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .mytheme .v-select-optiongroup-large .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .mytheme .v-select-optiongroup-large .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .mytheme .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	width: 6px;
	height: 6px;
	top: 6px;
	left: 6px;
	background: #e60000;
}

:root .mytheme .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .mytheme .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.mytheme .v-select-optiongroup-large .v-radiobutton, .mytheme .v-select-optiongroup-large .v-checkbox {
	display: block;
	margin: 9px 13px 0 0;
}

.mytheme .v-select-optiongroup-large .v-radiobutton:first-child, .mytheme .v-select-optiongroup-large .v-checkbox:first-child {
	margin-top: 6px;
}

.mytheme .v-select-optiongroup-large .v-radiobutton:last-child, .mytheme .v-select-optiongroup-large .v-checkbox:last-child {
	margin-bottom: 6px;
}

.mytheme .v-select-optiongroup-large.v-has-width label {
	white-space: normal;
}

.mytheme .v-select-optiongroup-horizontal {
	white-space: nowrap;
}

.mytheme .v-select-optiongroup-horizontal .v-radiobutton, .mytheme .v-select-optiongroup-horizontal .v-checkbox {
	display: inline-block;
}

.mytheme .v-select-optiongroup-horizontal.v-has-width {
	white-space: normal;
}

.mytheme .v-select-optiongroup-horizontal.v-has-width label {
	white-space: nowrap;
}

.mytheme .v-link {
	cursor: pointer;
	color: #e60000;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.mytheme .v-link:hover {
	color: #ff1a1a;
}

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

.mytheme .v-link a {
	cursor: pointer;
	color: #e60000;
	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;
}

.mytheme .v-link a:hover {
	color: #ff1a1a;
}

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

.mytheme .v-link .v-icon {
	cursor: inherit;
}

.mytheme .v-link-small {
	font-size: 12px;
}

.mytheme .v-link-large {
	font-size: 16px;
}

.mytheme .v-window {
	padding: 3px 3px;
	border-radius: 4px;
	background-color: #fee6e6;
	color: #6d1b1b;
	-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.09787);
	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.09787);
	-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.09787);
	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.09787);
	padding: 0;
	min-width: 120px !important;
	min-height: 30px !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;
}

.mytheme .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;
}

.mytheme .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;
}

.mytheme .v-window.v-window-animate-in {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.mytheme .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 .mytheme .v-window-modalitycurtain {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.mytheme .v-window-draggingCurtain {
	position: fixed !important;
}

.mytheme .v-window-resizingCurtain + .v-window, .mytheme .v-window-draggingCurtain + .v-window {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.mytheme .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);
}

.mytheme .v-window-outerheader:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #e4b6b6;
	border-color: rgba(201, 161, 161, 0.5);
}

.mytheme .v-window-header {
	line-height: 29px;
	padding-left: 10px;
	margin-right: 60px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #985757;
}

.mytheme .v-window-restorebox-disabled  ~ .v-window-closebox ~ .v-window-header, .mytheme .v-window-maximizebox-disabled  ~ .v-window-closebox ~ .v-window-header {
	margin-right: 30px;
}

.mytheme .v-window-restorebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header, .mytheme .v-window-maximizebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header {
	margin-right: 10px;
}

.mytheme .v-window-closebox, .mytheme .v-window-maximizebox, .mytheme .v-window-restorebox {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	box-sizing: border-box;
	width: 27px;
	height: 29px;
	background-color: #fee6e6;
	line-height: 27px;
	text-align: center;
	cursor: pointer;
	font-size: 17px;
	color: #e53e3e;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.mytheme .v-window-closebox:focus, .mytheme .v-window-maximizebox:focus, .mytheme .v-window-restorebox:focus {
	outline: none;
}

.mytheme .v-window-closebox:hover, .mytheme .v-window-maximizebox:hover, .mytheme .v-window-restorebox:hover {
	opacity: 1;
	filter: none ;
	color: #e60000;
}

.mytheme .v-window-closebox:active, .mytheme .v-window-maximizebox:active, .mytheme .v-window-restorebox:active {
	color: inherit;
}

.mytheme .v-window-closebox:focus::after {
	content: "";
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 2px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

.mytheme .v-window-maximizebox:focus::after, .mytheme .v-window-restorebox:focus::after {
	content: "";
	position: absolute;
	top: 5px;
	right: 2px;
	bottom: 5px;
	left: 5px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

.mytheme .v-window-closebox {
	padding-right: 3px;
	border-radius: 0 4px 0 4px;
}

.mytheme .v-window-closebox:before {
	content: "\00d7";
}

.mytheme .v-window-maximizebox, .mytheme .v-window-restorebox {
	right: 27px;
	padding-left: 3px;
	border-radius: 0 0 0 4px;
}

.mytheme .v-window-maximizebox  + .v-window-closebox, .mytheme .v-window-restorebox  + .v-window-closebox {
	border-bottom-left-radius: 0;
}

.mytheme .v-window-closebox-disabled, .mytheme .v-window-resizebox-disabled, .mytheme .v-window-restorebox-disabled, .mytheme .v-window-maximizebox-disabled {
	display: none;
}

.mytheme .v-window-closebox-disabled  + .v-window-closebox, .mytheme .v-window-resizebox-disabled  + .v-window-closebox, .mytheme .v-window-restorebox-disabled  + .v-window-closebox, .mytheme .v-window-maximizebox-disabled  + .v-window-closebox {
	width: 30px;
	padding-right: 0;
	border-bottom-left-radius: 4px;
}

.mytheme .v-window-closebox-disabled  + .v-window-closebox:focus::after, .mytheme .v-window-resizebox-disabled  + .v-window-closebox:focus::after, .mytheme .v-window-restorebox-disabled  + .v-window-closebox:focus::after, .mytheme .v-window-maximizebox-disabled  + .v-window-closebox:focus::after {
	left: 5px;
}

.mytheme .v-window-maximizebox:before {
	content: "+";
}

.mytheme .v-window-restorebox:before {
	content: "\2013";
}

.mytheme .v-window > .popupContent, .mytheme .v-window-wrap, .mytheme .v-window-contents, .mytheme .v-window-contents > .v-scrollable {
	height: 100%;
}

.mytheme .v-window-contents {
	box-sizing: border-box;
	border-radius: 4px;
	margin-top: 0 !important;
}

.mytheme .v-window-contents  > .v-scrollable {
	position: relative;
}

.mytheme .v-window-contents  > .v-scrollable  > .v-margin-top {
	padding-top: 10px;
}

.mytheme .v-window-contents  > .v-scrollable  > .v-margin-right {
	padding-right: 10px;
}

.mytheme .v-window-contents  > .v-scrollable  > .v-margin-bottom {
	padding-bottom: 10px;
}

.mytheme .v-window-contents  > .v-scrollable  > .v-margin-left {
	padding-left: 10px;
}

.mytheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 10px;
}

.mytheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 10px;
}

.mytheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 10px;
}

.mytheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .mytheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .mytheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 10px;
}

.mytheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 10px;
}

.mytheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .mytheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .mytheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 10px;
}

.mytheme .v-window-contents  > .v-scrollable:focus {
	outline: none;
}

.mytheme .v-window-contents  > .v-scrollable:before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	height: 0;
	border-top: 1px solid #fee6e6;
	left: 0;
	right: 0;
}

.mytheme .v-window-contents  > .v-scrollable .v-panel-captionwrap:after {
	border-color: #e4b6b6;
}

.mytheme .v-window-contents  > .v-scrollable .v-panel-content:before {
	border-color: #fee6e6;
}

.mytheme .v-window-footer {
	height: 0;
}

.mytheme .v-window-resizebox {
	position: absolute;
	z-index: 1000;
	right: 0;
	bottom: 0;
	width: 15px;
	height: 15px;
	cursor: nwse-resize;
}

.mytheme .v-window-modalitycurtain:active  ~ .v-window {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.mytheme .v-window-top-toolbar  > .v-widget, .mytheme .v-window-bottom-toolbar  > .v-widget {
	vertical-align: top;
}

.mytheme .v-window-top-toolbar .v-label, .mytheme .v-window-bottom-toolbar .v-label {
	line-height: 29px;
}

.mytheme .v-window-top-toolbar .v-spacing, .mytheme .v-window-bottom-toolbar .v-spacing {
	width: 5px;
}

.mytheme .v-window-top-toolbar.v-layout {
	padding: 6px 10px;
	position: relative;
	z-index: 2;
	border-top: 1px solid #e4b6b6;
	border-bottom: 1px solid #e4b6b6;
	background-color: #ffcccc;
}

.mytheme .v-window-top-toolbar.v-menubar {
	margin: 10px 10px 5px;
}

.mytheme .v-window-top-toolbar.v-menubar-borderless {
	padding-left: 5px;
	padding-right: 5px;
	margin: 4px 0;
}

.mytheme .v-window-bottom-toolbar.v-layout {
	padding: 6px 10px;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffb8b8 0, #ffcccc 3px);
	background-image: linear-gradient(to bottom,#ffb8b8 0, #ffcccc 3px);
	border-top: 1px solid #e4b6b6;
	border-radius: 0 0 4px 4px;
}

.mytheme .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-layout {
	box-sizing: content-box;
	margin: -10px -10px 0;
}

.mytheme .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar {
	margin: 0;
}

.mytheme .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar-borderless {
	margin: -5px -5px 0;
	padding: 0;
}

.mytheme .v-margin-left.v-margin-right.v-margin-bottom .v-window-bottom-toolbar.v-layout {
	box-sizing: content-box;
	margin: 0 -10px -10px;
}

.mytheme .v-tree {
	position: relative;
	white-space: nowrap;
}

.mytheme .v-tree:focus {
	outline: none;
}

.mytheme .v-tree-node:before {
	content: "";
	position: absolute;
	display: inline-block;
	z-index: 3;
	width: 1.9em;
	height: 23px;
	cursor: pointer;
	background: red;
	opacity: 0;
}

.mytheme .v-tree-node-caption {
	height: 23px;
	line-height: 22px;
	overflow: hidden;
	white-space: nowrap;
	vertical-align: top;
}

.mytheme .v-tree-node-caption > div {
	display: inline-block;
	width: 100%;
	position: relative;
	z-index: 2;
}

.mytheme .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;
}

.mytheme .v-tree-node-caption span {
	padding-right: 23px;
	cursor: pointer;
	display: inline-block;
	width: 100%;
}

.v-ie .mytheme .v-tree-node-caption span {
	width: auto;
}

.mytheme .v-tree-node-caption .v-icon {
	padding-right: 0;
	width: auto;
	min-width: 1em;
}

.mytheme .v-tree-node-caption:after {
	content: "";
	display: block;
	vertical-align: top;
	position: absolute;
	z-index: 1;
	left: 0;
	margin-top: -23px;
	width: 100%;
	height: 23px;
	border-radius: 4px;
	opacity: 0;
	-webkit-transition: opacity 120ms;
	-moz-transition: opacity 120ms;
	transition: opacity 120ms;
}

.mytheme .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;
}

.mytheme .v-tree-node-leaf:before, .mytheme .v-tree-node-leaf > .v-tree-node-caption > div:before {
	visibility: hidden;
}

.mytheme .v-tree-node-focused:after {
	opacity: 1;
	border: 1px solid #e60000;
}

.mytheme .v-tree-node-selected {
	color: #f9e9e9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.mytheme .v-tree-node-selected:after {
	opacity: 1;
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	border: none;
}

.mytheme .v-tree-node-children {
	padding-left: 15px;
}

.mytheme .v-tree-node-drag-top:before, .mytheme .v-tree-node-drag-bottom:after, .mytheme .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: #e60000;
	font-size: 26px;
	line-height: 2px;
	color: #e60000;
	text-indent: -3px;
	text-shadow: 0 0 1px #ffcccc, 0 0 1px #ffcccc;
	opacity: 1;
	visibility: visible;
}

.mytheme .v-tree-node-drag-bottom.v-tree-node-dragfolder.v-tree-node-expanded:after {
	content: none;
}

.mytheme .v-tree-node-caption-drag-center {
	-webkit-box-shadow: 0 0 0 2px #e60000;
	box-shadow: 0 0 0 2px #e60000;
	position: relative;
	border-radius: 4px;
}

.v-ff .mytheme .v-tree-node-drag-top:before, .v-ff .mytheme .v-tree-node-drag-bottom:after {
	line-height: 1px;
}

.mytheme .v-tree8 {
	position: relative;
}

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

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

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

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

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

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

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

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

.mytheme .v-tree8-header, .mytheme .v-tree8-header-deco {
	top: 0;
}

.mytheme .v-tree8-footer, .mytheme .v-tree8-footer-deco {
	bottom: 0;
}

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

.mytheme .v-tree8-body .v-tree8-row {
	position: absolute;
	top: 0;
	left: 0;
}

.mytheme .v-tree8-body .v-tree8-header > .v-tree8-row {
	position: relative;
}

.mytheme .v-tree8-row {
	display: block;
}

.mytheme .v-tree8-row  > td, .mytheme .v-tree8-row  > th {
	background-color: #ffd6d6;
}

.mytheme .v-tree8-row {
	width: inherit;
}

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

.mytheme .v-tree8-cell.frozen {
	position: relative;
	z-index: 1;
}

.mytheme .v-tree8-spacer {
	position: absolute;
	display: block;
	background-color: #ffd6d6;
}

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

.mytheme .v-tree8 {
	outline: none;
}

.mytheme .v-tree8-scroller-vertical, .mytheme .v-tree8-scroller-horizontal {
	border: 1px solid #d4b2b2;
}

.mytheme .v-tree8-scroller-vertical {
	border-left: none;
}

.mytheme .v-tree8-scroller-horizontal {
	border-top: none;
}

.mytheme .v-tree8-tablewrapper {
	border: 1px solid #d4b2b2;
}

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

.mytheme .v-tree8 .header-drag-table .v-tree8-header {
	position: absolute;
}

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

.mytheme .v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-drop-marker {
	background-color: #e60000;
	position: absolute;
	width: 3px;
}

.mytheme .v-tree8-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #ffcccc;
	border: 1px solid #d4b2b2;
	padding: 0;
	z-index: 5;
}

.mytheme .v-tree8-sidebar.v-contextmenu.v-tree8-sidebar-popup {
	right: auto;
}

.mytheme .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;
}

.mytheme .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button[disabled] {
	cursor: default;
}

.mytheme .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button::-moz-focus-inner {
	border: 0;
}

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

.mytheme .v-tree8-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.mytheme .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	width: 100%;
}

.mytheme .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button:after {
	content: "\f0c9";
	font-size: 11px;
	line-height: 1;
}

.v-ie .mytheme .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	vertical-align: middle;
}

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

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

.mytheme .v-tree8-cell {
	background-color: #ffd6d6;
	padding: 0 15px;
	line-height: 30px;
	text-overflow: ellipsis;
}

.mytheme .v-tree8-cell  > * {
	line-height: 1.2;
	vertical-align: middle;
}

.mytheme .v-tree8-cell  > div {
	display: inline-block;
}

.mytheme .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 #d4b2b2;
	position: relative;
	z-index: 11;
}

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

.mytheme .v-tree8-cell div.component-wrap {
	width: 100%;
}

.mytheme .v-tree8-row > td, .mytheme .v-tree8-editor-cells > div {
	border-left: 1px solid #d4b2b2;
	border-bottom: 1px solid #d4b2b2;
}

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

.mytheme .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 #d4b2b2;
	border-left: none;
}

.mytheme .v-tree8-row-stripe > td {
	background-color: #ffc3c3;
}

.mytheme .v-tree8-row-selected > td {
	background: #e60000;
}

.mytheme .v-tree8-row-focused > td {
	
}

.mytheme .v-tree8-header th {
	position: relative;
	background-color: #ffcccc;
	font-size: 11px;
	font-weight: inherit;
	border-left: 1px solid #d4b2b2;
	border-bottom: 1px solid #d4b2b2;
	
	text-align: left;
}

.mytheme .v-tree8-header th:first-child {
	border-left: none;
}

.mytheme .v-tree8-header .sort-asc, .mytheme .v-tree8-header .sort-desc {
	padding-right: 28px;
}

.mytheme .v-tree8-header .sort-asc:after, .mytheme .v-tree8-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 15px;
	font-size: 9px;
}

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

.mytheme .v-tree8-column-resize-handle {
	position: absolute;
	width: 30px;
	right: -15px;
	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;
}

.mytheme .v-tree8-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 15px;
	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;
}

.mytheme .v-tree8-footer td {
	background-color: #ffcccc;
	font-size: 11px;
	font-weight: inherit;
	border-left: 1px solid #d4b2b2;
	border-top: 1px solid #d4b2b2;
	border-bottom: none;
	
}

.mytheme .v-tree8-footer td:first-child {
	border-left: none;
}

.mytheme .v-tree8-header .v-tree8-cell, .mytheme .v-tree8-footer .v-tree8-cell {
	overflow: visible;
}

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

.mytheme .v-tree8-header-deco {
	border-top: 1px solid #d4b2b2;
	border-right: 1px solid #d4b2b2;
	background-color: #ffcccc;
}

.mytheme .v-tree8-footer-deco {
	border-bottom: 1px solid #d4b2b2;
	border-right: 1px solid #d4b2b2;
	background-color: #ffcccc;
}

.mytheme .v-tree8-horizontal-scrollbar-deco {
	background-color: #ffcccc;
	border: 1px solid #d4b2b2;
	border-top: none;
}

.mytheme .v-tree8-cell-focused {
	position: relative;
}

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

.mytheme .v-tree8:focus .v-tree8-cell-focused:before {
	display: block;
}

.mytheme .v-tree8.v-disabled:focus .v-tree8-cell-focused:before {
	display: none;
}

.mytheme .v-tree8-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #d4b2b2;
	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);
}

.mytheme .v-tree8-editor.unbuffered .v-tree8-editor-footer {
	width: 100%;
}

.mytheme .v-tree8-editor-cells {
	position: relative;
	white-space: nowrap;
}

.mytheme .v-tree8-editor-cells.frozen {
	z-index: 2;
}

.mytheme .v-tree8-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: #ffd6d6;
}

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

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

.mytheme .v-tree8-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

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

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

.mytheme .v-tree8-editor-cells  > div input[type="checkbox"] {
	margin-left: 15px;
}

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

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

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

.mytheme .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;
}

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

.mytheme .v-tree8-editor-footer {
	display: table;
	height: 30px;
	border-top: 1px solid #d4b2b2;
	margin-top: -1px;
	background: #ffd6d6;
	padding: 0 5px;
}

.mytheme .v-tree8-editor-footer  + .v-tree8-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4b2b2;
}

.mytheme .v-tree8-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4b2b2;
	margin-bottom: -1px;
}

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

.mytheme .v-tree8-editor-message {
	width: 100%;
	position: relative;
}

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

.mytheme .v-tree8-editor-save {
	margin-right: 4px;
}

.mytheme .v-tree8-spacer {
	padding-left: 1px;
}

.mytheme .v-tree8-spacer > td {
	display: block;
	padding: 0;
	background-color: #ffd6d6;
	border-top: 1px solid #eec8c8;
	border-bottom: 1px solid #d4b2b2;
}

.mytheme .v-tree8-spacer.stripe > td {
	background-color: #ffc3c3;
	border-top: 1px solid #eeb6b6;
	border-bottom: 1px solid #d4b2b2;
}

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

.mytheme .v-tree8-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #e60000;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.mytheme .v-tree8-cell > .v-progressbar {
	width: 100%;
}

.mytheme .v-tree8 {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #ffcccc;
}

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

.mytheme .v-tree8-header .v-tree8-cell {
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mytheme .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;
}

.mytheme .v-tree8-header .v-tree8-cell.dragged-column-header {
	margin-top: -15px;
}

.mytheme .v-tree8-footer .v-tree8-cell {
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mytheme .v-tree8-header-deco {
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
}

.mytheme .v-tree8-footer-deco, .mytheme .v-tree8-horizontal-scrollbar-deco {
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
}

.mytheme .v-tree8-row-selected  > .v-tree8-cell {
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	color: #f1bfbf;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #b50808;
}

.mytheme .v-tree8-row-selected  > .v-tree8-cell-focused:before {
	border-color: #ff4c4d;
}

.mytheme .v-tree8-editor {
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	border-color: #e60000;
}

.mytheme .v-tree8-editor-footer {
	font-size: 12px;
	padding: 0 5px;
	background: #ffcccc;
	-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;
}

.mytheme .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;
}

.mytheme .v-tree8-editor-cells {
	z-index: 1;
}

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

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

.mytheme .v-tree8-editor-cells > div .error::before {
	border-top: 8px solid #ed473b;
	border-right: 8px solid transparent;
}

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

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

.mytheme .v-tree8-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 36px;
}

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

.mytheme .v-tree8-editor-cells > div .v-select {
	padding-left: 8px;
	padding-right: 8px;
}

.mytheme .v-tree8-editor-cells > div .v-checkbox {
	margin: 0 8px 0 15px;
}

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

.mytheme .v-tree8-editor-cells > div .v-checkbox  > label {
	white-space: nowrap;
}

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

.mytheme .v-tree8-editor-save, .mytheme .v-tree8-editor-cancel {
	cursor: pointer;
	color: #e60000;
	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: 5px 5px;
	margin: 0;
	outline: none;
}

.mytheme .v-tree8-editor-save:hover, .mytheme .v-tree8-editor-cancel:hover {
	color: #ff1a1a;
}

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

.mytheme .v-tree8-spacer {
	margin-top: -1px;
}

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

.mytheme .v-tree8-sidebar.v-contextmenu.closed {
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
}

.mytheme .v-tree8-scroller::-webkit-scrollbar {
	border: none;
}

.mytheme .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;
}

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

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

.mytheme .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;
}

.mytheme .v-tree8-row-drag-top, .mytheme .v-tree8-row-drag-bottom {
	z-index: 100;
}

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

.mytheme .v-tree8-row-drag-bottom:after {
	bottom: -1px;
}

.mytheme .v-tree8-row-drag-top:before {
	top: -1px;
}

.mytheme .v-tree8-row-drag-top:first-child:before {
	top: 0;
}

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

.mytheme .v-tree8-row-selected.v-tree8-row-drag-center:after {
	border-color: #b30000;
}

.mytheme .v-tree8-row-selected.v-tree8-row-drag-top:before, .mytheme .v-tree8-row-selected.v-tree8-row-drag-bottom:after {
	background: #b30000;
}

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

.mytheme .v-tree8-expander {
	display: inline-block;
	vertical-align: top;
}

.mytheme .v-tree8-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.mytheme .v-tree8-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.mytheme .v-tree8-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.mytheme .v-tree8-expander.collapse-disabled::before {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
}

.mytheme .v-tree8-node.depth-0 {
	padding-left: 0em;
}

.mytheme .v-tree8-node.depth-1 {
	padding-left: 1em;
}

.mytheme .v-tree8-node.depth-2 {
	padding-left: 2em;
}

.mytheme .v-tree8-node.depth-3 {
	padding-left: 3em;
}

.mytheme .v-tree8-node.depth-4 {
	padding-left: 4em;
}

.mytheme .v-tree8-node.depth-5 {
	padding-left: 5em;
}

.mytheme .v-tree8-node.depth-6 {
	padding-left: 6em;
}

.mytheme .v-tree8-node.depth-7 {
	padding-left: 7em;
}

.mytheme .v-tree8-node.depth-8 {
	padding-left: 8em;
}

.mytheme .v-tree8-node.depth-9 {
	padding-left: 9em;
}

.mytheme .v-tree8-node.depth-10 {
	padding-left: 10em;
}

.mytheme .v-tree8-node.depth-11 {
	padding-left: 11em;
}

.mytheme .v-tree8-node.depth-12 {
	padding-left: 12em;
}

.mytheme .v-tree8-node.depth-13 {
	padding-left: 13em;
}

.mytheme .v-tree8-node.depth-14 {
	padding-left: 14em;
}

.mytheme .v-tree8-node.depth-15 {
	padding-left: 15em;
}

.mytheme .v-tree8-node.depth-16 {
	padding-left: 16em;
}

.mytheme .v-tree8-node.depth-17 {
	padding-left: 17em;
}

.mytheme .v-tree8-node.depth-18 {
	padding-left: 18em;
}

.mytheme .v-tree8-node.depth-19 {
	padding-left: 19em;
}

.mytheme .v-tree8-node.depth-20 {
	padding-left: 20em;
}

.mytheme .v-tree8-node.depth-21 {
	padding-left: 21em;
}

.mytheme .v-tree8-node.depth-22 {
	padding-left: 22em;
}

.mytheme .v-tree8-node.depth-23 {
	padding-left: 23em;
}

.mytheme .v-tree8-node.depth-24 {
	padding-left: 24em;
}

.mytheme .v-tree8-node.depth-25 {
	padding-left: 25em;
}

.mytheme .v-tree8-node.depth-26 {
	padding-left: 26em;
}

.mytheme .v-tree8-node.depth-27 {
	padding-left: 27em;
}

.mytheme .v-tree8-node.depth-28 {
	padding-left: 28em;
}

.mytheme .v-tree8-node.depth-29 {
	padding-left: 29em;
}

.mytheme .v-tree8-node.depth-30 {
	padding-left: 30em;
}

.mytheme .v-tree8-node.depth-31 {
	padding-left: 31em;
}

.mytheme .v-tree8-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.mytheme .v-tree8-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #e60000;
	display: none;
	pointer-events: none;
}

.mytheme .v-tree8-cell-focused {
	position: static;
}

.mytheme .v-tree8-cell-focused::before {
	display: none;
}

.mytheme .v-tree8:focus .v-tree8-row-focused::before {
	display: block;
}

.mytheme .v-tree8.v-disabled:focus .v-tree8-row-focused::before {
	display: none;
}

.mytheme .v-tree8:focus .v-tree8-cell-focused::before {
	display: none;
}

.mytheme .v-tree8 {
	background-color: transparent;
}

.mytheme .v-tree8-row > td {
	background-color: transparent;
	border: 0;
	line-height: 28px;
}

.mytheme .v-tree8-row > td  > * {
	vertical-align: baseline;
}

.mytheme .v-tree8-tablewrapper {
	background-color: transparent;
	border: none;
}

.mytheme .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;
}

.mytheme .v-tree8-cell {
	position: relative;
}

.mytheme .v-tree8-row-selected  > .v-tree8-cell {
	background: transparent;
}

.mytheme .v-tree8-row-selected::before {
	display: block;
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
}

.mytheme .v-tree8:focus .v-tree8-row-selected.v-tree8-row-focused::before {
	border-color: transparent;
	box-shadow: inset 0 0 0 1px #f1bfbf;
}

.mytheme .v-tree8-scroller-vertical {
	border: none;
}

.mytheme .v-tree8-scroller-horizontal {
	border: none;
}

.mytheme .v-tree8-header-deco, .mytheme .v-tree8-footer-deco, .mytheme .v-tree8-horizontal-scrollbar-deco {
	border: none;
	background: transparent;
}

.mytheme .v-treegrid {
	position: relative;
}

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

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

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

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

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

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

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

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

.mytheme .v-treegrid-header, .mytheme .v-treegrid-header-deco {
	top: 0;
}

.mytheme .v-treegrid-footer, .mytheme .v-treegrid-footer-deco {
	bottom: 0;
}

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

.mytheme .v-treegrid-body .v-treegrid-row {
	position: absolute;
	top: 0;
	left: 0;
}

.mytheme .v-treegrid-body .v-treegrid-header > .v-treegrid-row {
	position: relative;
}

.mytheme .v-treegrid-row {
	display: block;
}

.mytheme .v-treegrid-row  > td, .mytheme .v-treegrid-row  > th {
	background-color: #ffd6d6;
}

.mytheme .v-treegrid-row {
	width: inherit;
}

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

.mytheme .v-treegrid-cell.frozen {
	position: relative;
	z-index: 1;
}

.mytheme .v-treegrid-spacer {
	position: absolute;
	display: block;
	background-color: #ffd6d6;
}

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

.mytheme .v-treegrid {
	outline: none;
}

.mytheme .v-treegrid-scroller-vertical, .mytheme .v-treegrid-scroller-horizontal {
	border: 1px solid #d4b2b2;
}

.mytheme .v-treegrid-scroller-vertical {
	border-left: none;
}

.mytheme .v-treegrid-scroller-horizontal {
	border-top: none;
}

.mytheme .v-treegrid-tablewrapper {
	border: 1px solid #d4b2b2;
}

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

.mytheme .v-treegrid .header-drag-table .v-treegrid-header {
	position: absolute;
}

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

.mytheme .v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-drop-marker {
	background-color: #e60000;
	position: absolute;
	width: 3px;
}

.mytheme .v-treegrid-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #ffcccc;
	border: 1px solid #d4b2b2;
	padding: 0;
	z-index: 5;
}

.mytheme .v-treegrid-sidebar.v-contextmenu.v-treegrid-sidebar-popup {
	right: auto;
}

.mytheme .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;
}

.mytheme .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button[disabled] {
	cursor: default;
}

.mytheme .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button::-moz-focus-inner {
	border: 0;
}

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

.mytheme .v-treegrid-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.mytheme .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	width: 100%;
}

.mytheme .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	font-size: 11px;
	line-height: 1;
}

.v-ie .mytheme .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	vertical-align: middle;
}

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

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

.mytheme .v-treegrid-cell {
	background-color: #ffd6d6;
	padding: 0 15px;
	line-height: 30px;
	text-overflow: ellipsis;
}

.mytheme .v-treegrid-cell  > * {
	line-height: 1.2;
	vertical-align: middle;
}

.mytheme .v-treegrid-cell  > div {
	display: inline-block;
}

.mytheme .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 #d4b2b2;
	position: relative;
	z-index: 11;
}

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

.mytheme .v-treegrid-cell div.component-wrap {
	width: 100%;
}

.mytheme .v-treegrid-row > td, .mytheme .v-treegrid-editor-cells > div {
	border-left: 1px solid #d4b2b2;
	border-bottom: 1px solid #d4b2b2;
}

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

.mytheme .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 #d4b2b2;
	border-left: none;
}

.mytheme .v-treegrid-row-stripe > td {
	background-color: #ffc3c3;
}

.mytheme .v-treegrid-row-selected > td {
	background: #e60000;
}

.mytheme .v-treegrid-row-focused > td {
	
}

.mytheme .v-treegrid-header th {
	position: relative;
	background-color: #ffcccc;
	font-size: 11px;
	font-weight: inherit;
	border-left: 1px solid #d4b2b2;
	border-bottom: 1px solid #d4b2b2;
	
	text-align: left;
}

.mytheme .v-treegrid-header th:first-child {
	border-left: none;
}

.mytheme .v-treegrid-header .sort-asc, .mytheme .v-treegrid-header .sort-desc {
	padding-right: 28px;
}

.mytheme .v-treegrid-header .sort-asc:after, .mytheme .v-treegrid-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 15px;
	font-size: 9px;
}

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

.mytheme .v-treegrid-column-resize-handle {
	position: absolute;
	width: 30px;
	right: -15px;
	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;
}

.mytheme .v-treegrid-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 15px;
	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;
}

.mytheme .v-treegrid-footer td {
	background-color: #ffcccc;
	font-size: 11px;
	font-weight: inherit;
	border-left: 1px solid #d4b2b2;
	border-top: 1px solid #d4b2b2;
	border-bottom: none;
	
}

.mytheme .v-treegrid-footer td:first-child {
	border-left: none;
}

.mytheme .v-treegrid-header .v-treegrid-cell, .mytheme .v-treegrid-footer .v-treegrid-cell {
	overflow: visible;
}

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

.mytheme .v-treegrid-header-deco {
	border-top: 1px solid #d4b2b2;
	border-right: 1px solid #d4b2b2;
	background-color: #ffcccc;
}

.mytheme .v-treegrid-footer-deco {
	border-bottom: 1px solid #d4b2b2;
	border-right: 1px solid #d4b2b2;
	background-color: #ffcccc;
}

.mytheme .v-treegrid-horizontal-scrollbar-deco {
	background-color: #ffcccc;
	border: 1px solid #d4b2b2;
	border-top: none;
}

.mytheme .v-treegrid-cell-focused {
	position: relative;
}

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

.mytheme .v-treegrid:focus .v-treegrid-cell-focused:before {
	display: block;
}

.mytheme .v-treegrid.v-disabled:focus .v-treegrid-cell-focused:before {
	display: none;
}

.mytheme .v-treegrid-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #d4b2b2;
	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);
}

.mytheme .v-treegrid-editor.unbuffered .v-treegrid-editor-footer {
	width: 100%;
}

.mytheme .v-treegrid-editor-cells {
	position: relative;
	white-space: nowrap;
}

.mytheme .v-treegrid-editor-cells.frozen {
	z-index: 2;
}

.mytheme .v-treegrid-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: #ffd6d6;
}

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

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

.mytheme .v-treegrid-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

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

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

.mytheme .v-treegrid-editor-cells  > div input[type="checkbox"] {
	margin-left: 15px;
}

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

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

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

.mytheme .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;
}

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

.mytheme .v-treegrid-editor-footer {
	display: table;
	height: 30px;
	border-top: 1px solid #d4b2b2;
	margin-top: -1px;
	background: #ffd6d6;
	padding: 0 5px;
}

.mytheme .v-treegrid-editor-footer  + .v-treegrid-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4b2b2;
}

.mytheme .v-treegrid-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4b2b2;
	margin-bottom: -1px;
}

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

.mytheme .v-treegrid-editor-message {
	width: 100%;
	position: relative;
}

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

.mytheme .v-treegrid-editor-save {
	margin-right: 4px;
}

.mytheme .v-treegrid-spacer {
	padding-left: 1px;
}

.mytheme .v-treegrid-spacer > td {
	display: block;
	padding: 0;
	background-color: #ffd6d6;
	border-top: 1px solid #eec8c8;
	border-bottom: 1px solid #d4b2b2;
}

.mytheme .v-treegrid-spacer.stripe > td {
	background-color: #ffc3c3;
	border-top: 1px solid #eeb6b6;
	border-bottom: 1px solid #d4b2b2;
}

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

.mytheme .v-treegrid-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #e60000;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.mytheme .v-treegrid-cell > .v-progressbar {
	width: 100%;
}

.mytheme .v-treegrid {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #ffcccc;
}

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

.mytheme .v-treegrid-header .v-treegrid-cell {
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mytheme .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;
}

.mytheme .v-treegrid-header .v-treegrid-cell.dragged-column-header {
	margin-top: -15px;
}

.mytheme .v-treegrid-footer .v-treegrid-cell {
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mytheme .v-treegrid-header-deco {
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
}

.mytheme .v-treegrid-footer-deco, .mytheme .v-treegrid-horizontal-scrollbar-deco {
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
}

.mytheme .v-treegrid-row-selected  > .v-treegrid-cell {
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	color: #f1bfbf;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #b50808;
}

.mytheme .v-treegrid-row-selected  > .v-treegrid-cell-focused:before {
	border-color: #ff4c4d;
}

.mytheme .v-treegrid-editor {
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	border-color: #e60000;
}

.mytheme .v-treegrid-editor-footer {
	font-size: 12px;
	padding: 0 5px;
	background: #ffcccc;
	-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;
}

.mytheme .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;
}

.mytheme .v-treegrid-editor-cells {
	z-index: 1;
}

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

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

.mytheme .v-treegrid-editor-cells > div .error::before {
	border-top: 8px solid #ed473b;
	border-right: 8px solid transparent;
}

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

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

.mytheme .v-treegrid-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 36px;
}

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

.mytheme .v-treegrid-editor-cells > div .v-select {
	padding-left: 8px;
	padding-right: 8px;
}

.mytheme .v-treegrid-editor-cells > div .v-checkbox {
	margin: 0 8px 0 15px;
}

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

.mytheme .v-treegrid-editor-cells > div .v-checkbox  > label {
	white-space: nowrap;
}

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

.mytheme .v-treegrid-editor-save, .mytheme .v-treegrid-editor-cancel {
	cursor: pointer;
	color: #e60000;
	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: 5px 5px;
	margin: 0;
	outline: none;
}

.mytheme .v-treegrid-editor-save:hover, .mytheme .v-treegrid-editor-cancel:hover {
	color: #ff1a1a;
}

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

.mytheme .v-treegrid-spacer {
	margin-top: -1px;
}

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

.mytheme .v-treegrid-sidebar.v-contextmenu.closed {
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
}

.mytheme .v-treegrid-scroller::-webkit-scrollbar {
	border: none;
}

.mytheme .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;
}

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

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

.mytheme .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;
}

.mytheme .v-treegrid-row-drag-top, .mytheme .v-treegrid-row-drag-bottom {
	z-index: 100;
}

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

.mytheme .v-treegrid-row-drag-bottom:after {
	bottom: -1px;
}

.mytheme .v-treegrid-row-drag-top:before {
	top: -1px;
}

.mytheme .v-treegrid-row-drag-top:first-child:before {
	top: 0;
}

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

.mytheme .v-treegrid-row-selected.v-treegrid-row-drag-center:after {
	border-color: #b30000;
}

.mytheme .v-treegrid-row-selected.v-treegrid-row-drag-top:before, .mytheme .v-treegrid-row-selected.v-treegrid-row-drag-bottom:after {
	background: #b30000;
}

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

.mytheme .v-treegrid-expander {
	display: inline-block;
	vertical-align: top;
}

.mytheme .v-treegrid-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.mytheme .v-treegrid-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.mytheme .v-treegrid-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.mytheme .v-treegrid-expander.collapse-disabled::before {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
}

.mytheme .v-treegrid-node.depth-0 {
	padding-left: 0em;
}

.mytheme .v-treegrid-node.depth-1 {
	padding-left: 1em;
}

.mytheme .v-treegrid-node.depth-2 {
	padding-left: 2em;
}

.mytheme .v-treegrid-node.depth-3 {
	padding-left: 3em;
}

.mytheme .v-treegrid-node.depth-4 {
	padding-left: 4em;
}

.mytheme .v-treegrid-node.depth-5 {
	padding-left: 5em;
}

.mytheme .v-treegrid-node.depth-6 {
	padding-left: 6em;
}

.mytheme .v-treegrid-node.depth-7 {
	padding-left: 7em;
}

.mytheme .v-treegrid-node.depth-8 {
	padding-left: 8em;
}

.mytheme .v-treegrid-node.depth-9 {
	padding-left: 9em;
}

.mytheme .v-treegrid-node.depth-10 {
	padding-left: 10em;
}

.mytheme .v-treegrid-node.depth-11 {
	padding-left: 11em;
}

.mytheme .v-treegrid-node.depth-12 {
	padding-left: 12em;
}

.mytheme .v-treegrid-node.depth-13 {
	padding-left: 13em;
}

.mytheme .v-treegrid-node.depth-14 {
	padding-left: 14em;
}

.mytheme .v-treegrid-node.depth-15 {
	padding-left: 15em;
}

.mytheme .v-treegrid-node.depth-16 {
	padding-left: 16em;
}

.mytheme .v-treegrid-node.depth-17 {
	padding-left: 17em;
}

.mytheme .v-treegrid-node.depth-18 {
	padding-left: 18em;
}

.mytheme .v-treegrid-node.depth-19 {
	padding-left: 19em;
}

.mytheme .v-treegrid-node.depth-20 {
	padding-left: 20em;
}

.mytheme .v-treegrid-node.depth-21 {
	padding-left: 21em;
}

.mytheme .v-treegrid-node.depth-22 {
	padding-left: 22em;
}

.mytheme .v-treegrid-node.depth-23 {
	padding-left: 23em;
}

.mytheme .v-treegrid-node.depth-24 {
	padding-left: 24em;
}

.mytheme .v-treegrid-node.depth-25 {
	padding-left: 25em;
}

.mytheme .v-treegrid-node.depth-26 {
	padding-left: 26em;
}

.mytheme .v-treegrid-node.depth-27 {
	padding-left: 27em;
}

.mytheme .v-treegrid-node.depth-28 {
	padding-left: 28em;
}

.mytheme .v-treegrid-node.depth-29 {
	padding-left: 29em;
}

.mytheme .v-treegrid-node.depth-30 {
	padding-left: 30em;
}

.mytheme .v-treegrid-node.depth-31 {
	padding-left: 31em;
}

.mytheme .v-treegrid-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.mytheme .v-treegrid-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #e60000;
	display: none;
	pointer-events: none;
}

.mytheme .v-treegrid-cell-focused {
	position: static;
}

.mytheme .v-treegrid-cell-focused::before {
	display: none;
}

.mytheme .v-treegrid:focus .v-treegrid-row-focused::before {
	display: block;
}

.mytheme .v-treegrid.v-disabled:focus .v-treegrid-row-focused::before {
	display: none;
}

.mytheme .v-treegrid:focus .v-treegrid-cell-focused::before {
	display: none;
}

.mytheme .v-table {
	position: relative;
	background: #ffcccc;
	color: #691717;
	overflow: hidden;
}

.mytheme .v-table-header table, .mytheme .v-table-footer table, .mytheme .v-table-table {
	-webkit-box-shadow: 0 0 0 1px #d4b2b2;
	box-shadow: 0 0 0 1px #d4b2b2;
}

.mytheme .v-table-header-wrap, .mytheme .v-table-footer-wrap, .mytheme .v-table-header-drag {
	border: 1px solid #d4b2b2;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	white-space: nowrap;
	font-size: 11px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mytheme .v-table-header-wrap {
	position: relative;
	border-bottom: none;
}

.mytheme .v-table-footer-wrap {
	border-top: none;
}

.mytheme .v-table-footer td {
	border-left: 1px solid #d4b2b2;
}

.mytheme .v-table-footer-container, .mytheme .v-table-caption-container {
	overflow: hidden;
	line-height: 1;
	min-height: 30px;
	box-sizing: border-box;
}

.mytheme .v-table-footer-container {
	padding: 9px 10px 10px;
	float: right;
}

.mytheme [class^="v-table-header-cell"] {
	position: relative;
}

.mytheme .v-table-caption-container, .mytheme .v-table-header-drag {
	padding: 10px 10px 9px;
	border-left: 1px solid #d4b2b2;
}

.mytheme .v-table-caption-container-align-right {
	padding-right: 3px;
}

.mytheme .v-table-resizer {
	height: 30px;
	width: 7px;
	cursor: e-resize;
	cursor: col-resize;
	position: relative;
	right: -4px;
	z-index: 1;
	margin-left: -7px;
}

.mytheme .v-table-cell-content {
	border-left: 1px solid #d4b2b2;
	overflow: hidden;
	height: 30px;
	vertical-align: middle;
}

.mytheme .v-table-cell-content:first-child {
	border-left: none;
	padding-left: 1px;
}

.mytheme .v-table-header td:first-child .v-table-caption-container, .mytheme .v-table-footer td:first-child {
	border-left-color: transparent;
}

.mytheme .v-table-cell-wrapper {
	line-height: 1;
	padding: 0 10px;
	box-sizing: border-box;
	margin-right: 0 !important;
}

.mytheme .v-table-cell-wrapper  > .v-widget {
	margin: 3px -5px;
}

.mytheme .v-table-cell-wrapper  > .v-widget.v-label, .mytheme .v-table-cell-wrapper  > .v-widget.v-checkbox, .mytheme .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.mytheme .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.mytheme .v-table-body {
	border: 1px solid #d4b2b2;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.mytheme .v-table-table {
	background-color: #ffd6d6;
	white-space: nowrap;
}

.mytheme .v-table-table td {
	border-top: 1px solid #d4b2b2;
}

.mytheme .v-table-table tr:first-child > td {
	border-top: none;
}

.mytheme .v-table-row {
	background-color: #ffd6d6;
	cursor: pointer;
}

.mytheme .v-table-row-odd {
	background-color: #ffc3c3;
	cursor: pointer;
}

.mytheme .v-table-body-noselection .v-table-row, .mytheme .v-table-body-noselection .v-table-row-odd {
	cursor: default;
}

.mytheme .v-table [class*="-row"].v-selected {
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	background-origin: border-box;
	color: #f9e9e9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.mytheme .v-table [class*="-row"].v-selected  + .v-selected {
	background: #da0000;
}

.mytheme .v-table [class*="-row"].v-selected  + .v-selected td {
	border-top-color: #da0000;
}

.mytheme .v-table [class*="-row"].v-selected .v-table-cell-content {
	border-color: transparent;
	border-left-color: #b50808;
}

.mytheme .v-table [class*="-row"].v-selected .v-table-cell-content:first-child {
	border-left-color: transparent;
}

.mytheme .v-table-header-cell-asc .v-table-sort-indicator, .mytheme .v-table-header-cell-desc .v-table-sort-indicator {
	background: transparent;
	width: 15px;
	height: 30px;
	line-height: 30px;
	margin-left: -15px;
}

.mytheme .v-table-header-cell-asc .v-table-sort-indicator:before, .mytheme .v-table-header-cell-desc .v-table-sort-indicator:before {
	font-style: normal;
	font-weight: normal;
	display: inline-block;
}

.mytheme .v-table-header-cell-asc .v-table-sort-indicator:before {
	content: "\f0de";
	font-family: ThemeIcons;
}

.mytheme .v-table-header-cell-desc .v-table-sort-indicator:before {
	content: "\f0dd";
	font-family: ThemeIcons;
}

.mytheme [class*="rowheader"] span.v-icon {
	min-width: 1em;
}

.mytheme .v-table-focus {
	outline: 1px solid #e60000;
	outline-offset: -1px;
}

.mytheme .v-drag-element.v-table-focus, .mytheme .v-drag-element .v-table-focus {
	outline: none;
}

.mytheme .v-table-header-drag {
	position: absolute;
	opacity: 0.9;
	filter: alpha(opacity=90) ;
	margin-top: -15px;
	z-index: 30000;
	line-height: 1;
}

.mytheme .v-table-focus-slot-right {
	border-right: 3px solid #e60000;
	right: -2px;
	margin-left: -10px !important;
}

.mytheme .v-table-focus-slot-left {
	float: left;
	border-left: 3px solid #e60000;
	left: -1px;
	right: auto;
	margin-left: 0 !important;
	margin-right: -10px;
}

.mytheme .v-table-column-selector {
	height: 30px;
	padding: 0 13px;
	color: #240a0a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5;
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	width: 15px;
	height: 15px;
	line-height: 15px;
	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;
}

.mytheme .v-table-column-selector:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.mytheme .v-table-column-selector:hover:after {
	background-color: rgba(255, 76, 77, 0.1);
}

.mytheme .v-table-column-selector:focus:after {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

.mytheme .v-table-column-selector:active:after {
	background-color: rgba(230, 0, 0, 0.2);
}

.mytheme .v-table-column-selector:after {
	content: "";
	position: absolute;
	border: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.mytheme .v-table-column-selector:active:after {
	background-color: rgba(230, 0, 0, 0.2);
}

.mytheme .v-table-column-selector:before {
	font-family: ThemeIcons;
	content: "\f013";
}

.mytheme .v-table-header-wrap:hover .v-table-column-selector {
	opacity: 1;
	filter: none ;
	-webkit-transition-delay: 200ms;
	-moz-transition-delay: 200ms;
	transition-delay: 200ms;
}

.mytheme .v-on:before, .mytheme .v-off:before {
	content: "\f00c";
	font-family: ThemeIcons;
	font-size: 0.9em;
	margin-right: 5px;
}

.mytheme .v-on div, .mytheme .v-off div {
	display: inline;
}

.mytheme .v-on.v-disabled, .mytheme .v-off.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mytheme .v-off:before {
	visibility: hidden;
}

.mytheme tbody.v-drag-element {
	display: block;
	overflow: visible;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	opacity: 1;
	filter: none ;
}

.mytheme 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: #ffd6d6;
}

.mytheme .v-table-body {
	position: relative;
	z-index: 1;
}

.mytheme .v-table-scrollposition {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 30px;
	line-height: 30px;
	margin: -15px 0 0 !important;
	text-align: center;
}

.mytheme .v-table-drag {
	overflow: visible;
}

.mytheme .v-table-drag .v-table-body {
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	border-color: #e60000;
}

.mytheme .v-table-drag .v-table-body .v-table-focus {
	outline: none;
}

.mytheme .v-table-row-drag-middle .v-table-cell-content {
	background-color: #faabab;
	color: #5c1919;
}

.mytheme .v-table-row-drag-bottom td.v-table-cell-content {
	border-bottom: 2px solid #e60000;
	height: 28px;
}

.mytheme .v-table-row-drag-bottom .v-table-cell-wrapper {
	margin-bottom: -2px;
}

.mytheme .v-table-row-drag-top td.v-table-cell-content {
	border-top: 2px solid #e60000;
	height: 29px;
}

.mytheme .v-table-row-drag-top .v-table-cell-wrapper {
	margin-top: -1px;
}

.mytheme .v-table-no-stripes .v-table-row, .mytheme .v-table-no-stripes .v-table-row-odd {
	background: transparent;
}

.mytheme .v-table-no-vertical-lines .v-table-cell-content {
	border-left: none;
	padding-left: 1px;
}

.mytheme .v-table-no-vertical-lines.v-treetable .v-table-cell-content {
	padding-left: 11px;
}

.mytheme .v-table-no-horizontal-lines .v-table-cell-content {
	border-top: none;
	border-bottom: none;
}

.mytheme .v-table-no-horizontal-lines .v-table-row-drag-top .v-table-cell-content, .mytheme .v-table-no-horizontal-lines .v-table-row-drag-bottom .v-table-cell-content {
	height: 29px;
}

.mytheme .v-table-no-header .v-table-header-wrap {
	display: none;
}

.mytheme .v-table-borderless .v-table-header-wrap, .mytheme .v-table-borderless .v-table-footer-wrap, .mytheme .v-table-borderless .v-table-header-drag, .mytheme .v-table-borderless .v-table-body {
	border: none;
}

.mytheme .v-table-borderless .v-table-header-wrap {
	border-bottom: 1px solid #d9b6b6;
}

.mytheme .v-table-borderless .v-table-footer-wrap {
	border-top: 1px solid #d9b6b6;
}

.mytheme .v-table-compact .v-table-header-wrap, .mytheme .v-table-compact .v-table-footer-wrap, .mytheme .v-table-compact .v-table-header-drag, .mytheme .v-table-small .v-table-header-wrap, .mytheme .v-table-small .v-table-footer-wrap, .mytheme .v-table-small .v-table-header-drag {
	font-size: 11px;
}

.mytheme .v-table-compact .v-table-footer-container, .mytheme .v-table-small .v-table-footer-container {
	padding: 7px 6px 8px;
}

.mytheme .v-table-compact .v-table-caption-container, .mytheme .v-table-compact .v-table-header-drag, .mytheme .v-table-small .v-table-caption-container, .mytheme .v-table-small .v-table-header-drag {
	padding-top: 8px;
	padding-bottom: 7px;
	padding-left: 5px;
	padding-right: 5px;
}

.mytheme .v-table-compact .v-table-caption-container-align-right, .mytheme .v-table-small .v-table-caption-container-align-right {
	padding-right: 0;
}

.mytheme .v-table-compact .v-table-resizer, .mytheme .v-table-small .v-table-resizer {
	height: 26px;
}

.mytheme .v-table-compact .v-table-cell-content, .mytheme .v-table-small .v-table-cell-content {
	height: 26px;
}

.mytheme .v-table-compact .v-table-cell-wrapper, .mytheme .v-table-small .v-table-cell-wrapper {
	padding-left: 5px;
	padding-right: 5px;
}

.mytheme .v-table-compact .v-table-cell-wrapper  > .v-widget, .mytheme .v-table-small .v-table-cell-wrapper  > .v-widget {
	margin: 1px -3px;
}

.mytheme .v-table-compact .v-table-cell-wrapper  > .v-widget.v-label, .mytheme .v-table-compact .v-table-cell-wrapper  > .v-widget.v-checkbox, .mytheme .v-table-compact .v-table-cell-wrapper  > .v-widget.v-select-optiongroup, .mytheme .v-table-small .v-table-cell-wrapper  > .v-widget.v-label, .mytheme .v-table-small .v-table-cell-wrapper  > .v-widget.v-checkbox, .mytheme .v-table-small .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.mytheme .v-table-compact .v-table-cell-wrapper  > .v-widget.v-progressbar, .mytheme .v-table-small .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.mytheme .v-table-compact .v-table-header-cell-asc .v-table-sort-indicator, .mytheme .v-table-compact .v-table-header-cell-desc .v-table-sort-indicator, .mytheme .v-table-small .v-table-header-cell-asc .v-table-sort-indicator, .mytheme .v-table-small .v-table-header-cell-desc .v-table-sort-indicator {
	height: 26px;
	line-height: 26px;
}

.mytheme .v-table-compact .v-table-header-drag, .mytheme .v-table-small .v-table-header-drag {
	margin-top: -13px;
}

.mytheme .v-table-compact.v-treetable .v-table-cell-wrapper, .mytheme .v-table-small.v-treetable .v-table-cell-wrapper {
	padding-left: 0;
	padding-right: 0;
	min-height: 13px;
}

.mytheme .v-table-compact.v-treetable .v-table-cell-content, .mytheme .v-table-small.v-treetable .v-table-cell-content {
	padding-left: 5px;
	padding-right: 5px;
}

.mytheme .v-table-compact.v-treetable .v-table-cell-content:first-child, .mytheme .v-table-small.v-treetable .v-table-cell-content:first-child {
	padding-left: 6px;
}

.mytheme .v-table-compact.v-treetable .v-table-footer-container, .mytheme .v-table-small.v-treetable .v-table-footer-container {
	padding-left: 5px;
	padding-right: 5px;
}

.mytheme .v-table-compact .v-table-row-drag-top .v-table-cell-content, .mytheme .v-table-compact .v-table-row-drag-bottom .v-table-cell-content, .mytheme .v-table-small .v-table-row-drag-top .v-table-cell-content, .mytheme .v-table-small .v-table-row-drag-bottom .v-table-cell-content {
	height: 25px;
}

.mytheme .v-table-small {
	font-size: 12px;
}

.mytheme .v-table-small.v-treetable .v-table-cell-wrapper {
	min-height: 12px;
}

.mytheme .v-treetable [class*="caption-container"], .mytheme .v-treetable [class*="footer-container"], .mytheme .v-treetable [class*="cell-wrapper"] {
	box-sizing: content-box;
	padding-left: 0;
	padding-right: 0;
}

.mytheme .v-treetable [class*="caption-container"], .mytheme .v-treetable [class*="footer-container"] {
	min-height: 11px;
}

.mytheme .v-treetable [class*="cell-wrapper"] {
	min-height: 13px;
}

.mytheme .v-treetable [class*="caption-container"] {
	padding-left: 10px;
}

.mytheme .v-treetable [class*="caption-container-align-right"] {
	padding-left: 17px;
}

.mytheme .v-treetable [class*="footer-container"] {
	padding-right: 10px;
}

.mytheme .v-treetable [class*="cell-content"] {
	padding-left: 10px;
	padding-right: 10px;
}

.mytheme .v-treetable [class*="cell-content"]:first-child {
	padding-left: 11px;
}

.mytheme .v-treetable-treespacer {
	display: inline-block;
	position: absolute;
	width: 15px !important;
	margin-left: -20px;
	text-align: center;
	cursor: pointer;
}

.mytheme .v-treetable-node-closed:before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.mytheme .v-treetable-node-open:before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.mytheme .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter {
	width: 1px;
}

.mytheme .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter:after {
	left: -5px;
	right: -5px;
}

.mytheme .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before {
	height: 30px;
	padding: 0 13px;
	color: #240a0a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, none;
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(left, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to right,#ffd0d0 2%, #f4bfbf 98%);
}

.mytheme .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.mytheme .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(255, 76, 77, 0.1);
}

.mytheme .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

.mytheme .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(230, 0, 0, 0.2);
}

.mytheme .v-splitpanel-horizontal  > div > .v-splitpanel-second-container {
	margin-left: 1px;
}

.mytheme .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter {
	height: 1px;
}

.mytheme .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter:after {
	top: -5px;
	bottom: -5px;
}

.mytheme .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before {
	height: 30px;
	padding: 0 13px;
	color: #240a0a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, none;
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
}

.mytheme .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.mytheme .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(255, 76, 77, 0.1);
}

.mytheme .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

.mytheme .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(230, 0, 0, 0.2);
}

.mytheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter {
	width: 10px;
}

.mytheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter:after {
	left: 0px;
	right: 0px;
}

.mytheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before {
	height: 30px;
	padding: 0 13px;
	color: #240a0a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, none;
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(left, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to right,#ffd0d0 2%, #f4bfbf 98%);
}

.mytheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.mytheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(255, 76, 77, 0.1);
}

.mytheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

.mytheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(230, 0, 0, 0.2);
}

.mytheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:after {
	content: "";
	border: 1px solid #deb2b2;
	border-top-color: #be9898;
	border-left-color: #be9898;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 30px;
	margin-left: -1px;
	margin-top: -15px;
}

.mytheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-second-container {
	margin-left: 10px;
}

.mytheme .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter {
	height: 10px;
}

.mytheme .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter:after {
	top: 0px;
	bottom: 0px;
}

.mytheme .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before {
	height: 30px;
	padding: 0 13px;
	color: #240a0a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, none;
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
}

.mytheme .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.mytheme .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(255, 76, 77, 0.1);
}

.mytheme .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

.mytheme .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(230, 0, 0, 0.2);
}

.mytheme .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:after {
	content: "";
	border: 1px solid #deb2b2;
	border-top-color: #be9898;
	border-left-color: #be9898;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 0;
	margin-left: -15px;
	margin-top: -1px;
}

.mytheme .v-progressbar-wrapper {
	border-radius: 4px;
	height: 8px;
	background-color: #f69090;
	background-image: -webkit-linear-gradient(bottom, #f69898 2%, #eb8181 98%);
	background-image: linear-gradient(to top,#f69898 2%, #eb8181 98%);
	box-sizing: border-box;
	min-width: 60px;
}

.mytheme .v-progressbar-indicator {
	border-radius: 4px;
	height: inherit;
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	
	
	border: 1px solid #b50000;
	box-sizing: border-box;
	max-width: 100%;
	min-width: 8px;
	-webkit-transition: width 160ms;
	-moz-transition: width 160ms;
	transition: width 160ms;
}

.mytheme .v-progressbar-point .v-progressbar-indicator {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	text-align: right;
	overflow: hidden;
}

.mytheme .v-progressbar-point .v-progressbar-indicator:before {
	content: "";
	display: inline-block;
	border-radius: 4px;
	height: inherit;
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	
	
	border: 1px solid #b50000;
	box-sizing: border-box;
	max-width: 100%;
	width: 8px;
	vertical-align: top;
}

.mytheme .v-progressbar-indeterminate {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(230, 0, 0, 0.2);
	border-top-color: #e60000;
	border-right-color: #e60000;
	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;
}

.mytheme .v-progressbar-indeterminate .v-progressbar-wrapper {
	display: none;
}

.mytheme .v-slider {
	position: relative;
}

.mytheme .v-slider:focus {
	outline: none;
}

.mytheme .v-slider:focus .v-slider-handle:after {
	opacity: 1;
}

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

.mytheme .v-slider-base {
	border-radius: 4px;
	height: 8px;
	background-color: #f69090;
	background-image: -webkit-linear-gradient(bottom, #f69898 2%, #eb8181 98%);
	background-image: linear-gradient(to top,#f69898 2%, #eb8181 98%);
	box-sizing: border-box;
	min-width: 60px;
	height: 4px;
	margin: 13px 9px;
	white-space: nowrap;
	overflow: hidden;
	
}

.mytheme .v-slider-base:before {
	content: "";
	position: absolute;
	top: 13px;
	bottom: 13px;
	left: 9px;
	width: 8px;
	border-radius: 4px;
	border-left: 1px solid #b50000;
}

.mytheme .v-slider-base:after {
	border-radius: 4px;
	height: inherit;
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	
	
	border: 1px solid #b50000;
	box-sizing: border-box;
	max-width: 100%;
	content: "";
	display: inline-block;
	margin-left: -100%;
	width: 100%;
	vertical-align: top;
}

.mytheme .v-has-width > .v-slider-base {
	min-width: 0;
}

.mytheme .v-slider-handle {
	margin-top: -13px;
	width: 0.1px;
	display: inline-block;
	vertical-align: top;
}

.mytheme .v-slider-handle:before {
	height: 30px;
	padding: 0 13px;
	color: #240a0a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9a1a1;
	border-top-color: #c9a4a4;
	border-bottom-color: #c09696;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mytheme .v-slider-handle:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.mytheme .v-slider-handle:before:hover:after {
	background-color: rgba(255, 76, 77, 0.1);
}

.mytheme .v-slider-handle:before:focus:after {
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

.mytheme .v-slider-handle:before:active:after {
	background-color: rgba(230, 0, 0, 0.2);
}

.mytheme .v-slider-handle:after {
	border: 1px solid #c9a1a1;
	border-color: #e60000;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	opacity: 0;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
}

.mytheme .v-slider-handle:before, .mytheme .v-slider-handle:after {
	content: "";
	box-sizing: border-box;
	padding: 0;
	width: 18px;
	height: 18px;
	border-radius: 9px;
	position: absolute;
	z-index: 1;
	margin-top: 6px;
	margin-left: -9px;
}

.mytheme .v-slider-feedback {
	background-color: rgba(92, 0, 0, 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: 4px 8px;
	border-radius: 3px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 12px;
}

.mytheme .v-slider-vertical {
	padding: 9px 0;
	height: 78px;
}

.mytheme .v-slider-vertical .v-slider-base {
	background-color: #f69090;
	background-image: -webkit-linear-gradient(right, #f69898 2%, #eb8181 98%);
	background-image: linear-gradient(to left,#f69898 2%, #eb8181 98%);
	width: 4px;
	height: 100% !important;
	min-width: 0;
	margin: 0 13px;
}

.mytheme .v-slider-vertical .v-slider-base:before {
	top: auto;
	bottom: 9px;
	left: 13px;
	right: 13px;
	width: auto;
	height: 8px;
	border-left: none;
	border-bottom: 1px solid #b50000;
}

.mytheme .v-slider-vertical .v-slider-base:after {
	height: 101%;
	margin-left: 0;
	background-color: #e60000;
	background-image: -webkit-linear-gradient(left, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to right,#e80000 2%, #da0000 98%);
}

.mytheme .v-slider-vertical .v-slider-handle {
	width: 0;
	height: 0.1px;
	width: 30px;
	display: block;
}

.mytheme .v-slider-vertical .v-slider-handle:before, .mytheme .v-slider-vertical .v-slider-handle:after {
	width: 18px;
	height: 18px;
	margin-top: -9px;
	margin-left: -7px;
}

.mytheme .v-slider-no-indicator .v-slider-base:before, .mytheme .v-slider-no-indicator .v-slider-base:after {
	display: none;
}

.mytheme .v-tabsheet:not(.v-has-width) {
	width: auto !important;
}

.mytheme .v-tabsheet-spacertd {
	display: none !important;
}

.mytheme .v-tabsheet-tabcontainer {
	position: relative;
	box-sizing: border-box;
}

.mytheme .v-tabsheet-tabcontainer:before {
	content: "";
	position: absolute;
	height: 0;
	border-top: 1px solid #e4b6b6;
	bottom: 0;
	left: 0;
	right: 0;
}

.mytheme .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	position: relative;
}

.mytheme .v-tabsheet-tabitemcell {
	vertical-align: bottom;
}

.mytheme .v-tabsheet-tabitemcell .v-tabsheet-tabitem {
	line-height: 0;
	overflow: hidden;
}

.mytheme .v-tabsheet-tabitemcell .v-caption {
	margin-left: 15px;
	padding: 0 3px;
	box-sizing: border-box;
	cursor: pointer;
	text-align: center;
	line-height: 30px;
	font-size: 12px;
	font-weight: 300;
	color: #a51c1c;
	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;
}

.mytheme .v-tabsheet-tabitemcell .v-caption .v-captiontext {
	display: inline;
}

.mytheme .v-tabsheet-tabitemcell .v-caption .v-icon + .v-captiontext {
	margin-left: 8px;
}

.mytheme .v-tabsheet-tabitemcell .v-caption:hover {
	color: #e60000;
}

.mytheme .v-tabsheet-tabitemcell .v-caption.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
	color: inherit !important;
}

.mytheme .v-tabsheet-tabitemcell:first-child .v-caption, .mytheme .v-tabsheet-tabitemcell[aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.mytheme .v-tabsheet-tabitemcell:focus {
	outline: none;
}

.mytheme .v-tabsheet-tabitemcell:focus .v-caption {
	color: #e60000;
}

.mytheme .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	border-bottom-color: #e60000;
	color: #e60000;
}

.mytheme .v-tabsheet-tabitemcell .v-caption-closable {
	padding-right: 17px;
}

.mytheme .v-tabsheet-tabitemcell.icons-on-top .v-caption-closable {
	padding-right: 3px;
}

.mytheme .v-tabsheet-tabitemcell .v-tabsheet-caption-close {
	position: absolute;
	right: 0;
	top: 50%;
	margin: -7px 0 0;
	font-size: 14px;
	line-height: 14px;
	width: 14px;
	text-align: center;
	border-radius: 2px;
	color: #e82c2c;
}

.mytheme .v-tabsheet-tabitemcell .v-tabsheet-caption-close:hover {
	background: rgba(0, 0, 0, 0.03);
	color: #e60000;
}

.mytheme .v-tabsheet-tabitemcell .v-tabsheet-caption-close:active {
	background: #e60000;
	color: #f1bfbf;
}

.mytheme .v-tabsheet-scroller {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding-left: 15px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(right, #ffcccc 70%, rgba(255, 204, 204, 0) 100%);
	background-image: linear-gradient(to left,#ffcccc 70%, rgba(255, 204, 204, 0) 100%);
	pointer-events: none;
}

.mytheme .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, #e4b6b6 70%, rgba(228, 182, 182, 0) 100%);
	background-image: linear-gradient(to left,#e4b6b6 70%, rgba(228, 182, 182, 0) 100%);
}

.mytheme .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 8px;
	outline: none;
	cursor: pointer;
	pointer-events: auto;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mytheme .v-tabsheet-scroller button:hover {
	opacity: 1;
	filter: none ;
	color: #e60000;
}

.mytheme .v-tabsheet-scroller button:active {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
	color: #e60000;
}

.mytheme .v-tabsheet-scroller button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.mytheme .v-tabsheet-scroller [class*="Next"] {
	padding-left: 4px;
}

.mytheme .v-tabsheet-scroller [class*="Next"]:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.mytheme .v-tabsheet-scroller [class*="Prev"] {
	padding-right: 4px;
}

.mytheme .v-tabsheet-scroller [class*="Prev"]:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.mytheme .v-tabsheet-scroller [class*="disabled"] {
	cursor: default;
	color: inherit !important;
	opacity: 0.1 !important;
	filter: alpha(opacity=10) !important;
}

.mytheme .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;
}

.mytheme .v-tabsheet-deco {
	height: 16px !important;
	width: 16px !important;
	box-sizing: border-box;
	border: 2px solid rgba(230, 0, 0, 0.2);
	border-top-color: #e60000;
	border-right-color: #e60000;
	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: -23px;
	left: 50%;
	margin-left: -8px;
}

.mytheme .v-tabsheet-loading .v-tabsheet-deco {
	display: block;
}

.mytheme .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer table, .mytheme .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tbody, .mytheme .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	width: 100%;
}

.mytheme .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	display: table;
	table-layout: fixed;
}

.mytheme .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer td {
	display: table-cell;
}

.mytheme .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer .v-caption {
	margin: 0;
	display: block;
}

.mytheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption {
	margin-left: 3px;
	padding: 0 10px;
	background-color: #ffcccc;
	border: 1px solid transparent;
	line-height: 29px;
	border-radius: 4px 4px 0 0;
	font-weight: 400;
	-webkit-transition: background-color 160ms;
	-moz-transition: background-color 160ms;
	transition: background-color 160ms;
}

.mytheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption:hover {
	background-color: #ffbdbd;
	border-bottom-color: #e4b6b6;
}

.mytheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption.v-disabled:hover {
	background-color: #ffcccc;
}

.mytheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 24px;
}

.mytheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 3px;
	right: 3px;
	margin-top: 0;
}

.mytheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer td:first-child .v-caption, .mytheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer [aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.mytheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	border-color: #e4b6b6;
}

.mytheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	background: #fee6e6;
	border-color: #e4b6b6;
	border-bottom: none;
	padding-bottom: 1px;
}

.mytheme .v-tabsheet-framed  > .v-tabsheet-content {
	border: 1px solid #e4b6b6;
	border-top: none;
}

.mytheme .v-tabsheet-framed  > .v-tabsheet-content  > div {
	background: #fee6e6;
}

.mytheme .v-tabsheet-framed.padded-tabbar  > .v-tabsheet-tabcontainer {
	border: 1px solid #e4b6b6;
	border-bottom: none;
	background: #ffcccc;
	padding-top: 5px;
}

.mytheme .v-tabsheet-framed.icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	padding-bottom: 6px;
}

.mytheme .v-tabsheet-centered-tabs  > .v-tabsheet-tabcontainer {
	text-align: center;
}

.mytheme .v-tabsheet-right-aligned-tabs  > .v-tabsheet-tabcontainer {
	text-align: right;
}

.mytheme .v-tabsheet-right-aligned-tabs .v-tabsheet-spacertd {
	display: inline-block !important;
}

.mytheme .v-tabsheet-right-aligned-tabs .v-tabsheet-scroller {
	padding-left: 9px;
}

.mytheme .v-tabsheet-padded-tabbar  > .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	padding: 0 8px;
}

.mytheme .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption {
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 1.2;
}

.mytheme .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon {
	display: block;
}

.mytheme .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon  + .v-captiontext.v-captiontext {
	margin-left: 0;
}

.mytheme .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 10px;
}

.mytheme .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 3px;
	margin-top: 0;
}

.mytheme .v-tabsheet-compact-tabbar  > .v-tabsheet-tabcontainer-compact-tabbar .v-caption {
	line-height: 1.8;
}

.mytheme .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	visibility: hidden;
}

.mytheme .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-tabsheet-caption-close {
	visibility: visible;
}

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

.mytheme .v-colorpicker-popup .v-tabsheet-tabs {
	padding: 0 8px;
}

.mytheme .v-colorpicker-popup [class$="sliders"] {
	padding: 10px;
}

.mytheme .v-colorpicker-popup [class$="sliders"] .v-widget {
	width: 100% !important;
	vertical-align: middle;
}

.mytheme .v-colorpicker-popup [class$="sliders"] .v-has-caption {
	white-space: nowrap;
	padding-left: 39px;
}

.mytheme .v-colorpicker-popup [class$="sliders"] .v-caption {
	display: inline-block;
	margin-left: -39px;
	width: 39px;
}

.mytheme .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-has-caption {
	padding-left: 65px;
}

.mytheme .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-caption {
	margin-left: -65px;
	width: 65px;
}

.mytheme .v-colorpicker-popup .v-slider-red .v-slider-base:after {
	background: red;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mytheme .v-colorpicker-popup .v-slider-green .v-slider-base:after {
	background: green;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mytheme .v-colorpicker-popup .v-slider-blue .v-slider-base:after {
	background: blue;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mytheme .v-colorpicker-popup .v-margin-bottom {
	padding-bottom: 0;
}

.mytheme .v-colorpicker-popup .resize-button {
	width: 100% !important;
	height: auto !important;
	text-align: center;
	outline: none;
}

.mytheme .v-colorpicker-popup .resize-button:before {
	font-family: ThemeIcons;
	content: "\f141";
}

.mytheme .v-colorpicker-popup .resize-button-caption {
	display: none;
}

.mytheme .v-colorpicker-popup .v-horizontallayout {
	height: auto !important;
	padding: 8px 0;
	background-color: #ffcccc;
	border-top: 1px solid #ffb5b5;
}

.mytheme .v-colorpicker-popup .v-horizontallayout .v-expand {
	overflow: visible;
}

.mytheme .v-colorpicker-popup .v-horizontallayout .v-button {
	width: 80% !important;
}

.mytheme .v-colorpicker-preview {
	width: 100% !important;
	height: auto !important;
	padding: 8px;
	display: inline-flex;
}

.mytheme .v-colorpicker-preview-textfield {
	height: auto !important;
	text-align: center;
	border: none;
}

.mytheme .v-colorpicker {
	width: auto;
}

.mytheme .v-colorpicker-button-color {
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	max-width: 18px;
}

.mytheme .v-colorpicker-button-color  + .v-button-caption:not(:empty) {
	margin-left: 15px;
}

.mytheme .v-panel {
	background: #fee6e6;
	color: #6d1b1b;
	border-radius: 4px;
	border: 1px solid #d9aeae;
	-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;
}

.mytheme .v-panel-caption {
	box-sizing: border-box;
	padding: 0 10px;
	line-height: 29px;
	border-bottom: 1px solid #d9aeae;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffcdcd 2%, #fcc7c7 98%);
	background-image: linear-gradient(to bottom,#ffcdcd 2%, #fcc7c7 98%);
	color: #691717;
	font-weight: 400;
	font-size: 12px;
	-webkit-box-shadow: inset 0 1px 0 #fff4f4, inset 0 -1px 0 #f9bcbc;
	box-shadow: inset 0 1px 0 #fff4f4, inset 0 -1px 0 #f9bcbc;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	border-radius: 3px 3px 0 0;
}

.mytheme .v-panel-content {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.mytheme .v-panel-content  > .v-margin-top {
	padding-top: 10px;
}

.mytheme .v-panel-content  > .v-margin-right {
	padding-right: 10px;
}

.mytheme .v-panel-content  > .v-margin-bottom {
	padding-bottom: 10px;
}

.mytheme .v-panel-content  > .v-margin-left {
	padding-left: 10px;
}

.mytheme .v-panel-borderless {
	background: transparent;
	color: inherit;
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mytheme .v-panel-borderless  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
	padding: 0;
	margin: 0 10px;
	border-bottom: none;
}

.mytheme .v-panel-well {
	background: #ffc2c2;
	color: #661717;
	-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 #c9a1a1;
}

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

.mytheme .v-panel-scroll-divider  > [class*="-captionwrap"] {
	position: relative;
	z-index: 2;
}

.mytheme .v-panel-scroll-divider  > [class*="-captionwrap"]:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #e4b6b6;
	border-color: rgba(201, 161, 161, 0.5);
}

.mytheme .v-panel-scroll-divider  > [class*="-content"]:before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	height: 0;
	border-top: 1px solid #ffcccc;
	left: 0;
	right: 0;
}

.mytheme .v-panel-caption.v-horizontallayout {
	height: auto !important;
	line-height: 0;
}

.mytheme .v-panel-caption.v-horizontallayout .v-slot {
	vertical-align: middle;
}

.mytheme .v-panel-caption.v-horizontallayout .v-label {
	line-height: 30px;
}

.mytheme .v-accordion {
	background: #fee6e6;
	color: #6d1b1b;
	border-radius: 4px;
	border: 1px solid #d9aeae;
	-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: #ffcccc;
	background-image: -webkit-linear-gradient(top, #fecece 2%, #f8c4c4 98%);
	background-image: linear-gradient(to bottom,#fecece 2%, #f8c4c4 98%);
	overflow: hidden;
}

.mytheme .v-accordion-item {
	position: relative;
}

.mytheme .v-accordion-item:first-child {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.mytheme .v-accordion-item:last-child {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

.mytheme .v-accordion-item:last-child [class*="item-content"] {
	border-radius: inherit;
}

.mytheme .v-accordion-item[class*="item-open"]:last-child > div > .v-caption {
	border-radius: 0;
}

.mytheme .v-accordion-item:not([class*="item-open"]):last-child > div > .v-caption {
	border-bottom: none;
	margin-bottom: 0;
}

.mytheme .v-accordion-item[class*="item-open"] + [class*="item"] {
	border-top: 1px solid #d8c4c4;
}

.mytheme .v-accordion-item-caption {
	border-radius: inherit;
}

.mytheme .v-accordion-item-caption  > .v-caption {
	box-sizing: border-box;
	padding: 0 10px;
	line-height: 29px;
	border-bottom: 1px solid #d9aeae;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffcdcd 2%, #fcc7c7 98%);
	background-image: linear-gradient(to bottom,#ffcdcd 2%, #fcc7c7 98%);
	color: #691717;
	font-weight: 400;
	font-size: 12px;
	-webkit-box-shadow: inset 0 1px 0 #fff4f4, inset 0 -1px 0 #f9bcbc;
	box-shadow: inset 0 1px 0 #fff4f4, inset 0 -1px 0 #f9bcbc;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	display: block;
	background: transparent;
	border-bottom-color: #c8b5b5;
	border-radius: inherit;
	cursor: pointer;
	position: relative;
}

.mytheme .v-accordion-item-caption  > .v-caption:hover:before, .mytheme .v-accordion-item-caption  > .v-caption:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.mytheme .v-accordion-item-caption  > .v-caption:hover:before {
	background-color: rgba(255, 76, 77, 0.1);
	border: none;
}

.mytheme .v-accordion-item-caption  > .v-caption:active:before {
	background-color: rgba(230, 0, 0, 0.2);
}

.mytheme .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: #fee6e6;
	box-sizing: border-box;
}

.mytheme .v-accordion-item-content  > .v-margin-top {
	padding-top: 10px;
}

.mytheme .v-accordion-item-content  > .v-margin-right {
	padding-right: 10px;
}

.mytheme .v-accordion-item-content  > .v-margin-bottom {
	padding-bottom: 10px;
}

.mytheme .v-accordion-item-content  > .v-margin-left {
	padding-left: 10px;
}

.mytheme .v-accordion-borderless {
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mytheme .v-accordion-borderless  > .v-accordion-item, .mytheme .v-accordion-borderless  > .v-accordion-item > div > .v-caption, .mytheme .v-accordion-borderless  > .v-accordion-item > .v-accordion-item-content {
	border-radius: 0;
}

.mytheme .v-select-twincol {
	white-space: normal;
}

.mytheme .v-select-twincol select {
	border: 1px solid #c9a1a1;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	color: #691717;
}

.mytheme .v-select-twincol select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

.mytheme .v-select-twincol .v-textfield, .mytheme .v-select-twincol .v-nativebutton {
	width: auto !important;
	margin-top: 8px;
}

.mytheme .v-select-twincol .v-nativebutton {
	margin-left: 8px;
}

.mytheme .v-select-twincol-caption-left, .mytheme .v-select-twincol-caption-right {
	font-size: 12px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
}

.mytheme .v-select-twincol-buttons {
	white-space: nowrap;
	display: inline-block;
	vertical-align: top;
	position: relative;
	min-width: 3.5em;
}

.mytheme .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: 8px;
	right: 8px;
	top: 29px;
	padding: 0;
	text-align: center;
}

.mytheme .v-select-twincol-buttons .v-button:first-child {
	top: 0;
}

.mytheme .v-select-twincol-buttons .v-button-caption {
	display: none;
}

.mytheme .v-select-twincol-buttons .v-button:focus {
	z-index: 1;
}

.mytheme .v-select-twincol-buttons .v-button:first-child {
	border-radius: 4px 4px 0 0;
}

.mytheme .v-select-twincol-buttons .v-button:last-child {
	border-radius: 0 0 4px 4px;
}

.mytheme .v-select-twincol-buttons .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.mytheme .v-select-twincol-buttons .v-button:first-child .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.mytheme .v-select-twincol-error .v-select-twincol-options, .mytheme .v-select-twincol-error .v-select-twincol-selections {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.mytheme .v-select-twincol-error-info .v-select-twincol-options, .mytheme .v-select-twincol-error-info .v-select-twincol-selections {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.mytheme .v-select-twincol-error-warning .v-select-twincol-options, .mytheme .v-select-twincol-error-warning .v-select-twincol-selections {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.mytheme .v-select-twincol-error-error .v-select-twincol-options, .mytheme .v-select-twincol-error-error .v-select-twincol-selections {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.mytheme .v-select-twincol-error-critical .v-select-twincol-options, .mytheme .v-select-twincol-error-critical .v-select-twincol-selections {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.mytheme .v-select-twincol-error-system .v-select-twincol-options, .mytheme .v-select-twincol-error-system .v-select-twincol-selections {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.mytheme .v-select select {
	border: 1px solid #c9a1a1;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	color: #691717;
}

.mytheme .v-select select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

.mytheme .v-select-select {
	display: block;
}

.mytheme .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 8px;
}

.mytheme .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 8px;
	margin-left: 8px;
}

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

.mytheme .v-calendar-header-day {
	font-weight: 400;
	text-align: center;
	padding: 6px 0;
}

.mytheme .v-calendar-header-week .v-calendar-back, .mytheme .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) ;
}

.mytheme .v-calendar-header-week .v-calendar-back:focus, .mytheme .v-calendar-header-week .v-calendar-next:focus {
	outline: none;
}

.mytheme .v-calendar-header-week .v-calendar-back:hover, .mytheme .v-calendar-header-week .v-calendar-next:hover {
	opacity: 1;
	filter: none ;
}

.mytheme .v-calendar-header-week .v-calendar-back:active, .mytheme .v-calendar-header-week .v-calendar-next:active {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mytheme .v-calendar-header-week .v-calendar-back:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.mytheme .v-calendar-header-week .v-calendar-next:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.mytheme .v-calendar-month {
	outline: none;
	overflow: hidden;
}

.mytheme .v-calendar-month td {
	vertical-align: top;
}

.mytheme .v-calendar-week-number {
	cursor: pointer;
	width: 20px;
	text-align: center;
	font-size: 0.8em;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mytheme .v-calendar-week-number:hover {
	opacity: 1;
	filter: none ;
}

.mytheme .v-calendar-month-day {
	outline: none;
	box-sizing: border-box;
	line-height: 1.2;
}

.mytheme .v-calendar-bottom-spacer, .mytheme .v-calendar-spacer, .mytheme .v-calendar-bottom-spacer-empty {
	height: 16px;
	margin-bottom: 3px;
}

.mytheme .v-calendar-bottom-spacer {
	font-size: 0.8em;
	padding: 0 4px;
	cursor: pointer;
}

.mytheme .v-calendar-bottom-spacer:hover {
	color: #e60000;
}

.mytheme .v-calendar-day-number {
	line-height: 20px;
	font-size: 13px;
	text-align: right;
	margin: 0 4px;
	white-space: nowrap;
	border-top: 1px solid #ffbdbd;
	cursor: pointer;
}

.mytheme .v-calendar-day-number:hover {
	color: #e60000;
}

.mytheme .v-calendar-month-day-today {
	background: #fdc1c1;
}

.mytheme .v-calendar-month-day-today .v-calendar-day-number {
	font-weight: 400;
	color: #e60000;
	border-top: 2px solid #e60000;
	line-height: 19px;
	margin: 0;
	padding: 0 4px;
}

.mytheme .v-calendar-month-day-selected {
	background-color: #fcb7b7;
}

.mytheme .v-calendar-month-day-dragemphasis {
	background-color: #a8a8a8;
}

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

.mytheme .v-calendar-weekly-longevents {
	margin-left: 50px;
	border-bottom: 3px solid #ff9999;
}

.mytheme .v-calendar-weekly-longevents .v-calendar-event-all-day {
	height: 18px;
	line-height: 1.6;
	margin-bottom: 3px;
}

.mytheme .v-calendar-header-week td {
	vertical-align: middle !important;
}

.mytheme .v-calendar-header-week .v-calendar-header-day {
	cursor: pointer;
}

.mytheme .v-calendar-times {
	width: 50px;
	font-size: 0.77em;
	line-height: 1;
	white-space: nowrap;
}

.mytheme .v-calendar-time {
	text-align: right;
	padding-right: 8px;
	margin-top: -5px;
	padding-bottom: 5px;
}

.mytheme .v-calendar-day-times, .mytheme .v-calendar-day-times-today {
	outline: none;
	border-right: 1px solid transparent;
}

.mytheme .v-calendar-day-times:focus, .mytheme .v-calendar-day-times-today:focus {
	outline: none;
}

.mytheme .v-calendar .v-datecellslot, .mytheme .v-calendar .v-datecellslot-even {
	border-top: 1px solid #e4b6b6;
}

.mytheme .v-calendar .v-datecellslot:first-child, .mytheme .v-calendar .v-datecellslot-even:first-child {
	border-top-color: transparent;
}

.mytheme .v-calendar .v-datecellslot {
	border-top-style: dotted;
}

.mytheme .v-calendar .v-datecellslot, .mytheme .v-calendar .v-datecellslot-even {
	margin-right: 4px;
}

.mytheme .v-calendar-current-time {
	background: #e60000;
	line-height: 1px;
	pointer-events: none;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mytheme .v-calendar-current-time:before {
	content: "\2022";
	color: #e60000;
	font-size: 22px;
	margin-left: -0.07em;
}

.mytheme .v-calendar .v-daterange {
	position: relative;
}

.mytheme .v-calendar .v-daterange:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: -1px;
	left: 0;
	background: #e60000;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	border-radius: 4px 4px 0 0;
}

.mytheme .v-calendar .v-daterange  + .v-daterange {
	border-color: transparent;
}

.mytheme .v-calendar .v-daterange  + .v-daterange:before {
	border-radius: 0;
}

.mytheme .v-calendar-event {
	font-size: 0.85em;
	overflow: hidden;
	cursor: pointer;
	outline: none;
	border-radius: 4px;
}

.mytheme .v-calendar-event:focus {
	outline: none;
}

.mytheme .v-calendar-event-month {
	padding: 0 4px;
	box-sizing: border-box;
	margin-bottom: 3px;
	white-space: nowrap;
	text-overflow: ellipsis;
	height: 16px;
	line-height: 16px;
}

.mytheme .v-calendar-event-month .v-calendar-event-time {
	float: right;
	font-size: 0.9em;
	line-height: 16px;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mytheme .v-calendar-event-month:before {
	content: "\25cf";
	margin-right: 0.2em;
}

.mytheme .v-calendar-event-all-day {
	padding: 0 4px;
	box-sizing: border-box;
	height: 16px;
	line-height: 16px;
	border-radius: 0;
	margin-left: -1px;
	white-space: nowrap;
}

.mytheme .v-calendar-event-all-day:before {
	content: "";
}

.mytheme .v-calendar-event-start {
	overflow: visible;
	margin-left: 0;
}

.mytheme .v-calendar-event-start.v-calendar-event-continued-to, .mytheme .v-calendar-event-start.v-calendar-event-end {
	overflow: hidden;
	text-overflow: ellipsis;
}

.mytheme .v-calendar-event-start {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	margin-left: 4px;
}

.mytheme .v-calendar-event-end {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	margin-right: 4px;
}

.mytheme .v-calendar-event-caption {
	font-weight: 500;
	line-height: 1.2;
	padding: 4px 0;
	position: absolute;
	overflow: hidden;
	right: 8px;
	left: 4px;
	bottom: 0;
	top: 0;
}

.mytheme .v-calendar-event-caption span {
	font-weight: 300;
	white-space: nowrap;
}

.mytheme .v-calendar-week-wrapper .v-calendar-event {
	overflow: visible;
}

.mytheme .v-calendar-week-wrapper .v-calendar-event-content {
	margin-top: -1px;
	border-radius: 5px;
	border: 1px solid #ffcccc;
	padding-top: 3px;
	margin-right: 4px;
}

.mytheme .v-calendar-event-month:before {
	color: #00ace0;
}

.mytheme .v-calendar-event-all-day {
	background-color: #ccc5d0;
	background-color: rgba(204, 197, 208, 0.8);
	color: #00ace0;
}

.mytheme .v-calendar-week-wrapper .v-calendar-event {
	color: #00ace0;
}

.mytheme .v-calendar-week-wrapper .v-calendar-event .v-calendar-event-content {
	background-color: #ccc5d0;
	background-color: rgba(204, 197, 208, 0.8);
}

.mytheme .v-calendar-event-month[class*="color2"]:before {
	color: #2d9f19;
}

.mytheme .v-calendar-event-all-day[class*="color2"] {
	background-color: #d5c3a8;
	background-color: rgba(213, 195, 168, 0.8);
	color: #2d9f19;
}

.mytheme .v-calendar-week-wrapper .v-calendar-event[class*="color2"] {
	color: #2d9f19;
}

.mytheme .v-calendar-week-wrapper .v-calendar-event[class*="color2"] .v-calendar-event-content {
	background-color: #d5c3a8;
	background-color: rgba(213, 195, 168, 0.8);
}

.mytheme .v-calendar-event-month[class*="color3"]:before {
	color: #d18100;
}

.mytheme .v-calendar-event-all-day[class*="color3"] {
	background-color: #f5bda3;
	background-color: rgba(245, 189, 163, 0.8);
	color: #d18100;
}

.mytheme .v-calendar-week-wrapper .v-calendar-event[class*="color3"] {
	color: #d18100;
}

.mytheme .v-calendar-week-wrapper .v-calendar-event[class*="color3"] .v-calendar-event-content {
	background-color: #f5bda3;
	background-color: rgba(245, 189, 163, 0.8);
}

.mytheme .v-calendar-event-month[class*="color4"]:before {
	color: #ce3812;
}

.mytheme .v-calendar-event-all-day[class*="color4"] {
	background-color: #f5aea6;
	background-color: rgba(245, 174, 166, 0.8);
	color: #ce3812;
}

.mytheme .v-calendar-week-wrapper .v-calendar-event[class*="color4"] {
	color: #ce3812;
}

.mytheme .v-calendar-week-wrapper .v-calendar-event[class*="color4"] .v-calendar-event-content {
	background-color: #f5aea6;
	background-color: rgba(245, 174, 166, 0.8);
}

.mytheme .v-calendar-event-month[class*="color5"]:before {
	color: #2d55cd;
}

.mytheme .v-calendar-event-all-day[class*="color5"] {
	background-color: #d5b4cc;
	background-color: rgba(213, 180, 204, 0.8);
	color: #2d55cd;
}

.mytheme .v-calendar-week-wrapper .v-calendar-event[class*="color5"] {
	color: #2d55cd;
}

.mytheme .v-calendar-week-wrapper .v-calendar-event[class*="color5"] .v-calendar-event-content {
	background-color: #d5b4cc;
	background-color: rgba(213, 180, 204, 0.8);
}

.mytheme .v-calendar.v-disabled * {
	cursor: default;
}

.mytheme .v-label {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

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

.mytheme .v-label-undef-w {
	white-space: nowrap;
}

.mytheme h1, .mytheme .v-label-h1, .mytheme h2, .mytheme .v-label-h2, .mytheme h3, .mytheme .v-label-h3 {
	line-height: 1.1;
	font-weight: 200;
	color: #1c0808;
}

.mytheme h1, .mytheme .v-label-h1 {
	font-size: 2.4em;
	margin-top: 1.4em;
	margin-bottom: 1em;
	
	letter-spacing: -0.03em;
}

.mytheme h2, .mytheme .v-label-h2 {
	font-size: 1.6em;
	
	margin-top: 1.6em;
	margin-bottom: 0.77em;
	letter-spacing: -0.02em;
}

.mytheme h3, .mytheme .v-label-h3 {
	font-size: 1.2em;
	
	margin-top: 1.8em;
	margin-bottom: 0.77em;
	letter-spacing: 0;
}

.mytheme h4, .mytheme .v-label-h4 {
	line-height: 1.1;
	font-weight: 500;
	font-size: 12px;
	color: #611616;
	text-transform: uppercase;
	letter-spacing: 0;
	margin-top: 2.4em;
	margin-bottom: 0.8em;
}

.mytheme .v-csslayout  > h1:first-child, .mytheme .v-csslayout  > h2:first-child, .mytheme .v-csslayout  > h3:first-child, .mytheme .v-csslayout  > h4 > .v-label-h1:first-child, .mytheme .v-csslayout  > .v-label-h2:first-child, .mytheme .v-csslayout  > .v-label-h3:first-child, .mytheme .v-csslayout  > .v-label-h4:first-child {
	margin-top: 13px;
}

.mytheme .v-verticallayout > .v-slot:first-child h1, .mytheme .v-verticallayout > .v-slot:first-child .v-label-h1, .mytheme .v-verticallayout > .v-slot:first-child h2, .mytheme .v-verticallayout > .v-slot:first-child .v-label-h2, .mytheme .v-verticallayout > .v-slot:first-child h3, .mytheme .v-verticallayout > .v-slot:first-child .v-label-h3, .mytheme .v-verticallayout > .v-slot:first-child h4, .mytheme .v-verticallayout > .v-slot:first-child .v-label-h4, .mytheme .v-verticallayout > div > .v-slot:first-child h1, .mytheme .v-verticallayout > div > .v-slot:first-child .v-label-h1, .mytheme .v-verticallayout > div > .v-slot:first-child h2, .mytheme .v-verticallayout > div > .v-slot:first-child .v-label-h2, .mytheme .v-verticallayout > div > .v-slot:first-child h3, .mytheme .v-verticallayout > div > .v-slot:first-child .v-label-h3, .mytheme .v-verticallayout > div > .v-slot:first-child h4, .mytheme .v-verticallayout > div > .v-slot:first-child .v-label-h4 {
	margin-top: 13px;
}

.mytheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h1, .mytheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .mytheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h2, .mytheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .mytheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h3, .mytheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .mytheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h4, .mytheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h4, .mytheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h1, .mytheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .mytheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h2, .mytheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .mytheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h3, .mytheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .mytheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h4, .mytheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h4 {
	margin-top: -0.5em;
}

.mytheme h1.no-margin, .mytheme .v-label-h1.no-margin, .mytheme h2.no-margin, .mytheme .v-label-h2.no-margin, .mytheme h3.no-margin, .mytheme .v-label-h3.no-margin, .mytheme h4.no-margin, .mytheme .v-label-h4.no-margin {
	margin: 0 !important;
}

.mytheme .v-label-colored {
	color: #e60000;
}

.mytheme .v-label-large {
	font-size: 16px;
}

.mytheme .v-label-small {
	font-size: 12px;
}

.mytheme .v-label-tiny {
	font-size: 10px;
}

.mytheme .v-label-huge {
	font-size: 21px;
}

.mytheme .v-label-bold {
	font-weight: 500;
}

.mytheme .v-label-light {
	font-weight: 200;
	color: #c91d1d;
}

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

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

.mytheme .v-label-spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(230, 0, 0, 0.2);
	border-top-color: #e60000;
	border-right-color: #e60000;
	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;
}

.mytheme .v-label-success, .mytheme .v-label-failure {
	background: #fff5f5;
	color: #731919;
	border: 2px solid #2c9720;
	border-radius: 4px;
	padding: 6px 15px 6px 30px;
	font-weight: 400;
	font-size: 12px;
}

.mytheme .v-label-success:before, .mytheme .v-label-failure:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
	margin-left: -15px;
	color: #2c9720;
}

.mytheme .v-label-failure {
	border-color: #ed473b;
}

.mytheme .v-label-failure:before {
	content: "\f05e";
	color: #ed473b;
}

.mytheme [draggable=true] {
	-khtml-user-drag: element;
	-webkit-user-drag: element;
}

.mytheme .v-ddwrapper {
	position: relative;
}

.mytheme .v-ddwrapper-over:before, .mytheme .v-ddwrapper-over:after {
	content: "";
	position: absolute;
	z-index: 10;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	border: 0 solid #e60000;
}

.mytheme .v-ddwrapper-over-top:before {
	border-top-width: 2px;
}

.mytheme .v-ddwrapper-over-right:before {
	border-right-width: 2px;
}

.mytheme .v-ddwrapper-over-bottom:before {
	border-bottom-width: 2px;
}

.mytheme .v-ddwrapper-over-left:before {
	border-left-width: 2px;
}

.mytheme .no-vertical-drag-hints .v-ddwrapper-over-top:before, .mytheme .no-vertical-drag-hints.v-ddwrapper-over-top:before {
	border-top-width: 0;
}

.mytheme .no-vertical-drag-hints .v-ddwrapper-over-top:after, .mytheme .no-vertical-drag-hints.v-ddwrapper-over-top:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #ff7373;
}

.mytheme .no-vertical-drag-hints .v-ddwrapper-over-bottom:before, .mytheme .no-vertical-drag-hints.v-ddwrapper-over-bottom:before {
	border-bottom-width: 0;
}

.mytheme .no-vertical-drag-hints .v-ddwrapper-over-bottom:after, .mytheme .no-vertical-drag-hints.v-ddwrapper-over-bottom:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #ff7373;
}

.mytheme .no-horizontal-drag-hints.v-ddwrapper-over-left:before, .mytheme .no-horizontal-drag-hints .v-ddwrapper-over-left:before {
	border-left-width: 0;
}

.mytheme .no-horizontal-drag-hints.v-ddwrapper-over-left:after, .mytheme .no-horizontal-drag-hints .v-ddwrapper-over-left:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #ff7373;
}

.mytheme .no-horizontal-drag-hints.v-ddwrapper-over-right:before, .mytheme .no-horizontal-drag-hints .v-ddwrapper-over-right:before {
	border-right-width: 0;
}

.mytheme .no-horizontal-drag-hints.v-ddwrapper-over-right:after, .mytheme .no-horizontal-drag-hints .v-ddwrapper-over-right:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #ff7373;
}

.mytheme .v-ddwrapper-over-middle:after, .mytheme .v-ddwrapper-over-center:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #ff7373;
}

.mytheme .no-box-drag-hints.v-ddwrapper:after, .mytheme .no-box-drag-hints .v-ddwrapper:after {
	display: none !important;
	content: none;
}

.mytheme button {
	font: inherit;
	font-weight: 400;
	line-height: 1.2;
}

.mytheme .v-nativebutton {
	-webkit-touch-callout: none;
}

.mytheme .v-select select {
	border: 1px solid #c9a1a1;
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	color: #691717;
}

.mytheme .v-select select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.5);
}

.mytheme .v-select-select {
	display: block;
}

.mytheme .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 8px;
}

.mytheme .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 8px;
	margin-left: 8px;
}

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

.mytheme .v-popupview {
	cursor: pointer;
	color: #e60000;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.mytheme .v-popupview:hover {
	color: #ff1a1a;
}

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

.mytheme .v-popupview-popup {
	padding: 3px 3px;
	border-radius: 4px;
	background-color: #ffd6d6;
	color: #6c1818;
	-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.09787);
	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.09787);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.mytheme .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;
}

.mytheme .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;
}

.mytheme .v-popupview-popup .popupContent  > .v-margin-top {
	padding-top: 10px;
}

.mytheme .v-popupview-popup .popupContent  > .v-margin-right {
	padding-right: 10px;
}

.mytheme .v-popupview-popup .popupContent  > .v-margin-bottom {
	padding-bottom: 10px;
}

.mytheme .v-popupview-popup .popupContent  > .v-margin-left {
	padding-left: 10px;
}

.mytheme .v-popupview-loading {
	margin: 10px 10px;
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(230, 0, 0, 0.2);
	border-top-color: #e60000;
	border-right-color: #e60000;
	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;
}

.mytheme .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: 30px;
	border-radius: 4px;
	padding: 0;
	border: 1px solid #c9a1a1;
	background: #fff5f5;
	color: #731919;
	-webkit-box-shadow: inset 0 1px 0 #fde7e7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #fde7e7, 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;
}

.mytheme .v-richtextarea[class*="prompt"] {
	color: #cb7575;
}

.mytheme .v-richtextarea .gwt-RichTextToolbar {
	background-color: #ffcccc;
	background-image: -webkit-linear-gradient(top, #ffd0d0 2%, #f4bfbf 98%);
	background-image: linear-gradient(to bottom,#ffd0d0 2%, #f4bfbf 98%);
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5;
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #f0b5b5;
	border-bottom: 1px solid #c9a1a1;
	color: #691717;
}

.mytheme .v-richtextarea .gwt-ToggleButton, .mytheme .v-richtextarea .gwt-PushButton {
	display: inline-block;
	line-height: 30px;
	width: 30px;
	text-align: center;
	outline: none;
}

.mytheme .v-richtextarea .gwt-ToggleButton:hover, .mytheme .v-richtextarea .gwt-PushButton:hover {
	color: black;
}

.mytheme .v-richtextarea .gwt-ToggleButton-down, .mytheme .v-richtextarea .gwt-ToggleButton-down-hovering {
	background-color: #ff9999;
	background-image: -webkit-linear-gradient(bottom, #ff9b9b 2%, #fc9494 98%);
	background-image: linear-gradient(to top,#ff9b9b 2%, #fc9494 98%);
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top img {
	display: none;
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div:before {
	font-family: ThemeIcons;
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Bold"]:before {
	content: "\f032";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Italic"]:before {
	content: "\f033";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Underline"]:before {
	content: "\f0cd";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Subscript"]:before {
	content: "\f12c";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Superscript"]:before {
	content: "\f12b";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Left Justify"]:before {
	content: "\f036";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Center"]:before {
	content: "\f037";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Right Justify"]:before {
	content: "\f038";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Strikethrough"]:before {
	content: "\f0cc";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Right"]:before {
	content: "\f03c";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Left"]:before {
	content: "\f03b";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Horizontal Rule"]:before {
	content: "\2014";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Ordered List"]:before {
	content: "\f0cb";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Unordered List"]:before {
	content: "\f0ca";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Image"]:before {
	content: "\f03e";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Create Link"]:before {
	content: "\f0c1";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Link"]:before {
	content: "\f127";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Formatting"]:before {
	content: "\f12d";
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-bottom {
	font-size: 10px;
	padding: 0 8px 8px 0;
}

.mytheme .v-richtextarea .gwt-RichTextToolbar-bottom select {
	margin: 8px 0 0 8px;
}

.mytheme .v-richtextarea .gwt-RichTextArea {
	background: #fff;
	border: none;
	display: block;
}

.mytheme .v-richtextarea-readonly {
	padding: 4px 5px;
	background: transparent;
}

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

.mytheme .v-upload-immediate .v-button {
	width: 100%;
}

.mytheme .v-upload-immediate input[type="file"] {
	opacity: 0;
	filter: alpha(opacity=0) ;
	z-index: -1;
	position: absolute;
	right: 0;
	height: 30px;
	text-align: right;
	border: none;
	background: transparent;
}

.mytheme .v-Notification.v-position-top {
	top: 10px;
}

.mytheme .v-Notification.v-position-right {
	right: 10px;
}

.mytheme .v-Notification.v-position-bottom {
	bottom: 10px;
}

.mytheme .v-Notification.v-position-left {
	left: 10px;
}

.mytheme .v-Notification.v-position-assistive {
	top: -9999px;
	left: -9999px;
}

.mytheme .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;
}

.mytheme .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;
}

.mytheme .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;
}

.mytheme .v-Notification-animate-out {
	-webkit-animation: valo-animate-out-fade 150ms;
	-moz-animation: valo-animate-out-fade 150ms;
	animation: valo-animate-out-fade 150ms;
}

.mytheme .v-Notification-animate-out.v-position-top, .mytheme .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;
}

.mytheme .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: #ffd6d6;
	-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: 15px 18px;
}

.mytheme .v-Notification .v-Notification-caption {
	color: #e60000;
	font-size: 16px;
	line-height: 1;
}

.mytheme .v-Notification .v-Notification-description {
	line-height: 1.4;
}

.mytheme .v-Notification-caption {
	margin: 0;
	display: inline-block;
	text-align: left;
	font-weight: inherit;
	line-height: inherit;
	white-space: nowrap;
	letter-spacing: 0;
}

.mytheme .v-Notification-description, .mytheme .v-Notification-details {
	margin: 0;
	display: inline-block;
	vertical-align: middle;
	max-width: 30em;
	text-align: left;
	max-height: 20em;
	overflow: auto;
}

.mytheme .v-Notification-caption ~ .v-Notification-description, .mytheme .v-Notification-caption ~ .v-Notification-details {
	margin-left: 20px;
}

.mytheme .v-icon + .v-Notification-caption {
	margin-left: 13px;
}

.mytheme .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: 10px 12px;
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 400;
	line-height: 18px;
}

.mytheme .v-Notification-system .v-Notification-description, .mytheme .v-Notification-system .v-Notification-details {
	max-width: 50em;
}

.mytheme .v-Notification-system.v-position-top {
	top: 0;
}

.mytheme .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;
}

.mytheme .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;
}

.mytheme .v-Notification-system.v-position-bottom {
	bottom: 0;
}

.mytheme .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;
}

.mytheme .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;
}

.mytheme .v-Notification-system .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.mytheme .v-Notification-system .v-Notification-description, .mytheme .v-Notification-system .v-Notification-details {
	color: #e6e6e6;
}

.mytheme .v-Notification-system u {
	text-decoration: none;
}

.mytheme .v-Notification.tray {
	text-align: left;
}

.mytheme .v-Notification.tray .v-Notification-caption + .v-Notification-description {
	display: block;
	margin: 0.5em 0 0;
}

.mytheme .v-Notification.warning {
	background: #FFF3D2;
}

.mytheme .v-Notification.warning .v-Notification-caption {
	color: #AC7C00;
}

.mytheme .v-Notification.warning .v-Notification-description {
	color: #9D874D;
}

.mytheme .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: 48px;
	overflow: hidden !important;
	cursor: pointer;
}

.mytheme .v-Notification.error .v-Notification-caption {
	color: white;
}

.mytheme .v-Notification.error .v-Notification-description {
	color: #f4e0df;
}

.mytheme .v-Notification.error:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -10px;
	right: 10px;
	width: 20px;
	height: 20px;
	line-height: 19px;
	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;
}

.mytheme .v-Notification.error:hover:after {
	opacity: 1;
	filter: none ;
}

.mytheme .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;
}

.mytheme .v-Notification.error:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.mytheme .v-Notification.error:active:after {
	background-color: #fff;
	color: #000;
}

.mytheme .v-Notification.dark {
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 400;
	line-height: 18px;
}

.mytheme .v-Notification.dark .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.mytheme .v-Notification.dark .v-Notification-description, .mytheme .v-Notification.dark .v-Notification-details {
	color: #e6e6e6;
}

.mytheme .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: 10px 12px;
}

.mytheme .v-Notification.bar .v-Notification-description, .mytheme .v-Notification.bar .v-Notification-details {
	max-width: 50em;
}

.mytheme .v-Notification.bar.v-position-top {
	top: 0;
}

.mytheme .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;
}

.mytheme .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;
}

.mytheme .v-Notification.bar.v-position-bottom {
	bottom: 0;
}

.mytheme .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;
}

.mytheme .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;
}

.mytheme .v-Notification.small {
	padding: 9px 11px;
}

.mytheme .v-Notification.small .v-Notification-caption {
	font-size: 13px;
}

.mytheme .v-Notification.small .v-Notification-description {
	font-size: 11px;
}

.mytheme .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);
}

.mytheme .v-Notification.critical-error .v-Notification-caption {
	color: white;
}

.mytheme .v-Notification.critical-error .v-Notification-description {
	color: #f4e0df;
}

.mytheme .v-Notification.closable {
	padding-right: 48px;
	overflow: hidden !important;
	cursor: pointer;
}

.mytheme .v-Notification.closable:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -10px;
	right: 10px;
	width: 20px;
	height: 20px;
	line-height: 19px;
	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;
}

.mytheme .v-Notification.closable:hover:after {
	opacity: 1;
	filter: none ;
}

.mytheme .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;
}

.mytheme .v-Notification.closable.dark:after, .mytheme .v-Notification.closable.critical-error:after, .mytheme .v-Notification.closable.system:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.mytheme .v-Notification.closable.dark:active:after, .mytheme .v-Notification.closable.critical-error:active:after, .mytheme .v-Notification.closable.system:active:after {
	background-color: #fff;
	color: #000;
}

.mytheme .v-Notification.closable.tray:after {
	top: 13px;
	margin-top: 0;
}

.mytheme .v-Notification.success, .mytheme .v-Notification.failure {
	background: #fff;
	color: #555;
	border: 2px solid #2c9720;
}

.mytheme .v-Notification.success .v-Notification-caption, .mytheme .v-Notification.failure .v-Notification-caption {
	color: #2c9720;
	font-weight: 400;
}

.mytheme .v-Notification.success .v-Notification-caption:before, .mytheme .v-Notification.failure .v-Notification-caption:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
}

.mytheme .v-Notification.success.bar, .mytheme .v-Notification.failure.bar {
	margin: -2px !important;
}

.mytheme .v-Notification.failure {
	border-color: #ed473b;
}

.mytheme .v-Notification.failure .v-Notification-caption {
	color: #ed473b;
}

.mytheme .v-Notification.failure .v-Notification-caption:before {
	content: "\f05e";
}

.mytheme .valo-menu {
	height: 100%;
	background-color: #8a0000;
	background-image: -webkit-linear-gradient(right, #750000 0%, #8a0000 8px);
	background-image: linear-gradient(to left,#750000 0%, #8a0000 8px);
	color: #e85c5c;
	font-size: 12px;
	line-height: 24px;
	border-right: 1px solid #6d0000;
	white-space: nowrap;
}

.mytheme .valo-menu-toggle {
	display: none;
	position: fixed;
	z-index: 200;
	top: 3px;
	left: 3px;
	min-width: 0;
}

.mytheme .valo-menu-part {
	border-left: 1px solid #780000;
	height: 100%;
	padding-bottom: 30px;
	overflow: auto;
}

.mytheme .valo-menu-part:first-child {
	border-left: none;
}

.mytheme .valo-menu-title, .mytheme .valo-menu-subtitle, .mytheme .valo-menu-item {
	display: block;
	line-height: inherit;
	white-space: nowrap;
	position: relative;
}

.mytheme .valo-menu-title .valo-menu-badge, .mytheme .valo-menu-subtitle .valo-menu-badge, .mytheme .valo-menu-item .valo-menu-badge {
	position: absolute;
	right: 15px;
}

.mytheme .valo-menu-title {
	line-height: 1.2;
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	color: white;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	padding: 10px 15px;
	font-size: 12px;
	border-bottom: 1px solid #b50000;
	-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;
}

.mytheme .valo-menu-title .v-menubar.v-menubar {
	background: transparent;
	border-color: #b50000;
	color: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: inherit;
}

.mytheme .valo-menu-title .v-menubar-menuitem {
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #fd2121, inset 0 -1px 0 #ce0000;
	box-shadow: inset 0 1px 0 #fd2121, inset 0 -1px 0 #ce0000;
	text-shadow: inherit;
	font-size: 13px;
	border-color: inherit;
}

.mytheme .valo-menu-title h1, .mytheme .valo-menu-title .v-label-h1, .mytheme .valo-menu-title h2, .mytheme .valo-menu-title .v-label-h2, .mytheme .valo-menu-title h3, .mytheme .valo-menu-title .v-label-h3, .mytheme .valo-menu-title h4, .mytheme .valo-menu-title .v-label-h4 {
	margin-top: 0;
	margin-bottom: 0;
	color: inherit;
}

.mytheme .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: 15px 6px;
	display: block;
	overflow: hidden;
	text-align: center;
	height: auto;
	color: inherit;
}

.mytheme .v-menubar-user-menu:focus:after {
	display: none;
}

.mytheme .v-menubar-user-menu .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 4px;
	color: #e60000;
	padding: 0 10px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.mytheme .v-menubar-user-menu .v-menubar-menuitem:first-child, .mytheme .v-menubar-user-menu .v-menubar-menuitem:last-child, .mytheme .v-menubar-user-menu .v-menubar-menuitem:first-child:last-child {
	border-radius: 4px;
}

.mytheme .v-menubar-user-menu .v-menubar-menuitem:before {
	content: none;
}

.mytheme .v-menubar-user-menu .v-menubar-menuitem:hover {
	color: #ff1a1a;
}

.mytheme .v-menubar-user-menu .v-menubar-menuitem:active {
	color: inherit;
}

.mytheme .v-menubar-user-menu .v-menubar-menuitem-checked, .mytheme .v-menubar-user-menu .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c9a1a1;
	color: #e60000;
}

.mytheme .v-menubar-user-menu .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .mytheme .v-menubar-user-menu .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.mytheme .v-menubar-user-menu .v-menubar-menuitem-selected {
	color: #f9e9e9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.mytheme .v-menubar-user-menu .v-menubar-menuitem-selected:hover {
	color: #f9e9e9;
}

.mytheme .v-menubar-user-menu .v-menubar-menuitem-disabled, .mytheme .v-menubar-user-menu .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.mytheme .v-menubar-user-menu  > .v-menubar-menuitem {
	color: inherit;
	white-space: normal;
	line-height: 1.4;
	margin: 0;
}

.mytheme .v-menubar-user-menu  > .v-menubar-menuitem img.v-icon {
	width: 45px;
	height: 45px;
	border-radius: 24px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	display: block;
	margin: 0 auto 0.3em;
	border: 1px solid #c9a1a1;
}

.mytheme .v-menubar-user-menu  > .v-menubar-menuitem:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.mytheme .v-menubar-user-menu .v-menubar-menuitem-selected {
	background: transparent;
}

.mytheme .valo-menu-subtitle {
	color: #ea1a1a;
	margin: 6px 0 6px 15px;
	border-bottom: 1px solid #9b2626;
}

.mytheme .valo-menu-subtitle [class*="badge"] {
	color: #e95555;
}

.mytheme .valo-menuitems {
	display: block;
}

.mytheme .valo-menu-item {
	outline: none;
	font-weight: 400;
	padding: 0 30px 0 15px;
	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;
}

.mytheme .valo-menu-item [class*="caption"] {
	vertical-align: middle;
	display: inline-block;
	width: 90%;
	max-width: 15em;
	padding-right: 15px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.mytheme .valo-menu-item [class*="badge"] {
	color: #e95555;
}

.mytheme .valo-menu-item.selected {
	background: #7a0000;
}

.mytheme .valo-menu-item.selected .v-icon {
	color: #ff1a1a;
}

.mytheme .valo-menu-item.selected [class*="badge"] {
	background-color: #ff1a1a;
	background-image: -webkit-linear-gradient(top, #ff1c1c 2%, #f41616 98%);
	background-image: linear-gradient(to bottom,#ff1c1c 2%, #f41616 98%);
	color: #f3caca;
}

.mytheme .valo-menu-item:focus, .mytheme .valo-menu-item:hover, .mytheme .valo-menu-item.selected {
	color: white;
}

.mytheme .valo-menu-item span.v-icon {
	min-width: 1em;
	margin-right: 15px;
	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)));
}

.mytheme .valo-menu-item span.v-icon  + span {
	margin-left: 0;
}

.mytheme .valo-menu-item [class*="badge"] {
	background-color: #a30000;
	-webkit-transition: background-color 300ms;
	-moz-transition: background-color 300ms;
	transition: background-color 300ms;
	line-height: 1;
	padding: 3px 5px;
	min-width: 9px;
	text-align: center;
	top: 3px;
	border-radius: 4px;
}

.mytheme .valo-menu-part.large-icons {
	background-color: #8a0000;
	min-width: 60px;
	max-width: 90px;
}

.mytheme .valo-menu-part.large-icons .valo-menu-title {
	font-size: 10px;
}

.mytheme .valo-menu-part.large-icons .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.mytheme .valo-menu-part.large-icons .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 9px;
}

.mytheme .valo-menu-part.large-icons .v-menubar-user-menu img.v-icon {
	width: 23px;
	height: 23px;
}

.mytheme .valo-menu-part.large-icons [class*="subtitle"] {
	margin: 8px 0 0;
	padding: 6px 20px 6px 8px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #6b0000;
	font-size: 10px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.mytheme .valo-menu-part.large-icons [class*="subtitle"] [class*="badge"] {
	right: 8px;
}

.mytheme .valo-menu-part.large-icons [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.mytheme .valo-menu-part.large-icons .valo-menu-item {
	display: block;
	font-size: 21px;
	line-height: 1;
	padding: 10px;
	text-align: center;
	border-top: 1px solid #910f0f;
}

.mytheme .valo-menu-part.large-icons .valo-menu-item:first-child {
	border-top: none;
}

.mytheme .valo-menu-part.large-icons .valo-menu-item [class*="caption"] {
	display: block;
	width: auto;
	margin: 0.3em 0 0;
	padding: 0;
	font-size: 9px;
	line-height: 1.3;
}

.mytheme .valo-menu-part.large-icons .valo-menu-item .v-icon {
	margin: 0;
}

.mytheme .valo-menu-part.large-icons .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.mytheme .valo-menu-part.large-icons .valo-menu-item.selected {
	background: #7a0000;
}

.mytheme .valo-menu-part.large-icons .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.mytheme .valo-menu-part.large-icons .valo-menu-item.selected [class*="badge"] {
	border-color: #7a0000;
}

.mytheme .valo-menu-part.large-icons .valo-menu-item [class*="badge"] {
	padding-left: 3px;
	padding-right: 3px;
	top: 6px;
	right: 6px;
	border: 2px solid #8a0000;
}

.mytheme .valo-menu-logo {
	display: block;
	overflow: hidden;
	width: 36px !important;
	height: 36px;
	border-radius: 4px;
	text-align: center;
	background-color: #e60000;
	background-image: -webkit-linear-gradient(top, #e80000 2%, #da0000 98%);
	background-image: linear-gradient(to bottom,#e80000 2%, #da0000 98%);
	color: white;
	font-size: 20px;
	line-height: 36px;
	margin: 15px auto;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.mytheme .valo-menu-logo:focus {
	outline: none;
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part {
	background-color: #8a0000;
	min-width: 60px;
	max-width: 90px;
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title {
	font-size: 10px;
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 9px;
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu img.v-icon {
	width: 23px;
	height: 23px;
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] {
	margin: 8px 0 0;
	padding: 6px 20px 6px 8px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #6b0000;
	font-size: 10px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] [class*="badge"] {
	right: 8px;
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item {
	display: block;
	font-size: 21px;
	line-height: 1;
	padding: 10px;
	text-align: center;
	border-top: 1px solid #910f0f;
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item:first-child {
	border-top: none;
}

.mytheme .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: 9px;
	line-height: 1.3;
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item .v-icon {
	margin: 0;
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected {
	background: #7a0000;
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected [class*="badge"] {
	border-color: #7a0000;
}

.mytheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item [class*="badge"] {
	padding-left: 3px;
	padding-right: 3px;
	top: 6px;
	right: 6px;
	border: 2px solid #8a0000;
}

.mytheme .valo-menu-responsive[width-range~="0-800px"] {
	padding-top: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.mytheme .valo-menu-responsive[width-range~="0-800px"] .v-loading-indicator {
	top: 30px;
}

.mytheme .valo-menu-responsive[width-range~="0-800px"]  > .v-widget {
	position: relative !important;
}

.mytheme .valo-menu-responsive[width-range~="0-800px"] .valo-menu {
	border-right: none;
}

.mytheme .valo-menu-responsive[width-range~="0-800px"] .valo-menu-part {
	overflow: visible;
}

.mytheme .valo-menu-responsive[width-range~="0-800px"] .valo-menu-toggle {
	display: inline-block;
}

.mytheme .valo-menu-responsive[width-range~="0-800px"] .valo-menu-title {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	height: 30px !important;
	padding-top: 0;
	padding-bottom: 0;
	-webkit-backface-visibility: hidden;
}

.mytheme .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: 30px;
	color: #ed8484;
	max-width: 30%;
	-webkit-backface-visibility: hidden;
}

.mytheme .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem {
	line-height: 29px;
	white-space: nowrap;
}

.mytheme .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu img.v-icon {
	display: inline-block;
	margin: 0 5px 0 0;
	width: 15px;
	height: 15px;
	border-radius: 8px;
	border: none;
}

.mytheme .valo-menu-responsive[width-range~="0-800px"] .valo-menuitems {
	height: 100%;
	background-color: #8a0000;
	background-image: -webkit-linear-gradient(right, #750000 0%, #8a0000 8px);
	background-image: linear-gradient(to left,#750000 0%, #8a0000 8px);
	color: #e85c5c;
	font-size: 12px;
	line-height: 24px;
	border-right: 1px solid #6d0000;
	white-space: nowrap;
	position: fixed;
	z-index: 9000;
	top: 30px;
	bottom: 0;
	height: auto;
	max-width: 100%;
	overflow: auto;
	padding: 15px 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;
}

.mytheme .valo-menu-responsive[width-range~="0-800px"] .valo-menu-visible .valo-menuitems, .mytheme .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%);
}

.mytheme .valo-menu-responsive[width-range~="0-500px"] .valo-menu-toggle .v-button-caption {
	display: none;
}

.mytheme .valo-menu-responsive[width-range~="0-500px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem-caption {
	display: inline-block;
	width: 15px;
	overflow: hidden;
}

.mytheme .saturday-color {
	background-color: #3366cc;
	color: #ffffff;
}

.mytheme .sunday-color {
	background-color: #ff6666;
	color: #ffffff;
}

.mytheme .v-button {
	border-radius: 4px;
	border: 1px solid #c9a1a8;
	border-top-color: #c9a4aa;
	border-bottom-color: #c0969e;
	background-color: #c0c0c0;
	background-image: -webkit-linear-gradient(top, #f5f5f5 2%, #c0c0c0 98%);
	background-image: -ms-linear-gradient(top, #f5f5f5 2%, #c0c0c0 98%);
	background-image: linear, to bottom, #f5f5f5 2%, #c0c0c0 98%;
	-webkit-box-shadow: inset 0 1px 0 #c0c0c0, inset 0 -1px 0 #c0c0c0, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #c0c0c0, inset 0 -1px 0 #c0c0c0, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mytheme .v-icon {
	color: #4169e1;
}

.mytheme .v-datefield-popup .v-button-prevyear, .mytheme .v-datefield-popup .v-button-nextyear {
	display: none;
}

.mytheme .v-window-modalitycurtain {
	opacity: 0.3 !important;
}

.mytheme .topmenu-tab-container .v-tabsheet-tabitemcell .v-caption {
	font-size: 18px;
}

.mytheme .topmenu-tab-panel .v-tabsheet-tabsheetpanel {
	background-color: #ffffff;
}

.mytheme .topmenu-button {
	font-weight: normal;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	border: 1px solid #83c41a;
	text-decoration: none;
	background: -moz-linear-gradient(center top, #8cb82b 5%, #8cb82b 100%);
	background: -ms-linear-gradient(top, #9dce2c 5%, #8cb82b 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dce2c', endColorstr='#8cb82b');
	background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #9dce2c), color-stop(100%, #8cb82b));
	background-color: #9dce2c;
	color: #ffffff;
	display: inline-block;
	text-shadow: 1px 1px 0px #689324;
	-webkit-box-shadow: inset 1px 1px 0px 0px #c1ed9c;
	-moz-box-shadow: inset 1px 1px 0px 0px #c1ed9c;
	box-shadow: inset 1px 1px 0px 0px #c1ed9c;
}

.mytheme .topmenu-button-kondate {
	border: 1px solid #34740e;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	text-decoration: none;
	display: inline-block;
	color: #FFFFFF;
	background-color: #4ba614;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#4ba614), to(#008c00));
	background-image: -webkit-linear-gradient(top, #4ba614, #008c00);
	background-image: -moz-linear-gradient(top, #4ba614, #008c00);
	background-image: -ms-linear-gradient(top, #4ba614, #008c00);
	background-image: -o-linear-gradient(top, #4ba614, #008c00);
	background-image: linear, to bottom, #4ba614, #008c00;
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4ba614', endColorstr='#008c00');
}

.mytheme .topmenu-button-hatchu {
	border: 1px solid #df0909;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	text-decoration: none;
	display: inline-block;
	color: #FFFFFF;
	background-color: #f62b2b;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f62b2b), to(#d20202));
	background-image: -webkit-linear-gradient(top, #f62b2b, #d20202);
	background-image: -moz-linear-gradient(top, #f62b2b, #d20202);
	background-image: -ms-linear-gradient(top, #f62b2b, #d20202);
	background-image: -o-linear-gradient(top, #f62b2b, #d20202);
	background-image: linear, to bottom, #f62b2b, #d20202;
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#f62b2b', endColorstr='#d20202');
}

.mytheme .topmenu-button-nichiji, .mytheme .topmenu-button-getsuji {
	border: 1px solid #7c5b2b;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	text-decoration: none;
	display: inline-block;
	color: #FFFFFF;
	background-color: #a67939;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#a67939), to(#845108));
	background-image: -webkit-linear-gradient(top, #a67939, #845108);
	background-image: -moz-linear-gradient(top, #a67939, #845108);
	background-image: -ms-linear-gradient(top, #a67939, #845108);
	background-image: -o-linear-gradient(top, #a67939, #845108);
	background-image: linear, to bottom, #a67939, #845108;
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#a67939', endColorstr='#845108');
}

.mytheme .topmenu-button-master {
	border: 1px solid #7d99ca;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	text-decoration: none;
	display: inline-block;
	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
	color: #FFFFFF;
	background-color: #a5b8da;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#a5b8da), to(#7089b3));
	background-image: -webkit-linear-gradient(top, #a5b8da, #7089b3);
	background-image: -moz-linear-gradient(top, #a5b8da, #7089b3);
	background-image: -ms-linear-gradient(top, #a5b8da, #7089b3);
	background-image: -o-linear-gradient(top, #a5b8da, #7089b3);
	background-image: linear, to bottom, #a5b8da, #7089b3;
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#a5b8da', endColorstr='#7089b3');
}

.mytheme .topmenu-button-square {
	font-size: 10px;
}

.mytheme .topmenu-button-landscape {
	font-size: 13px;
}

.mytheme .topmenu-pinned-panel, .mytheme .topmenu-history-panel {
	border: 1px solid #83c41a;
	background-color: #ffffff;
}

.mytheme .topmenu-pinned-panel .v-gridlayout-margin-top {
	padding-top: 10px;
}

.mytheme .topmenu-pinned-panel .v-gridlayout-margin-right {
	padding-right: 10px;
}

.mytheme .topmenu-pinned-panel .v-gridlayout-margin-bottom {
	padding-bottom: 10px;
}

.mytheme .topmenu-pinned-panel .v-gridlayout-margin-left {
	padding-left: 10px;
}

.mytheme .v-menubar {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 28px;
	padding: 0 12px;
	color: #ffffff;
	font-weight: 400;
	cursor: default;
	border-radius: 4px;
	border: 1px solid #4d80e6;
	border-top-color: #4d80e6;
	border-bottom-color: #3366cc;
	background-color: #3366cc;
	background-image: -webkit-linear-gradient(top, #4d80e6 2%, #3366cc 98%);
	background-image: -ms-linear-gradient(top, #4d80e6 2%, #3366cc 98%);
	background-image: linear, to bottom, #4d80e6 2%, #3366cc 98%;
	-webkit-box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #3366cc, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #fff7f7, inset 0 -1px 0 #3366cc, 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: 26px;
}

.mytheme .v-menubar-menuitem-menubar-item-right, .mytheme .menubar-item-right {
	float: right;
}

.gwt-PopupPanel {
	z-index: 100000;
}

.mytheme .v-textfield:not(.v-readonly), .mytheme .v-filterselect-input {
	background-color: #ffffff !important;
	color: #000000 !important;
}

.mytheme .hide {
	display: none;
}

.mytheme .draggable {
	cursor: copy;
}

.mytheme .clickable {
	cursor: pointer;
}

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

.mytheme .text-align-left {
	text-align: left;
}

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

.mytheme .text-align-vertical-middle {
	vertical-align: middle !important;
}

.mytheme .grid-items-middle .v-label {
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
}

.mytheme .no-border {
	border-color: transparent !important;
	-webkit-box-shadow: none !important;
}

.mytheme .text-margin {
	margin: 7px;
	font-size: 12px;
}

.mytheme .text-margin-align-left-edge {
	margin-top: 7px;
	margin-bottom: 7px;
	margin-right: 7px;
	font-size: 12px;
}

.mytheme .margin12 {
	margin: 12px !important;
}

.mytheme .component-background-white, .mytheme .component-background-white .v-panel {
	background-color: #ffffff;
}

.mytheme .select-row, .table-select-row {
	background-color: peachpuff !important;
}

.mytheme .select-area {
	border: solid 1px #FF0000;
}

.mytheme .component-background-gray {
	background-color: gray !important;
	color: white !important;
}

.mytheme .grid-layout-border {
	border-top: 1px solid;
	border-left: 1px solid;
	box-sizing: border-box;
}

.mytheme .grid-layout-border > div {
	border-right: 1px solid;
	border-bottom: 1px solid;
	box-sizing: border-box;
}

.mytheme .grid-layout-border-outer {
	border-style: solid;
	border-color: black;
	border-width: 1px;
	margin: 0px;
	padding: 8px;
}

.mytheme .grid-layout-border-outer-grey {
	border-style: solid;
	border-color: grey;
	border-width: 1px;
	margin: 0px;
	padding: 8px;
}

.mytheme .button-caption-three-words {
	padding: 0 4px;
	width: 50px;
}

.mytheme .shokuji-kubun-all {
	background-color: #c1ffff;
}

.mytheme .shokuji-kubun-breakfast {
	background-color: #ffe0c1 !important;
}

.mytheme .shokuji-kubun-launch {
	background-color: #c1ffc1 !important;
}

.mytheme .shokuji-kubun-snack {
	background-color: #e0c1ff !important;
}

.mytheme .shokuji-kubun-dinner {
	background-color: #ffffc1 !important;
}

.mytheme .shokuji-kubun-at10 {
	background-color: #8effff !important;
}

.mytheme .shokuji-kubun-at20 {
	background-color: #c1c1ff !important;
}

.gridBorder {
	border-style: solid;
	border-color: black;
	border-width: 1px;
	margin: 0px;
	padding: 0px;
}

.gridCellBorder {
	border-style: none solid solid none;
	border-color: black;
	border-width: 1px;
	margin: 0px;
	padding: 0px;
}

.gridHeaderEiyoCalc .v-grid-header {
	background-color: #adff2f !important;
}

.noSpace {
	padding: 0px;
	margin: 0px;
}

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

.backColorWhite {
	background-color: #00FF00 !important;
}

.backColorWhite2 {
	background-color: #FFFFFF !important;
}

.font-bold, .v-caption-font-bold {
	font-weight: bold !important;
}

.font-larger, .v-caption-font-larger {
	font-size: larger !important;
}

.font-gothic {
	font-family: "MS Gothic", monospace !important;
}

.popup-base-layout {
	border: 3px solid #3366cc;
	background-color: #ffffff;
}

.mytheme .v-grid-row-selected > .v-grid-cell {
	background-color: peachpuff;
	background-image: -webkit-linear-gradient(top, peachpuff 2%, peachpuff 98%);
	background-image: -ms-linear-gradient(top, peachpuff 2%, peachpuff 98%);
	background-image: linear, to bottom, peachpuff 2%, peachpuff 98%;
	color: #6d1b1b;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: peachpuff;
}

.mytheme .v-grid-row-selected > .v-grid-cell-focused:before {
	border-color: #6d1b1b;
}

.mytheme .v-grid-cell {
	line-height: 20px;
	font-weight: normal;
}

.mytheme .v-grid-column-header-content {
	line-height: inherit;
}

.mytheme .grid-large-extra .v-grid-cell, .mytheme .grid-large .v-grid-column-header-content {
	height: 26px;
	font-size: 16px;
	line-height: 26px;
	padding: 0px 3px 0px 3px;
}

.mytheme .grid-large .v-grid-cell, .mytheme .grid-large .v-grid-column-header-content {
	height: 24px;
	font-size: 16px;
	line-height: 24px;
	padding: 0px 3px 0px 3px;
}

.mytheme .grid-small .v-grid-cell, .mytheme .grid-small .v-grid-column-header-content {
	height: 20px;
	font-size: 11px;
	line-height: 20px;
	padding: 2px 2px;
}

.mytheme .grid-tiny .v-grid-cell, .mytheme .grid-tiny .v-grid-column-header-content {
	height: 18px;
	font-size: 10px;
	line-height: 18px;
	padding: 1px 3px 2px;
}

.mytheme .no-stripes .v-grid-row > td {
	background-color: #FFF;
}

.mytheme .grid-multiselect-invisible td.v-grid-cell.frozen.last-frozen, .mytheme .grid-multiselect-invisible th.v-grid-cell.frozen.last-frozen {
	display: none;
}

.mytheme .grid-eiyo-summary .v-grid-column-header-content {
	text-align: center;
}

.mytheme .grid-eiyo-summary .v-grid-cell {
	text-align: right;
}

.mytheme .grid-cell-wrapping {
	word-wrap: break-word;
	white-space: normal;
}

.mytheme .v-grid-cell.grid-editable-column {
	padding: 0;
}

.mytheme .v-button-toggled {
	color: #FFFFFF;
	background-color: #ff6347;
	background-image: -webkit-linear-gradient(top, #ffd0d8 2%, #ff6347 98%);
	background-image: -ms-linear-gradient(top, #ffd0d8 2%, #ff6347 98%);
	background-image: linear, to bottom, #ffd0d8 2%, #ff6347 98%;
}

.select-item-table {
	background-color: #ffffff;
	border-color: #A4A4A4;
	width: 100%;
	font-size: small;
}

span.kondate-flg-checkbox label {
	color: transparent;
}

.kondate-group-header-cell {
	padding-left: 1px;
	padding-right: 1px;
	margin-left: 1px;
	margin-right: 5px;
}

.kondate-group-header-cell-eiyo {
	padding-left: 1px;
	padding-right: 1px;
	margin-left: 2px;
	margin-right: 5px;
}

.kondate-group-header-cell-tonyo {
	padding-left: 1px;
	padding-right: 1px;
	margin-left: 1px;
	margin-right: 4px;
}

.kondate-sheet, .kondate-sheet table {
	color: #000000;
	background-color: #ffffff;
	border-color: #A4A4A4;
	width: 100%;
	height: 100%;
	table-layout: auto;
	box-sizing: border-box;
}

.hatchu-sheet, .hatchu-sheet table {
	color: #000000;
	background-color: #ffffff;
	border-color: #A4A4A4;
	width: 100%;
	height: 100%;
	table-layout: fixed;
	box-sizing: border-box;
}

.kondate-sheet .gwt-ListBox {
	background-color: inherit;
	background-image: inherit;
	font-size: 11px;
	height: 20px;
	padding: 0;
}

.hatchu-sheet .gwt-ListBox {
	background-color: inherit;
	background-image: inherit;
	font-size: 11px;
	height: 20px;
	padding: 0;
}

.gwt-DatePicker {
	border: 1px solid #A2BBDD;
	cursor: default;
}

.gwt-DatePicker td, .datePickerMonthSelector td:focus {
	outline: none;
}

.datePickerDays {
	width: 100%;
	background: white;
}

.datePickerDay, .datePickerWeekdayLabel, .datePickerWeekendLabel {
	font-size: 75%;
	text-align: center;
	padding: 4px;
	outline: none;
}

.datePickerWeekdayLabel, .datePickerWeekendLabel {
	background: #C3D9FF;
	padding: 0px 4px 2px;
	cursor: default;
}

.datePickerDay {
	padding: 4px;
	cursor: hand;
	cursor: pointer;
}

.datePickerDayIsToday {
	border: 1px solid black;
	padding: 3px;
}

.datePickerDayIsWeekend {
	background: #EEEEEE;
}

.datePickerDayIsFiller {
	color: #888888;
}

.datePickerDayIsValue {
	background: #aaccee;
}

.datePickerDayIsDisabled {
	color: #AAAAAA;
	font-style: italic;
}

.datePickerDayIsHighlighted {
	background: #F0E68C;
}

.datePickerDayIsValueAndHighlighted {
	background: #bbddd9;
}

.datePickerMonthSelector {
	background: #C3D9FF;
	width: 100%;
}

td.datePickerMonth {
	text-align: center;
	vertical-align: center;
	white-space: nowrap;
	font-size: 70%;
	font-weight: bold;
	color: blue;
}

.datePickerPreviousButton, .datePickerNextButton {
	font-size: 120%;
	line-height: 1em;
	color: blue;
	cursor: hand;
	cursor: pointer;
	padding: 0px 4px;
}

.master-sheet, .master-sheet table {
	color: #000000;
	background-color: #fee6e5;
	border-color: #A4A4A4;
	width: 100%;
	height: 100%;
	table-layout: fixed;
	box-sizing: border-box;
}

.gwt-TextBox {
	box-sizing: border-box;
	background-color: inherit;
	border: 1px;
	padding: 1px;
	outline-width: 1px;
	outline-offset: 0;
}

.mytheme .kondate-sheet .v-textfield {
	padding: 2px 3px;
	height: 1.6em;
}

.mytheme .hatchu-sheet .v-textfield {
	padding: 2px 3px;
	height: 1.6em;
}

.mytheme .tenkai-column-panel {
	background-color: #ffffff;
	border-color: #A4A4A4;
	border-width: 1px;
	border-style: dotted;
}

.mytheme .kondate-item-difference {
	background-color: #cc99ff !important;
}

.mytheme .kondate-item-duplication {
	background-color: #0066ff !important;
	color: #ffffff !important;
}

.mytheme .kondate-duplication-oneday-grid .v-label {
	padding: 2px;
}

.mytheme .kondate-standard-over {
	background-color: #ffdbdb !important;
}

.mytheme .kondate-standard-under {
	background-color: #dbedff !important;
}

.mytheme .page-title {
	font-size: 18px;
}

.testPosition {
	position: relative;
	left: -60px;
}

.testPosition2 {
	position: relative;
	left: -17px;
}

.position-shift-top10 {
	position: relative;
	top: 10px;
}

.position-margin-left {
	margin-left: 346px !important;
}

.position-margin-left260 {
	margin-left: 260px !important;
}

.position-margin-left475 {
	margin-left: 475px !important;
}

.position-margin-left190 {
	margin-left: 190px !important;
}

.lineLowHeight {
	line-height: 0.5 !important;
}

.grid_list_select {
	background-color: #f9b1b1 !important;
	color: black !important;
	cursor: pointer;
}

.grid_list_select2 {
	background-color: #f9b1b1 !important;
	color: black !important;
	cursor: pointer;
}

.grid_list_unselect {
	background-color: #ffffff !important;
	color: black !important;
	cursor: pointer;
}

.grid_list_disable {
	background-color: #cccccc !important;
	color: black !important;
	cursor: default;
}

.grid_edit_select {
	background-color: #da0000 !important;
	color: white !important;
}

.grid_edit_unselect {
	background-color: #ffffff !important;
	color: black !important;
	font-weight: normal !important;
	padding: 2px !important;
}

.nowrap {
	white-space: nowrap !important;
}

.grid_label_trans {
	background-color: transparent !important;
	color: black !important;
	font-weight: normal !important;
	margin: 0px !important;
	padding: 0px !important;
	border-style: none solid solid none !important;
	border-width: 0px !important;
	line-height: 0.3 !important;
}

.gwt_listbox_master {
	background-color: transparent !important;
	background-image: none !important;
	font-size: 12px !important;
	color: black !important;
	height: 22px;
	padding: 0 !important;
	text-align: center !important;
	vertical-align: middle !important;
}

.grid_edit_transparent {
	background-color: transparent !important;
	color: black !important;
	font-weight: normal !important;
	padding: 2px !important;
}

.grid_edit_unselect:focus {
	background-color: #ffffff !important;
	border: 2px solid #A6C7FF !important;
	color: black !important;
	font-weight: normal !important;
}

.grid_edit_total {
	background-color: peachpuff !important;
	color: black !important;
	font-weight: normal !important;
}

.grid_list_total {
	background-color: #ffcccc !important;
	color: black !important;
	cursor: default;
}

.flexGridHeaderRowBackColor {
	background-color: #d3d3d3 !important;
	text-align: center !important;
	height: 22px !important;
}

.flexGridHeaderRowBackLightColor {
	background-color: #e5e5e5 !important;
	text-align: center !important;
}

.flexGridSelectRowBackColor {
	background-color: orange !important;
}

.flexGridVisibleHideRowBackColor {
	background-color: #aaaaaa !important;
}

.transParentBackColor {
	background-color: transparent !important;
}

.readOnlyBackColor {
	background-color: #ffcccc !important;
}

.backColorPurple {
	background-color: #cc99ff !important;
}

.backColorShubai {
	background-color: #ff1493 !important;
}

.mytheme .grid-eiyo .v-grid-column-header-content {
	color: blue !important;
	text-align: center !important;
	vertical-align: middle !important;
}

.mytheme .grid-eiyo-header-calc .v-grid-column-header-content {
	color: black !important;
	font-size: 12px !important;
	font-weight: normal !important;
	text-align: center !important;
	vertical-align: middle !important;
	position: relative !important;
	top: -2px !important;
	overflow: visible !important;
	white-space: normal !important;
	text-overflow: clip !important;
}

.mytheme .grid-search-header .v-grid-column-header-content {
	color: #6d1b1b !important;
	font-weight: 550 !important;
	text-align: center !important;
	vertical-align: middle !important;
	position: relative !important;
	top: -2px !important;
}

.v-window-sub-window-titlebar-kondate .v-window-outerheader {
	background-color: #f9b1b1 !important;
	color: black !important;
	font-size: 18px !important;
}

.v-filterselect-input {
	background-color: white !important;
	background-image: none !important;
}

.v-filterselect-button {
	background-color: white !important;
	background-image: none !important;
}

.mytheme .combo-edit-ryori1 .v-filterselect-button {
	background-color: white !important;
	background-image: none !important;
	width: 1px !important;
	left: 37px !important;
}

.mytheme .combo-edit-ryori2 .v-filterselect-button {
	background-color: white !important;
	background-image: none !important;
	width: 1px !important;
	left: 65px !important;
}

.mytheme .combo-edit-ryori1 .v-filterselect-button {
	border: none !important;
}

.mytheme .combo-edit-ryori2 .v-filterselect-button {
	border: none !important;
}

.mytheme .v-grid-cell.rightalign {
	text-align: right !important;
	color: black !important;
	font-size: 12px !important;
}

.mytheme .v-grid-cell.leftalign {
	text-align: left !important;
	color: black !important;
	font-size: 12px !important;
}

.mytheme .v-grid-cell.centeralign {
	text-align: center !important;
	color: black !important;
	font-size: 12px !important;
}

.mytheme .v-grid-cell.leftalignBackColorRed {
	text-align: left !important;
	color: black !important;
	background-color: red !important;
	font-size: 12px !important;
}

.text-font-color-red {
	color: #ff0000;
}

.text-font-color-blue {
	color: #0000ff;
}

.text-font-color-gray {
	color: #666666;
}

.text-font-size {
	font-weight: bold;
	font-size: 150%;
}

.text-font-size-30px {
	font-size: 30px !important;
}

.text-font-size-18px {
	font-size: 18px;
}

.text-font-size-16px {
	font-size: 16px !important;
}

.text-font-size-14px {
	font-size: 14px !important;
}

.text-font-size-12px {
	font-size: 12px !important;
}

.borderLineTop {
	border-top: 1px solid #000000;
}

.borderLineLeft {
	border-left: 1px solid #000000;
}

.mytheme .zairyoShukei-color1 {
	background-color: #ff69b4 !important;
}

.mytheme .zairyoShukei-color2 {
	background-color: #add8e6 !important;
}

.mytheme .zairyoShukei-color3 {
	background-color: #f0e68c !important;
}

.mytheme .zairyoShukei-color4 {
	background-color: #90ee90 !important;
}

.mytheme .zairyoShukei-color5 {
	background-color: #ffa07a !important;
}

.mytheme .calendar-color1 {
	background-color: #FF99CC !important;
}

.mytheme .calendar-color2 {
	background-color: #00CCFF !important;
}

.mytheme .calendar-color3 {
	background-color: #FFFF00 !important;
}

.mytheme .calendar-color4 {
	background-color: #00FF00 !important;
}

.mytheme .calendar-color5 {
	background-color: #FF9900 !important;
}

.mytheme .calendar-color6 {
	background-color: #33CCCC !important;
}

.mytheme .calendar-color7 {
	background-color: #CC99FF !important;
}

.mytheme .calendar-color8 {
	background-color: #99CC00 !important;
}

.mytheme .calendar-color9 {
	background-color: #FF00FF !important;
}

.mytheme .calendar-color10 {
	background-color: #666699 !important;
}

.mytheme .calendar-color11 {
	background-color: #99CCFF !important;
}

.mytheme .calendar-color12 {
	background-color: #800000 !important;
}

.mytheme .calendar-color13 {
	background-color: #FF6600 !important;
}

.mytheme .calendar-color14 {
	background-color: #FFCC00 !important;
}

.mytheme .calendar-color15 {
	background-color: #008080 !important;
}

.mytheme .calendar-color16 {
	background-color: #00FFFF !important;
}

.mytheme .calendar-color17 {
	background-color: #9999FF !important;
}

.mytheme .calendar-color18 {
	background-color: #FF0000 !important;
}

.mytheme .calendar-color19 {
	background-color: #008000 !important;
}

.mytheme .calendar-color20 {
	background-color: #3366FF !important;
}

.mytheme .calendar-color21 {
	background-color: #339966 !important;
}

.mytheme .calendar-color22 {
	background-color: #FF8080 !important;
}

.mytheme .calendar-color23 {
	background-color: #CCFFCC !important;
}

.mytheme .calendar-color24 {
	background-color: #CCCCFF !important;
}

.mytheme .calendar-color25 {
	background-color: #808000 !important;
}

.mytheme .calendar-color26 {
	background-color: #0066CC !important;
}

.mytheme .calendar-color27 {
	background-color: #FFFF99 !important;
}

.mytheme .calendar-color28 {
	background-color: #0000FF !important;
}

.mytheme .calendar-color29 {
	background-color: #993366 !important;
}

.mytheme .calendar-color30 {
	background-color: #FFCC99 !important;
}

.mytheme .calendar-color31 {
	background-color: #C0C0C0 !important;
}

.fontBlack {
	color: #000000 !important;
}

.noSpaceImportant {
	padding: 0px !important;
	margin: 0px !important;
}

.gridCellBorderRight {
	border-style: none solid none none;
	border-color: black;
	border-width: 1px;
	margin: 0px;
	padding: 0px;
}

.mytheme .backColorYellow {
	background-color: #FFFF00 !important;
}

.background-none {
	background-image: none !important;
}

.borderLineBottomNone {
	border-bottom: none !important;
}

.setWidth0 {
	width: 0px !important;
	box-sizing: border-box;
}

.setWidth10 {
	width: 10px;
	box-sizing: border-box;
}

.setWidth15 {
	width: 15px;
	box-sizing: border-box;
}

.setWidth20 {
	width: 20px;
	box-sizing: border-box;
}

.setWidth25 {
	width: 25px;
	box-sizing: border-box;
}

.setWidth30 {
	width: 30px;
	box-sizing: border-box;
}

.setWidth35 {
	width: 35px;
	box-sizing: border-box;
}

.setWidth40 {
	width: 40px;
	box-sizing: border-box;
}

.setWidth45 {
	width: 45px;
	box-sizing: border-box;
}

.setWidth50 {
	width: 50px;
	box-sizing: border-box;
}

.setWidth55 {
	width: 55px;
	box-sizing: border-box;
}

.setWidth60 {
	width: 60px;
	box-sizing: border-box;
}

.setWidth65 {
	width: 65px;
	box-sizing: border-box;
}

.setWidth70 {
	width: 70px;
	box-sizing: border-box;
}

.setWidth75 {
	width: 75px;
	box-sizing: border-box;
}

.setWidth80 {
	width: 80px;
	box-sizing: border-box;
}

.setWidth85 {
	width: 85px;
	box-sizing: border-box;
}

.setWidth90 {
	width: 90px;
	box-sizing: border-box;
}

.setWidth95 {
	width: 95px;
	box-sizing: border-box;
}

.setWidth100 {
	width: 100px;
	box-sizing: border-box;
}

.setWidth120 {
	width: 120px;
	box-sizing: border-box;
}

.setWidth125 {
	width: 125px;
	box-sizing: border-box;
}

.setWidth130 {
	width: 130px;
	box-sizing: border-box;
}

.setWidth150 {
	width: 150px;
	box-sizing: border-box;
}

.setWidth160 {
	width: 160px;
	box-sizing: border-box;
}

.setWidth175 {
	width: 175px;
	box-sizing: border-box;
}

.setWidth200 {
	width: 200px;
	box-sizing: border-box;
}

.setWidth220 {
	width: 220px;
	box-sizing: border-box;
}

.setWidth240 {
	width: 240px;
	box-sizing: border-box;
}

.setWidth280 {
	width: 280px;
	box-sizing: border-box;
}

.setWidth300 {
	width: 300px;
	box-sizing: border-box;
}

.hatchuNaiyoHenkoZaikoColor {
	background-color: #ffa500 !important;
}

.hatchuNaiyoHenkoIsshokuColor {
	background-color: #87cefa !important;
}

.hatchuNaiyoHenkoYoyakuColor {
	background-color: #cc99ff !important;
}

.hatchuNaiyoHenkoSelectRowColor {
	background-color: Lemonchiffon !important;
}

.backColorLightGray {
	background-color: #d3d3d3 !important;
}

.backColorGray {
	background-color: #666666 !important;
}

.seiyoDataSoshinMessage {
	font-size: 24px;
	color: #ff0000;
}

.jwShubaiMessage {
	font-size: 24px;
	background-color: #ff0000 !important;
	color: #ffffff;
	padding: 8px;
	width: 65px;
	height: 40px;
}

.jwErrorMessage {
	font-size: 12px;
	background-color: #ff0000 !important;
	color: #ffffff;
}

.mytheme .combo-btn-likegwt-area-ie .v-filterselect-button {
	border-left: none !important;
}

.mytheme .combo-btn-likegwt .v-filterselect-button:before {
	color: transparent !important;
	background-position: right center !important;
	background: url("img/combo_icon_chrome.png") no-repeat !important;
	margin-top: -0.6em;
	position: absolute;
	left: 9px;
}

.mytheme .combo-btn-likegwt-ie .v-filterselect-button:before {
	color: transparent !important;
	background-position: right center !important;
	background: url("img/combo_icon_ie.png") no-repeat !important;
	margin-top: -0.7em;
	position: absolute;
	left: 12px;
	height: 20px;
}

.mytheme .layout-gwt-border {
	border-top: solid 1px #303030;
	border-left: solid 1px #303030;
	border-bottom: solid 1px #A3A3A3;
	border-right: solid 1px #A3A3A3;
	box-sizing: border-box;
}

.mytheme .grid-layout-exterior-gwt-border {
	border-top: solid 1px #A3A3A3;
	border-left: solid 1px #A3A3A3;
	border-bottom: solid 1px #515151;
	border-right: solid 1px #515151;
	box-sizing: border-box;
}

.backColorRed {
	background-color: #ff0000 !important;
}

.fontColorWhite {
	color: #ffffff;
	font-size: 30px;
}

.tmsSendColor1 {
	background-color: #ffff00 !important;
	font-size: 14px;
}

.tmsSendColor2 {
	background-color: #ff0000 !important;
	font-size: 14px;
}

.tmsSendColor3 {
	background-color: #00bfff !important;
	font-size: 14px;
}

.gwtDialogBox {
	background-color: #fee6e6 !important;
	font-family: Verdana, Helvetica, Arial, "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
	font-size: 13px !important;
	color: #6d1b1b !important;
	padding: 4px 4px 4px 8px;
	border-bottom: 1px solid #bbbbbb;
	border-radius: 4px !important;
}

.gwtDialogPanel {
	background: url("img/question.png") no-repeat !important;
	padding-left: 55px !important;
}

.gwtDialogOkButton {
	background: url("img/okbutton.png") no-repeat !important;
	border-radius: 4px;
	border: 1px solid #c9a1a8;
	border-top-color: #c9a4aa;
	border-bottom-color: #c0969e;
	background-color: #c0c0c0;
	cursor: pointer;
}

.gwtDialogCancelButton {
	background: url("img/cancelbutton.png") no-repeat !important;
	border-radius: 4px;
	border: 1px solid #c9a1a8;
	border-top-color: #c9a4aa;
	border-bottom-color: #c0969e;
	background-color: #c0c0c0;
	cursor: pointer;
}

.mytheme .background-light-red {
	background-color: #e37184 !important;
}

.mytheme .background-light-green {
	background-color: #7df386 !important;
}