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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@font-face {
	font-family: ThemeIcons;
	font-weight: normal;
	font-style: normal;
	src: url(../valo/util/bourbon/css3/../../../../base/fonts/themeicons-webfont.eot);
	src: url(../valo/util/bourbon/css3/../../../../base/fonts/themeicons-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/util/bourbon/css3/../../../../base/fonts/themeicons-webfont.woff) format("woff"), url(../valo/util/bourbon/css3/../../../../base/fonts/themeicons-webfont.ttf) format("truetype"), url(../valo/util/bourbon/css3/../../../../base/fonts/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/../../../../base/fonts/fontawesome-webfont.eot);
	src: url(../valo/util/bourbon/css3/../../../../base/fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/util/bourbon/css3/../../../../base/fonts/fontawesome-webfont.woff) format("woff"), url(../valo/util/bourbon/css3/../../../../base/fonts/fontawesome-webfont.ttf) format("truetype"), url(../valo/util/bourbon/css3/../../../../base/fonts/fontawesome-webfont.svg#FontAwesome) format("svg");
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes v-progress-wait {
		0% {
		width: 90%;
		height: 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
 */

.v-shadow, .v-shadow-window {
	display: none;
}

.v-ie8 .v-shadow, .v-ie8 .v-shadow-window {
	display: block;
}

.v-ie8 .v-shadow .top, .v-ie8 .v-shadow-window .top {
	position: absolute;
	top: -6px;
	right: 10px;
	bottom: 6px;
	left: -10px;
	background: black;
	filter: alpha(opacity=5) progid:DXImageTransform.Microsoft.blur(pixelradius=10, makeShadow=false);
}

.v-ie8 .v-shadow .top-left, .v-ie8 .v-shadow-window .top-left {
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	background: black;
	filter: alpha(opacity=9) progid:DXImageTransform.Microsoft.blur(pixelradius=0, makeShadow=false);
}

/**
 * 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
 */

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

.v-widget {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	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 {
	position: absolute;
	top: -2000px;
	left: -2000px;
	width: 10px;
	overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-gridlayout {
	position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-tabsheet-tabs {
	white-space: nowrap;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	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 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	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;
}

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

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

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

.dashboard {
	@media screen and (max-width: 480px) {
	.notifications.v-window {
		right: 10px;
	}
}
}

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

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

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

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

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

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

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

.v-ie8 .dashboard .v-loading-indicator, .v-ie8 .dashboard .v-loading-indicator-delay, .v-ie8 .dashboard .v-loading-indicator-wait, .v-ie9 .dashboard .v-loading-indicator, .v-ie9 .dashboard .v-loading-indicator-delay, .v-ie9 .dashboard .v-loading-indicator-wait {
	width: 28px !important;
	height: 28px;
	padding: 8px;
	background: #fff url(../valo/shared/img/spinner.gif) no-repeat 50%;
	border-radius: 4px;
	top: 8px;
	right: 8px;
	left: auto;
	filter: alpha(opacity=50);
}

.v-ie8 .dashboard .v-loading-indicator[style*="none"], .v-ie8 .dashboard .v-loading-indicator-delay[style*="none"], .v-ie8 .dashboard .v-loading-indicator-wait[style*="none"], .v-ie9 .dashboard .v-loading-indicator[style*="none"], .v-ie9 .dashboard .v-loading-indicator-delay[style*="none"], .v-ie9 .dashboard .v-loading-indicator-wait[style*="none"] {
	display: none !important;
}

.v-ie8 .dashboard .v-loading-indicator-wait, .v-ie9 .dashboard .v-loading-indicator-wait {
	filter: alpha(opacity=100);
}

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

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

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

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

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

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

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

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

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

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

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

.dashboard button {
	font: inherit;
	font-weight: 400;
	line-height: 1.55;
}

.dashboard a {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.dashboard a:hover {
	color: #4396ea;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dashboard .v-reconnect-dialog {
	color: white;
	top: 7px;
	right: 6px;
	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: 20px;
	text-align: center;
}

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

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

.v-ie8 .dashboard .v-reconnect-dialog .spinner, .v-ie9 .dashboard .v-reconnect-dialog .spinner {
	border: none;
	border-radius: 4px;
	background: #fff url(../valo/shared/img/spinner.gif) no-repeat 50% 50%;
	background-size: 80%;
}

.v-ie8 .dashboard .v-reconnect-dialog .spinner {
	min-width: 30px;
	min-height: 30px;
}

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

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

.dashboard .v-absolutelayout-margin, .dashboard .v-absolutelayout-canvas {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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

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

.dashboard .v-margin-top {
	padding-top: 18px;
}

.dashboard .v-margin-right {
	padding-right: 18px;
}

.dashboard .v-margin-bottom {
	padding-bottom: 18px;
}

.dashboard .v-margin-left {
	padding-left: 18px;
}

.dashboard .v-spacing {
	width: 6px;
	height: 7px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dashboard .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: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-ie8 .dashboard .v-button-primary {
	min-width: 36px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.dashboard .v-button-borderless:active:after {
	background: transparent;
}

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

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

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

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

.dashboard .v-button-borderless-colored:active:after {
	background: transparent;
}

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

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

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

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

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

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

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

.dashboard .v-button-link:active:after {
	background: transparent;
}

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

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

.dashboard .v-button-tiny {
	height: 18px;
	padding: 0 8px;
	
	
	font-size: 11px;
	
	border-radius: 4px;
}

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

.dashboard .v-button-small {
	height: 24px;
	padding: 0 11px;
	
	
	font-size: 12px;
	
	border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.dashboard .v-button-icon-only.v-button-tiny {
	width: 18px;
}

.dashboard .v-button-icon-only.v-button-small {
	width: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root .dashboard .v-checkbox-small {
	padding-left: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dashboard .v-filterselect [class*="input"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	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 #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 31px;
	border-radius: inherit;
}

.v-ie8 .dashboard .v-filterselect [class*="input"], .v-ie9 .dashboard .v-filterselect [class*="input"] {
	line-height: 30px;
	padding-top: 0;
	padding-bottom: 0;
}

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

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

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

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

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

.dashboard .v-filterselect span.v-icon {
	color: #474747;
	width: 30px;
	line-height: 1;
	padding-top: 0.12em;
}

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

.dashboard .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 #e4e4e4;
	color: #a3a3a3;
	border-radius: 0 3px 3px 0;
}

.v-ie8 .dashboard .v-filterselect [class$="button"] {
	background-color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dashboard .v-filterselect-suggestpopup [class$="status"] {
	position: absolute;
	right: 4px;
	background: rgba(212, 212, 212, 0.9);
	color: #3b3b3b;
	border-radius: 0 0 4px 4px;
	height: 18px;
	bottom: -18px;
	font-size: 11px;
	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;
}

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

.dashboard .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: #464646;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dashboard .v-filterselect-tiny {
	height: 18px;
	
	font-size: 11px;
}

.dashboard .v-filterselect-tiny [class*="input"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	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: 18px;
	
	padding: 2px 3px;
	
	
	-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: 19px;
	border-radius: inherit;
}

.v-ie8 .dashboard .v-filterselect-tiny [class*="input"], .v-ie9 .dashboard .v-filterselect-tiny [class*="input"] {
	line-height: 18px;
	padding-top: 0;
	padding-bottom: 0;
}

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

.dashboard .v-filterselect-tiny img.v-icon {
	max-height: 18px;
	margin-left: 3px;
}

.dashboard .v-filterselect-tiny span.v-icon {
	
	width: 18px;
	line-height: 1;
	padding-top: 0.12em;
}

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

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

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

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

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

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

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

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

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

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

.dashboard .v-filterselect-compact, .dashboard .v-filterselect-small {
	height: 24px;
	
}

.dashboard .v-filterselect-compact [class*="input"], .dashboard .v-filterselect-small [class*="input"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	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: 24px;
	
	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: 25px;
	border-radius: inherit;
}

.v-ie8 .dashboard .v-filterselect-compact [class*="input"], .v-ie9 .dashboard .v-filterselect-compact [class*="input"], .v-ie8 .dashboard .v-filterselect-small [class*="input"], .v-ie9 .dashboard .v-filterselect-small [class*="input"] {
	line-height: 24px;
	padding-top: 0;
	padding-bottom: 0;
}

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

.dashboard .v-filterselect-compact img.v-icon, .dashboard .v-filterselect-small img.v-icon {
	max-height: 24px;
	margin-left: 4px;
}

.dashboard .v-filterselect-compact span.v-icon, .dashboard .v-filterselect-small span.v-icon {
	
	width: 24px;
	line-height: 1;
	padding-top: 0.12em;
}

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

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

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

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

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

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

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

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

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

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

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

.dashboard .v-filterselect-large {
	height: 36px;
	
	font-size: 17px;
}

.dashboard .v-filterselect-large [class*="input"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	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;
}

.v-ie8 .dashboard .v-filterselect-large [class*="input"], .v-ie9 .dashboard .v-filterselect-large [class*="input"] {
	line-height: 36px;
	padding-top: 0;
	padding-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.dashboard .v-filterselect-huge {
	height: 48px;
	
	font-size: 23px;
}

.dashboard .v-filterselect-huge [class*="input"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	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;
}

.v-ie8 .dashboard .v-filterselect-huge [class*="input"], .v-ie9 .dashboard .v-filterselect-huge [class*="input"] {
	line-height: 48px;
	padding-top: 0;
	padding-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dashboard .v-form-content {
	height: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dashboard .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .dashboard .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .dashboard .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input, .dashboard .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input, .dashboard .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;
}

.v-ie8 .dashboard .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .v-ie9 .dashboard .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .v-ie8 .dashboard .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .v-ie9 .dashboard .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .v-ie8 .dashboard .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input, .v-ie9 .dashboard .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input, .v-ie8 .dashboard .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input, .v-ie9 .dashboard .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input, .v-ie8 .dashboard .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea, .v-ie9 .dashboard .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea {
	line-height: 30px;
	padding-top: 0;
	padding-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.dashboard .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 #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 150px;
}

.v-ie8 .dashboard .v-textfield, .v-ie9 .dashboard .v-textfield {
	line-height: 30px;
	padding-top: 0;
	padding-bottom: 0;
}

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

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

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

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

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

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

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

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

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

.dashboard .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: 18px;
	border-radius: 4px;
	padding: 2px 5px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 11px;
}

.v-ie8 .dashboard .v-textfield-tiny, .v-ie9 .dashboard .v-textfield-tiny {
	line-height: 18px;
	padding-top: 0;
	padding-bottom: 0;
}

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

.v-ie8 .dashboard .v-textfield-compact, .v-ie9 .dashboard .v-textfield-compact, .v-ie8 .dashboard .v-textfield-small, .v-ie9 .dashboard .v-textfield-small {
	line-height: 24px;
	padding-top: 0;
	padding-bottom: 0;
}

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

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

.v-ie8 .dashboard .v-textfield-large, .v-ie9 .dashboard .v-textfield-large {
	line-height: 36px;
	padding-top: 0;
	padding-bottom: 0;
}

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

.v-ie8 .dashboard .v-textfield-huge, .v-ie9 .dashboard .v-textfield-huge {
	line-height: 48px;
	padding-top: 0;
	padding-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.dashboard .v-caption-inline-icon.v-caption-tiny span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 18px;
	line-height: 16px;
	text-align: center;
	font-size: 11px;
}

.dashboard .v-caption-inline-icon.v-caption-tiny img.v-icon {
	left: 1px;
	bottom: 1px;
}

.dashboard .v-textfield-inline-icon.v-textfield-tiny  {
	padding-left: 18px;
}

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

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

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

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

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

.dashboard .v-caption-inline-icon.v-caption-compact img.v-icon {
	left: 4px;
	bottom: 4px;
}

.dashboard .v-textfield-inline-icon.v-textfield-compact  {
	padding-left: 24px;
}

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

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

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

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

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

.dashboard .v-caption-inline-icon.v-caption-small img.v-icon {
	left: 4px;
	bottom: 4px;
}

.dashboard .v-textfield-inline-icon.v-textfield-small  {
	padding-left: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dashboard .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 #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	width: 150px;
}

.v-ie8 .dashboard .v-textarea, .v-ie9 .dashboard .v-textarea {
	line-height: 30px;
	padding-top: 0;
	padding-bottom: 0;
}

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

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

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

.v-ie8 .dashboard .v-textarea, .v-ie9 .dashboard .v-textarea {
	line-height: inherit;
	padding-top: 3px;
	padding-bottom: 3px;
}

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

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

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

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

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

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

.dashboard .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: 18px;
	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: 11px;
}

.v-ie8 .dashboard .v-textarea-tiny, .v-ie9 .dashboard .v-textarea-tiny {
	line-height: 18px;
	padding-top: 0;
	padding-bottom: 0;
}

.v-ie8 .dashboard .v-textarea-tiny, .v-ie9 .dashboard .v-textarea-tiny {
	line-height: inherit;
	padding-top: 2px;
	padding-bottom: 2px;
}

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

.v-ie8 .dashboard .v-textarea-small, .v-ie9 .dashboard .v-textarea-small {
	line-height: 24px;
	padding-top: 0;
	padding-bottom: 0;
}

.v-ie8 .dashboard .v-textarea-small, .v-ie9 .dashboard .v-textarea-small {
	line-height: inherit;
	padding-top: 3px;
	padding-bottom: 3px;
}

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

.v-ie8 .dashboard .v-textarea-large, .v-ie9 .dashboard .v-textarea-large {
	line-height: 36px;
	padding-top: 0;
	padding-bottom: 0;
}

.v-ie8 .dashboard .v-textarea-large, .v-ie9 .dashboard .v-textarea-large {
	line-height: inherit;
	padding-top: 4px;
	padding-bottom: 4px;
}

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

.v-ie8 .dashboard .v-textarea-huge, .v-ie9 .dashboard .v-textarea-huge {
	line-height: 48px;
	padding-top: 0;
	padding-bottom: 0;
}

.v-ie8 .dashboard .v-textarea-huge, .v-ie9 .dashboard .v-textarea-huge {
	line-height: inherit;
	padding-top: 5px;
	padding-bottom: 5px;
}

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

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

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

.dashboard .v-datefield [class*="textfield"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	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 #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 36px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.v-ie8 .dashboard .v-datefield [class*="textfield"], .v-ie9 .dashboard .v-datefield [class*="textfield"] {
	line-height: 30px;
	padding-top: 0;
	padding-bottom: 0;
}

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

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

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

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

.dashboard .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 #e4e4e4;
	color: #a3a3a3;
	border-radius: 3px 0 0 3px;
}

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

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

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

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

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

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

.dashboard .v-datefield.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

.dashboard .v-datefield-full {
	width: 210px;
}

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

.dashboard .v-datefield-month {
	width: 105px;
}

.dashboard .v-datefield-year {
	width: 91px;
}

.dashboard .v-datefield-popup {
	padding: 3px 3px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	margin-top: 4px !important;
	margin-bottom: 4px !important;
	margin-right: 4px !important;
	cursor: default;
	width: auto;
}

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

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

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

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

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

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

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

.dashboard .v-datefield-popup .v-datefield-calendarpanel-day:hover {
	color: #197de1;
}

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

.dashboard .v-datefield-popup .v-datefield-calendarpanel-day-today {
	color: #191919;
	font-weight: 600;
	border-color: #afafaf;
}

.dashboard .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .dashboard .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #c8dbed;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	border: none;
	font-weight: 600;
}

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

.v-ie8 .dashboard .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	border-color: #197de1;
}

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

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

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

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

.dashboard .v-datefield-popup td[class*="year"] button, .dashboard .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;
}

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

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

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

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

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

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

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

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

.dashboard .v-datefield-popup td.v-datefield-calendarpanel-month {
	width: 120px;
	color: #197de1;
}

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

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

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

.dashboard .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 #eaeaea;
	border-right: 1px solid #eaeaea;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	background: #fafafa;
}

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

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

.dashboard .v-datefield-calendarpanel {
	font-size: 14px;
	text-align: center;
}

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

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

.dashboard .v-datefield-calendarpanel-day:hover {
	color: #197de1;
}

.dashboard .v-datefield-calendarpanel-day-offmonth {
	color: #a0a0a0;
	background: transparent;
}

.dashboard .v-datefield-calendarpanel-day-today {
	color: #191919;
	font-weight: 600;
	border-color: #afafaf;
}

.dashboard .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .dashboard .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #c8dbed;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	border: none;
	font-weight: 600;
}

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

.v-ie8 .dashboard .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	border-color: #197de1;
}

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

.dashboard .v-datefield-calendarpanel-weekdays {
	height: 21px;
	color: rgba(133, 133, 133, 0.85);
}

.dashboard .v-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 13px;
}

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

.dashboard td[class*="year"] button, .dashboard 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;
}

.dashboard td[class*="year"] button:before, .dashboard td[class*="month"] button:before {
	color: #a0a0a0;
	font-size: 18px;
	line-height: 21px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

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

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

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

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

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

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

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

.dashboard td.v-datefield-calendarpanel-month {
	width: 120px;
	color: #197de1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.dashboard .v-datefield-tiny {
	height: 18px;
	border-radius: 4px;
	font-size: 11px;
}

.dashboard .v-datefield-tiny [class*="textfield"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	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: 18px;
	border-radius: 4px;
	padding: 2px 5px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 21.6px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.v-ie8 .dashboard .v-datefield-tiny [class*="textfield"], .v-ie9 .dashboard .v-datefield-tiny [class*="textfield"] {
	line-height: 18px;
	padding-top: 0;
	padding-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.dashboard .v-datefield-compact [class*="textfield"], .dashboard .v-datefield-small [class*="textfield"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	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: 24px;
	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: 28.8px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.v-ie8 .dashboard .v-datefield-compact [class*="textfield"], .v-ie9 .dashboard .v-datefield-compact [class*="textfield"], .v-ie8 .dashboard .v-datefield-small [class*="textfield"], .v-ie9 .dashboard .v-datefield-small [class*="textfield"] {
	line-height: 24px;
	padding-top: 0;
	padding-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.dashboard .v-datefield-large [class*="textfield"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	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;
}

.v-ie8 .dashboard .v-datefield-large [class*="textfield"], .v-ie9 .dashboard .v-datefield-large [class*="textfield"] {
	line-height: 36px;
	padding-top: 0;
	padding-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.dashboard .v-datefield-huge [class*="textfield"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	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;
}

.v-ie8 .dashboard .v-datefield-huge [class*="textfield"], .v-ie9 .dashboard .v-datefield-huge [class*="textfield"] {
	line-height: 48px;
	padding-top: 0;
	padding-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

.dashboard .v-inline-datefield-calendarpanel {
	font-size: 14px;
	text-align: center;
}

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

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

.dashboard .v-inline-datefield-calendarpanel-day:hover {
	color: #197de1;
}

.dashboard .v-inline-datefield-calendarpanel-day-offmonth {
	color: #a0a0a0;
	background: transparent;
}

.dashboard .v-inline-datefield-calendarpanel-day-today {
	color: #191919;
	font-weight: 600;
	border-color: #afafaf;
}

.dashboard .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected, .dashboard .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected:hover {
	color: #c8dbed;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	border: none;
	font-weight: 600;
}

.dashboard .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	position: relative;
}

.v-ie8 .dashboard .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-focused {
	border-color: #197de1;
}

.dashboard .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range, .dashboard .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range:hover {
	color: #a0a0a0;
	cursor: not-allowed;
}

.dashboard .v-inline-datefield-calendarpanel-weekdays {
	height: 21px;
	color: rgba(133, 133, 133, 0.85);
}

.dashboard .v-inline-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 13px;
}

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

.dashboard td[class*="year"] button, .dashboard 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;
}

.dashboard td[class*="year"] button:before, .dashboard td[class*="month"] button:before {
	color: #a0a0a0;
	font-size: 18px;
	line-height: 21px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

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

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

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

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

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

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

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

.dashboard td.v-inline-datefield-calendarpanel-month {
	width: 120px;
	color: #197de1;
}

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

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

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

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

.dashboard td.v-inline-datefield-calendarpanel-time {
	width: 100%;
	font-size: 13px;
}

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

.dashboard .v-inline-datefield-calendarpanel {
	position: relative;
	background: white;
	padding: 5px;
}

.dashboard .v-gridlayout-margin-top {
	padding-top: 18px;
}

.dashboard .v-gridlayout-margin-bottom {
	padding-bottom: 18px;
}

.dashboard .v-gridlayout-margin-left {
	padding-left: 18px;
}

.dashboard .v-gridlayout-margin-right {
	padding-right: 18px;
}

.dashboard .v-gridlayout-spacing-on {
	padding-left: 6px;
	padding-top: 7px;
}

.dashboard .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: #191919;
	font-weight: 400;
	
	cursor: default;
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	text-align: left;
	line-height: 28px;
}

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

.dashboard .v-menubar:focus:after {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

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

.dashboard .v-menubar.v-disabled:after {
	display: none;
}

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

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

.dashboard .v-menubar  > .v-menubar-menuitem {
	padding: 0 12px;
}

.dashboard .v-menubar  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 30px;
}

.dashboard .v-menubar:active:after {
	background: transparent;
}

.dashboard .v-menubar > .v-menubar-menuitem {
	position: relative;
	z-index: 1;
	display: inline-block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 30px;
	padding: 0 12px;
	color: inherit;
	font-weight: 400;
	
	cursor: pointer;
	border-radius: 0;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-width: 0 1px 0 0;
	border-color: inherit;
	height: 100%;
	line-height: inherit;
	vertical-align: top;
	text-align: center;
}

.dashboard .v-menubar > .v-menubar-menuitem:first-child {
	border-left-width: 0;
	border-radius: 3px 0 0 3px;
}

.dashboard .v-menubar > .v-menubar-menuitem:last-child {
	border-radius: 0 3px 3px 0;
	border-right-width: 0;
}

.dashboard .v-menubar > .v-menubar-menuitem:first-child:last-child {
	border-radius: 3px;
}

.dashboard .v-menubar > .v-menubar-menuitem:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.dashboard .v-menubar > .v-menubar-menuitem:hover {
	zoom: 1;
}

.dashboard .v-menubar > .v-menubar-menuitem:hover:before {
	background-color: rgba(186, 186, 186, 0.1);
	border: none;
}

.dashboard .v-menubar > .v-menubar-menuitem:active:before {
	background-color: rgba(125, 125, 125, 0.2);
}

.dashboard .v-menubar > .v-menubar-menuitem .v-icon {
	margin: 0 3px 0 -3px;
	cursor: inherit;
}

.dashboard .v-menubar > .v-menubar-menuitem[class*="-icon-only"] {
	width: 30px;
	padding: 0;
}

.dashboard .v-menubar > .v-menubar-menuitem[class*="-icon-only"] .v-icon {
	margin: 0;
}

.dashboard .v-menubar > .v-menubar-menuitem-checked {
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #ededed;
	background-image: -webkit-linear-gradient(bottom, #ededed 2%, #e9e9e9 98%);
	background-image: linear-gradient(to top,#ededed 2%, #e9e9e9 98%);
	color: #181818;
}

.dashboard .v-disabled > .v-menubar-menuitem, .dashboard .v-menubar > .v-menubar-menuitem-disabled {
	cursor: default;
}

.dashboard .v-disabled > .v-menubar-menuitem:before, .dashboard .v-menubar > .v-menubar-menuitem-disabled:before {
	display: none;
}

.dashboard .v-menubar-menuitem-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.dashboard .v-menubar > .v-menubar-menuitem-selected {
	color: #ecf2f8;
	
	
	
	border-radius: 0;
	border: 1px solid #1362b1;
	border-top-color: #156ab3;
	border-bottom-color: #1156a8;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	-webkit-box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
	box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-top-width: 0;
	border-left-width: 0;
	border-bottom-width: 0;
	z-index: 2;
}

.dashboard .v-menubar > .v-menubar-menuitem-selected:hover:before {
	background: none;
}

.dashboard .v-menubar .v-menubar-submenu-indicator {
	display: none;
}

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

.dashboard .v-menubar .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:empty:after {
	margin-left: -0.2em;
}

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

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

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

.dashboard .v-menubar-popup .v-menubar-submenu {
	outline: none;
}

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

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

.dashboard .v-menubar-popup .v-menubar-menuitem .v-icon {
	max-height: 22px;
	margin-right: 4px;
	min-width: 1em;
}

.dashboard .v-menubar-popup .v-menubar-submenu-indicator {
	display: none;
}

.dashboard .v-menubar-popup .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:after {
	position: absolute;
	right: 8px;
	font-family: ThemeIcons;
	content: "\f054";
	line-height: 24px;
}

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

.dashboard .v-menubar-popup .v-menubar-separator {
	display: block;
	margin: 3px 0;
	height: 0;
	overflow: hidden;
	border-bottom: 1px solid #e4e4e4;
}

.dashboard .v-menubar-popup [class*="checked"] .v-menubar-menuitem-caption:before {
	content: "\f00c";
	font-family: ThemeIcons;
	position: absolute;
	left: 8px;
}

.dashboard .v-menubar-popup [class*="unchecked"] .v-menubar-menuitem-caption:before {
	content: "";
}

.dashboard .v-menubar-popup [class*="disabled"] {
	cursor: default;
}

.dashboard .v-menubar-small {
	height: 24px;
	padding: 0 11px;
	
	font-weight: 400;
	
	cursor: default;
	border-radius: 4px;
	padding: 0;
	text-align: left;
	line-height: 22px;
	font-size: 12px;
}

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

.dashboard .v-menubar-small  > .v-menubar-menuitem {
	padding: 0 9px;
}

.dashboard .v-menubar-small  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 24px;
}

.dashboard .v-menubar-borderless {
	border: none;
	border-radius: 0;
	padding: 1px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background: transparent;
	color: inherit;
}

.dashboard .v-menubar-borderless:focus:after {
	display: none;
}

.dashboard .v-menubar-borderless .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 4px;
	color: #197de1;
	padding: 0 10px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.dashboard .v-menubar-borderless .v-menubar-menuitem:first-child, .dashboard .v-menubar-borderless .v-menubar-menuitem:last-child, .dashboard .v-menubar-borderless .v-menubar-menuitem:first-child:last-child {
	border-radius: 4px;
}

.dashboard .v-menubar-borderless .v-menubar-menuitem:before {
	content: none;
}

.dashboard .v-menubar-borderless .v-menubar-menuitem:hover {
	color: #4396ea;
}

.dashboard .v-menubar-borderless .v-menubar-menuitem:active {
	color: inherit;
}

.dashboard .v-menubar-borderless .v-menubar-menuitem-checked, .dashboard .v-menubar-borderless .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c5c5c5;
	color: #197de1;
}

.dashboard .v-menubar-borderless .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .dashboard .v-menubar-borderless .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.dashboard .v-menubar-borderless .v-menubar-menuitem-selected {
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.dashboard .v-menubar-borderless .v-menubar-menuitem-selected:hover {
	color: #ecf2f8;
}

.dashboard .v-menubar-borderless .v-menubar-menuitem-disabled, .dashboard .v-menubar-borderless .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

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

.dashboard .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .dashboard .v-radiobutton {
	padding-left: 20px;
}

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

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

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

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

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

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

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

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

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

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

.dashboard .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

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

.dashboard .v-radiobutton.v-readonly  > label, .dashboard .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.dashboard .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

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

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

:root .dashboard .v-radiobutton > input:checked ~ label:after {
	width: 5px;
	height: 5px;
	top: 5px;
	left: 5px;
	background: #197de1;
}

:root .dashboard .v-radiobutton > input ~ label:before, :root .dashboard .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.dashboard .v-select-optiongroup .v-radiobutton, .dashboard .v-select-optiongroup .v-checkbox {
	display: block;
	margin: 8px 14px 0 0;
}

.dashboard .v-select-optiongroup .v-radiobutton:first-child, .dashboard .v-select-optiongroup .v-checkbox:first-child {
	margin-top: 5px;
}

.dashboard .v-select-optiongroup .v-radiobutton:last-child, .dashboard .v-select-optiongroup .v-checkbox:last-child {
	margin-bottom: 5px;
}

.dashboard .v-select-optiongroup.v-has-width label {
	white-space: normal;
}

.dashboard .v-select-optiongroup-small {
	font-size: 12px;
}

.dashboard .v-select-optiongroup-small .v-checkbox {
	position: relative;
	line-height: 12px;
	white-space: nowrap;
}

.dashboard .v-select-optiongroup-small .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .dashboard .v-select-optiongroup-small .v-checkbox {
	padding-left: 16px;
}

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

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

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

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

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

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

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

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

.dashboard .v-select-optiongroup-small .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

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

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

.dashboard .v-select-optiongroup-small .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

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

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

.dashboard .v-select-optiongroup-small .v-radiobutton {
	position: relative;
	line-height: 12px;
	white-space: nowrap;
}

.dashboard .v-select-optiongroup-small .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .dashboard .v-select-optiongroup-small .v-radiobutton {
	padding-left: 16px;
}

:root .dashboard .v-select-optiongroup-small .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .dashboard .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 .dashboard .v-select-optiongroup-small .v-radiobutton > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

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

:root .dashboard .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 .dashboard .v-select-optiongroup-small .v-radiobutton > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .dashboard .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	color: #197de1;
}

.dashboard .v-select-optiongroup-small .v-radiobutton > .v-icon, .dashboard .v-select-optiongroup-small .v-radiobutton > label .v-icon {
	margin: 0 4px 0 2px;
	min-width: 1em;
	cursor: pointer;
}

.dashboard .v-select-optiongroup-small .v-radiobutton.v-disabled  > label, .dashboard .v-select-optiongroup-small .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.dashboard .v-select-optiongroup-small .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .dashboard .v-select-optiongroup-small .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.dashboard .v-select-optiongroup-small .v-radiobutton.v-readonly  > label, .dashboard .v-select-optiongroup-small .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.dashboard .v-select-optiongroup-small .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .dashboard .v-select-optiongroup-small .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .dashboard .v-select-optiongroup-small .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .dashboard .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	width: 4px;
	height: 4px;
	top: 4px;
	left: 4px;
	background: #197de1;
}

:root .dashboard .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .dashboard .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.dashboard .v-select-optiongroup-small .v-radiobutton, .dashboard .v-select-optiongroup-small .v-checkbox {
	display: block;
	margin: 6px 14px 0 0;
}

.dashboard .v-select-optiongroup-small .v-radiobutton:first-child, .dashboard .v-select-optiongroup-small .v-checkbox:first-child {
	margin-top: 4px;
}

.dashboard .v-select-optiongroup-small .v-radiobutton:last-child, .dashboard .v-select-optiongroup-small .v-checkbox:last-child {
	margin-bottom: 4px;
}

.dashboard .v-select-optiongroup-small.v-has-width label {
	white-space: normal;
}

.dashboard .v-select-optiongroup-large {
	font-size: 17px;
}

.dashboard .v-select-optiongroup-large .v-checkbox {
	position: relative;
	line-height: 18px;
	white-space: nowrap;
}

.dashboard .v-select-optiongroup-large .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .dashboard .v-select-optiongroup-large .v-checkbox {
	padding-left: 24px;
}

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

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

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

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

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

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

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

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

.dashboard .v-select-optiongroup-large .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

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

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

.dashboard .v-select-optiongroup-large .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

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

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

.dashboard .v-select-optiongroup-large .v-radiobutton {
	position: relative;
	line-height: 18px;
	white-space: nowrap;
}

.dashboard .v-select-optiongroup-large .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .dashboard .v-select-optiongroup-large .v-radiobutton {
	padding-left: 24px;
}

:root .dashboard .v-select-optiongroup-large .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .dashboard .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 .dashboard .v-select-optiongroup-large .v-radiobutton > input:focus ~ label:before {
	border-color: #197de1;
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

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

:root .dashboard .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 .dashboard .v-select-optiongroup-large .v-radiobutton > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .dashboard .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	color: #197de1;
}

.dashboard .v-select-optiongroup-large .v-radiobutton > .v-icon, .dashboard .v-select-optiongroup-large .v-radiobutton > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.dashboard .v-select-optiongroup-large .v-radiobutton.v-disabled  > label, .dashboard .v-select-optiongroup-large .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.dashboard .v-select-optiongroup-large .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .dashboard .v-select-optiongroup-large .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.dashboard .v-select-optiongroup-large .v-radiobutton.v-readonly  > label, .dashboard .v-select-optiongroup-large .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.dashboard .v-select-optiongroup-large .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .dashboard .v-select-optiongroup-large .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .dashboard .v-select-optiongroup-large .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .dashboard .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	width: 6px;
	height: 6px;
	top: 6px;
	left: 6px;
	background: #197de1;
}

:root .dashboard .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .dashboard .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.dashboard .v-select-optiongroup-large .v-radiobutton, .dashboard .v-select-optiongroup-large .v-checkbox {
	display: block;
	margin: 9px 14px 0 0;
}

.dashboard .v-select-optiongroup-large .v-radiobutton:first-child, .dashboard .v-select-optiongroup-large .v-checkbox:first-child {
	margin-top: 6px;
}

.dashboard .v-select-optiongroup-large .v-radiobutton:last-child, .dashboard .v-select-optiongroup-large .v-checkbox:last-child {
	margin-bottom: 6px;
}

.dashboard .v-select-optiongroup-large.v-has-width label {
	white-space: normal;
}

.dashboard .v-select-optiongroup-horizontal {
	white-space: nowrap;
}

.dashboard .v-select-optiongroup-horizontal .v-radiobutton, .dashboard .v-select-optiongroup-horizontal .v-checkbox {
	display: inline-block;
}

.dashboard .v-select-optiongroup-horizontal.v-has-width {
	white-space: normal;
}

.dashboard .v-select-optiongroup-horizontal.v-has-width label {
	white-space: nowrap;
}

.dashboard .v-link {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

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

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

.dashboard .v-link a {
	cursor: inherit;
	color: inherit;
	text-decoration: inherit;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	transition: inherit;
}

.dashboard .v-link .v-icon {
	cursor: inherit;
}

.dashboard .v-link-small {
	font-size: 12px;
}

.dashboard .v-link-large {
	font-size: 17px;
}

.dashboard .v-window {
	padding: 3px 3px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 16px 80px -6px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 16px 80px -6px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	padding: 0;
	min-width: 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;
}

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

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

.dashboard .v-window.v-window-animate-in {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.dashboard .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 .dashboard .v-window-modalitycurtain {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.dashboard .v-window-draggingCurtain {
	position: fixed !important;
}

.dashboard .v-window-resizingCurtain + .v-window, .dashboard .v-window-draggingCurtain + .v-window {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

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

.dashboard .v-window-outerheader:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #dfdfdf;
	border-color: rgba(197, 197, 197, 0.5);
	border-bottom: 1px solid #b5b5b5;
}

.dashboard .v-window-header {
	line-height: 32px;
	padding-left: 10px;
	margin-right: 60px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #7e7e7e;
}

.dashboard .v-window-restorebox-disabled  ~ .v-window-closebox ~ .v-window-header, .dashboard .v-window-maximizebox-disabled  ~ .v-window-closebox ~ .v-window-header {
	margin-right: 30px;
}

.dashboard .v-window-restorebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header, .dashboard .v-window-maximizebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header {
	margin-right: 10px;
}

.dashboard .v-window-closebox, .dashboard .v-window-maximizebox, .dashboard .v-window-restorebox {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 27px;
	height: 29px;
	background-color: white;
	line-height: 27px;
	text-align: center;
	cursor: pointer;
	font-size: 18px;
	color: #999999;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.dashboard .v-window-closebox:focus, .dashboard .v-window-maximizebox:focus, .dashboard .v-window-restorebox:focus {
	outline: none;
}

.dashboard .v-window-closebox:hover, .dashboard .v-window-maximizebox:hover, .dashboard .v-window-restorebox:hover {
	opacity: 1;
	filter: none ;
	color: #197de1;
}

.dashboard .v-window-closebox:active, .dashboard .v-window-maximizebox:active, .dashboard .v-window-restorebox:active {
	color: inherit;
}

.dashboard .v-window-closebox {
	padding-right: 3px;
	border-radius: 0 4px 0 4px;
}

.dashboard .v-window-closebox:before {
	content: "\00d7";
}

.dashboard .v-window-maximizebox, .dashboard .v-window-restorebox {
	right: 27px;
	padding-left: 3px;
	border-radius: 0 0 0 4px;
}

.dashboard .v-window-maximizebox  + .v-window-closebox, .dashboard .v-window-restorebox  + .v-window-closebox {
	border-bottom-left-radius: 0;
}

.dashboard .v-window-closebox-disabled, .dashboard .v-window-resizebox-disabled, .dashboard .v-window-restorebox-disabled, .dashboard .v-window-maximizebox-disabled {
	display: none;
}

.dashboard .v-window-closebox-disabled  + .v-window-closebox, .dashboard .v-window-resizebox-disabled  + .v-window-closebox, .dashboard .v-window-restorebox-disabled  + .v-window-closebox, .dashboard .v-window-maximizebox-disabled  + .v-window-closebox {
	width: 30px;
	padding-right: 0;
	border-bottom-left-radius: 4px;
}

.dashboard .v-window-maximizebox:before {
	content: "+";
}

.dashboard .v-window-restorebox:before {
	content: "\2013";
}

.dashboard .v-window > .popupContent, .dashboard .v-window-wrap, .dashboard .v-window-contents, .dashboard .v-window-contents > .v-scrollable {
	height: 100%;
}

.dashboard .v-window-contents {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 4px;
	margin-top: 0 !important;
}

.dashboard .v-window-contents  > .v-scrollable {
	position: relative;
}

.dashboard .v-window-contents  > .v-scrollable  > .v-margin-top {
	padding-top: 10px;
}

.dashboard .v-window-contents  > .v-scrollable  > .v-margin-right {
	padding-right: 10px;
}

.dashboard .v-window-contents  > .v-scrollable  > .v-margin-bottom {
	padding-bottom: 10px;
}

.dashboard .v-window-contents  > .v-scrollable  > .v-margin-left {
	padding-left: 10px;
}

.dashboard .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 10px;
}

.dashboard .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 10px;
}

.dashboard .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 10px;
}

.dashboard .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .dashboard .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .dashboard .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 10px;
}

.dashboard .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 10px;
}

.dashboard .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .dashboard .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .dashboard .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 10px;
}

.dashboard .v-window-contents  > .v-scrollable:focus {
	outline: none;
}

.dashboard .v-window-contents  > .v-scrollable:before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	height: 0;
	border-top: 1px solid white;
	left: 0;
	right: 0;
}

.dashboard .v-window-contents  > .v-scrollable .v-panel-captionwrap:after {
	border-color: #dfdfdf;
}

.dashboard .v-window-contents  > .v-scrollable .v-panel-content:before {
	border-color: white;
}

.dashboard .v-window-footer {
	height: 0;
}

.dashboard .v-window-resizebox {
	position: absolute;
	z-index: 1000;
	right: 0;
	bottom: 0;
	width: 15px;
	height: 15px;
	cursor: nwse-resize;
}

.v-ie8 .dashboard .v-window-resizebox {
	background: #000;
	filter: alpha(opacity=0.1);
}

.v-ie8 .dashboard .v-window-resizebox, .v-ie9 .dashboard .v-window-resizebox {
	cursor: se-resize;
}

.dashboard .v-window-modalitycurtain:active  ~ .v-window {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.dashboard .v-window-top-toolbar  > .v-widget, .dashboard .v-window-bottom-toolbar  > .v-widget {
	vertical-align: top;
}

.dashboard .v-window-top-toolbar .v-label, .dashboard .v-window-bottom-toolbar .v-label {
	line-height: 29px;
}

.dashboard .v-window-top-toolbar .v-spacing, .dashboard .v-window-bottom-toolbar .v-spacing {
	width: 3px;
}

.dashboard .v-window-top-toolbar.v-layout {
	padding: 6px 10px;
	position: relative;
	z-index: 2;
	border-top: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
	background-color: #fafafa;
}

.dashboard .v-window-top-toolbar.v-menubar {
	margin: 10px 10px 5px;
}

.dashboard .v-window-top-toolbar.v-menubar-borderless {
	padding-left: 5px;
	padding-right: 5px;
	margin: 4px 0;
}

.dashboard .v-window-bottom-toolbar.v-layout {
	padding: 6px 10px;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #f0f0f0 0, #fafafa 3px);
	background-image: linear-gradient(to bottom,#f0f0f0 0, #fafafa 3px);
	border-top: 1px solid #dfdfdf;
	border-radius: 0 0 4px 4px;
}

.dashboard .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-layout {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	margin: -10px -10px 0;
}

.dashboard .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar {
	margin: 0;
}

.dashboard .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar-borderless {
	margin: -5px -5px 0;
	padding: 0;
}

.dashboard .v-margin-left.v-margin-right.v-margin-bottom .v-window-bottom-toolbar.v-layout {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	margin: 0 -10px -10px;
}

.dashboard .v-table {
	position: relative;
	background: #fafafa;
	color: #464646;
	overflow: hidden;
}

.dashboard .v-table-header table, .dashboard .v-table-footer table, .dashboard .v-table-table {
	-webkit-box-shadow: 0 0 0 1px #d4d4d4;
	box-shadow: 0 0 0 1px #d4d4d4;
}

.v-ie8 .dashboard .v-table-header table, .v-ie8 .dashboard .v-table-footer table, .v-ie8 .dashboard .v-table-table {
	outline: 1px solid #d4d4d4;
}

.dashboard .v-table-header-wrap, .dashboard .v-table-footer-wrap, .dashboard .v-table-header-drag {
	border: 1px solid #d4d4d4;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	white-space: nowrap;
	font-size: 12px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dashboard .v-table-header-wrap {
	position: relative;
	border-bottom: none;
}

.dashboard .v-table-footer-wrap {
	border-top: none;
}

.dashboard .v-table-footer td {
	border-left: 1px solid #d4d4d4;
}

.dashboard .v-table-footer-container, .dashboard .v-table-caption-container {
	overflow: hidden;
	line-height: 1;
	min-height: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.v-ie8 .dashboard .v-table-footer-container, .v-ie8 .dashboard .v-table-caption-container {
	min-height: 13px;
}

.dashboard .v-table-footer-container {
	padding: 8px 10px 9px;
	float: right;
}

.dashboard [class^="v-table-header-cell"] {
	position: relative;
}

.dashboard .v-table-caption-container, .dashboard .v-table-header-drag {
	padding: 9px 10px 8px;
	border-left: 1px solid #d4d4d4;
}

.dashboard .v-table-caption-container-align-right {
	padding-right: 3px;
}

.dashboard .v-table-resizer {
	height: 30px;
	width: 7px;
	cursor: e-resize;
	cursor: col-resize;
	position: relative;
	right: -4px;
	z-index: 1;
	margin-left: -7px;
}

.dashboard .v-table-cell-content {
	border-left: 1px solid #d4d4d4;
	overflow: hidden;
	height: 30px;
	vertical-align: middle;
}

.dashboard .v-table-cell-content:first-child {
	border-left: none;
	padding-left: 1px;
}

.dashboard .v-table-header td:first-child .v-table-caption-container, .dashboard .v-table-footer td:first-child {
	border-left-color: transparent;
}

.dashboard .v-table-cell-wrapper {
	line-height: 1;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-right: 0 !important;
}

.dashboard .v-table-cell-wrapper  > .v-widget {
	margin: 3px -5px;
}

.dashboard .v-table-cell-wrapper  > .v-widget.v-label, .dashboard .v-table-cell-wrapper  > .v-widget.v-checkbox, .dashboard .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.dashboard .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.dashboard .v-table-body {
	border: 1px solid #d4d4d4;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.dashboard .v-table-table {
	background-color: white;
	white-space: nowrap;
}

.dashboard .v-table-table td {
	border-top: 1px solid #d4d4d4;
}

.dashboard .v-table-table tr:first-child > td {
	border-top: none;
}

.dashboard .v-table-row {
	background-color: white;
	cursor: pointer;
}

.dashboard .v-table-row-odd {
	background-color: #f5f5f5;
	cursor: pointer;
}

.dashboard .v-table-body-noselection .v-table-row, .dashboard .v-table-body-noselection .v-table-row-odd {
	cursor: default;
}

.dashboard .v-table [class*="-row"].v-selected {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	background-origin: border-box;
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.dashboard .v-table [class*="-row"].v-selected  + .v-selected {
	background: #166ed5;
}

.dashboard .v-table [class*="-row"].v-selected  + .v-selected td {
	border-top-color: #166ed5;
}

.dashboard .v-table [class*="-row"].v-selected .v-table-cell-content {
	border-color: transparent;
	border-left-color: #1d69b4;
}

.dashboard .v-table [class*="-row"].v-selected .v-table-cell-content:first-child {
	border-left-color: transparent;
}

.dashboard .v-table-header-cell-asc .v-table-sort-indicator, .dashboard .v-table-header-cell-desc .v-table-sort-indicator {
	background: transparent;
	width: 15px;
	height: 30px;
	line-height: 30px;
	margin-left: -15px;
}

.dashboard .v-table-header-cell-asc .v-table-sort-indicator:before, .dashboard .v-table-header-cell-desc .v-table-sort-indicator:before {
	font-style: normal;
	font-weight: normal;
	display: inline-block;
}

.dashboard .v-table-header-cell-asc .v-table-sort-indicator:before {
	content: "\f0de";
	font-family: ThemeIcons;
}

.dashboard .v-table-header-cell-desc .v-table-sort-indicator:before {
	content: "\f0dd";
	font-family: ThemeIcons;
}

.dashboard [class*="rowheader"] span.v-icon {
	min-width: 1em;
}

.dashboard .v-table-focus {
	outline: 1px solid #197de1;
	outline-offset: -1px;
}

.dashboard .v-drag-element.v-table-focus, .dashboard .v-drag-element .v-table-focus {
	outline: none;
}

.dashboard .v-table-header-drag {
	position: absolute;
	opacity: 0.9;
	filter: alpha(opacity=90) ;
	margin-top: -15px;
	z-index: 30000;
	line-height: 1;
}

.dashboard .v-table-focus-slot-right {
	border-right: 3px solid #197de1;
	right: -2px;
	margin-left: -10px !important;
}

.dashboard .v-table-focus-slot-left {
	float: left;
	border-left: 3px solid #197de1;
	left: -1px;
	right: auto;
	margin-left: 0 !important;
	margin-right: -10px;
}

.dashboard .v-table-column-selector {
	height: 30px;
	padding: 0 13px;
	color: #191919;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	width: 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;
}

.dashboard .v-table-column-selector:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.dashboard .v-table-column-selector:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

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

.dashboard .v-table-column-selector:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.dashboard .v-table-column-selector:after {
	content: "";
	position: absolute;
	border: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.dashboard .v-table-column-selector:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.dashboard .v-table-column-selector:before {
	font-family: ThemeIcons;
	content: "\f013";
}

.dashboard .v-table-header-wrap:hover .v-table-column-selector {
	opacity: 1;
	filter: none ;
	-webkit-transition-delay: 200ms;
	-moz-transition-delay: 200ms;
	transition-delay: 200ms;
}

.dashboard .v-on:before, .dashboard .v-off:before {
	content: "\f00c";
	font-family: ThemeIcons;
	font-size: 0.9em;
	margin-right: 5px;
}

.dashboard .v-on div, .dashboard .v-off div {
	display: inline;
}

.dashboard .v-on.v-disabled, .dashboard .v-off.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.dashboard .v-off:before {
	visibility: hidden;
}

.dashboard tbody.v-drag-element {
	display: block;
	overflow: visible;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	opacity: 1;
	filter: none ;
}

.dashboard tbody.v-drag-element tr {
	display: block;
	
	
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	overflow: hidden;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	background: white;
}

.dashboard .v-table-body {
	position: relative;
	z-index: 1;
}

.dashboard .v-table-scrollposition {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 30px;
	line-height: 30px;
	margin: -15px 0 0 !important;
	text-align: center;
}

.dashboard .v-table-drag {
	overflow: visible;
}

.dashboard .v-table-drag .v-table-body {
	-webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
	border-color: #197de1;
}

.v-ie8 .dashboard .v-table-drag .v-table-body {
	border-color: #197de1;
}

.dashboard .v-table-drag .v-table-body .v-table-focus {
	outline: none;
}

.dashboard .v-table-row-drag-middle .v-table-cell-content {
	background-color: #d1e5f9;
	color: #214060;
}

.dashboard .v-table-row-drag-bottom td.v-table-cell-content {
	border-bottom: 2px solid #197de1;
	height: 28px;
}

.dashboard .v-table-row-drag-bottom .v-table-cell-wrapper {
	margin-bottom: -2px;
}

.dashboard .v-table-row-drag-top td.v-table-cell-content {
	border-top: 2px solid #197de1;
	height: 29px;
}

.dashboard .v-table-row-drag-top .v-table-cell-wrapper {
	margin-top: -1px;
}

.dashboard .v-table-no-stripes .v-table-row, .dashboard .v-table-no-stripes .v-table-row-odd {
	background: transparent;
}

.dashboard .v-table-no-vertical-lines .v-table-cell-content {
	border-left: none;
	padding-left: 1px;
}

.dashboard .v-table-no-vertical-lines.v-treetable .v-table-cell-content {
	padding-left: 11px;
}

.dashboard .v-table-no-horizontal-lines .v-table-cell-content {
	border-top: none;
	border-bottom: none;
}

.dashboard .v-table-no-horizontal-lines .v-table-row-drag-top .v-table-cell-content, .dashboard .v-table-no-horizontal-lines .v-table-row-drag-bottom .v-table-cell-content {
	height: 29px;
}

.dashboard .v-table-no-header .v-table-header-wrap {
	display: none;
}

.dashboard .v-table-borderless .v-table-header-wrap, .dashboard .v-table-borderless .v-table-footer-wrap, .dashboard .v-table-borderless .v-table-header-drag, .dashboard .v-table-borderless .v-table-body {
	border: none;
}

.dashboard .v-table-borderless .v-table-header-wrap {
	border-bottom: 1px solid #d9d9d9;
}

.dashboard .v-table-borderless .v-table-footer-wrap {
	border-top: 1px solid #d9d9d9;
}

.dashboard .v-table-compact .v-table-header-wrap, .dashboard .v-table-compact .v-table-footer-wrap, .dashboard .v-table-compact .v-table-header-drag, .dashboard .v-table-small .v-table-header-wrap, .dashboard .v-table-small .v-table-footer-wrap, .dashboard .v-table-small .v-table-header-drag {
	font-size: 12px;
}

.dashboard .v-table-compact .v-table-footer-container, .dashboard .v-table-small .v-table-footer-container {
	padding: 5px 6px 6px;
}

.dashboard .v-table-compact .v-table-caption-container, .dashboard .v-table-compact .v-table-header-drag, .dashboard .v-table-small .v-table-caption-container, .dashboard .v-table-small .v-table-header-drag {
	padding-top: 6px;
	padding-bottom: 5px;
	padding-left: 5px;
	padding-right: 5px;
}

.dashboard .v-table-compact .v-table-caption-container-align-right, .dashboard .v-table-small .v-table-caption-container-align-right {
	padding-right: 0;
}

.dashboard .v-table-compact .v-table-resizer, .dashboard .v-table-small .v-table-resizer {
	height: 24px;
}

.dashboard .v-table-compact .v-table-cell-content, .dashboard .v-table-small .v-table-cell-content {
	height: 24px;
}

.dashboard .v-table-compact .v-table-cell-wrapper, .dashboard .v-table-small .v-table-cell-wrapper {
	padding-left: 5px;
	padding-right: 5px;
}

.dashboard .v-table-compact .v-table-cell-wrapper  > .v-widget, .dashboard .v-table-small .v-table-cell-wrapper  > .v-widget {
	margin: 1px -3px;
}

.dashboard .v-table-compact .v-table-cell-wrapper  > .v-widget.v-label, .dashboard .v-table-compact .v-table-cell-wrapper  > .v-widget.v-checkbox, .dashboard .v-table-compact .v-table-cell-wrapper  > .v-widget.v-select-optiongroup, .dashboard .v-table-small .v-table-cell-wrapper  > .v-widget.v-label, .dashboard .v-table-small .v-table-cell-wrapper  > .v-widget.v-checkbox, .dashboard .v-table-small .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.dashboard .v-table-compact .v-table-cell-wrapper  > .v-widget.v-progressbar, .dashboard .v-table-small .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.dashboard .v-table-compact .v-table-header-cell-asc .v-table-sort-indicator, .dashboard .v-table-compact .v-table-header-cell-desc .v-table-sort-indicator, .dashboard .v-table-small .v-table-header-cell-asc .v-table-sort-indicator, .dashboard .v-table-small .v-table-header-cell-desc .v-table-sort-indicator {
	height: 24px;
	line-height: 24px;
}

.dashboard .v-table-compact .v-table-header-drag, .dashboard .v-table-small .v-table-header-drag {
	margin-top: -12px;
}

.dashboard .v-table-compact.v-treetable .v-table-cell-wrapper, .dashboard .v-table-small.v-treetable .v-table-cell-wrapper {
	padding-left: 0;
	padding-right: 0;
	min-height: 14px;
}

.dashboard .v-table-compact.v-treetable .v-table-cell-content, .dashboard .v-table-small.v-treetable .v-table-cell-content {
	padding-left: 5px;
	padding-right: 5px;
}

.dashboard .v-table-compact.v-treetable .v-table-cell-content:first-child, .dashboard .v-table-small.v-treetable .v-table-cell-content:first-child {
	padding-left: 6px;
}

.dashboard .v-table-compact.v-treetable .v-table-footer-container, .dashboard .v-table-small.v-treetable .v-table-footer-container {
	padding-left: 5px;
	padding-right: 5px;
}

.dashboard .v-table-compact .v-table-row-drag-top .v-table-cell-content, .dashboard .v-table-compact .v-table-row-drag-bottom .v-table-cell-content, .dashboard .v-table-small .v-table-row-drag-top .v-table-cell-content, .dashboard .v-table-small .v-table-row-drag-bottom .v-table-cell-content {
	height: 23px;
}

.dashboard .v-table-small {
	font-size: 12px;
}

.dashboard .v-table-small.v-treetable .v-table-cell-wrapper {
	min-height: 12px;
}

.dashboard .v-tabsheet:not(.v-has-width) {
	width: auto !important;
}

.dashboard .v-tabsheet-spacertd {
	display: none !important;
}

.dashboard .v-tabsheet-tabcontainer {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.dashboard .v-tabsheet-tabcontainer:before {
	content: "";
	position: absolute;
	height: 0;
	border-top: 1px solid #dfdfdf;
	bottom: 0;
	left: 0;
	right: 0;
}

.dashboard .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	position: relative;
}

.dashboard .v-tabsheet-tabitemcell {
	vertical-align: bottom;
}

.dashboard .v-tabsheet-tabitemcell .v-tabsheet-tabitem {
	line-height: 0;
	overflow: hidden;
}

.dashboard .v-tabsheet-tabitemcell .v-caption {
	margin-left: 15px;
	padding: 0 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	text-align: center;
	line-height: 30px;
	font-size: 13px;
	font-weight: 300;
	color: #696969;
	width: auto !important;
	overflow: hidden;
	text-overflow: ellipsis;
	border-bottom: 2px solid transparent;
	position: relative;
	-webkit-transition: border-bottom 200ms, color 200ms;
	-moz-transition: border-bottom 200ms, color 200ms;
	transition: border-bottom 200ms, color 200ms;
}

.dashboard .v-tabsheet-tabitemcell .v-caption .v-captiontext {
	display: inline;
}

.dashboard .v-tabsheet-tabitemcell .v-caption .v-icon + .v-captiontext {
	margin-left: 8px;
}

.dashboard .v-tabsheet-tabitemcell .v-caption:hover {
	color: #197de1;
}

.dashboard .v-tabsheet-tabitemcell .v-caption.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
	color: inherit !important;
}

.dashboard .v-tabsheet-tabitemcell:first-child .v-caption, .dashboard .v-tabsheet-tabitemcell[aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.dashboard .v-tabsheet-tabitemcell:focus {
	outline: none;
}

.dashboard .v-tabsheet-tabitemcell:focus .v-caption {
	color: #197de1;
}

.dashboard .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	border-bottom-color: #197de1;
	color: #197de1;
}

.dashboard .v-tabsheet-tabitemcell .v-caption-closable {
	padding-right: 18px;
}

.dashboard .v-tabsheet-tabitemcell.icons-on-top .v-caption-closable {
	padding-right: 3px;
}

.dashboard .v-tabsheet-tabitemcell .v-tabsheet-caption-close {
	position: absolute;
	right: 0;
	top: 50%;
	margin: -7px 0 0;
	font-size: 15px;
	line-height: 15px;
	width: 15px;
	text-align: center;
	border-radius: 2px;
	color: #969696;
}

.dashboard .v-tabsheet-tabitemcell .v-tabsheet-caption-close:hover {
	background: rgba(0, 0, 0, 0.03);
	color: #197de1;
}

.dashboard .v-tabsheet-tabitemcell .v-tabsheet-caption-close:active {
	background: #197de1;
	color: #c8dbed;
}

.dashboard .v-tabsheet-scroller {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding-left: 15px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(right, #fafafa 70%, rgba(250, 250, 250, 0) 100%);
	background-image: linear-gradient(to left,#fafafa 70%, rgba(250, 250, 250, 0) 100%);
	pointer-events: none;
}

.dashboard .v-tabsheet-scroller:after {
	content: "";
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	background-color: transparent;
	background-image: -webkit-linear-gradient(right, #dfdfdf 70%, rgba(223, 223, 223, 0) 100%);
	background-image: linear-gradient(to left,#dfdfdf 70%, rgba(223, 223, 223, 0) 100%);
}

.v-ie8 .dashboard .v-tabsheet-scroller, .v-ie9 .dashboard .v-tabsheet-scroller {
	background-color: #fafafa;
}

.v-ie8 .dashboard .v-tabsheet-scroller:after, .v-ie9 .dashboard .v-tabsheet-scroller:after {
	background-color: #dfdfdf;
}

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

.dashboard .v-tabsheet-scroller button:hover {
	opacity: 1;
	filter: none ;
	color: #197de1;
}

.dashboard .v-tabsheet-scroller button:active {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
	color: #197de1;
}

.dashboard .v-tabsheet-scroller button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.dashboard .v-tabsheet-scroller [class*="Next"] {
	padding-left: 4px;
}

.dashboard .v-tabsheet-scroller [class*="Next"]:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.dashboard .v-tabsheet-scroller [class*="Prev"] {
	padding-right: 4px;
}

.dashboard .v-tabsheet-scroller [class*="Prev"]:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.dashboard .v-tabsheet-scroller [class*="disabled"] {
	cursor: default;
	color: inherit !important;
	opacity: 0.1 !important;
	filter: alpha(opacity=10) !important;
}

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

.dashboard .v-tabsheet-deco {
	height: 16px !important;
	width: 16px !important;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 2px solid rgba(25, 125, 225, 0.2);
	border-top-color: #197de1;
	border-right-color: #197de1;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
	display: none;
	position: absolute;
	z-index: 1;
	bottom: 50%;
	margin-bottom: -23px;
	left: 50%;
	margin-left: -8px;
}

.v-ie8 .dashboard .v-tabsheet-deco, .v-ie9 .dashboard .v-tabsheet-deco {
	border: none;
	border-radius: 4px;
	background: #fff url(../valo/shared/img/spinner.gif) no-repeat 50% 50%;
	background-size: 80%;
}

.v-ie8 .dashboard .v-tabsheet-deco {
	min-width: 30px;
	min-height: 30px;
}

.dashboard .v-tabsheet-loading .v-tabsheet-deco {
	display: block;
}

.dashboard .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer table, .dashboard .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tbody, .dashboard .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	width: 100%;
}

.dashboard .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	display: table;
	table-layout: fixed;
}

.dashboard .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer td {
	display: table-cell;
}

.dashboard .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer .v-caption {
	margin: 0;
	display: block;
}

.dashboard .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption {
	margin-left: 3px;
	padding: 0 6px;
	background-color: #fafafa;
	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;
}

.dashboard .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption:hover {
	background-color: #f2f2f2;
	border-bottom-color: #dfdfdf;
}

.dashboard .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption.v-disabled:hover {
	background-color: #fafafa;
}

.dashboard .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 21px;
}

.dashboard .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	right: 4px;
	margin-top: 0;
}

.dashboard .v-tabsheet-framed  > .v-tabsheet-tabcontainer td:first-child .v-caption, .dashboard .v-tabsheet-framed  > .v-tabsheet-tabcontainer [aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.dashboard .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	border-color: #dfdfdf;
}

.dashboard .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	background: white;
	border-color: #dfdfdf;
	border-bottom: none;
	padding-bottom: 1px;
}

.dashboard .v-tabsheet-framed  > .v-tabsheet-content {
	border: 1px solid #dfdfdf;
	border-top: none;
}

.dashboard .v-tabsheet-framed  > .v-tabsheet-content  > div {
	background: white;
}

.dashboard .v-tabsheet-framed.padded-tabbar  > .v-tabsheet-tabcontainer {
	border: 1px solid #dfdfdf;
	border-bottom: none;
	background: #fafafa;
	padding-top: 5px;
}

.dashboard .v-tabsheet-framed.icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	padding-bottom: 6px;
}

.dashboard .v-tabsheet-centered-tabs  > .v-tabsheet-tabcontainer {
	text-align: center;
}

.dashboard .v-tabsheet-right-aligned-tabs  > .v-tabsheet-tabcontainer {
	text-align: right;
}

.dashboard .v-tabsheet-padded-tabbar  > .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	padding: 0 8px;
}

.dashboard .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption {
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 1.2;
}

.dashboard .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon {
	display: block;
}

.dashboard .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon  + .v-captiontext.v-captiontext {
	margin-left: 0;
}

.dashboard .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 6px;
}

.dashboard .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	margin-top: 0;
}

.dashboard .v-tabsheet-compact-tabbar  > .v-tabsheet-tabcontainer-compact-tabbar .v-caption {
	line-height: 1.8;
}

.dashboard .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	visibility: hidden;
}

.dashboard .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-tabsheet-caption-close {
	visibility: visible;
}

.dashboard .v-panel {
	background: white;
	color: #474747;
	border-radius: 4px;
	border: 1px solid #d5d5d5;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	overflow: visible !important;
}

.dashboard .v-panel-caption {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 10px;
	line-height: 29px;
	border-bottom: 1px solid #d5d5d5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #f6f6f6 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #f6f6f6 98%);
	color: #464646;
	font-weight: 400;
	font-size: 13px;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #eeeeee;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #eeeeee;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	border-radius: 3px 3px 0 0;
}

.dashboard .v-panel-content {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.dashboard .v-panel-content  > .v-margin-top {
	padding-top: 10px;
}

.dashboard .v-panel-content  > .v-margin-right {
	padding-right: 10px;
}

.dashboard .v-panel-content  > .v-margin-bottom {
	padding-bottom: 10px;
}

.dashboard .v-panel-content  > .v-margin-left {
	padding-left: 10px;
}

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

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

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

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

.dashboard .v-panel-scroll-divider  > [class*="-captionwrap"] {
	position: relative;
	z-index: 2;
}

.dashboard .v-panel-scroll-divider  > [class*="-captionwrap"]:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #dfdfdf;
	border-color: rgba(197, 197, 197, 0.5);
}

.dashboard .v-panel-scroll-divider  > [class*="-content"]:before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	height: 0;
	border-top: 1px solid #fafafa;
	left: 0;
	right: 0;
}

.dashboard .v-panel-caption.v-horizontallayout {
	height: auto !important;
	line-height: 0;
}

.dashboard .v-panel-caption.v-horizontallayout .v-slot {
	vertical-align: middle;
}

.dashboard .v-panel-caption.v-horizontallayout .v-label {
	line-height: 30px;
}

.dashboard .v-select select {
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	color: #464646;
}

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

.dashboard .v-select-select {
	display: block;
}

.dashboard .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 8px;
}

.dashboard .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 8px;
	margin-left: 8px;
}

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

.dashboard .v-calendar-header-day {
	font-weight: 400;
	text-align: center;
	padding: 6px 0;
}

.dashboard .v-calendar-header-week .v-calendar-back, .dashboard .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) ;
}

.dashboard .v-calendar-header-week .v-calendar-back:focus, .dashboard .v-calendar-header-week .v-calendar-next:focus {
	outline: none;
}

.dashboard .v-calendar-header-week .v-calendar-back:hover, .dashboard .v-calendar-header-week .v-calendar-next:hover {
	opacity: 1;
	filter: none ;
}

.dashboard .v-calendar-header-week .v-calendar-back:active, .dashboard .v-calendar-header-week .v-calendar-next:active {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.dashboard .v-calendar-header-week .v-calendar-back:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.dashboard .v-calendar-header-week .v-calendar-next:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.dashboard .v-calendar-month {
	outline: none;
	overflow: hidden;
}

.dashboard .v-calendar-month td {
	vertical-align: top;
}

.dashboard .v-calendar-week-number {
	cursor: pointer;
	width: 20px;
	text-align: center;
	font-size: 0.8em;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.dashboard .v-calendar-week-number:hover {
	opacity: 1;
	filter: none ;
}

.dashboard .v-calendar-month-day {
	outline: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 1.2;
}

.dashboard .v-calendar-bottom-spacer, .dashboard .v-calendar-spacer, .dashboard .v-calendar-bottom-spacer-empty {
	height: 17px;
	margin-bottom: 3px;
}

.dashboard .v-calendar-bottom-spacer {
	font-size: 0.8em;
	padding: 0 4px;
	cursor: pointer;
}

.dashboard .v-calendar-bottom-spacer:hover {
	color: #197de1;
}

.dashboard .v-calendar-day-number {
	line-height: 20px;
	font-size: 14px;
	text-align: right;
	margin: 0 4px;
	white-space: nowrap;
	border-top: 1px solid #f2f2f2;
	cursor: pointer;
}

.dashboard .v-calendar-day-number:hover {
	color: #197de1;
}

.dashboard .v-calendar-month-day-today {
	background: #eef3f8;
}

.dashboard .v-calendar-month-day-today .v-calendar-day-number {
	font-weight: 400;
	color: #197de1;
	border-top: 2px solid #197de1;
	line-height: 19px;
	margin: 0;
	padding: 0 4px;
}

.dashboard .v-calendar-month-day-selected {
	background-color: #e3edf7;
}

.dashboard .v-calendar-month-day-dragemphasis {
	background-color: #a8a8a8;
}

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

.dashboard .v-calendar-weekly-longevents {
	margin-left: 50px;
	border-bottom: 3px solid #e0e0e0;
}

.dashboard .v-calendar-weekly-longevents .v-calendar-event-all-day {
	height: 19px;
	line-height: 1.6;
	margin-bottom: 3px;
}

.dashboard .v-calendar-header-week td {
	vertical-align: middle !important;
}

.dashboard .v-calendar-header-week .v-calendar-header-day {
	cursor: pointer;
}

.dashboard .v-calendar-times {
	width: 50px;
	font-size: 0.77em;
	line-height: 1;
	white-space: nowrap;
}

.dashboard .v-calendar-time {
	text-align: right;
	padding-right: 8px;
	margin-top: -6px;
	padding-bottom: 6px;
}

.dashboard .v-calendar-day-times, .dashboard .v-calendar-day-times-today {
	outline: none;
	border-right: 1px solid transparent;
}

.dashboard .v-calendar-day-times:focus, .dashboard .v-calendar-day-times-today:focus {
	outline: none;
}

.dashboard .v-calendar .v-datecellslot, .dashboard .v-calendar .v-datecellslot-even {
	border-top: 1px solid #dfdfdf;
}

.dashboard .v-calendar .v-datecellslot:first-child, .dashboard .v-calendar .v-datecellslot-even:first-child {
	border-top-color: transparent;
}

.dashboard .v-calendar .v-datecellslot {
	border-top-style: dotted;
}

.dashboard .v-calendar .v-datecellslot, .dashboard .v-calendar .v-datecellslot-even {
	margin-right: 4px;
}

.dashboard .v-calendar-current-time {
	background: #197de1;
	line-height: 1px;
	pointer-events: none;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.dashboard .v-calendar-current-time:before {
	content: "\2022";
	color: #197de1;
	font-size: 22px;
	margin-left: -0.07em;
}

.dashboard .v-calendar .v-daterange {
	position: relative;
}

.dashboard .v-calendar .v-daterange:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: -1px;
	left: 0;
	background: #197de1;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	border-radius: 4px 4px 0 0;
}

.dashboard .v-calendar .v-daterange  + .v-daterange {
	border-color: transparent;
}

.dashboard .v-calendar .v-daterange  + .v-daterange:before {
	border-radius: 0;
}

.dashboard .v-calendar-event {
	font-size: 0.85em;
	overflow: hidden;
	cursor: pointer;
	outline: none;
	border-radius: 4px;
}

.dashboard .v-calendar-event:focus {
	outline: none;
}

.dashboard .v-calendar-event-month {
	padding: 0 4px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 3px;
	white-space: nowrap;
	text-overflow: ellipsis;
	height: 17px;
	line-height: 17px;
}

.dashboard .v-calendar-event-month .v-calendar-event-time {
	float: right;
	font-size: 0.9em;
	line-height: 17px;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.dashboard .v-calendar-event-month:before {
	content: "\25cf";
	margin-right: 0.2em;
}

.dashboard .v-calendar-event-all-day {
	padding: 0 4px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 17px;
	line-height: 17px;
	border-radius: 0;
	margin-left: -1px;
	white-space: nowrap;
}

.dashboard .v-calendar-event-all-day:before {
	content: "";
}

.dashboard .v-calendar-event-start {
	overflow: visible;
	margin-left: 0;
}

.dashboard .v-calendar-event-start.v-calendar-event-continued-to, .dashboard .v-calendar-event-start.v-calendar-event-end {
	overflow: hidden;
	text-overflow: ellipsis;
}

.dashboard .v-calendar-event-start {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	margin-left: 4px;
}

.dashboard .v-calendar-event-end {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	margin-right: 4px;
}

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

.dashboard .v-calendar-event-caption span {
	font-weight: 300;
	white-space: nowrap;
}

.dashboard .v-calendar-week-wrapper .v-calendar-event {
	overflow: visible;
}

.dashboard .v-calendar-week-wrapper .v-calendar-event-content {
	margin-top: -1px;
	border-radius: 5px;
	border: 1px solid #fafafa;
	padding-top: 3px;
	margin-right: 4px;
}

.dashboard .v-calendar-event-month:before {
	color: #00ace0;
}

.dashboard .v-calendar-event-all-day {
	background-color: #c8eaf4;
	background-color: rgba(200, 234, 244, 0.8);
	color: #00ace0;
}

.dashboard .v-calendar-week-wrapper .v-calendar-event {
	color: #00ace0;
}

.dashboard .v-calendar-week-wrapper .v-calendar-event .v-calendar-event-content {
	background-color: #c8eaf4;
	background-color: rgba(200, 234, 244, 0.8);
}

.dashboard .v-calendar-event-month[class*="color2"]:before {
	color: #2d9f19;
}

.dashboard .v-calendar-event-all-day[class*="color2"] {
	background-color: #d1e7cd;
	background-color: rgba(209, 231, 205, 0.8);
	color: #2d9f19;
}

.dashboard .v-calendar-week-wrapper .v-calendar-event[class*="color2"] {
	color: #2d9f19;
}

.dashboard .v-calendar-week-wrapper .v-calendar-event[class*="color2"] .v-calendar-event-content {
	background-color: #d1e7cd;
	background-color: rgba(209, 231, 205, 0.8);
}

.dashboard .v-calendar-event-month[class*="color3"]:before {
	color: #d18100;
}

.dashboard .v-calendar-event-all-day[class*="color3"] {
	background-color: #f1e1c8;
	background-color: rgba(241, 225, 200, 0.8);
	color: #d18100;
}

.dashboard .v-calendar-week-wrapper .v-calendar-event[class*="color3"] {
	color: #d18100;
}

.dashboard .v-calendar-week-wrapper .v-calendar-event[class*="color3"] .v-calendar-event-content {
	background-color: #f1e1c8;
	background-color: rgba(241, 225, 200, 0.8);
}

.dashboard .v-calendar-event-month[class*="color4"]:before {
	color: #ce3812;
}

.dashboard .v-calendar-event-all-day[class*="color4"] {
	background-color: #f1d3cb;
	background-color: rgba(241, 211, 203, 0.8);
	color: #ce3812;
}

.dashboard .v-calendar-week-wrapper .v-calendar-event[class*="color4"] {
	color: #ce3812;
}

.dashboard .v-calendar-week-wrapper .v-calendar-event[class*="color4"] .v-calendar-event-content {
	background-color: #f1d3cb;
	background-color: rgba(241, 211, 203, 0.8);
}

.dashboard .v-calendar-event-month[class*="color5"]:before {
	color: #2d55cd;
}

.dashboard .v-calendar-event-all-day[class*="color5"] {
	background-color: #d1d9f1;
	background-color: rgba(209, 217, 241, 0.8);
	color: #2d55cd;
}

.dashboard .v-calendar-week-wrapper .v-calendar-event[class*="color5"] {
	color: #2d55cd;
}

.dashboard .v-calendar-week-wrapper .v-calendar-event[class*="color5"] .v-calendar-event-content {
	background-color: #d1d9f1;
	background-color: rgba(209, 217, 241, 0.8);
}

.dashboard .v-calendar.v-disabled * {
	cursor: default;
}

.dashboard .v-label {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

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

.dashboard .v-label-undef-w {
	white-space: nowrap;
}

.dashboard h1, .dashboard .v-label-h1, .dashboard h2, .dashboard .v-label-h2, .dashboard h3, .dashboard .v-label-h3 {
	line-height: 1.1;
	font-weight: 200;
	color: #141414;
}

.dashboard h1, .dashboard .v-label-h1 {
	font-size: 2.4em;
	margin-top: 1.4em;
	margin-bottom: 1em;
	
	letter-spacing: -0.03em;
}

.dashboard h2, .dashboard .v-label-h2 {
	font-size: 1.6em;
	
	margin-top: 1.6em;
	margin-bottom: 0.77em;
	letter-spacing: -0.02em;
}

.dashboard h3, .dashboard .v-label-h3 {
	font-size: 1.2em;
	
	margin-top: 1.8em;
	margin-bottom: 0.77em;
	letter-spacing: 0;
}

.dashboard h4, .dashboard .v-label-h4 {
	line-height: 1.1;
	font-weight: 500;
	font-size: 12px;
	color: #414141;
	text-transform: uppercase;
	letter-spacing: 0;
	margin-top: 2.4em;
	margin-bottom: 0.8em;
}

.dashboard .v-csslayout  > h1:first-child, .dashboard .v-csslayout  > h2:first-child, .dashboard .v-csslayout  > h3:first-child, .dashboard .v-csslayout  > h4 > .v-label-h1:first-child, .dashboard .v-csslayout  > .v-label-h2:first-child, .dashboard .v-csslayout  > .v-label-h3:first-child, .dashboard .v-csslayout  > .v-label-h4:first-child {
	margin-top: 14px;
}

.dashboard .v-verticallayout > .v-slot:first-child h1, .dashboard .v-verticallayout > .v-slot:first-child .v-label-h1, .dashboard .v-verticallayout > .v-slot:first-child h2, .dashboard .v-verticallayout > .v-slot:first-child .v-label-h2, .dashboard .v-verticallayout > .v-slot:first-child h3, .dashboard .v-verticallayout > .v-slot:first-child .v-label-h3, .dashboard .v-verticallayout > .v-slot:first-child h4, .dashboard .v-verticallayout > .v-slot:first-child .v-label-h4, .dashboard .v-verticallayout > div > .v-slot:first-child h1, .dashboard .v-verticallayout > div > .v-slot:first-child .v-label-h1, .dashboard .v-verticallayout > div > .v-slot:first-child h2, .dashboard .v-verticallayout > div > .v-slot:first-child .v-label-h2, .dashboard .v-verticallayout > div > .v-slot:first-child h3, .dashboard .v-verticallayout > div > .v-slot:first-child .v-label-h3, .dashboard .v-verticallayout > div > .v-slot:first-child h4, .dashboard .v-verticallayout > div > .v-slot:first-child .v-label-h4 {
	margin-top: 14px;
}

.dashboard .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h1, .dashboard .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .dashboard .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h2, .dashboard .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .dashboard .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h3, .dashboard .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .dashboard .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h4, .dashboard .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h4, .dashboard .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h1, .dashboard .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .dashboard .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h2, .dashboard .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .dashboard .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h3, .dashboard .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .dashboard .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h4, .dashboard .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h4 {
	margin-top: -0.5em;
}

.dashboard h1.no-margin, .dashboard .v-label-h1.no-margin, .dashboard h2.no-margin, .dashboard .v-label-h2.no-margin, .dashboard h3.no-margin, .dashboard .v-label-h3.no-margin, .dashboard h4.no-margin, .dashboard .v-label-h4.no-margin {
	margin: 0 !important;
}

.dashboard .v-label-colored {
	color: #197de1;
}

.dashboard .v-label-large {
	font-size: 17px;
}

.dashboard .v-label-small {
	font-size: 12px;
}

.dashboard .v-label-tiny {
	font-size: 11px;
}

.dashboard .v-label-huge {
	font-size: 23px;
}

.dashboard .v-label-bold {
	font-weight: 500;
}

.dashboard .v-label-light {
	font-weight: 200;
	color: #7d7d7d;
}

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

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

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

.v-ie8 .dashboard .v-label-spinner, .v-ie9 .dashboard .v-label-spinner {
	border: none;
	border-radius: 4px;
	background: #fff url(../valo/shared/img/spinner.gif) no-repeat 50% 50%;
	background-size: 80%;
}

.v-ie8 .dashboard .v-label-spinner {
	min-width: 30px;
	min-height: 30px;
}

.dashboard .v-label-success, .dashboard .v-label-failure {
	background: white;
	color: #474747;
	border: 2px solid #2c9720;
	border-radius: 4px;
	padding: 6px 15px 6px 30px;
	font-weight: 400;
	font-size: 13px;
}

.dashboard .v-label-success:before, .dashboard .v-label-failure:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
	margin-left: -15px;
	color: #2c9720;
}

.dashboard .v-label-failure {
	border-color: #ed473b;
}

.dashboard .v-label-failure:before {
	content: "\f05e";
	color: #ed473b;
}

.dashboard [draggable=true] {
	-khtml-user-drag: element;
	-webkit-user-drag: element;
}

.dashboard .v-ddwrapper {
	position: relative;
}

.dashboard .v-ddwrapper-over:before, .dashboard .v-ddwrapper-over:after {
	content: "";
	position: absolute;
	z-index: 10;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	border: 0 solid #197de1;
}

.dashboard .v-ddwrapper-over-top:before {
	border-top-width: 2px;
}

.dashboard .v-ddwrapper-over-right:before {
	border-right-width: 2px;
}

.dashboard .v-ddwrapper-over-bottom:before {
	border-bottom-width: 2px;
}

.dashboard .v-ddwrapper-over-left:before {
	border-left-width: 2px;
}

.dashboard .no-vertical-drag-hints .v-ddwrapper-over-top:before, .dashboard .no-vertical-drag-hints.v-ddwrapper-over-top:before {
	border-top-width: 0;
}

.dashboard .no-vertical-drag-hints .v-ddwrapper-over-top:after, .dashboard .no-vertical-drag-hints.v-ddwrapper-over-top:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #8abef2;
}

.dashboard .no-vertical-drag-hints .v-ddwrapper-over-bottom:before, .dashboard .no-vertical-drag-hints.v-ddwrapper-over-bottom:before {
	border-bottom-width: 0;
}

.dashboard .no-vertical-drag-hints .v-ddwrapper-over-bottom:after, .dashboard .no-vertical-drag-hints.v-ddwrapper-over-bottom:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #8abef2;
}

.dashboard .no-horizontal-drag-hints.v-ddwrapper-over-left:before, .dashboard .no-horizontal-drag-hints .v-ddwrapper-over-left:before {
	border-left-width: 0;
}

.dashboard .no-horizontal-drag-hints.v-ddwrapper-over-left:after, .dashboard .no-horizontal-drag-hints .v-ddwrapper-over-left:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #8abef2;
}

.dashboard .no-horizontal-drag-hints.v-ddwrapper-over-right:before, .dashboard .no-horizontal-drag-hints .v-ddwrapper-over-right:before {
	border-right-width: 0;
}

.dashboard .no-horizontal-drag-hints.v-ddwrapper-over-right:after, .dashboard .no-horizontal-drag-hints .v-ddwrapper-over-right:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #8abef2;
}

.dashboard .v-ddwrapper-over-middle:after, .dashboard .v-ddwrapper-over-center:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #8abef2;
}

.dashboard .no-box-drag-hints.v-ddwrapper:after, .dashboard .no-box-drag-hints .v-ddwrapper:after {
	display: none !important;
	content: none;
}

.dashboard .v-nativebutton {
	-webkit-touch-callout: none;
}

.dashboard .v-select select {
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	color: #464646;
}

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

.dashboard .v-select-select {
	display: block;
}

.dashboard .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 8px;
}

.dashboard .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 8px;
	margin-left: 8px;
}

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

.dashboard .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 #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	overflow: hidden;
}

.v-ie8 .dashboard .v-richtextarea, .v-ie9 .dashboard .v-richtextarea {
	line-height: 30px;
	padding-top: 0;
	padding-bottom: 0;
}

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

.dashboard .v-richtextarea .gwt-RichTextToolbar {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	border-bottom: 1px solid #c5c5c5;
	color: #464646;
}

.dashboard .v-richtextarea .gwt-ToggleButton, .dashboard .v-richtextarea .gwt-PushButton {
	display: inline-block;
	line-height: 30px;
	width: 30px;
	text-align: center;
	outline: none;
}

.dashboard .v-richtextarea .gwt-ToggleButton:hover, .dashboard .v-richtextarea .gwt-PushButton:hover {
	color: black;
}

.dashboard .v-richtextarea .gwt-ToggleButton-down, .dashboard .v-richtextarea .gwt-ToggleButton-down-hovering {
	background-color: #e0e0e0;
	background-image: -webkit-linear-gradient(bottom, #e0e0e0 2%, #dcdcdc 98%);
	background-image: linear-gradient(to top,#e0e0e0 2%, #dcdcdc 98%);
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top img {
	display: none;
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div:before {
	font-family: ThemeIcons;
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Bold"]:before {
	content: "\f032";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Italic"]:before {
	content: "\f033";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Underline"]:before {
	content: "\f0cd";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Subscript"]:before {
	content: "\f12c";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Superscript"]:before {
	content: "\f12b";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Left Justify"]:before {
	content: "\f036";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Center"]:before {
	content: "\f037";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Right Justify"]:before {
	content: "\f038";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Strikethrough"]:before {
	content: "\f0cc";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Right"]:before {
	content: "\f03c";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Left"]:before {
	content: "\f03b";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Horizontal Rule"]:before {
	content: "\2014";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Ordered List"]:before {
	content: "\f0cb";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Unordered List"]:before {
	content: "\f0ca";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Image"]:before {
	content: "\f03e";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Create Link"]:before {
	content: "\f0c1";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Link"]:before {
	content: "\f127";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Formatting"]:before {
	content: "\f12d";
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-bottom {
	font-size: 11px;
	padding: 0 8px 8px 0;
}

.dashboard .v-richtextarea .gwt-RichTextToolbar-bottom select {
	margin: 8px 0 0 8px;
}

.dashboard .v-richtextarea .gwt-RichTextArea {
	background: #fff;
	border: none;
	display: block;
}

.dashboard .v-richtextarea-readonly {
	padding: 4px 5px;
	background: transparent;
}

.dashboard .v-upload .v-button {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	white-space: normal;
}

.dashboard .v-upload-immediate .v-button {
	width: 100%;
}

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

.dashboard .v-Notification.v-position-top {
	top: 7px;
}

.dashboard .v-Notification.v-position-right {
	right: 6px;
}

.dashboard .v-Notification.v-position-bottom {
	bottom: 7px;
}

.dashboard .v-Notification.v-position-left {
	left: 6px;
}

.dashboard .v-Notification.v-position-assistive {
	top: -9999px;
	left: -9999px;
}

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

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

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

.dashboard .v-Notification-animate-out {
	-webkit-animation: valo-animate-out-fade 150ms;
	-moz-animation: valo-animate-out-fade 150ms;
	animation: valo-animate-out-fade 150ms;
}

.dashboard .v-Notification-animate-out.v-position-top, .dashboard .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;
}

.dashboard .v-Notification {
	border-radius: 4px;
	text-align: center;
	position: fixed !important;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	background: white;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
	padding: 15px 18px;
}

.dashboard .v-Notification .v-Notification-caption {
	color: #197de1;
	font-size: 17px;
	line-height: 1;
}

.dashboard .v-Notification .v-Notification-description {
	line-height: 1.4;
}

.dashboard .v-Notification-caption {
	margin: 0;
	display: inline-block;
	text-align: left;
	font-weight: inherit;
	line-height: inherit;
	white-space: nowrap;
	letter-spacing: 0;
}

.dashboard .v-Notification-description, .dashboard .v-Notification-details {
	margin: 0;
	display: inline-block;
	vertical-align: middle;
	max-width: 30em;
	text-align: left;
	max-height: 20em;
	overflow: auto;
}

.dashboard .v-Notification-caption ~ .v-Notification-description, .dashboard .v-Notification-caption ~ .v-Notification-details {
	margin-left: 21px;
}

.dashboard .v-icon + .v-Notification-caption {
	margin-left: 14px;
}

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

.dashboard .v-Notification-system .v-Notification-description, .dashboard .v-Notification-system .v-Notification-details {
	max-width: 50em;
}

.dashboard .v-Notification-system.v-position-top {
	top: 0;
}

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

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

.dashboard .v-Notification-system.v-position-bottom {
	bottom: 0;
}

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

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

.dashboard .v-Notification-system .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.dashboard .v-Notification-system .v-Notification-description, .dashboard .v-Notification-system .v-Notification-details {
	color: #e6e6e6;
}

.dashboard .v-Notification-system u {
	text-decoration: none;
}

.dashboard .v-Notification.tray {
	text-align: left;
}

.dashboard .v-Notification.tray .v-Notification-caption + .v-Notification-description {
	display: block;
	margin: 0.5em 0 0;
}

.dashboard .v-Notification.warning {
	background: #FFF3D2;
}

.dashboard .v-Notification.warning .v-Notification-caption {
	color: #AC7C00;
}

.dashboard .v-Notification.warning .v-Notification-description {
	color: #9D874D;
}

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

.dashboard .v-Notification.error .v-Notification-caption {
	color: white;
}

.dashboard .v-Notification.error .v-Notification-description {
	color: #f4e0df;
}

.dashboard .v-Notification.dark {
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 400;
	line-height: 20px;
}

.dashboard .v-Notification.dark .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.dashboard .v-Notification.dark .v-Notification-description, .dashboard .v-Notification.dark .v-Notification-details {
	color: #e6e6e6;
}

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

.dashboard .v-Notification.bar .v-Notification-description, .dashboard .v-Notification.bar .v-Notification-details {
	max-width: 50em;
}

.dashboard .v-Notification.bar.v-position-top {
	top: 0;
}

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

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

.dashboard .v-Notification.bar.v-position-bottom {
	bottom: 0;
}

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

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

.dashboard .v-Notification.small {
	padding: 9px 11px;
}

.dashboard .v-Notification.small .v-Notification-caption {
	font-size: 14px;
}

.dashboard .v-Notification.small .v-Notification-description {
	font-size: 12px;
}

.dashboard .v-Notification.closable {
	padding-right: 48px;
	overflow: hidden !important;
	cursor: pointer;
}

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

.dashboard .v-Notification.closable:hover:after {
	opacity: 1;
	filter: none ;
}

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

.dashboard .v-Notification.closable.dark:after, .dashboard .v-Notification.closable.error:after, .dashboard .v-Notification.closable.system:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.dashboard .v-Notification.closable.dark:active:after, .dashboard .v-Notification.closable.error:active:after, .dashboard .v-Notification.closable.system:active:after {
	background-color: #fff;
	color: #000;
}

.dashboard .v-Notification.closable.tray:after {
	top: 13px;
	margin-top: 0;
}

.dashboard .v-Notification.success, .dashboard .v-Notification.failure {
	background: #fff;
	color: #555;
	border: 2px solid #2c9720;
}

.dashboard .v-Notification.success .v-Notification-caption, .dashboard .v-Notification.failure .v-Notification-caption {
	color: #2c9720;
	font-weight: 400;
}

.dashboard .v-Notification.success .v-Notification-caption:before, .dashboard .v-Notification.failure .v-Notification-caption:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
}

.dashboard .v-Notification.success.bar, .dashboard .v-Notification.failure.bar {
	margin: -2px !important;
}

.dashboard .v-Notification.failure {
	border-color: #ed473b;
}

.dashboard .v-Notification.failure .v-Notification-caption {
	color: #ed473b;
}

.dashboard .v-Notification.failure .v-Notification-caption:before {
	content: "\f05e";
}

.dashboard .valo-menu {
	height: 100%;
	background-color: #414B56;
	background-image: -webkit-linear-gradient(right, #38414a 0%, #414B56 8px);
	background-image: linear-gradient(to left,#38414a 0%, #414B56 8px);
	color: #9ca5af;
	font-size: 13px;
	line-height: 24px;
	border-right: 1px solid #333b43;
	white-space: nowrap;
}

.dashboard .valo-menu-toggle {
	display: none;
	position: fixed;
	z-index: 200;
	top: 3px;
	left: 3px;
	min-width: 0;
}

.dashboard .valo-menu-part {
	border-left: 1px solid #38414b;
	height: 100%;
	padding-bottom: 30px;
	overflow: auto;
}

.dashboard .valo-menu-part:first-child {
	border-left: none;
}

.dashboard .valo-menu-title, .dashboard .valo-menu-subtitle, .dashboard .valo-menu-item {
	display: block;
	line-height: inherit;
	white-space: nowrap;
	position: relative;
}

.dashboard .valo-menu-title .valo-menu-badge, .dashboard .valo-menu-subtitle .valo-menu-badge, .dashboard .valo-menu-item .valo-menu-badge {
	position: absolute;
	right: 15px;
}

.dashboard .valo-menu-title {
	line-height: 1.2;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: white;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	padding: 10px 15px;
	font-size: 13px;
	border-bottom: 1px solid #1362b1;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.dashboard .valo-menu-title .v-menubar.v-menubar {
	background: transparent;
	border-color: #1362b1;
	color: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: inherit;
}

.dashboard .valo-menu-title .v-menubar-menuitem {
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
	box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
	text-shadow: inherit;
	font-size: 14px;
	border-color: inherit;
}

.dashboard .valo-menu-title h1, .dashboard .valo-menu-title .v-label-h1, .dashboard .valo-menu-title h2, .dashboard .valo-menu-title .v-label-h2, .dashboard .valo-menu-title h3, .dashboard .valo-menu-title .v-label-h3, .dashboard .valo-menu-title h4, .dashboard .valo-menu-title .v-label-h4 {
	margin-top: 0;
	margin-bottom: 0;
	color: inherit;
}

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

.dashboard .v-menubar-user-menu:focus:after {
	display: none;
}

.dashboard .v-menubar-user-menu .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 4px;
	color: #197de1;
	padding: 0 10px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.dashboard .v-menubar-user-menu .v-menubar-menuitem:first-child, .dashboard .v-menubar-user-menu .v-menubar-menuitem:last-child, .dashboard .v-menubar-user-menu .v-menubar-menuitem:first-child:last-child {
	border-radius: 4px;
}

.dashboard .v-menubar-user-menu .v-menubar-menuitem:before {
	content: none;
}

.dashboard .v-menubar-user-menu .v-menubar-menuitem:hover {
	color: #4396ea;
}

.dashboard .v-menubar-user-menu .v-menubar-menuitem:active {
	color: inherit;
}

.dashboard .v-menubar-user-menu .v-menubar-menuitem-checked, .dashboard .v-menubar-user-menu .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c5c5c5;
	color: #197de1;
}

.dashboard .v-menubar-user-menu .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .dashboard .v-menubar-user-menu .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.dashboard .v-menubar-user-menu .v-menubar-menuitem-selected {
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.dashboard .v-menubar-user-menu .v-menubar-menuitem-selected:hover {
	color: #ecf2f8;
}

.dashboard .v-menubar-user-menu .v-menubar-menuitem-disabled, .dashboard .v-menubar-user-menu .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.dashboard .v-menubar-user-menu  > .v-menubar-menuitem {
	color: inherit;
	white-space: normal;
	line-height: 1.4;
	margin: 0;
}

.dashboard .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 #c5c5c5;
}

.dashboard .v-menubar-user-menu  > .v-menubar-menuitem:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.dashboard .v-menubar-user-menu .v-menubar-menuitem-selected {
	background: transparent;
}

.dashboard .valo-menu-subtitle {
	color: #798695;
	margin: 6px 0 6px 15px;
	border-bottom: 1px solid #5d666f;
}

.dashboard .valo-menu-subtitle [class*="badge"] {
	color: #70a5d9;
}

.dashboard .valo-menuitems {
	display: block;
}

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

.dashboard .valo-menu-item [class*="caption"] {
	vertical-align: middle;
	display: inline-block;
	width: 90%;
	max-width: 15em;
	padding-right: 15px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.dashboard .valo-menu-item [class*="badge"] {
	color: #70a5d9;
}

.dashboard .valo-menu-item.selected {
	background: #3a434d;
}

.dashboard .valo-menu-item.selected .v-icon {
	color: white;
}

.dashboard .valo-menu-item.selected [class*="badge"] {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #c8dbed;
}

.dashboard .valo-menu-item:focus, .dashboard .valo-menu-item:hover, .dashboard .valo-menu-item.selected {
	color: white;
}

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

.dashboard .valo-menu-item span.v-icon  + span {
	margin-left: 0;
}

.dashboard .valo-menu-item [class*="badge"] {
	background-color: #4c5865;
	-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: 2.5px;
	border-radius: 4px;
}

.dashboard .valo-menu-part.large-icons {
	background-color: #414B56;
	min-width: 60px;
	max-width: 90px;
}

.dashboard .valo-menu-part.large-icons .valo-menu-title {
	font-size: 12px;
}

.dashboard .valo-menu-part.large-icons .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.dashboard .valo-menu-part.large-icons .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 11px;
}

.dashboard .valo-menu-part.large-icons .v-menubar-user-menu img.v-icon {
	width: 23px;
	height: 23px;
}

.dashboard .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: #343c45;
	font-size: 11px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.dashboard .valo-menu-part.large-icons [class*="subtitle"] [class*="badge"] {
	right: 8px;
}

.dashboard .valo-menu-part.large-icons [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.dashboard .valo-menu-part.large-icons .valo-menu-item {
	display: block;
	font-size: 22px;
	line-height: 1;
	padding-left: 14px;
	padding-top: 4px;
	padding-right: 14px;
	padding-bottom: 4px;
	text-align: center;
	border-top: 1px solid #4c5560;
}

.dashboard .valo-menu-part.large-icons .valo-menu-item:first-child {
	border-top: none;
}

.dashboard .valo-menu-part.large-icons .valo-menu-item [class*="caption"] {
	display: block;
	width: auto;
	margin: 0.3em 0 0;
	padding: 0;
	font-size: 11px;
	line-height: 1.3;
}

.dashboard .valo-menu-part.large-icons .valo-menu-item .v-icon {
	margin: 0;
}

.dashboard .valo-menu-part.large-icons .valo-menu-item span.v-icon {
	opacity: 1;
}

.dashboard .valo-menu-part.large-icons .valo-menu-item.selected {
	background: #3a434d;
}

.dashboard .valo-menu-part.large-icons .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.dashboard .valo-menu-part.large-icons .valo-menu-item.selected [class*="badge"] {
	border-color: #3a434d;
}

.dashboard .valo-menu-part.large-icons .valo-menu-item [class*="badge"] {
	padding-left: 3px;
	padding-right: 3px;
	top: 6px;
	right: 6px;
	border: 2px solid #414B56;
}

.dashboard .valo-menu-logo {
	display: block;
	overflow: hidden;
	width: 36px !important;
	height: 36px;
	border-radius: 4px;
	text-align: center;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: white;
	font-size: 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);
}

.dashboard .valo-menu-logo:focus {
	outline: none;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part {
	background-color: #414B56;
	min-width: 60px;
	max-width: 90px;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part .valo-menu-title {
	font-size: 12px;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 11px;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part .v-menubar-user-menu img.v-icon {
	width: 23px;
	height: 23px;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .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: #343c45;
	font-size: 11px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part [class*="subtitle"] [class*="badge"] {
	right: 8px;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part .valo-menu-item {
	display: block;
	font-size: 22px;
	line-height: 1;
	padding-left: 14px;
	padding-top: 4px;
	padding-right: 14px;
	padding-bottom: 4px;
	text-align: center;
	border-top: 1px solid #4c5560;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part .valo-menu-item:first-child {
	border-top: none;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part .valo-menu-item [class*="caption"] {
	display: block;
	width: auto;
	margin: 0.3em 0 0;
	padding: 0;
	font-size: 11px;
	line-height: 1.3;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part .valo-menu-item .v-icon {
	margin: 0;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part .valo-menu-item span.v-icon {
	opacity: 1;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part .valo-menu-item.selected {
	background: #3a434d;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part .valo-menu-item.selected [class*="badge"] {
	border-color: #3a434d;
}

.dashboard .valo-menu-responsive[width-range~="801px-2400px"] .valo-menu-part .valo-menu-item [class*="badge"] {
	padding-left: 3px;
	padding-right: 3px;
	top: 6px;
	right: 6px;
	border: 2px solid #414B56;
}

.dashboard .valo-menu-responsive[width-range~="0-800px"] {
	padding-top: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.dashboard .valo-menu-responsive[width-range~="0-800px"] .v-loading-indicator {
	top: 30px;
}

.dashboard .valo-menu-responsive[width-range~="0-800px"]  > .v-widget {
	position: relative !important;
}

.dashboard .valo-menu-responsive[width-range~="0-800px"] .valo-menu {
	border-right: none;
}

.dashboard .valo-menu-responsive[width-range~="0-800px"] .valo-menu-part {
	overflow: visible;
}

.dashboard .valo-menu-responsive[width-range~="0-800px"] .valo-menu-toggle {
	display: inline-block;
}

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

.dashboard .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: #97bee5;
	max-width: 30%;
	-webkit-backface-visibility: hidden;
}

.dashboard .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem {
	line-height: 29px;
	white-space: nowrap;
}

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

.dashboard .valo-menu-responsive[width-range~="0-800px"] .valo-menuitems {
	height: 100%;
	background-color: #414B56;
	background-image: -webkit-linear-gradient(right, #38414a 0%, #414B56 8px);
	background-image: linear-gradient(to left,#38414a 0%, #414B56 8px);
	color: #9ca5af;
	font-size: 13px;
	line-height: 24px;
	border-right: 1px solid #333b43;
	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;
}

.dashboard .valo-menu-responsive[width-range~="0-800px"] .valo-menu-visible .valo-menuitems, .dashboard .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%);
}

.dashboard .valo-menu-responsive[width-range~="0-500px"] .valo-menu-toggle .v-button-caption {
	display: none;
}

.dashboard .valo-menu-responsive[width-range~="0-500px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem-caption {
	display: inline-block;
	width: 15px;
	overflow: hidden;
}

.dashboard .valo-menu {
	border-right: none;
}

.dashboard .valo-menu .badgewrapper {
	position: relative;
	padding: 0 !important;
}

.dashboard .valo-menu .v-ddwrapper {
	display: block;
}

.dashboard .valo-menu-item {
	overflow: hidden;
	font-size: 32px !important;
	color: white;
}

.dashboard .v-ui[width-range~="0-800px"] .valo-menu-title {
	background-color: #414B56;
	background-image: -webkit-linear-gradient(top, #46515c 2%, #38424b 98%);
	background-image: linear-gradient(to bottom,#46515c 2%, #38424b 98%);
	border-bottom-color: #333b43;
}

.dashboard .v-ui[width-range~="0-800px"] .valo-menu .v-menubar-user-menu {
	color: inherit;
}

.dashboard .v-ui[width-range~="801px-"] .valo-menu {
	-webkit-animation: valo-animate-in-slide-right 700ms 700ms backwards;
	-moz-animation: valo-animate-in-slide-right 700ms 700ms backwards;
	animation: valo-animate-in-slide-right 700ms 700ms backwards;
}

.dashboard .v-ui[width-range~="801px-"] .valo-menu-title {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-bottom: none;
}

.dashboard .valo-menu-title {
	line-height: 1.2;
}

.dashboard .v-menubar-user-menu:after {
	display: none;
}

.dashboard .v-menubar-user-menu > .v-menubar-menuitem {
	display: block;
	padding: 0;
	max-width: 90%;
	margin: 0 auto;
}

.dashboard .v-menubar-user-menu > .v-menubar-menuitem .v-menubar-menuitem-caption:after {
	margin-right: -1em;
}

.dashboard .v-menubar-user-menu > .v-menubar-menuitem img.v-icon {
	border: none;
}

.dashboard .v-ui[width-range~="0-800px"] .v-menubar-user-menu > .v-menubar-menuitem {
	max-width: none;
	margin-right: 0.5em;
}

.dashboard .v-ui[width-range~="0-800px"] .v-menubar-user-menu > .v-menubar-menuitem .v-menubar-menuitem-caption:after {
	margin-right: 0;
}

.dashboard .valo-menu .valo-menu-badge, .dashboard .dashboard-view .notifications.unread .v-button-caption {
	
	-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: 2.5px;
	border-radius: 4px;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
	color: #c8dbed;
	position: absolute;
	right: 10px;
	font-size: 13px;
	pointer-events: none;
}

.dashboard .dashboard-view .notifications.unread .v-button-caption {
	display: block;
	top: -6px;
	right: -6px;
	display: block;
	z-index: 1;
}

.dashboard .profile-window {
	max-height: 420px;
	width: 630px;
	max-width: 90%;
}

.dashboard .profile-window .v-tabsheet-content > div > .v-scrollable > .v-layout {
	padding-left: 18px;
	padding-right: 18px;
}

.dashboard .profile-window[width-range~="0-700px"] .profile-form > .v-expand {
	padding-left: 0 !important;
}

.dashboard .profile-window[width-range~="0-700px"] .profile-form > .v-expand  > .v-slot {
	display: block;
	margin-left: 0 !important;
}

.dashboard .profile-window[width-range~="0-700px"] .profile-form > .v-expand  > .v-spacing {
	height: 7px;
}

.dashboard .profile-window[width-range~="0-600px"] .v-tabsheet-content > div > .v-scrollable > .v-layout {
	padding-left: 9px;
	padding-right: 9px;
}

.dashboard .profile-window[width-range~="0-600px"] .v-formlayout > table, .dashboard .profile-window[width-range~="0-600px"] .v-formlayout > table > tbody, .dashboard .profile-window[width-range~="0-600px"] .v-formlayout-row {
	display: block;
}

.dashboard .profile-window[width-range~="0-600px"] .v-formlayout > table > tbody .v-formlayout-captioncell, .dashboard .profile-window[width-range~="0-600px"] .v-formlayout > table > tbody .v-formlayout-errorcell, .dashboard .profile-window[width-range~="0-600px"] .v-formlayout > table > tbody .v-formlayout-contentcell {
	display: inline-block;
	height: auto;
}

.dashboard .profile-window[width-range~="0-600px"] .v-formlayout > table > tbody .v-formlayout-captioncell, .dashboard .profile-window[width-range~="0-600px"] .v-formlayout > table > tbody .v-formlayout-errorcell {
	border-bottom: none;
	line-height: 1;
	padding-left: 0;
	padding-top: 7px;
	text-align: left;
}

.dashboard .profile-window[width-range~="0-600px"] .v-formlayout > table > tbody .v-caption-h4 {
	height: 0;
}

.dashboard .profile-window[width-range~="0-600px"] .v-formlayout > table > tbody .v-label-h4 {
	position: static;
}

.dashboard .profile-window[width-range~="0-600px"] .v-formlayout > table > tbody .v-horizontallayout {
	height: auto !important;
}

.dashboard .moviedetailswindow {
	max-height: 420px;
	width: 630px;
	max-width: 90%;
}

.dashboard .moviedetailswindow .cover, .dashboard .moviedetailswindow .v-slot-cover {
	max-width: 100%;
	width: 200px;
	position: relative;
}

.dashboard .moviedetailswindow .cover {
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	border-radius: 4px;
}

.dashboard .moviedetailswindow .v-slot-cover:after {
	content: "";
	display: block;
	background: url(img/poster-gloss.png) no-repeat top right;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.dashboard .moviedetailswindow[width-range~="0-560px"] .v-expand {
	padding-left: 0 !important;
}

.dashboard .moviedetailswindow[width-range~="0-560px"] .v-slot {
	display: block;
}

.dashboard .moviedetailswindow[width-range~="0-560px"] .v-slot-cover {
	margin: 0 auto !important;
}

.dashboard .moviedetailswindow .v-button-link {
	padding: 0;
	height: auto;
}

.dashboard .vaadin-chart {
	transform: translateZ(0);
}

.dashboard .viewheader {
	padding-bottom: 20px;
	width: 100%;
	text-align: right;
	white-space: normal;
}

.dashboard .viewheader .v-slot-h1 {
	float: left;
}

.dashboard .viewheader .h1 {
	white-space: normal;
}

.dashboard .viewheader[width-range~="0-700px"] {
	padding-bottom: 15px;
	text-align: left;
}

.dashboard .viewheader[width-range~="0-700px"] .v-slot-h1 {
	float: none;
}

.dashboard .viewheader[width-range~="0-700px"] .h1 {
	font-size: 2em;
}

.dashboard .viewheader[width-range~="0-700px"]  > .v-slot {
	display: block;
}

.dashboard .viewheader[width-range~="0-700px"] .toolbar {
	white-space: normal;
}

.dashboard .viewheader[width-range~="0-700px"] .toolbar  > .v-spacing {
	height: 8px;
}

.dashboard .v-caption.v-caption-caption-on-left {
	display: inline-block;
	vertical-align: middle;
	line-height: 37px;
	margin-right: 6px;
}

.dashboard .v-ios7 .v-ui, .dashboard .v-ios8 .v-ui {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 20px;
	background-color: #414B56;
}

.dashboard .v-ios7 .v-ui  > .v-widget, .dashboard .v-ios8 .v-ui  > .v-widget {
	position: relative !important;
}

.dashboard .v-ios7 .valo-menu-title, .dashboard .v-ios8 .valo-menu-title {
	padding-top: 10px;
}

.dashboard .v-ios7 .view-content, .dashboard .v-ios8 .view-content {
	border-top-left-radius: 4px;
	background-color: #fafafa;
}

.v-ios7 .dashboard .v-ui[width-range~="0-800px"], .v-ios8 .dashboard .v-ui[width-range~="0-800px"] {
	padding-top: 50px;
}

.v-ios7 .dashboard .v-ui[width-range~="0-800px"] .v-loading-indicator, .v-ios8 .dashboard .v-ui[width-range~="0-800px"] .v-loading-indicator {
	top: 47px;
	height: 3px;
}

.v-ios7 .dashboard .v-ui[width-range~="0-800px"] .valo-menu-title, .v-ios8 .dashboard .v-ui[width-range~="0-800px"] .valo-menu-title {
	height: 50px !important;
	padding-top: 20px;
}

.v-ios7 .dashboard .v-ui[width-range~="0-800px"] .valo-menu-toggle, .v-ios7 .dashboard .v-ui[width-range~="0-800px"] .user-menu, .v-ios8 .dashboard .v-ui[width-range~="0-800px"] .valo-menu-toggle, .v-ios8 .dashboard .v-ui[width-range~="0-800px"] .user-menu {
	margin-top: 20px;
}

.v-ios7 .dashboard .v-ui[width-range~="0-800px"] .valo-menuitems, .v-ios8 .dashboard .v-ui[width-range~="0-800px"] .valo-menuitems {
	top: 50px;
}

.v-ios7 .dashboard .v-ui[width-range~="0-800px"] .view-content, .v-ios8 .dashboard .v-ui[width-range~="0-800px"] .view-content {
	border-radius: 0;
}

.dashboard .loginview {
	background-color: #fafafa;
	background-image: -webkit-radial-gradient(50% 50%, circle, #f5f5f5, #e1e1e1);
	background-image: radial-gradient(  circle at 50% 50%, #f5f5f5, #e1e1e1);
	padding-top: 0 !important;
	-webkit-animation: valo-animate-in-fade 300ms 10ms backwards;
	-moz-animation: valo-animate-in-fade 300ms 10ms backwards;
	animation: valo-animate-in-fade 300ms 10ms backwards;
}

.dashboard .loginview  > .v-loading-indicator {
	display: none !important;
}

.dashboard .login-panel {
	background: white;
	color: #474747;
	border-radius: 4px;
	border: 1px solid #d5d5d5;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	padding-left: 40px;
	padding-top: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	min-width: 182px;
	max-width: 90%;
	-webkit-animation: valo-animate-in-slide-up 800ms 10ms backwards, valo-animate-in-fade 600ms 100ms backwards;
	-moz-animation: valo-animate-in-slide-up 800ms 10ms backwards, valo-animate-in-fade 600ms 100ms backwards;
	animation: valo-animate-in-slide-up 800ms 10ms backwards, valo-animate-in-fade 600ms 100ms backwards;
}

.dashboard .login-panel  > .v-spacing {
	height: 15px;
}

.dashboard .login-panel .labels {
	display: block;
}

.dashboard .login-panel .labels .h4 {
	margin: 0;
	vertical-align: baseline;
}

.dashboard .login-panel .labels .h3 {
	margin: 0;
	float: right;
}

.dashboard .login-panel .fields .v-icon {
	opacity: 0.3;
}

.dashboard .login-panel[width-range~="0-420px"] .labels .h3 {
	float: none;
	display: block;
	margin-top: 0.2em;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dashboard .login-panel[width-range~="0-420px"] .fields {
	display: block;
}

.dashboard .login-panel[width-range~="0-420px"] .fields .v-slot {
	display: block;
}

.dashboard .login-panel[width-range~="0-420px"] .fields .v-slot .v-widget {
	width: 100%;
}

.dashboard .v-ui[width-range~="0-800px"] .login-panel {
	-webkit-animation: animate-in-scale-up 500ms 10ms backwards, valo-animate-in-fade 300ms 100ms backwards;
	-moz-animation: animate-in-scale-up 500ms 10ms backwards, valo-animate-in-fade 300ms 100ms backwards;
	animation: animate-in-scale-up 500ms 10ms backwards, valo-animate-in-fade 300ms 100ms backwards;
}

.dashboard .login-help {
	margin: 0 8px !important;
}

.dashboard .login-help.v-Notification-animate-in {
	-webkit-animation: valo-animate-in-fade 500ms 1500ms backwards;
	-moz-animation: valo-animate-in-fade 500ms 1500ms backwards;
	animation: valo-animate-in-fade 500ms 1500ms backwards;
}

.dashboard .login-help p span {
	display: block;
	margin-top: 0.5em;
}

.dashboard .login-help p span a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid #888;
}

.dashboard .dashboard-view.dashboard-view {
	padding: 20px;
	overflow: visible;
}

.dashboard .dashboard-view.dashboard-view .sparks {
	background: white;
	color: #474747;
	border-radius: 4px;
	border: 1px solid #d5d5d5;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	margin-bottom: 7px;
}

.dashboard .dashboard-view.dashboard-view .sparks[width-range~="0-680px"] .spark {
	width: 50%;
}

.dashboard .dashboard-view.dashboard-view .sparks[width-range~="0-680px"] .spark:nth-child(2n+1) {
	border-left: none;
}

.dashboard .dashboard-view.dashboard-view .sparks[width-range~="0-680px"] .spark:nth-child(n+3) {
	border-top: 1px solid #eaeaea;
}

.dashboard .dashboard-view.dashboard-view .sparks[width-range~="0-270px"] .spark {
	width: 100%;
	border-left: none;
	border-top: 1px solid #eaeaea;
}

.dashboard .dashboard-view.dashboard-view .sparks[width-range~="0-270px"] .spark:first-child {
	border-top: none;
}

.dashboard .dashboard-view.dashboard-view .spark {
	float: left;
	text-align: center;
	width: 25%;
	padding: 7px 6px;
	border-left: 1px solid #eaeaea;
	line-height: 1.35;
}

.dashboard .dashboard-view.dashboard-view .spark  > tbody {
	display: inline-block;
}

.dashboard .dashboard-view.dashboard-view .spark:first-child {
	border-left: none;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panel-toolbar {
	padding: 1px 0 1px 17px;
	height: 32px;
	position: absolute;
	top: 0;
	left: 0;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels {
	display: block;
	height: 100%;
	margin: 0 -7px;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels .card {
	height: 100%;
	overflow: hidden;
	padding: 32px 10px 0;
	position: relative;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels .card .v-table, .dashboard .dashboard-view.dashboard-view .dashboard-panels .card .v-table-table {
	background: transparent;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels .top10-revenue .card {
	padding-left: 0;
	padding-right: 0;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels .top10-revenue .v-table-table {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels .top10-revenue .v-table-cell-wrapper {
	padding-left: 10px;
	padding-right: 10px;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels .top10-revenue .v-table-cell-content {
	border-color: #eaeaea;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels .top10-revenue .v-table-cell-content-rowheader {
	color: #969696;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels .top10-revenue .v-table-cell-content-rowheader .v-table-cell-wrapper {
	padding-right: 0;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels .dashboard-panel-slot {
	padding: 7px;
	min-height: 220px;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels[width-range~="0-700px"] .dashboard-panel-slot {
	width: 100% !important;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels[width-range~="701px-"] .dashboard-panel-slot {
	width: 50% !important;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels[height-range~="0-440px"] .dashboard-panel-slot {
	height: 100%;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels[height-range~="441px-"] .dashboard-panel-slot {
	height: 50%;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels .dashboard-panel-slot.max {
	width: 100% !important;
	height: 100%;
	padding-top: 0;
	padding-bottom: 0;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels .notes .card {
	padding: 32px 0 0;
}

.dashboard .dashboard-view.dashboard-view .dashboard-panels .notes .v-textarea {
	border-top: 1px solid #dfdfdf;
	padding: 20px 20px 0;
	line-height: 20px;
	font-size: 13px;
	background: #fffdf2 url(img/notes-bg.png) repeat;
	background-attachment: local;
	color: #545145;
	overflow: auto;
}

.dashboard .dashboard-view[width-range~="0-480px"] {
	padding-left: 10px;
	padding-right: 10px;
}

.dashboard .notifications.v-window {
	overflow: visible !important;
	right: 20px;
	left: auto !important;
	max-width: 90%;
	-webkit-transform-origin: 246px -7px;
	-moz-transform-origin: 246px -7px;
	-ms-transform-origin: 246px -7px;
	-o-transform-origin: 246px -7px;
	transform-origin: 246px -7px;
}

.dashboard .notifications.v-window.v-window-animate-in {
	-webkit-animation: animate-in-scale-up 260ms cubic-bezier(0.68, 0.37, 0.51, 1.37);
	-moz-animation: animate-in-scale-up 260ms cubic-bezier(0.68, 0.37, 0.51, 1.37);
	animation: animate-in-scale-up 260ms cubic-bezier(0.68, 0.37, 0.51, 1.37);
}

.dashboard .notifications.v-window:before, .dashboard .notifications.v-window:after {
	content: "";
	position: absolute;
	top: -14px;
	right: 50px;
	border: 7px solid transparent;
	width: 0;
	height: 0;
	border-bottom-color: white;
}

.dashboard .notifications.v-window:before {
	top: -17px;
	margin-right: -1px;
	border-width: 8px;
	border-bottom-width: 8px;
	border-bottom-color: rgba(0, 0, 0, 0.09098);
}

.dashboard .notifications.v-window .v-window-header {
	color: #197de1;
}

.dashboard .notifications.v-window .v-window-outerheader:after, .dashboard .notifications.v-window .v-scrollable:before {
	display: none;
}

.dashboard .notifications.v-window .notification-item {
	font-size: 13px;
}

.dashboard .notifications.v-window .notification-title {
	font-weight: 500;
}

.dashboard .notifications.v-window .notification-time {
	font-size: 11px;
	color: gray;
}

.dashboard .schedule .v-calendar-event-content {
	background-repeat: repeat-x, no-repeat;
	background-size: auto, cover;
	border: 1px solid #000;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dashboard .schedule .v-calendar-event-caption {
	right: 0;
	width: auto;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

.dashboard .schedule .v-calendar-event-caption span {
	color: #979699;
}

.dashboard .schedule .v-calendar-header-day {
	font-weight: 500;
	font-size: 0.8em;
	text-transform: uppercase;
	color: #197de1;
}

.dashboard .schedule .tray {
	position: relative;
	padding: 10px 20px;
	background: white;
	border-top: 1px solid #c5c5c5;
	-webkit-transition: -webkit-transform 400ms 120ms;
	-ms-transition: -ms-transform 400ms 120ms;
	transition: transform 400ms 120ms;
}

.dashboard .schedule .tray.v-animate-reveal {
	-ms-transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.dashboard .schedule .catalog {
	padding: 20px;
}

.dashboard .schedule .catalog .frame {
	cursor: pointer;
}

.dashboard .schedule .catalog .frame .v-image {
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
	border-radius: 2px;
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.dashboard .schedule .catalog .frame:hover .v-image {
	border-color: #197de1;
}

.dashboard .schedule .catalog .frame .v-label {
	font-size: 12px;
	line-height: 1.2;
	margin: 0.5em 0 1em;
}

.dashboard .sales .viewheader {
	padding: 20px;
}

.dashboard .sales .v-timeline:focus {
	outline: none;
}

.dashboard .sales .v-timeline-widget-modelegend {
	background: transparent;
	width: 100% !important;
	font-size: 12px;
}

.dashboard .sales .v-timeline-widget-display .gwt-HTML {
	left: 0 !important;
	width: 100%;
	text-align: center;
	top: 40% !important;
	margin-top: -0.5em;
}

.dashboard .sales .v-timeline-widget-display-bottombar {
	background: transparent;
}

.dashboard .sales .v-timeline-widget-legend {
	margin-top: 0;
}

.dashboard .sales .v-timeline-widget-legend-value {
	font-size: 10px;
	color: #979699;
}

.dashboard .sales .v-timeline-widget-legend-label {
	font-size: 13px;
}

.dashboard .sales .v-timeline-widget-display-hscale, .dashboard .sales .v-timeline-widget-display-hscale-left {
	font-size: 11px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 3px;
	border-color: #ccc;
}

.dashboard .sales .v-timeline-widget-browser-scale-label {
	color: rgba(0, 0, 0, 0.7);
	font-size: 11px;
	top: auto !important;
	bottom: 14px;
}

.dashboard .transactions .viewheader {
	padding: 20px;
	border-bottom: 1px solid #dfdfdf;
}

.dashboard .reports .create .v-slot {
	border: 1px solid rgba(122, 122, 122, 0.1);
	background: rgba(122, 122, 122, 0.04);
}

.dashboard .reports .draft-thumb {
	cursor: pointer;
	position: relative;
}

.dashboard .reports .draft-thumb .v-label {
	display: block;
	text-align: center;
}

.dashboard .reports .draft-thumb .v-label span {
	font-size: 0.8em;
}

.dashboard .reports .draft-thumb .v-image {
	-webkit-box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.5);
	box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.5);
}

.dashboard .reports .draft-thumb .v-image:hover {
	outline: 2px solid #5198df;
}

.dashboard .reports .v-slot-palette {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	border-bottom: 1px solid #c5c5c5;
}

.dashboard .reports .palette {
	padding: 0.5em 0;
	font-size: 0.9em;
}

.dashboard .reports .palette .v-icon {
	display: block;
	text-align: center;
}

.dashboard .reports .palette .v-label {
	font-size: 0.9em;
	margin: 0 0.4em;
	cursor: move;
}

.dashboard .reports .v-caption-palette {
	font-size: 12px;
	display: block;
	white-space: normal;
	padding-top: 1em;
	width: 140px;
}

.dashboard .reports .v-slot-canvas {
	overflow: auto;
}

.dashboard .reports .canvas {
	padding: 20px;
}

.dashboard .reports .canvas .title {
	font-size: 24px;
	font-weight: 600;
	border: 1px solid transparent;
	color: #404346;
	-webkit-box-shadow: none;
	box-shadow: none;
	width: 100%;
	text-align: center;
	cursor: pointer;
	margin-bottom: 1cm;
}

.dashboard .reports .palette .v-image {
	width: 75px;
	height: 47px;
}

.dashboard .canvas-layout {
	min-height: 29cm;
	background: #fff;
	padding: 1.5cm;
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dashboard .canvas-layout  > .v-slot > .v-widget {
	-webkit-animation: valo-animate-in-fade 500ms 10ms backwards, animate-in-scale-up 300ms 10ms backwards;
	-moz-animation: valo-animate-in-fade 500ms 10ms backwards, animate-in-scale-up 300ms 10ms backwards;
	animation: valo-animate-in-fade 500ms 10ms backwards, animate-in-scale-up 300ms 10ms backwards;
}

.dashboard .canvas-layout  > .v-slot > .v-widget.title, .dashboard .canvas-layout  > .v-slot > .v-widget.placeholder {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.dashboard .reports .canvas .title:hover {
	background: #fff9e6;
}

.dashboard .reports .canvas .title:focus {
	cursor: text;
	border-color: #eee;
	background: transparent;
}

.dashboard .reports .canvas .placeholder {
	text-align: center;
}

.dashboard .reports .canvas .placeholder .v-label {
	min-height: 10cm;
	line-height: 5cm;
	font-size: 18px;
}

.dashboard .reports .v-tabsheet-content {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.dashboard .reports .v-timeline-widget-display-hscale-left {
	font-size: 10px;
	margin-top: -14px;
	padding-left: 3px;
}

.dashboard .reports .canvas .v-ddwrapper {
	padding-top: 20px;
	padding-bottom: 20px;
}

.dashboard .reports .text-editor {
	position: relative;
	overflow: visible;
}

.dashboard .reports .text-editor:hover {
	background: #fff9e6;
}

.dashboard .reports .text-editor.edit:hover {
	background: transparent;
}

.dashboard .text-editor .v-button {
	position: absolute;
	top: 50%;
	margin-top: -12px;
	right: -20px;
	display: none;
}

.dashboard .text-editor .v-button-wrap:before {
	margin: 0 -0.3em;
}

.dashboard .text-editor:hover .v-button {
	display: inline-block;
}

.dashboard .reports .text-editor.edit .v-button {
	display: inline-block;
	position: static;
	margin-top: 3px;
}

.dashboard .delete-button {
	width: 19px;
	height: 19px;
	border: 1px solid #a3a7ab;
	border-radius: 2px;
	background: #73767a;
	color: #fff;
	font: inherit;
	font-size: 16px;
	line-height: 1;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
	text-align: center;
	cursor: default;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.dashboard .delete-button:hover {
	background: #4e5153;
}

.dashboard .delete-button:focus {
	outline: none;
}

.dashboard .delete-button:active {
	background: #3c3f40;
}

.dashboard .draft-thumb .delete-button {
	position: absolute;
	top: 1px;
	right: 1px;
	display: none;
}

.dashboard .draft-thumb:hover .delete-button {
	display: block;
}

.dashboard .help-overlay.palette {
	top: 200px !important;
	left: 200px !important;
}

.dashboard .help-overlay.reorder {
	margin-left: 200px !important;
}

.dashboard .reports .transaction {
	position: relative;
	float: left;
	width: 47%;
	margin-right: 2.5%;
	margin-top: 10px;
	overflow: hidden;
	background: #eee;
	border: 1px solid #e0e0e0;
}

.dashboard .reports .transaction .time, .dashboard .reports .transaction .seats {
	font-size: 12px;
	color: #9fa2a6;
	position: absolute;
	top: 5px;
	left: 5px;
	line-height: normal;
}

.dashboard .reports .transaction .movie-title {
	font-size: 16px;
	font-weight: 300;
	white-space: normal;
	padding: 40px 5px 5px;
}

.dashboard .reports .transaction .seats {
	left: 60%;
}

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

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

.v-Notification.idd-sidebarview {
	background-color: #990000;
	background-color: rgba(153, 0, 0, 0.9);
	color: white;
	font-weight: 400;
	line-height: 20px;
	border: 1px solid #c5c5c5;
}

.v-Notification.idd-closable {
	padding-right: 48px !important;
	overflow: hidden !important;
	cursor: pointer;
}

.v-Notification.idd-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: #fff;
	opacity: 1;
	filter: alpha(opacity=50) ;
	text-align: center;
	border: 1px solid #fff;
	border-color: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
}

.v-Notification.idd-closable:hover:after {
	opacity: 1;
	filter: none ;
}

.v-Notification.idd-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;
}

.v-Notification.idd-closable.dark:after, .dashboard .v-Notification.idd-closable.error:after, .dashboard .v-Notification.idd-closable.system:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.v-Notification.idd-closable.dark:active:after, .dashboard .v-Notification.idd-closable.error:active:after, .dashboard .v-Notification.idd-closable.system:active:after {
	background-color: #fff;
	color: #000;
}

.v-Notification.idd-closable.tray:after {
	top: 13px;
	margin-top: 0;
}

.v-horizontallayout-idd-dropwrapper, .v-horizontallayout.v-horizontallayout-idd-dropwrapper {
	background-color: #f2f2f2;
	padding-top: 2px;
	padding-right: 20px;
	padding-bottom: 2px;
	padding-left: 20px;
	border-radius: 4px;
	border: 1px solid #c5c5c5;
}

.v-table-row-red, .v-table-row.v-table-row-red, .v-table-row-odd.v-table-row-red {
	background: #fff5f5;
}

.v-table-row-green, .v-table-row.v-table-row-green, .v-table-row-odd.v-table-row-green {
	background: #f6f9f0;
}

.v-table-cell-content-white, .v-table-cell-content.v-table-cell-content-white {
	background: #ffffff;
	border: none;
}

.v-slot-idd-gridlayout-toolbar, .v-slot.v-slot-idd-gridlayout-toolbar {
	padding-left: 14px;
	padding-right: 10px;
	padding-top: 16px;
	padding-bottom: 18px;
	border-bottom: 0px solid #b5b5b5;
}

.v-slot-idd-gridlayout, .v-slot.v-slot-idd-gridlayout {
	padding-left: 14px;
	padding-right: 10px;
	padding-top: 16px;
	padding-bottom: 18px;
	border-bottom: 0px solid #b5b5b5;
}

.v-slot-idd-tabsheetitem-toolbar, .v-slot.v-slot-idd-tabsheetitem-toolbar {
	padding-left: 14px;
	padding-right: 2px;
	padding-top: 16px;
	padding-bottom: 18px;
	border-bottom: 1px solid #b5b5b5;
}

.v-splitpanel-vsplitter-idd-masterdetail {
	height: 2px;
	background-color: #9b9b9b;
}

.v-horizontallayout-idd-masterdetail-headertoolbar {
	padding-left: 14px;
	padding-right: 14px;
	padding-top: 0px;
	padding-bottom: 0px;
	background-color: #e4e4e4;
}

.v-horizontallayout-idd-masterdetail-statusbar {
	padding-left: 14px;
	padding-right: 14px;
	padding-top: 0px;
	padding-bottom: 0px;
	background-color: #f2f2f2;
	border-top: 1px solid #b5b5b5;
}

.v-tabsheet-tabcontainer-idd-tabsheet {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 6px;
	padding-bottom: 8px;
	background-color: #e4e4e4;
	border-bottom: 1px solid #b5b5b5;
}

.v-horizontallayout-idd-formwindow-footer, .v-horizontallayout.v-horizontallayout-idd-formwindow-footer {
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 12px;
	padding-bottom: 12px;
	background-color: #f4f4f4;
	border-top: 1px solid #d9d9d9;
}

.v-horizontallayout-idd-alert-buttons, .v-horizontallayout.v-horizontallayout-idd-alert-buttons {
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 12px;
	padding-bottom: 12px;
	background-color: #f4f4f4;
	border-top: 1px solid #d9d9d9;
}

.v-horizontallayout-idd-tabsheetitem, .v-horizontallayout.v-horizontallayout-idd-tabsheetitem {
	padding-left: 0px;
	padding-right: 2px;
	padding-top: 14px;
	padding-bottom: 16px;
}

.idd-selected {
	background: #197de1;
	background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
	background-image: linear, to bottom, #1b87e3 2%, #166ed5 98%;
}

.v-verticallayout-idd-sidebarview {
	padding-bottom: 0px !important;
}

.v-verticallayout-idd-sidebarview-bottompart {
	width: 100% !important;
}

.v-horizontallayout-idd-sidebarview-title {
	height: 40px !important;
	width: 100% !important;
	background: #20242a !important;
	text-align: center;
}

.v-button-idd-actioncolumn {
	border: 1px solid rgba(197, 197, 197, 0.5) !important;
}

.v-textfield-idd-invisible {
	border: none !important;
	background: white !important;
	-webkit-border-image: none !important;
}