@charset "UTF-8";
/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::-moz-selection {
	background: transparent;
}
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}
.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}
.leaflet-container.leaflet-touch-zoom {
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}
.leaflet-pane         { z-index: 400; }
.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }
.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }
.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}
/* control positioning */
.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}
/* zoom and fade animations */
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
	transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	transition: none;
	}
.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}
/* cursors */
.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor:         grabbing;
	}
/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}
.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
/* visual tweaks */
.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}
/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}
/* general toolbar styles */
.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}
.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}
/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}
/* layers control */
.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}
/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(images/marker-icon.png);
	}
/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}
/* popup */
.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;
	transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}
.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}
/* div icon */
.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}
/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}
/* Directions */
.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}
/* Printing */
@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}
/***
Spectrum Colorpicker v1.8.0
https://github.com/bgrins/spectrum
Author: Brian Grinstead
License: MIT
***/
.sp-container {
    position:absolute;
    top:0;
    left:0;
    display:inline-block;
    *display: inline;
    *zoom: 1;
    /* https://github.com/bgrins/spectrum/issues/40 */
    z-index: 9999994;
    overflow: hidden;
}
.sp-container.sp-flat {
    position: relative;
}
/* Fix for * { box-sizing: border-box; } */
.sp-container,
.sp-container * {
    box-sizing: content-box;
}
/* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */
.sp-top {
  position:relative;
  width: 100%;
  display:inline-block;
}
.sp-top-inner {
   position:absolute;
   top:0;
   left:0;
   bottom:0;
   right:0;
}
.sp-color {
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:20%;
}
.sp-hue {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:84%;
    height: 100%;
}
.sp-clear-enabled .sp-hue {
    top:33px;
    height: 77.5%;
}
.sp-fill {
    padding-top: 80%;
}
.sp-sat, .sp-val {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}
.sp-alpha-enabled .sp-top {
    margin-bottom: 18px;
}
.sp-alpha-enabled .sp-alpha {
    display: block;
}
.sp-alpha-handle {
    position:absolute;
    top:-4px;
    bottom: -4px;
    width: 6px;
    left: 50%;
    cursor: pointer;
    border: 1px solid black;
    background: white;
    opacity: .8;
}
.sp-alpha {
    display: none;
    position: absolute;
    bottom: -14px;
    right: 0;
    left: 0;
    height: 8px;
}
.sp-alpha-inner {
    border: solid 1px #333;
}
.sp-clear {
    display: none;
}
.sp-clear.sp-clear-display {
    background-position: center;
}
.sp-clear-enabled .sp-clear {
    display: block;
    position:absolute;
    top:0px;
    right:0;
    bottom:0;
    left:84%;
    height: 28px;
}
/* Don't allow text selection */
.sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-clear, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button  {
    -webkit-user-select:none;
    -moz-user-select: -moz-none;
    -o-user-select:none;
    user-select: none;
}
.sp-container.sp-input-disabled .sp-input-container {
    display: none;
}
.sp-container.sp-buttons-disabled .sp-button-container {
    display: none;
}
.sp-container.sp-palette-buttons-disabled .sp-palette-button-container {
    display: none;
}
.sp-palette-only .sp-picker-container {
    display: none;
}
.sp-palette-disabled .sp-palette-container {
    display: none;
}
.sp-initial-disabled .sp-initial {
    display: none;
}
/* Gradients for hue, saturation and value instead of images.  Not pretty... but it works */
.sp-sat {
    background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
    filter : progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81');
}
.sp-val {
    background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
    filter : progid:DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81', endColorstr='#FF000000');
}
.sp-hue {
    background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
}
/* IE filters do not support multiple color stops.
   Generate 6 divs, line them up, and do two color gradients for each.
   Yes, really.
 */
.sp-1 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00');
}
.sp-2 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00', endColorstr='#00ff00');
}
.sp-3 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ff00', endColorstr='#00ffff');
}
.sp-4 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffff', endColorstr='#0000ff');
}
.sp-5 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000ff', endColorstr='#ff00ff');
}
.sp-6 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff', endColorstr='#ff0000');
}
.sp-hidden {
    display: none !important;
}
/* Clearfix hack */
.sp-cf:before, .sp-cf:after { content: ""; display: table; }
.sp-cf:after { clear: both; }
.sp-cf { *zoom: 1; }
/* Mobile devices, make hue slider bigger so it is easier to slide */
@media (max-device-width: 480px) {
    .sp-color { right: 40%; }
    .sp-hue { left: 63%; }
    .sp-fill { padding-top: 60%; }
}
.sp-dragger {
   border-radius: 5px;
   height: 5px;
   width: 5px;
   border: 1px solid #fff;
   background: #000;
   cursor: pointer;
   position:absolute;
   top:0;
   left: 0;
}
.sp-slider {
    position: absolute;
    top:0;
    cursor:pointer;
    height: 3px;
    left: -1px;
    right: -1px;
    border: 1px solid #000;
    background: white;
    opacity: .8;
}
/*
Theme authors:
Here are the basic themeable display options (colors, fonts, global widths).
See http://bgrins.github.io/spectrum/themes/ for instructions.
*/
.sp-container {
    border-radius: 0;
    background-color: #ECECEC;
    border: solid 1px #f0c49B;
    padding: 0;
}
.sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue, .sp-clear {
    font: normal 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.sp-top {
    margin-bottom: 3px;
}
.sp-color, .sp-hue, .sp-clear {
    border: solid 1px #666;
}
/* Input */
.sp-input-container {
    float:right;
    width: 100px;
    margin-bottom: 4px;
}
.sp-initial-disabled  .sp-input-container {
    width: 100%;
}
.sp-input {
   font-size: 12px !important;
   border: 1px inset;
   padding: 4px 5px;
   margin: 0;
   width: 100%;
   background:transparent;
   border-radius: 3px;
   color: #222;
}
.sp-input:focus  {
    border: 1px solid orange;
}
.sp-input.sp-validation-error {
    border: 1px solid red;
    background: #fdd;
}
.sp-picker-container , .sp-palette-container {
    float:left;
    position: relative;
    padding: 10px;
    padding-bottom: 300px;
    margin-bottom: -290px;
}
.sp-picker-container {
    width: 172px;
    border-left: solid 1px #fff;
}
/* Palettes */
.sp-palette-container {
    border-right: solid 1px #ccc;
}
.sp-palette-only .sp-palette-container {
    border: 0;
}
.sp-palette .sp-thumb-el {
    display: block;
    position:relative;
    float:left;
    width: 24px;
    height: 15px;
    margin: 3px;
    cursor: pointer;
    border:solid 2px transparent;
}
.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
    border-color: orange;
}
.sp-thumb-el {
    position:relative;
}
/* Initial */
.sp-initial {
    float: left;
    border: solid 1px #333;
}
.sp-initial span {
    width: 30px;
    height: 25px;
    border:none;
    display:block;
    float:left;
    margin:0;
}
.sp-initial .sp-clear-display {
    background-position: center;
}
/* Buttons */
.sp-palette-button-container,
.sp-button-container {
    float: right;
}
/* Replacer (the little preview div that shows up instead of the <input>) */
.sp-replacer {
    margin:0;
    overflow:hidden;
    cursor:pointer;
    padding: 4px;
    display:inline-block;
    *zoom: 1;
    *display: inline;
    border: solid 1px #91765d;
    background: #eee;
    color: #333;
    vertical-align: middle;
}
.sp-replacer:hover, .sp-replacer.sp-active {
    border-color: #F0C49B;
    color: #111;
}
.sp-replacer.sp-disabled {
    cursor:default;
    border-color: silver;
    color: silver;
}
.sp-dd {
    padding: 2px 0;
    height: 16px;
    line-height: 16px;
    float:left;
    font-size:10px;
}
.sp-preview {
    position:relative;
    width:25px;
    height: 20px;
    border: solid 1px #222;
    margin-right: 5px;
    float:left;
    z-index: 0;
}
.sp-palette {
    *width: 220px;
    max-width: 220px;
}
.sp-palette .sp-thumb-el {
    width:16px;
    height: 16px;
    margin:2px 1px;
    border: solid 1px #d0d0d0;
}
.sp-container {
    padding-bottom:0;
}
/* Buttons: http://hellohappy.org/css3-buttons/ */
.sp-container button {
  background-color: #eeeeee;
  background-image: linear-gradient(to bottom, #eeeeee, #cccccc);
  border: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 5px 4px;
  text-align: center;
  text-shadow: 0 1px 0 #eee;
  vertical-align: middle;
}
.sp-container button:hover {
    background-color: #dddddd;
    background-image: linear-gradient(to bottom, #dddddd, #bbbbbb);
    border: 1px solid #bbb;
    border-bottom: 1px solid #999;
    cursor: pointer;
    text-shadow: 0 1px 0 #ddd;
}
.sp-container button:active {
    border: 1px solid #aaa;
    border-bottom: 1px solid #888;
    -ms-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -o-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
}
.sp-cancel {
    font-size: 11px;
    color: #d93f3f !important;
    margin:0;
    padding:2px;
    margin-right: 5px;
    vertical-align: middle;
    text-decoration:none;

}
.sp-cancel:hover {
    color: #d93f3f !important;
    text-decoration: underline;
}
.sp-palette span:hover, .sp-palette span.sp-thumb-active {
    border-color: #000;
}
.sp-preview, .sp-alpha, .sp-thumb-el {
    position:relative;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}
.sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner {
    display:block;
    position:absolute;
    top:0;left:0;bottom:0;right:0;
}
.sp-palette .sp-thumb-inner {
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=);
}
.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=);
}
.sp-clear-display {
    background-repeat:no-repeat;
    background-position: center;
    background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==);
}
/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/
/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/
/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/
.mCustomScrollbar{ touch-action: pinch-zoom; /* direct pointer events to js */ }
.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action{ touch-action: auto; }
.mCustomScrollBox{ /* contains plugin's markup */
		position: relative;
		overflow: hidden;
		height: 100%;
		max-width: 100%;
		outline: none;
		direction: ltr;
	}
.mCSB_container{ /* contains the original content */
		overflow: hidden;
		width: auto;
		height: auto;
	}
/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_inside > .mCSB_container{ margin-right: 30px; }
.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-right: 0; }
/* non-visible scrollbar */
.mCS-dir-rtl > .mCSB_inside > .mCSB_container{ /* RTL direction/left-side scrollbar */
		margin-right: 0;
		margin-left: 30px;
	}
.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-left: 0; }
/* RTL direction/left-side scrollbar */
.mCSB_scrollTools{ /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
		position: absolute;
		width: 16px;
		height: auto;
		left: auto;
		top: 0;
		right: 0;
		bottom: 0;
	}
.mCSB_outside + .mCSB_scrollTools{ right: -26px; }
/* scrollbar position: outside */
.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools, 
	.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ /* RTL direction/left-side scrollbar */
		right: auto;
		left: 0;
	}
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ left: -26px; }
/* RTL direction/left-side scrollbar (scrollbar position: outside) */
.mCSB_scrollTools .mCSB_draggerContainer{ /* contains the draggable element and dragger rail markup */
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0; 
		height: auto;
	}
.mCSB_scrollTools a + .mCSB_draggerContainer{ margin: 20px 0; }
.mCSB_scrollTools .mCSB_draggerRail{
		width: 2px;
		height: 100%;
		margin: 0 auto; border-radius: 16px;
	}
.mCSB_scrollTools .mCSB_dragger{ /* the draggable element */
		cursor: pointer;
		width: 100%;
		height: 30px; /* minimum dragger height */
		z-index: 1;
	}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ /* the dragger element */
		position: relative;
		width: 4px;
		height: 100%;
		margin: 0 auto; border-radius: 16px;
		text-align: center;
	}
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{ width: 12px; /* auto-expanded scrollbar */ }
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 8px; /* auto-expanded scrollbar */ }
.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown{
		display: block;
		position: absolute;
		height: 20px;
		width: 100%;
		overflow: hidden;
		margin: 0 auto;
		cursor: pointer;
	}
.mCSB_scrollTools .mCSB_buttonDown{ bottom: 0; }
/* 
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_horizontal.mCSB_inside > .mCSB_container{
		margin-right: 0;
		margin-bottom: 30px;
	}
.mCSB_horizontal.mCSB_outside > .mCSB_container{ min-height: 100%; }
.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden{ margin-bottom: 0; }
/* non-visible scrollbar */
.mCSB_scrollTools.mCSB_scrollTools_horizontal{
		width: auto;
		height: 16px;
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
	}
.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
	.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{ bottom: -26px; }
/* scrollbar position: outside */
.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer{ margin: 0 20px; }
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 2px;
		margin: 7px 0;
	}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger{
		width: 30px; /* minimum dragger width */
		height: 100%;
		left: 0;
	}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 4px;
		margin: 6px auto;
	}
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		height: 12px; /* auto-expanded scrollbar */
		margin: 2px auto;
	}
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 8px; /* auto-expanded scrollbar */
		margin: 4px 0;
	}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{
		display: block;
		position: absolute;
		width: 20px;
		height: 100%;
		overflow: hidden;
		margin: 0 auto;
		cursor: pointer;
	}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft{ left: 0; }
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{ right: 0; }
/* 
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_container_wrapper{
		position: absolute;
		height: auto;
		width: auto;
		overflow: hidden;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin-right: 30px;
		margin-bottom: 30px;
	}
.mCSB_container_wrapper > .mCSB_container{
		padding-right: 30px;
		padding-bottom: 30px; box-sizing: border-box;
	}
.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 20px; }
.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 20px; }
/* non-visible horizontal scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 0; }
/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 0; }
/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ left: 20px; }
/* non-visible scrollbar/RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal{ left: 0; }
.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper{ /* RTL direction/left-side scrollbar */
		margin-right: 0;
		margin-left: 30px;
	}
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container{ padding-right: 0; }
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container{ padding-bottom: 0; }
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden{
		margin-right: 0; /* non-visible scrollbar */
		margin-left: 0;
	}
/* non-visible horizontal scrollbar */
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden{ margin-bottom: 0; }
/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_scrollTools, 
	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown,
	.mCSB_scrollTools .mCSB_buttonLeft,
	.mCSB_scrollTools .mCSB_buttonRight{
		transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
	}
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, /* auto-expanded scrollbar */
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail{ 
		transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
	}
/* 
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/
/* 
	----------------------------------------
	6.1 THEMES 
	----------------------------------------
	*/
/* default theme ("light") */
.mCSB_scrollTools{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; }
.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
	.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 0; filter: "alpha(opacity=0)"; -ms-filter: "alpha(opacity=0)"; }
.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
	.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
	.mCustomScrollBox:hover > .mCSB_scrollTools,
	.mCustomScrollBox:hover ~ .mCSB_scrollTools,
	.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
	.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 1; filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)"; }
.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.4);
		filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)"; 
	}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.75);
		filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; 
	}
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.85);
		filter: "alpha(opacity=85)"; -ms-filter: "alpha(opacity=85)"; 
	}
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.9);
		filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; 
	}
.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown,
	.mCSB_scrollTools .mCSB_buttonLeft,
	.mCSB_scrollTools .mCSB_buttonRight{
		background-image: url(mCSB_buttons.png); /* css sprites */
		background-repeat: no-repeat;
		opacity: 0.4; filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)"; 
	}
.mCSB_scrollTools .mCSB_buttonUp{
		background-position: 0 0;
		/* 
		sprites locations 
		light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
		dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
		*/
	}
.mCSB_scrollTools .mCSB_buttonDown{
		background-position: 0 -20px;
		/* 
		sprites locations
		light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
		dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
		*/
	}
.mCSB_scrollTools .mCSB_buttonLeft{
		background-position: 0 -40px;
		/* 
		sprites locations 
		light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
		dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
		*/
	}
.mCSB_scrollTools .mCSB_buttonRight{
		background-position: 0 -56px;
		/* 
		sprites locations 
		light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
		dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
		*/
	}
.mCSB_scrollTools .mCSB_buttonUp:hover,
	.mCSB_scrollTools .mCSB_buttonDown:hover,
	.mCSB_scrollTools .mCSB_buttonLeft:hover,
	.mCSB_scrollTools .mCSB_buttonRight:hover{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; }
.mCSB_scrollTools .mCSB_buttonUp:active,
	.mCSB_scrollTools .mCSB_buttonDown:active,
	.mCSB_scrollTools .mCSB_buttonLeft:active,
	.mCSB_scrollTools .mCSB_buttonRight:active{ opacity: 0.9; filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; }
/* theme: "dark" */
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }
.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: rgba(0,0,0,0.85); }
.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: rgba(0,0,0,0.9); }
.mCS-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -80px 0; }
.mCS-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -20px; }
.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -40px; }
.mCS-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -56px; }
/* ---------------------------------------- */
/* theme: "light-2", "dark-2" */
.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{
		width: 4px;
		background-color: #fff; background-color: rgba(255,255,255,0.1); border-radius: 1px;
	}
.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 4px;
		background-color: #fff; background-color: rgba(255,255,255,0.75); border-radius: 1px;
	}
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 4px;
		margin: 6px auto;
	}
.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }
.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }
.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px 0; }
.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown{	background-position: -32px -20px; }
.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft{	background-position: -40px -40px; }
.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -56px; }
/* theme: "dark-2" */
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1); border-radius: 1px;
	}
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.75); border-radius: 1px;
	}
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px 0; }
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -20px; }
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -40px; }
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -56px; }
/* ---------------------------------------- */
/* theme: "light-thick", "dark-thick" */
.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{
		width: 4px;
		background-color: #fff; background-color: rgba(255,255,255,0.1); border-radius: 2px;
	}
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 6px;
		background-color: #fff; background-color: rgba(255,255,255,0.75); border-radius: 2px;
	}
.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 4px;
		margin: 6px 0;
	}
.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 6px;
		margin: 5px auto;
	}
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -16px 0; }
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown{	background-position: -16px -20px; }
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft{	background-position: -20px -40px; }
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight{ background-position: -20px -56px; }
/* theme: "dark-thick" */
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1); border-radius: 2px;
	}
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.75); border-radius: 2px;
	}
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -96px 0; }
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown{ background-position: -96px -20px; }
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -100px -40px; }
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight{	background-position: -100px -56px; }
/* ---------------------------------------- */
/* theme: "light-thin", "dark-thin" */
.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.1); }
.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 2px; }
.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail{ width: 100%; }
.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 2px;
		margin: 7px auto;
	}
/* theme "dark-thin" */
.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp{	background-position: -80px 0; }
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -20px; }
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -40px; }
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -56px; }
/* ---------------------------------------- */
/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */
.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.15); }
.mCS-rounded.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger{ height: 14px; }
.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 14px;
		margin: 0 1px;
	}
.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 14px; }
.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 14px;
		margin: 1px 0;
	}
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		width: 16px; /* auto-expanded scrollbar */
		height: 16px;
		margin: -1px 0;
	}
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 4px; /* auto-expanded scrollbar */ }
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		height: 16px; /* auto-expanded scrollbar */
		width: 16px;
		margin: 0 -1px;
	}
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 4px; /* auto-expanded scrollbar */
		margin: 6px 0;
	}
.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp{ background-position: 0 -72px; }
.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown{ background-position: 0 -92px; }
.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft{ background-position: 0 -112px; }
.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight{ background-position: 0 -128px; }
/* theme "rounded-dark", "rounded-dots-dark" */
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -80px -72px; }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -92px; }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -112px; }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -128px; }
/* theme "rounded-dots", "rounded-dots-dark" */
.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail{ width: 4px; }
.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		background-color: transparent;
		background-position: center;
	}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
		background-repeat: repeat-y;
		opacity: 0.3;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		height: 4px;
		margin: 6px 0;
		background-repeat: repeat-x;
	}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp{ background-position: -16px -72px; }
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown{ background-position: -16px -92px; }
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -20px -112px; }
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight{ background-position: -20px -128px; }
/* theme "rounded-dots-dark" */
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
	}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -96px -72px; }
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -96px -92px; }
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -100px -112px; }
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -100px -128px; }
/* ---------------------------------------- */
/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-repeat: repeat-y;
		background-image: linear-gradient(to right, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
	}
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		background-repeat: repeat-x;
		background-image: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
	}
/* theme "3d", "3d-dark" */
.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger, 
	.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 70px; }
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 70px; }
.mCS-3d.mCSB_scrollTools, 
	.mCS-3d-dark.mCSB_scrollTools{
		opacity: 1;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
.mCS-3d.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ border-radius: 16px; }
.mCS-3d.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{
		width: 8px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
		box-shadow: inset 1px 0 1px rgba(0,0,0,0.5), inset -1px 0 1px rgba(255,255,255,0.2);
	}
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 	 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #555; }
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 8px; }
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 8px;
		margin: 4px 0;
		box-shadow: inset 0 1px 1px rgba(0,0,0,0.5), inset 0 -1px 1px rgba(255,255,255,0.2);
	}
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 8px;
		margin: 4px auto;
	}
.mCS-3d.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
.mCS-3d.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
.mCS-3d.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
/* theme "3d-dark" */
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		box-shadow: inset 1px 0 1px rgba(0,0,0,0.1);
	}
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{ box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); }
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
/* ---------------------------------------- */
/* theme: "3d-thick", "3d-thick-dark" */
.mCS-3d-thick.mCSB_scrollTools, 
	.mCS-3d-thick-dark.mCSB_scrollTools{
		opacity: 1;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
.mCS-3d-thick.mCSB_scrollTools, 
	.mCS-3d-thick-dark.mCSB_scrollTools, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{ border-radius: 7px; }
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ border-radius: 5px; }
.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical, 
	.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical{ right: 1px; }
.mCS-3d-thick.mCSB_scrollTools_vertical, 
	.mCS-3d-thick-dark.mCSB_scrollTools_vertical{ box-shadow: inset 1px 0 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5); }
.mCS-3d-thick.mCSB_scrollTools_horizontal, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{
		bottom: 1px;
		box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5);
	}
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		box-shadow: inset 1px 0 0 rgba(255,255,255,0.4);
		width: 12px;
		margin: 2px;
		position: absolute;
		height: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.4); }
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,  
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #555; }
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 12px;
		width: auto;
	}
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer{
		background-color: #000; background-color: rgba(0,0,0,0.05);
		box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1);
	}
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight{	background-position: -40px -128px; }
/* theme: "3d-thick-dark" */
.mCS-3d-thick-dark.mCSB_scrollTools{ box-shadow: inset 0 0 14px rgba(0,0,0,0.2); }
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{ box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.2); }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 1px 0 0 rgba(255,255,255,0.4), inset -1px 0 0 rgba(0,0,0,0.2); }
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.2); }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,  
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #777; }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{
		background-color: #fff; background-color: rgba(0,0,0,0.05);
		box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1);
	}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
/* ---------------------------------------- */
/* theme: "minimal", "minimal-dark" */
.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, 
	.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{
		right: 0; 
		margin: 12px 0; 
	}
.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{
		bottom: 0; 
		margin: 0 12px; 
	}
/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, 
	.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{
		left: 0; 
		right: auto;
	}
.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger, 
	.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 50px; }
.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 50px; }
.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.2);
		filter: "alpha(opacity=20)"; -ms-filter: "alpha(opacity=20)"; 
	}
.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.5);
		filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; 
	}
/* theme: "minimal-dark" */
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.2);
		filter: "alpha(opacity=20)"; -ms-filter: "alpha(opacity=20)"; 
	}
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.5);
		filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; 
	}
/* ---------------------------------------- */
/* theme "light-3", "dark-3" */
.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{
		width: 6px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
	}
.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 6px; }
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 6px;
		margin: 5px 0;
	}
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		width: 12px;
	}
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 12px;
		margin: 2px 0;
	}
.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
/* theme "dark-3" */
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); }
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
/* ---------------------------------------- */
/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */
.mCS-inset.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{
		width: 12px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
	}
.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ 
		width: 6px;
		margin: 3px 5px;
		position: absolute;
		height: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 6px;
		margin: 5px 3px;
		position: absolute;
		width: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 12px;
		margin: 2px 0;
	}
.mCS-inset.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
.mCS-inset.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
.mCS-inset.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); }
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
/* theme "inset-2", "inset-2-dark" */
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-color: transparent;
		border-width: 1px;
		border-style: solid;
		border-color: #fff;
		border-color: rgba(255,255,255,0.2); box-sizing: border-box;
	}
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{ border-color: #000; border-color: rgba(0,0,0,0.2); }
/* theme "inset-3", "inset-3-dark" */
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.6); }
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.6); }
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.75); }
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }
/* ---------------------------------------- */
/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://github.com/material-components/material-components-web/blob/master/LICENSE
 */
.mdc-switch__thumb-underlay{left:-14px;right:initial;top:-17px;width:48px;height:48px}
[dir=rtl] .mdc-switch__thumb-underlay,.mdc-switch__thumb-underlay[dir=rtl]{left:initial;right:-14px}
.mdc-switch__native-control{width:64px;height:48px}
.mdc-switch{display:inline-block;position:relative;outline:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}
.mdc-switch.mdc-switch--checked .mdc-switch__track{background-color:#018786;background-color:var(--mdc-theme-secondary, #018786)}
.mdc-switch.mdc-switch--checked .mdc-switch__thumb{background-color:#018786;background-color:var(--mdc-theme-secondary, #018786);border-color:#018786;border-color:var(--mdc-theme-secondary, #018786)}
.mdc-switch:not(.mdc-switch--checked) .mdc-switch__track{background-color:#000;background-color:var(--mdc-theme-on-surface, #000)}
.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb{background-color:#fff;background-color:var(--mdc-theme-surface, #fff);border-color:#fff;border-color:var(--mdc-theme-surface, #fff)}
.mdc-switch__native-control{left:0;right:initial;position:absolute;top:0;margin:0;opacity:0;cursor:pointer;pointer-events:auto;transition:transform 90ms cubic-bezier(0.4, 0, 0.2, 1)}
[dir=rtl] .mdc-switch__native-control,.mdc-switch__native-control[dir=rtl]{left:initial;right:0}
.mdc-switch__track{box-sizing:border-box;width:36px;height:14px;border:1px solid transparent;border-radius:7px;opacity:.38;transition:opacity 90ms cubic-bezier(0.4, 0, 0.2, 1),background-color 90ms cubic-bezier(0.4, 0, 0.2, 1),border-color 90ms cubic-bezier(0.4, 0, 0.2, 1)}
.mdc-switch__thumb-underlay{display:flex;position:absolute;align-items:center;justify-content:center;transform:translateX(0);transition:transform 90ms cubic-bezier(0.4, 0, 0.2, 1),background-color 90ms cubic-bezier(0.4, 0, 0.2, 1),border-color 90ms cubic-bezier(0.4, 0, 0.2, 1)}
.mdc-switch__thumb{box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0,0,0,.12);box-sizing:border-box;width:20px;height:20px;border:10px solid;border-radius:50%;pointer-events:none;z-index:1}
.mdc-switch--checked .mdc-switch__track{opacity:.54}
.mdc-switch--checked .mdc-switch__thumb-underlay{transform:translateX(16px)}
[dir=rtl] .mdc-switch--checked .mdc-switch__thumb-underlay,.mdc-switch--checked .mdc-switch__thumb-underlay[dir=rtl]{transform:translateX(-16px)}
.mdc-switch--checked .mdc-switch__native-control{transform:translateX(-16px)}
[dir=rtl] .mdc-switch--checked .mdc-switch__native-control,.mdc-switch--checked .mdc-switch__native-control[dir=rtl]{transform:translateX(16px)}
.mdc-switch--disabled{opacity:.38;pointer-events:none}
.mdc-switch--disabled .mdc-switch__thumb{border-width:1px}
.mdc-switch--disabled .mdc-switch__native-control{cursor:default;pointer-events:none}
@keyframes mdc-ripple-fg-radius-in{from{animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transform:translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1)}to{transform:translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))}}
@keyframes mdc-ripple-fg-opacity-in{from{animation-timing-function:linear;opacity:0}to{opacity:var(--mdc-ripple-fg-opacity, 0)}}
@keyframes mdc-ripple-fg-opacity-out{from{animation-timing-function:linear;opacity:var(--mdc-ripple-fg-opacity, 0)}to{opacity:0}}
.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay::before,.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay::after{background-color:#9e9e9e;background-color:var(--mdc-ripple-color, #9e9e9e)}
.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:hover::before,.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay.mdc-ripple-surface--hover::before{opacity:0.08;opacity:var(--mdc-ripple-hover-opacity, 0.08)}
.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay.mdc-ripple-upgraded--background-focused::before,.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):focus::before{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-focus-opacity, 0.24)}
.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded)::after{transition:opacity 150ms linear}
.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):active::after{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-press-opacity, 0.24)}
.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay.mdc-ripple-upgraded{--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24)}
.mdc-switch__thumb-underlay{--mdc-ripple-fg-size: 0;--mdc-ripple-left: 0;--mdc-ripple-top: 0;--mdc-ripple-fg-scale: 1;--mdc-ripple-fg-translate-end: 0;--mdc-ripple-fg-translate-start: 0;-webkit-tap-highlight-color:rgba(0,0,0,0);will-change:transform,opacity}
.mdc-switch__thumb-underlay::before,.mdc-switch__thumb-underlay::after{position:absolute;border-radius:50%;opacity:0;pointer-events:none;content:""}
.mdc-switch__thumb-underlay::before{transition:opacity 15ms linear,background-color 15ms linear;z-index:1;z-index:var(--mdc-ripple-z-index, 1)}
.mdc-switch__thumb-underlay::after{z-index:0;z-index:var(--mdc-ripple-z-index, 0)}
.mdc-switch__thumb-underlay.mdc-ripple-upgraded::before{transform:scale(var(--mdc-ripple-fg-scale, 1))}
.mdc-switch__thumb-underlay.mdc-ripple-upgraded::after{top:0;left:0;transform:scale(0);transform-origin:center center}
.mdc-switch__thumb-underlay.mdc-ripple-upgraded--unbounded::after{top:var(--mdc-ripple-top, 0);left:var(--mdc-ripple-left, 0)}
.mdc-switch__thumb-underlay.mdc-ripple-upgraded--foreground-activation::after{animation:mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards}
.mdc-switch__thumb-underlay.mdc-ripple-upgraded--foreground-deactivation::after{animation:mdc-ripple-fg-opacity-out 150ms;transform:translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))}
.mdc-switch__thumb-underlay::before,.mdc-switch__thumb-underlay::after{top:calc(50% - 50%);left:calc(50% - 50%);width:100%;height:100%}
.mdc-switch__thumb-underlay.mdc-ripple-upgraded::before,.mdc-switch__thumb-underlay.mdc-ripple-upgraded::after{top:var(--mdc-ripple-top, calc(50% - 50%));left:var(--mdc-ripple-left, calc(50% - 50%));width:var(--mdc-ripple-fg-size, 100%);height:var(--mdc-ripple-fg-size, 100%)}
.mdc-switch__thumb-underlay.mdc-ripple-upgraded::after{width:var(--mdc-ripple-fg-size, 100%);height:var(--mdc-ripple-fg-size, 100%)}
.mdc-switch__thumb-underlay::before,.mdc-switch__thumb-underlay::after{background-color:#018786;background-color:var(--mdc-ripple-color, var(--mdc-theme-secondary, #018786))}
.mdc-switch__thumb-underlay:hover::before,.mdc-switch__thumb-underlay.mdc-ripple-surface--hover::before{opacity:0.04;opacity:var(--mdc-ripple-hover-opacity, 0.04)}
.mdc-switch__thumb-underlay.mdc-ripple-upgraded--background-focused::before,.mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):focus::before{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-focus-opacity, 0.12)}
.mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded)::after{transition:opacity 150ms linear}
.mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):active::after{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-press-opacity, 0.12)}
.mdc-switch__thumb-underlay.mdc-ripple-upgraded{--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12)}
/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  margin: .67em 0;
  font-size: 2em;
}
mark {
  color: #000;
  background: #ff0;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  height: 0;
  box-sizing: content-box;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}
legend {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;

    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';

  src: url('../fonts/glyphicons-halflings-regular.eot');
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\002a";
}
.glyphicon-plus:before {
  content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 10px;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all .2s ease-in-out;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  box-shadow: none;
  opacity: .65;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: normal;
  color: #337ab7;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  transition: opacity .15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-timing-function: ease;
  transition-duration: .35s;
  transition-property: height, visibility;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.nav > li.disabled > a {
  color: #777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
.breadcrumb > .active {
  color: #777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border .2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}
.thumbnail .caption {
  padding: 9px;
  color: #333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  transition: width .6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #eee;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, .15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  transition:         transform .3s ease-out;
  transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
  box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;

  line-break: auto;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .2);

  line-break: auto;
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, .25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, .25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, .25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    transition:         transform .6s ease-in-out;
    backface-visibility: hidden;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: .5;
}
.carousel-control.left {
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.leaflet-top {
  top: inherit;
}
.leaflet-right {
  left: 36px !important;
  right: inherit;
}
.leaflet-top .leaflet-control {
  margin-top: 0px !important;
}
.leaflet-bottom .leaflet-control {
  margin-bottom: 0px !important;
}
.leaflet-left .leaflet-control {
  margin-left: 0px !important;
}
.leaflet-right .leaflet-control {
  margin-right: 0px !important;
}
.leaflet-container a {
  color: #A5D867 !important;
}
.leaflet-container a:hover {
  color: #7CA24D !important;
}
.leaflet-container img {
  outline: none;
}
.leaflet-container img.leaflet-tile {
  mix-blend-mode: normal;
}
.leaflet-bar {
  box-shadow: 0 1px 5px rgb(0, 0, 0) !important;
  border-radius: 0px !important;
}
.leaflet-bar a {
  border-bottom: 0px solid #ccc !important;
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
}
.leaflet-bar a:hover {
  border-bottom: 0px solid #ccc !important;
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
}
.leaflet-control-layers-toggle {
  background-position: initial !important;
}
.leaflet-bar a:hover {
  background-color: #DCDCDC !important;
}
.leaflet-bar a:first-child {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}
.leaflet-bar a:last-child {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.leaflet-control-zoom-in, .leaflet-control-zoom-out {
  font: bold 0px "Lucida Console", Monaco, monospace !important;
  background: #fff url("images/icon-control.png") no-repeat !important;
}
.leaflet-control-zoom-in {
  background-position: 0px 0px !important;
}
.leaflet-control-zoom-out {
  background-position: -36px 0px !important;
}
.leaflet-popup-content-wrapper {
  border-radius: initial !important;
}
.leaflet-popup-tip {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5) !important;
}
.leaflet-container a.leaflet-popup-close-button {
  height: 18px !important;
  font-size: 18px !important;
  line-height: 18px !important;
  font: initial !important;
  font-weight: initial !important;
}
.leaflet-container .leaflet-tooltip {
  font-size: 12px;
  line-height: 1.5;
}
.leaflet-popup.webgis-leaflet-popup .leaflet-popup-close-button {
  color: #FFFFFF !important;
}
.leaflet-popup.webgis-leaflet-popup .leaflet-popup-close-button:hover {
  color: #DCDCDC !important;
}
.leaflet-popup.webgis-leaflet-popup .leaflet-popup-content-wrapper {
  background-color: #0097BA;
  border-radius: 10px !important;
}
.leaflet-popup.webgis-leaflet-popup .leaflet-popup-tip {
  background-color: #0097BA;
}
.leaflet-google-mutant .gm-logo {
  pointer-events: auto !important;
  left: 76px !important;
  bottom: 36px !important;
}
.leaflet-google-mutant .gm-style-cc, .leaflet-google-mutant .gmnoprint {
  pointer-events: auto !important;
  bottom: 21px !important;
}
#splash {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 9000000000000;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-play-state: paused;
  font-family: Calibri, Arial, Sans-Serif;
}
#splash .background-image {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  background-color: rgb(236, 233, 233);
  transition: 0.45s opacity linear;
  opacity: 1;
}
#splash .background-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#splash .background-animation {
  position: absolute;
  background-image: linear-gradient(to right, rgba(236, 233, 233, 0) 46%, rgba(236, 233, 233, 0.35) 50%, rgba(236, 233, 233, 0) 54%);
  background-repeat: no-repeat;
  animation: backgroundAnimation 0.8s linear infinite;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  transition: 0.27s opacity linear;
}
#splash .scale h1 {
  position: absolute;
  left: calc(50vw - 345px + 26px);
  top: calc(50vh - 200px + 230px);
  font-size: 31px;
  font-weight: bold;
  line-height: 1.1;
  color: rgb(0, 0, 0);
}
#splash .scale img {
  position: absolute;
  left: calc(50vw - 345px);
  top: calc(50vh - 200px);
}
#splash .scale #messages {
  position: absolute;
  top: calc(50vh - 200px + 358px);
  width: 100vw;
  text-align: center;
  color: #ccc;
  font-size: 12pt;
  font-weight: bold;
  line-height: 1;
  opacity: 1;
  transition: opacity 0.3s linear;
}
body.no-webgl #splash .scale {
  background: url("images/no_webgl_earth.png") no-repeat center center;
}
body.no-webgl #splash .scale:after {
  content: ":(";
  margin: auto;
  position: fixed;
  right: calc(100vw - 50% - 137px);
  bottom: calc(100vh - 50% - 46px);
  font-family: Arial;
  font-weight: bold;
  font-size: 96pxsass;
}
.text-scale-bigger #splash .scale h1 {
  font-size: 34px;
}
.text-scale-biggest #splash .scale h1 {
  font-size: 39px;
}
#splash .scale .loading-ellipsis {
  position: absolute;
  width: 80px;
  height: 13px;
  right: 0;
  left: 0;
  margin: auto;
  top: calc(50vh - 200px + 380px);
}
#splash .scale .loading-ellipsis div {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ccc;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
#splash .scale .loading-ellipsis div:nth-child(1) {
  left: 8px;
  animation: loading-ellipsis1 0.6s infinite;
}
#splash .scale .loading-ellipsis div:nth-child(2) {
  left: 8px;
  animation: loading-ellipsis2 0.6s infinite;
}
#splash .scale .loading-ellipsis div:nth-child(3) {
  left: 32px;
  animation: loading-ellipsis2 0.6s infinite;
}
#splash .scale .loading-ellipsis div:nth-child(4) {
  left: 56px;
  animation: loading-ellipsis3 0.6s infinite;
}
#splash .scale .loading-progress {
  position: absolute;
  width: 80px;
  height: 13px;
  right: 0;
  left: 0;
  margin: auto;
  top: calc(50vh - 200px + 380px);
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 7px;
  transition: 0.3s opacity ease-out;
}
#splash .scale .loading-progress div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  margin: auto;
  height: 7px;
  background-color: #ccc;
  border-radius: 7px;
  transition: 0.3s width ease;
}
#splash .scale .loading-progress div:not(:first-child) {
  display: none;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1) and (max-width: 900px) {
  #splash .scale {
    transform: scale(0.8);
  }
  #splash .scale img {
    top: 50vh !important;
  }
  #splash .scale h1 {
    top: calc(50vh + 230px) !important;
  }
  #splash .scale #licencenotice, #splash .scale #configurationerror {
    left: calc(50vw - 345px + 26px);
    top: calc(50vh + 328px);
  }
  #splash .scale #nonproductionbutton {
    top: calc(50vh + 328px);
  }
  #splash .scale .loading-ellipsis, #splash .scale .loading-progress {
    top: calc(50vh + 380px);
  }
  #splash .scale #messages {
    top: calc(50vh + 358px);
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1) and (max-width: 650px) {
  #splash .scale {
    transform: scale(0.6);
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1) and (max-width: 450px) {
  #splash .scale {
    transform: scale(0.4);
  }
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) and (-webkit-min-device-pixel-ratio: 1) {
  #splash .scale {
    transform: scale(0.9);
  }
  #splash .scale img {
    left: 134px;
    top: 262px !important;
  }
  #splash .scale #licencenotice, #splash .scale #configurationerror {
    left: 215px;
    top: 567px;
  }
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape) and (-webkit-min-device-pixel-ratio: 1) {
  #splash .scale img {
    left: 262px;
    top: 134px !important;
  }
  #splash .scale #licencenotice, #splash .scale #configurationerror {
    left: 343px;
    top: 439px;
  }
}
@media all and (device-width: 320px) and (device-height: 480px) and (orientation:portrait) {
  #splash .scale {
    transform: scale(0.6);
  }
  #splash .scale img {
    left: -90px;
    top: -10px !important;
  }
  #splash .scale #licencenotice, #splash .scale #configurationerror {
    left: -9px;
    top: 295px;
  }
}
@media all and (device-width: 320px) and (device-height: 480px) and (orientation:landscape) {
  #splash .scale {
    transform: scale(0.7);
  }
  #splash .scale img {
    left: -10px;
    top: -30px !important;
  }
  #splash .scale #licencenotice, #splash .scale #configurationerror {
    left: 71px;
    top: 280px;
  }
}
#splash.hide-splash-elements .background-image,
#splash.hide-splash-elements .background-animation,
#splash.hide-splash-elements .scale #loading-indicator {
  opacity: 0;
}
@keyframes hide-splash-screen {
  0% {
    visibility: visible;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    z-index: 9000000000000;
  }
  45% {
    visibility: visible;
    background-color: rgba(255, 255, 255, 0);
    opacity: 1;
    z-index: 9000000000000;
  }
  75% {
    visibility: visible;
    background-color: rgba(255, 255, 255, 0);
    opacity: 1;
  }
  100% {
    visibility: hidden;
    background-color: rgba(255, 255, 255, 0);
    opacity: 0;
  }
}
@keyframes animation-hide {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
}
@keyframes loading-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loading-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes loading-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
@keyframes backgroundAnimation {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.about-window {
  cursor: pointer;
  animation-duration: 0.8s;
  background-color: rgba(0, 0, 0, 0.65) !important;
  background-image: none;
}
.about-window #licencenotice {
  top: calc(50vh - 200px + 315px);
  width: 500px;
  font-size: 8pt;
}
.about-window #versioninfo,
.about-window #copyrightnotice {
  display: block;
}
.about-window #messages {
  display: none;
}
.about-window .background-image {
  display: none;
}
.about-window .background-animation {
  display: none;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1) and (max-width: 900px) {
  .about-window #licencenotice {
    left: calc(50vw - 345px + 26px);
    top: calc(50vh + 323px);
  }
  .about-window #versioninfo {
    left: calc(50vw - 345px + 26px);
    top: calc(50vh + 298px);
  }
  .about-window #copyrightnotice {
    left: calc(50vw - 345px + 26px);
    top: calc(50vh + 349px);
  }
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .about-window #licencenotice {
    left: 215px;
    top: 582px;
  }
  .about-window #versioninfo {
    left: 215px;
    top: 567px;
  }
  .about-window #copyrightnotice {
    left: 215px;
    top: 621px;
  }
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape) and (-webkit-min-device-pixel-ratio: 1) {
  .about-window #licencenotice {
    left: 343px;
    top: 454px;
  }
  .about-window #versioninfo {
    left: 343px;
    top: 439px;
  }
  .about-window #copyrightnotice {
    left: 343px;
    top: 493px;
  }
}
@media all and (device-width: 320px) and (device-height: 480px) and (orientation:portrait) {
  .about-window #licencenotice {
    left: -9px;
    top: 310px;
  }
  .about-window #versioninfo {
    left: -9px;
    top: 295px;
    font-size: 7px;
  }
  .about-window #copyrightnotice {
    left: -9px;
    top: 349px;
    font-size: 5px;
  }
}
@media all and (device-width: 320px) and (device-height: 480px) and (orientation:landscape) {
  .about-window #licencenotice {
    left: 71px;
    top: 270px;
  }
  .about-window #versioninfo {
    left: 71px;
    top: 215px;
  }
  .about-window #copyrightnotice {
    left: 71px;
    top: 302px;
    font-size: 7px;
  }
}
@keyframes show-about-window {
  0% {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    z-index: -101;
  }
  45% {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 1;
    z-index: 9000000000001;
  }
  75% {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 1;
    z-index: 9000000000001;
  }
  100% {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 1;
    z-index: 9000000000001;
  }
}
@keyframes hide-about-window {
  0% {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 1;
    z-index: 9000000000000;
  }
  45% {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 1;
    z-index: 9000000000000;
  }
  75% {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 1;
    z-index: 9000000000000;
  }
  100% {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    z-index: -100;
  }
}
#react-livesearch .search-sources {
  background-color: white;
  width: calc(100% + 36px);
  max-width: calc(100% + 36px);
  padding: 16px;
  z-index: -2;
  box-shadow: 0px 1px 5px hsla(0, 0%, 0%, 0.5);
  display: none;
}
#react-livesearch .search-sources.shown {
  display: block;
}
#react-livesearch .search-sources > .group {
  display: grid;
  margin-bottom: 1em;
  grid-template-columns: 2fr 3fr;
}
#react-livesearch .search-sources .search-sources_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#react-livesearch .search-sources .search-sources_list * {
  margin: 0;
}
#react-livesearch .search-sources .search-sources_list .service-source_item {
  display: grid;
  padding: 4px;
  align-items: center;
  justify-content: space-around;
  grid-template-columns: 1fr 4fr;
  cursor: pointer;
  position: relative;
}
#react-livesearch .search-sources .search-sources_list .service-source_item::after {
  border-bottom: 2px solid #0096b8;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  opacity: 0;
  transform: scaleX(0);
  transition: 0.3s all ease-out;
}
#react-livesearch .search-sources .search-sources_list .service-source_item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
#react-livesearch.mobile_view .search-sources {
  width: 100%;
  grid-template: none;
  display: block;
}
#react-livesearch.mobile_view .search-sources .search-sources_label {
  margin-bottom: 1em;
}
#react-livesearch.mobile_view .search-sources .search-sources_list {
  gap: 0.75em;
  max-height: calc(50vh - 158.4px);
  overflow-y: auto;
  padding: 0 1em;
}
#react-livesearch.mobile_view .search-sources .service-source_item {
  padding: 0.5em;
  background-color: hsl(0, 0%, 93%);
  border: 1px solid hsla(0, 0%, 80%, 0.5);
}
.HighContrast #react-livesearch .search-sources {
  background-color: hsl(60, 100%, 50%);
}
.HighContrast #react-livesearch .search-sources_list .service-source_item {
  border: 2px solid black;
  background-color: hsl(60, 100%, 50%);
}
.HighContrast #react-livesearch .search-sources_list .service-source_item::after {
  display: none;
}
.text-scale-bigger #react-livesearch .search-sources {
  font-size: 18px;
}
.text-scale-biggest #react-livesearch .search-sources {
  font-size: 21px;
}
#react-livesearch .webgis-searchResult_list {
  position: absolute;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow-y: auto;
  gap: 0.1em;
  box-shadow: 0px 1px 5px hsla(0, 0%, 0%, 0.5);
  width: 100%;
  z-index: -3;
  align-items: center;
}
#react-livesearch .webgis-searchResult_list .template-component {
  width: 100%;
}
#react-livesearch .webgis-searchResult_item {
  display: flex;
  align-items: center;
  background-color: #E7E7E7;
  gap: 1em;
  width: 100%;
}
#react-livesearch .webgis-searchResult_item:hover {
  background-color: #FFF;
  cursor: pointer;
}
#react-livesearch .webgis-searchResult_item-icon {
  max-width: 3.4em;
  width: 100%;
  aspect-ratio: 1;
  background-color: #f9f9f9;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.5em;
  align-self: stretch;
}
#react-livesearch .webgis-searchResult_item-icon.icon-type_coordinates {
  background-image: url(images/searchicons/coords.svg);
}
#react-livesearch .webgis-searchResult_item-icon.icon-type_luws {
  background-image: url(images/searchicons/luws.svg);
}
#react-livesearch .webgis-searchResult_item-icon.icon-type_county {
  background-image: url(images/searchicons/county.png);
}
#react-livesearch .webgis-searchResult_item-icon.icon-type_cemetery {
  background-image: url(images/searchicons/cemetery.png);
}
#react-livesearch .webgis-searchResult_item-icon.icon-type_church {
  background-image: url(images/searchicons/church.png);
}
#react-livesearch .webgis-searchResult_item-icon.icon-type_city {
  background-image: url(images/searchicons/city.png);
}
#react-livesearch .webgis-searchResult_item-icon.icon-type_firestation {
  background-image: url(images/searchicons/firestation.png);
}
#react-livesearch .webgis-searchResult_item-icon.icon-type_lake {
  background-image: url(images/searchicons/lake.png);
}
#react-livesearch .webgis-searchResult_item-icon.icon-type_river {
  background-image: url(images/searchicons/river.png);
}
#react-livesearch .webgis-searchResult_item-icon.icon-type_road {
  background-image: url(images/searchicons/road.png);
}
#react-livesearch .webgis-searchResult_item-icon.icon-type_school {
  background-image: url(images/searchicons/school.png);
}
#react-livesearch .webgis-searchResult_item-icon.icon-type_state {
  background-image: url(images/searchicons/state.png);
}
#react-livesearch .webgis-searchResult_item-icon.icon-type_street {
  background-image: url(images/searchicons/street.png);
}
#react-livesearch .webgis-searchResult_item-icon.icon-type_interstate {
  background-image: url(images/searchicons/interstate.png);
}
#react-livesearch .webgis-searchResult_item-icon.icon-type_imagereference {
  background-image: url(images/searchicons/marker-icon.png);
}
#react-livesearch .webgis-searchResult_details {
  width: 100%;
  padding: 0.2em 0;
}
#react-livesearch .webgis-searchResult_title {
  color: hsl(191, 100%, 36%);
}
#react-livesearch .webgis-searchResult_title span {
  font-weight: 700;
}
#react-livesearch .webgis-searchResult_description {
  color: hsl(0, 0%, 47%);
}
#react-livesearch .webgis-searchResult_no-results {
  padding: 0.5em;
}
#react-livesearch.mobile_view .webgis-searchResult_list {
  width: 100%;
  max-height: calc(50vh - 79.2px);
  gap: 0.6em;
  padding: 0.8em;
  overflow-y: auto;
}
#react-livesearch.mobile_view .webgis-searchResult_item {
  border: 1px solid hsla(0, 0%, 80%, 0.5);
}
.HighContrast #react-livesearch .webgis-searchResult_list {
  background-color: black;
  gap: 4px;
}
.HighContrast #react-livesearch .webgis-searchResult_item {
  background-color: hsl(60, 100%, 50%);
}
.HighContrast #react-livesearch .webgis-searchResult_item-icon {
  background-color: white;
}
.HighContrast #react-livesearch .webgis-searchResult_title {
  color: black;
}
.HighContrast #react-livesearch .webgis-searchResult_description {
  color: black;
}
.HighContrast #react-livesearch .webgis-searchResult_no-results {
  font-weight: 700;
  color: hsl(60, 100%, 50%);
}
.text-scale-bigger #react-livesearch .webgis-searchResult_details {
  font-size: 18px;
}
.text-scale-bigger #react-livesearch .webgis-searchResult_no-results {
  font-size: 18px;
}
.text-scale-biggest #react-livesearch .webgis-searchResult_details {
  font-size: 21px;
}
.text-scale-biggest #react-livesearch .webgis-searchResult_no-results {
  font-size: 21px;
}
#react-livesearch .top-buttons {
  display: flex;
}
#react-livesearch .top-buttons > button {
  display: inline-flex;
  border: none;
  background: #0097BA;
  line-height: 2em;
  padding: 0 2em;
  color: white;
  font-weight: bold;
  border-bottom: 5px solid #87c5d4;
}
#react-livesearch .top-buttons > button:hover {
  background-color: #87c5d4;
}
#react-livesearch .top-buttons > button.active {
  background-color: #87c5d4;
  color: #067C99;
}
#react-livesearch .top-buttons > button:focus-visible, #react-livesearch .top-buttons > button:focus, #react-livesearch .top-buttons > button:active {
  outline: none;
}
#react-livesearch .top-buttons > button > .icon {
  width: 3rem;
  min-height: 1em;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: auto;
}
#react-livesearch:not(.mobile_view) {
  display: block;
  z-index: 5;
  position: fixed;
  left: 2%;
  top: 36px;
  overflow: visible;
  max-width: calc(100% - 107px);
}
#react-livesearch:not(.mobile_view) .searchBar {
  display: flex;
  align-items: center;
  overflow: visible;
  height: 36px;
  width: 36px;
  position: relative;
  box-shadow: 0px 1px 5px hsla(0, 0%, 0%, 0.5);
  transition: 0.3s all ease-out;
}
#react-livesearch:not(.mobile_view) .searchBar .searchBar_input {
  padding: 0;
  text-indent: 6px;
  font-size: 15px;
  height: 100%;
  width: 100%;
  border: none;
}
#react-livesearch:not(.mobile_view) .searchBar .searchButton {
  height: 100%;
  aspect-ratio: 1/1;
  border: none;
  font-size: 22px;
  color: white;
}
#react-livesearch:not(.mobile_view) .searchBar .searchButton:hover {
  filter: brightness(0.8);
}
#react-livesearch:not(.mobile_view) .searchBar .searchButton.search {
  background-color: #0097BA;
}
#react-livesearch:not(.mobile_view) .searchBar .searchButton.sources {
  background-color: #A5D867;
  position: absolute;
  z-index: -1;
  box-shadow: none;
  right: 0;
  transition: 0.3s all ease-out;
}
#react-livesearch:not(.mobile_view) .searchBar .searchButton.sources:hover {
  filter: none;
  background-color: #067C99;
}
#react-livesearch:not(.mobile_view) .searchBar .searchButton.sources.sources_active {
  transform: translateX(100%);
  background-color: #067C99;
}
#react-livesearch:not(.mobile_view):hover .searchBar .searchButton.sources {
  transform: translateX(100%);
  box-shadow: 0px 1px 5px hsla(0, 0%, 0%, 0.5);
}
#react-livesearch:not(.mobile_view).search_active .searchBar, #react-livesearch:not(.mobile_view):hover .searchBar {
  width: calc(252px + 36px);
}
#react-livesearch.with_top_buttons .searchBar {
  width: 100%;
  min-width: calc(252px + 36px);
}
#react-livesearch.with_top_buttons.search_active .searchBar, #react-livesearch.with_top_buttons:hover .searchBar {
  width: auto;
}
#react-livesearch.mobile_view {
  display: block;
  z-index: 5;
  position: fixed;
  justify-content: center;
  left: 2%;
  top: 36px;
  overflow: visible;
  width: 0%;
  transition: 0.3s all ease-out;
}
#react-livesearch.mobile_view .searchBar {
  height: 36px;
  display: flex;
  overflow: visible;
  position: relative;
  transition: 0.3s all ease-out;
}
#react-livesearch.mobile_view .searchBar .searchBar_input {
  padding: 0;
  width: 0;
  height: 100%;
  border: none;
  font-size: 15px;
  transition: 0.3s all ease-out;
}
#react-livesearch.mobile_view .searchBar .searchButton {
  height: 100%;
  aspect-ratio: 1/1;
  border: none;
  font-size: 22px;
  color: white;
  transition: 0.3s all ease-out;
}
#react-livesearch.mobile_view .searchBar .searchButton.search {
  background-color: #0097BA;
  box-shadow: 0px 1px 5px hsla(0, 0%, 0%, 0.5);
}
#react-livesearch.mobile_view .searchBar .searchButton.sources {
  background-color: #A5D867;
  box-shadow: none;
  z-index: -99;
  transform: translatex(-100%);
}
#react-livesearch.mobile_view .searchBar .searchButton.sources.sources_active {
  background-color: #067C99;
}
#react-livesearch.mobile_view.search_active, #react-livesearch.mobile_view.with_top_buttons {
  left: calc(100% - (100% - (2% + 45px)));
  width: calc(100% - (4% + 90px));
}
#react-livesearch.mobile_view.search_active .top-buttons, #react-livesearch.mobile_view.with_top_buttons .top-buttons {
  display: flex;
  flex-wrap: wrap;
}
#react-livesearch.mobile_view.search_active .top-buttons button, #react-livesearch.mobile_view.with_top_buttons .top-buttons button {
  flex-grow: 1;
}
#react-livesearch.mobile_view.search_active .searchBar, #react-livesearch.mobile_view.with_top_buttons .searchBar {
  width: 100%;
}
#react-livesearch.mobile_view.search_active .searchBar .searchBar_input, #react-livesearch.mobile_view.with_top_buttons .searchBar .searchBar_input {
  padding: 0 6px;
  width: 100%;
  box-shadow: 0px 1px 5px hsla(0, 0%, 0%, 0.5);
}
#react-livesearch.mobile_view.search_active .searchBar .searchButton.search, #react-livesearch.mobile_view.with_top_buttons .searchBar .searchButton.search {
  z-index: 1;
}
#react-livesearch.mobile_view.search_active .searchBar .searchButton.sources, #react-livesearch.mobile_view.with_top_buttons .searchBar .searchButton.sources {
  box-shadow: 0px 1px 5px hsla(0, 0%, 0%, 0.5);
  z-index: 0;
  transform: translatex(0);
}
.HighContrast #react-livesearch .searchBar .searchBar_input {
  background-color: black;
  color: hsl(60, 100%, 50%);
  font-weight: 700;
}
.HighContrast #react-livesearch .searchBar .searchButton {
  color: black;
}
.HighContrast #react-livesearch .searchBar .searchButton.search {
  background-color: hsl(60, 100%, 50%);
}
.HighContrast #react-livesearch .searchBar .searchButton.sources {
  background-color: hsl(60, 100%, 50%);
}
.HighContrast #react-livesearch .searchBar .searchButton.sources:hover, .HighContrast #react-livesearch .searchBar .searchButton.sources.sources_active {
  background-color: hsl(0, 0%, 0%);
  color: hsl(60, 100%, 50%);
}
.text-scale-bigger #react-livesearch .searchBar .searchBar_input {
  font-size: 18px;
}
.text-scale-biggest #react-livesearch .searchBar .searchBar_input {
  font-size: 21px;
}
@media print {
  #react-livesearch {
    display: none !important;
  }
}
#react-settings {
  color: hsl(0, 0%, 100%);
}
#react-settings label {
  margin: 0;
}
#react-settings .react_settings-row {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  min-height: 46px;
  justify-content: space-between;
}
#react-settings .react_settings-row:nth-child(odd) {
  background-color: hsl(193, 75%, 42%);
}
#react-settings .react_settings-row .full-clickable {
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}
.text-scale-bigger #react-settings .react_settings-row label {
  font-size: 18px;
}
.text-scale-bigger #react-settings .react_select-toggler_title, .text-scale-bigger #react-settings .react_select-dropdown {
  font-size: 1.2em;
}
.text-scale-biggest #react-settings .react_settings-row label {
  font-size: 21px;
}
.text-scale-biggest #react-settings .react_select-toggler_title, .text-scale-biggest #react-settings .react_select-dropdown {
  font-size: 1.3em;
}
.HighContrast #react-settings {
  color: #000;
}
.HighContrast #react-settings .react_settings-row:nth-child(odd) {
  background-color: #FFF;
}
.HighContrast #react-settings .react_settings-row:nth-child(even) {
  background-color: #FF0;
}
.HighContrast #react-settings .react_toggle-container input + .react_toggle-track {
  background-color: rgba(0, 0, 0, 0.34);
}
.HighContrast #react-settings .react_toggle-container input + .react_toggle-track .react_toggle-thumb {
  background-color: #ACACAC;
}
.HighContrast #react-settings .react_toggle-container input:checked + .react_toggle-track {
  background-color: rgba(0, 0, 0, 0.54);
}
.HighContrast #react-settings .react_toggle-container input:checked + .react_toggle-track .react_toggle-thumb {
  background-color: #000;
}
.react_select-container {
  position: relative;
}
.react_select-container .react_select-toggler {
  border: none;
  border-bottom: 1px solid hsla(0, 100%, 100%, 0.8);
  background-color: transparent;
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: white;
}
.react_select-container .react_select-toggler:before {
  content: "";
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  transform-origin: center;
  transform: scaleX(0);
  transition: 0.128s transform ease-out;
}
.react_select-container .react_select-toggler.opened:before {
  transform: scaleX(1);
}
.react_select-container .react_select-toggler.opened .react_select-toggler_icon:before {
  transform: rotateZ(0);
}
.react_select-container .react_select-toggler_icon {
  width: 10px;
  height: 20px;
  color: white;
}
.react_select-container .react_select-toggler_icon:before {
  content: "\e905";
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.128s transform ease-out;
  transform: rotateZ(-180deg);
}
.react_select-container .react_select-toggler_title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.react_select-dropdown {
  border-radius: 4px;
  padding: 6px;
  position: absolute;
  background-color: hsl(193, 54%, 51%);
  box-shadow: rgba(0, 0, 0, 0.42) 0px 3px 8px 1px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1000;
}
.react_select-option {
  padding: 4px 8px;
  background-color: hsl(193, 75%, 42%);
  cursor: pointer;
  color: white;
  position: relative;
  border-radius: 2px;
  transition: 0.3s color ease-out, 0.3s background-color ease-out;
}
.react_select-option:before {
  content: "";
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: white;
  position: absolute;
  transform-origin: center;
  transform: scaleX(0);
  transition: 0.3s transform ease-out;
}
.react_select-option:not(.selected):hover:before {
  transform: scaleX(1);
}
.react_select-option.selected {
  background-color: white;
  color: hsl(193, 75%, 42%);
}
.layer-dropdown_options-list li:has(.react_select-container):hover .react_select-container .react_select-toggler, .layer-dropdown_options-list li:has(.react_select-container):focus-visible .react_select-container .react_select-toggler {
  border-color: rgb(16, 129, 159);
  color: rgb(16, 129, 159);
}
.layer-dropdown_options-list li:has(.react_select-container):hover .react_select-container .react_select-toggler:before, .layer-dropdown_options-list li:has(.react_select-container):focus-visible .react_select-container .react_select-toggler:before {
  background-color: rgb(16, 129, 159);
}
.layer-dropdown_options-list li:has(.react_select-container):hover .react_select-container .react_select-toggler .react_select-toggler_icon, .layer-dropdown_options-list li:has(.react_select-container):focus-visible .react_select-container .react_select-toggler .react_select-toggler_icon {
  color: rgb(16, 129, 159);
}
.layer-dropdown_options-list li:has(.react_select-container):hover .react_select-container .react_select-toggler .react_select-toggler_title, .layer-dropdown_options-list li:has(.react_select-container):focus-visible .react_select-container .react_select-toggler .react_select-toggler_title {
  color: rgb(16, 129, 159);
}
.HighContrast .react_select-container .react_select-toggler {
  border-color: black;
}
.HighContrast .react_select-container .react_select-toggler::before {
  background-color: black;
}
.HighContrast .react_select-container .react_select-toggler_title {
  color: black;
}
.HighContrast .react_select-container .react_select-toggler_icon {
  color: black;
}
.HighContrast .react_select-dropdown {
  border: 1px solid black;
  background-color: #a6a6a6;
}
.HighContrast .react_select-dropdown .react_select-option {
  background-color: #a6a6a6;
  transition: 0s background-color;
}
.HighContrast .react_select-dropdown .react_select-option::before {
  transition: 0s transform;
}
.HighContrast .react_select-dropdown .react_select-option:hover {
  background-color: black;
}
.HighContrast .react_select-dropdown .react_select-option.selected {
  background-color: #ff0;
  color: black;
}
.HighContrast .layer-dropdown_options-list li:has(.react_select-container):hover .react_select-container .react_select-toggler, .HighContrast .layer-dropdown_options-list li:has(.react_select-container):focus-visible .react_select-container .react_select-toggler {
  border-color: black;
  color: black;
}
.HighContrast .layer-dropdown_options-list li:has(.react_select-container):hover .react_select-container .react_select-toggler:before, .HighContrast .layer-dropdown_options-list li:has(.react_select-container):focus-visible .react_select-container .react_select-toggler:before {
  background-color: black;
}
.HighContrast .layer-dropdown_options-list li:has(.react_select-container):hover .react_select-container .react_select-toggler .react_select-toggler_icon, .HighContrast .layer-dropdown_options-list li:has(.react_select-container):focus-visible .react_select-container .react_select-toggler .react_select-toggler_icon {
  color: black;
}
.HighContrast .layer-dropdown_options-list li:has(.react_select-container):hover .react_select-container .react_select-toggler .react_select-toggler_title, .HighContrast .layer-dropdown_options-list li:has(.react_select-container):focus-visible .react_select-container .react_select-toggler .react_select-toggler_title {
  color: black;
}
.react_toggle-container {
  padding: 6px;
  display: flex;
}
.react_toggle-container * {
  cursor: pointer;
}
.react_toggle-container input {
  display: none;
}
.react_toggle-container input + .react_toggle-track {
  width: 36px;
  height: 14px;
  border-radius: 14px;
  position: relative;
  background-color: hsla(39, 0%, 50%, 0.59);
  transition: 0.128s background-color ease-out;
}
.react_toggle-container input + .react_toggle-track .react_toggle-thumb {
  width: 20px;
  height: 20px;
  position: absolute;
  top: -3px;
  box-shadow: 0 2px 4px 1px gray;
  border-radius: 100%;
  background-color: hsl(0, 0%, 80%);
  left: 0;
  transition: 0.128s background-color ease-out, 0.128s left ease-out;
}
.react_toggle-container input:checked + .react_toggle-track {
  background-color: hsla(39, 0%, 100%, 0.59);
}
.react_toggle-container input:checked + .react_toggle-track .react_toggle-thumb {
  background-color: hsl(0, 0%, 100%);
  left: var(--left-checked, 100%);
}
.custom-input_container {
  min-width: 100px;
  border: 0;
  padding: 2px;
  display: flex;
  border: 0.2em solid transparent;
  align-items: center;
  position: relative;
  background-color: white;
  transition: 0.23s background-color;
  border-radius: 4px;
}
.custom-input_container input {
  width: 100%;
  border: none;
  color: #011222;
  background-color: transparent;
}
.custom-input_container input:focus, .custom-input_container input:focus-visible {
  border: none;
  outline: none;
}
.custom-input_container.disabled {
  background-color: rgb(226, 226, 226);
}
.custom-input_container .clear {
  transition: 0.23s background-color ease-in-out;
  cursor: pointer;
  margin-right: 2px;
  background-color: gray;
  height: 1.7em;
  width: 1.7em;
  -webkit-mask-size: 1.7em;
          mask-size: 1.7em;
}
.custom-input_container .clear:hover, .custom-input_container .clear:focus-visible {
  background-color: hsl(353, 100%, 62%);
}
.custom-input_container:focus-within::after, .custom-input_container.filled::after, .custom-input_container.withValue::after {
  transform: scaleX(1);
  opacity: 1;
}
.custom-input_container.error {
  border-color: hsl(353, 100%, 62%);
}
.custom-input_container.error .clear {
  fill: hsl(0, 61%, 20%);
}
.custom-input_container .error-message {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  color: rgb(255, 63, 86);
  border-top: 0.2em solid rgb(255, 63, 86);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  gap: 4px;
  font-size: 0.8em;
  width: 100%;
  padding: 2px 4px;
  background-color: hsla(0, 0%, 100%, 0.7);
  z-index: 1;
}
.custom-input_container .error-message .error-icon {
  width: 1.2em;
  height: 1.2em;
  -webkit-mask-size: 1.2em;
          mask-size: 1.2em;
  background-color: rgb(255, 63, 86);
  flex-shrink: 0;
}
.HighContrast .custom-input_container {
  background-color: black;
  color: yellow;
}
.HighContrast .custom-input_container.disabled {
  background-color: darkgray;
}
.HighContrast .custom-input_container input {
  color: yellow;
}
.HighContrast .custom-input_container .clear {
  background-color: red;
}
.HighContrast .custom-input_container .clear:hover {
  background-color: red;
}
.HighContrast .custom-input_container .error-message {
  background-color: black;
  color: yellow;
}
.HighContrast .custom-input_container .error-message .error-icon {
  background-color: yellow;
}
.text-scale-bigger .custom-input_container {
  font-size: 18px;
}
.text-scale-bigger .custom-input_container .error-message {
  font-size: 0.9em;
}
.text-scale-biggest .custom-input_container {
  font-size: 24px;
}
.text-scale-biggest .custom-input_container .error-message {
  font-size: 1em;
}
.svgIcon {
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.react_range-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1em;
  padding: 0.18em;
  height: 0.8em;
  border-radius: 1em;
  background-color: white;
  color: white;
  max-width: 100%;
  margin-left: auto;
  transition: 0.23s background-color ease-out;
}
.react_range-slider .react_slider-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
}
.react_range-slider .react_slider-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 2em;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer;
}
.react_range-slider .react_slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0;
  z-index: 3;
  position: relative;
}
.react_range-slider .react_slider-progress {
  width: 0;
  height: 0.5em;
  border-radius: 1em;
  background-color: #3fa8c6;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  pointer-events: none;
  transition-property: box-shadow;
  transition-duration: 0.2s;
  transition: 0.23s background-color ease-out;
}
.react_range-slider .react_slider-thumb {
  position: absolute;
  width: 1.4em;
  height: 1.4em;
  background: radial-gradient(circle, rgb(63, 168, 198) 0%, rgb(63, 168, 198) 45%, rgb(255, 255, 255) 55%, rgb(255, 255, 255) 100%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -0.5em;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  box-shadow: -1px 1px 3px rgba(31, 31, 31, 0.8156862745);
  transition: 0.23s background ease-out, 0.23s box-shadow ease-out;
}
.react_range-slider .react_slider-thumb .react_slider-value {
  padding: 4px 8px;
  border-radius: 4px;
  background-color: white;
  color: #10819f;
  box-shadow: 0px 2px 4px #1c1c1c;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.react_range-slider.disabled .react_slider-progress {
  background-color: gray;
}
.react_range-slider.disabled .react_slider-thumb {
  background: radial-gradient(circle, gray 0%, gray 45%, white 55%, white 100%);
}
.react_range-slider.disabled .react_slider-input {
  cursor: not-allowed;
}
.react_range-slider.disabled .react_slider-value {
  background-color: gray;
  color: black;
}
.react_range-slider:hover:not(.disabled) {
  background-color: #10819f;
}
.react_range-slider:hover:not(.disabled) .react_slider-progress {
  background-color: white;
}
.react_range-slider:hover:not(.disabled) .react_slider-thumb {
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 45%, rgb(16, 129, 159) 55%, rgb(16, 129, 159) 100%);
  box-shadow: -1px 1px 3px rgba(236, 236, 236, 0.9411764706);
}
.react_range-slider:hover:not(.disabled) .react_slider-thumb .react_slider-value {
  display: block;
}
.HighContrast .react_range-slider:not(.disabled) {
  background-color: black;
  transition: none;
  height: 1em;
}
.HighContrast .react_range-slider:not(.disabled) .react_slider-progress {
  background-color: yellow;
  transition: none;
}
.HighContrast .react_range-slider:not(.disabled) .react_slider-thumb {
  background: radial-gradient(circle, yellow 0%, yellow 45%, black 55%, black 100%);
  transition: none;
}
.HighContrast .react_range-slider:not(.disabled) .react_slider-value {
  background-color: yellow;
  color: black;
  transition: none;
}
.HighContrast .layer-dropdown_options-list:hover li .react_range-slider,
.HighContrast .react_range-slider:hover {
  background-color: black;
}
.HighContrast .layer-dropdown_options-list:hover li .react_range-slider .react_slider-progress,
.HighContrast .react_range-slider:hover .react_slider-progress {
  background-color: white;
}
.HighContrast .layer-dropdown_options-list:hover li .react_range-slider .react_slider-thumb,
.HighContrast .react_range-slider:hover .react_slider-thumb {
  background: radial-gradient(circle, white 0%, white 45%, black 55%, black 100%);
}
#react-legend-toolbar {
  position: absolute;
  bottom: 0;
  height: 25px;
  width: 100%;
  box-sizing: border-box;
  background-color: #3da7c5;
  border-top: 1px solid #10819F;
}
#legend-panel_react-container {
  margin-bottom: 0;
  margin-top: auto;
  flex-shrink: 0;
  color: white;
  display: flex;
}
#legend-panel_react-container:empty {
  height: 0;
}
#legend-panel_react-container .add_layer_panel-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
#legend-panel_react-container .add_layer_panel-container .add_layer_panel-resize-handle {
  position: absolute;
  background-color: hsl(193, 83%, 28%);
  width: 100%;
  height: 8px;
  top: 0;
  transform: translatey(-100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ns-resize;
  border-radius: 4px 4px 0 0;
}
#legend-panel_react-container .add_layer_panel-container .add_layer_panel-resize-handle:hover .svgIcon {
  background-color: white;
}
#legend-panel_react-container .add_layer_panel-container .add_layer_panel-resize-handle .svgIcon {
  background-color: lightgray;
  width: 20px;
  height: 20px;
  transform: rotatez(90deg);
  transition: 0.23s background-color ease-out;
}
#legend-panel_react-container .add_layer_panel-container .add_layer_panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  background-color: #10819F;
  font-size: 1.05em;
}
#legend-panel_react-container .add_layer_panel-container .add_layer_panel-title span {
  margin: 0;
}
#legend-panel_react-container .add_layer_panel-container .add-layer-window_container {
  overflow: hidden;
}
#legend-panel_react-container .add_layer_panel-container .add-layer-window_container {
  padding: 8px;
}
#legend-panel_react-container .add_layer_panel-container .add-layer_close-content {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
#legend-panel_react-container .add_layer_panel-container .add-layer_close-content .svgIcon {
  background-color: white;
  width: 16px;
  height: 16px;
}
#legend-panel_react-container .add_layer_panel-container .add-layer_close-content:hover .svgIcon {
  background-color: #baf2ff;
}
.layer-add-dropdown {
  top: 35px;
  margin-right: 16px;
}
.layer-add-dropdown .layer-dropdown_options-list {
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
}
.layer-add-dropdown .layer-dropdown_options-list li.button button {
  display: flex;
}
.layer-add-dropdown .layer-dropdown_options-list li.button button:hover,
.layer-add-dropdown .layer-dropdown_options-list li.button button:focus-visible,
.layer-add-dropdown .layer-dropdown_options-list li.button.active {
  color: #3da7c5;
  background-color: #FFF;
}
.layer-add-dropdown .layer-dropdown_options-list li.button button:hover .icon div,
.layer-add-dropdown .layer-dropdown_options-list li.button button:focus-visible .icon div,
.layer-add-dropdown .layer-dropdown_options-list li.button.active .icon div {
  background-color: #3da7c5;
}
.layer-add-dropdown .layer-dropdown_options-list .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  flex-shrink: 0;
}
.layer-add-dropdown .layer-dropdown_options-list .icon div {
  width: 1.2em;
  height: 1.2em;
  -webkit-mask-size: 1.2em;
          mask-size: 1.2em;
  background-color: white;
}
.layer-add-dropdown .layer-dropdown_options-list span {
  display: flex;
  height: 100%;
  align-items: center;
}
.HighContrast .layer-add-dropdow .layer-dropdown_options-list li.button.active {
  background-color: black;
}
.HighContrast .layer-add-dropdow .layer-dropdown_options-list li.button.active span {
  color: white;
}
.HighContrast .layer-add-dropdow .layer-dropdown_options-list li.button.active .icon div {
  background-color: yellow;
}
.HighContrast .layer-add-dropdow .layer-dropdown_options-list li.button.active:hover span, .HighContrast .layer-add-dropdow .layer-dropdown_options-list li.button.active:focus-visible span {
  color: black;
}
.HighContrast .layer-add-dropdow .layer-dropdown_options-list li.button .icon {
  background-color: transparent !important;
}
.HighContrast .layer-add-dropdow .layer-dropdown_options-list li.button .icon div {
  background-color: black;
}
.HighContrast .layer-add-dropdow .layer-dropdown_options-list li.button button:hover .icon div, .HighContrast .layer-add-dropdow .layer-dropdown_options-list li.button button:focus-visible .icon div {
  background-color: black;
}
.HighContrast #legend-panel_react-container {
  color: black;
}
.HighContrast #legend-panel_react-container .add_layer_panel-container .add_layer_panel-title {
  background-color: black;
  color: yellow;
}
.HighContrast #legend-panel_react-container .add_layer_panel-container .add_layer_panel-resize-handle {
  background-color: white;
  border-top: 1px solid black;
  border-radius: 0;
}
.HighContrast #legend-panel_react-container .add_layer_panel-container .add_layer_panel-resize-handle .svgIcon {
  background-color: black;
}
.HighContrast #legend-panel_react-container .add_layer_panel-container .add_layer_panel-resize-handle:hover .svgIcon {
  background-color: blue;
}
.HighContrast #legend-panel_react-container .add_layer_panel-container .add-layer_close-content .svgIcon {
  background-color: yellow;
}
.HighContrast #legend-panel_react-container .add_layer_panel-container .add-layer_close-content:hover .svgIcon {
  background-color: white;
}
.text-scale-bigger .layer-add-dropdow .layer-dropdown_options-list {
  font-size: 18px;
}
.text-scale-bigger .layer-add-dropdow .layer-dropdown_options-list li .icon {
  font-size: 28px;
}
.text-scale-biggest .layer-add-dropdow .layer-dropdown_options-list {
  font-size: 28px;
}
.text-scale-biggest .layer-add-dropdow .layer-dropdown_options-list li .icon {
  font-size: 42px;
}
#add-layer-window {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 10px;
  color: white;
  background-color: #3da7c5;
}
.add-layer-window_container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.add-layer-window_container .add-layer-window_service-settings {
  display: flex;
  gap: 8px;
  align-items: center;
}
.add-layer-window_container .add-layer-window_service-settings .add-layer-window_url-input {
  flex: 1;
}
.add-layer-window_container .add-layer-window_service-settings .add-layer-window_url-input input {
  width: 100%;
}
.add-layer-window_container .add-layer-window_grouping {
  display: flex;
  gap: 8px;
  align-items: center;
}
.add-layer-window_container .add-layer-window_grouping input {
  margin: 0;
}
.add-layer-window_container .add-layer-window_grouping input:first-child {
  flex: 1;
}
.add-layer-window_container .add-layer-window_submit_button {
  margin-top: 10px;
  padding: 6px 0;
  width: 100%;
  max-width: 100%;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.add-layer_btn {
  background-color: white;
  padding: 2px 8px;
  border-radius: 4px;
  border: none;
  color: hsl(193, 82%, 24%);
  overflow-wrap: break-word;
  font-weight: 700;
  text-wrap: wrap;
  transition: 0.23s background-color ease-out, 0.23s color ease-out;
}
.add-layer_btn:disabled {
  background-color: rgb(230, 230, 230);
  color: gray;
}
.add-layer_btn:not(:disabled):focus-visible, .add-layer_btn:not(:disabled):hover {
  background-color: hsl(193, 54%, 61%);
  color: white;
}
.loading-overflow {
  position: absolute;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  inset: 0;
  z-index: 1;
}
.loading-overflow.overflow-in {
  animation: overflowIn 0.3s forwards;
  animation-play-state: running;
}
.loading-overflow.overflow-out {
  animation: overflowOut 0.3s forwards;
  animation-play-state: running;
}
@keyframes overflowIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  1% {
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes overflowOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading-overflow .svgIcon {
  width: 50px;
  height: 50px;
  animation: spin 2.5s linear infinite;
  background-color: white;
}
.loading-overflow span {
  color: white;
  font-size: 1.2em;
}
label {
  font-weight: normal;
}
.section-start {
  display: inline-block;
  margin-top: 1.4em;
}
.selected-layers_container {
  display: flex;
  justify-content: space-between;
}
.selected-layers_container .right-side {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.layers-count {
  margin-left: auto;
  font-size: 0.85em;
  color: hsl(193, 54%, 51%);
  background: white;
  font-weight: 700;
  padding: 0 0.5em;
  border-radius: 0.2em;
  transition: 0.23s background-color, 0.23s color;
  cursor: default;
  height: 1.82em;
  display: flex;
  align-items: center;
}
.layers-count.disabled {
  color: gray;
  background-color: rgb(230, 230, 230);
}
.layers-section_container {
  overflow-x: hidden;
  overflow-y: hidden;
  flex-grow: 1;
  background-color: #FFF;
  border-radius: 4px;
}
.layers-section_container .svgIcon {
  width: 50px;
  height: 50px;
  animation: spin 2.5s linear infinite;
  background-color: black;
}
.layers-section_container .layers-section {
  min-height: 0;
  display: flex;
  flex-direction: column;
  border: 4px solid white;
  gap: 3px;
  overflow-y: auto;
  height: 100%;
}
.layers-section_container .layers-section.loading {
  align-items: center;
  justify-content: center;
}
.layers-section_container .layers-section .section {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 0.6em;
  margin: 0;
  padding: 0.3em 0.5em;
  border-bottom: none;
  box-sizing: border-box;
  height: 2.2em;
  cursor: pointer;
  flex-shrink: 0;
  background-color: #FFF;
  color: #011222;
  border-radius: 4px;
  background-color: hsl(192, 12%, 92%);
  position: relative;
}
.layers-section_container .layers-section .section:hover, .layers-section_container .layers-section .section:focus-visible {
  background-color: hsl(192, 12%, 86%);
}
.layers-section_container .layers-section .section:has(input:checked) {
  background-color: hsl(193, 54%, 61%);
  color: #FFF;
}
.layers-section_container .layers-section .section:has(input:checked):hover, .layers-section_container .layers-section .section:has(input:checked):focus-visible {
  background-color: hsl(193, 54%, 51%);
}
.layers-section_container .layers-section .section img {
  width: 2.4em;
  height: 1.7em;
}
.layers-section_container .layers-section .section input {
  margin: 0;
}
.layers-section_container .layers-section .section span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.HighContrast .layers-section_container .layers-section .section {
  background-color: lightgray;
  color: black;
}
.HighContrast .layers-section_container .layers-section .section:has(input:checked) {
  background-color: black;
  color: yellow;
}
.add-layer-window_url-input {
  position: relative;
}
.add-layer-window_saved-services-list_container {
  overflow-y: hidden;
  overflow-x: hidden;
  background-color: rgb(230, 230, 230);
  width: 100%;
  position: absolute;
  z-index: 6;
  border-radius: 4px;
}
.add-layer-window_saved-services-list_container .add-layer-window_saved-services-list {
  max-height: 10em;
  color: #011222;
  width: 100%;
  display: flex;
  border: 4px solid rgb(230, 230, 230);
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  gap: 3px;
}
.add-layer-window_saved-services-list_container .add-layer-window_saved-services-list .add-layer_saved-service {
  background-color: white;
  padding: 0.3em 0.5em;
  display: flex;
  align-items: center;
  gap: 0.3em;
  cursor: pointer;
  justify-content: space-between;
  position: relative;
  transition: 0.23s background-color ease-out;
  border-radius: 4px;
  flex-shrink: 0;
}
.add-layer-window_saved-services-list_container .add-layer-window_saved-services-list .add-layer_saved-service_details {
  display: flex;
  flex-direction: column;
  text-wrap: pretty;
  overflow-x: hidden;
}
.add-layer-window_saved-services-list_container .add-layer-window_saved-services-list .add-layer_saved-service_details .name {
  font-size: 0.9em;
}
.add-layer-window_saved-services-list_container .add-layer-window_saved-services-list .add-layer_saved-service_details .url {
  font-size: 0.7em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.add-layer-window_saved-services-list_container .add-layer-window_saved-services-list .add-layer_saved-service:hover, .add-layer-window_saved-services-list_container .add-layer-window_saved-services-list .add-layer_saved-service:focus-visible {
  background-color: #d1d1d1;
}
.add-layer-window_saved-services-list_container .add-layer-window_saved-services-list .add-layer_saved-service_remove {
  display: flex;
  align-items: center;
}
.add-layer-window_saved-services-list_container .add-layer-window_saved-services-list .add-layer_saved-service_remove .remove-icon {
  background-color: darkgray;
  width: 1.7em;
  height: 1.7em;
  -webkit-mask-size: 1.7em;
          mask-size: 1.7em;
  transition: 0.23s background-color ease-out;
}
.add-layer-window_saved-services-list_container .add-layer-window_saved-services-list .add-layer_saved-service_remove:hover .remove-icon {
  background-color: hsl(353, 100%, 62%);
}
.HighContrast .add-layer-window_saved-services-list_container .add-layer-window_saved-services-list .add-layer_saved-service {
  background-color: black;
  color: yellow;
}
.HighContrast .add-layer-window_saved-services-list_container .add-layer-window_saved-services-list .add-layer_saved-service_remove .remove-icon {
  background-color: red;
}
.HighContrast .add-layer-window_saved-services-list_container .add-layer-window_saved-services-list .add-layer_saved-service:hover, .HighContrast .add-layer-window_saved-services-list_container .add-layer-window_saved-services-list .add-layer_saved-service:focus-visible {
  color: black;
  background-color: white;
}
.check-container {
  background-color: white;
  border-radius: 0.2em;
  padding: 0.2em;
  border: none;
  transition: 0.23s background-color ease-out;
}
.check-container .toggle-selection {
  background-color: hsl(193, 54%, 51%);
  transition: 0.23s background-color ease-out;
  height: 1.14em;
  width: 1.14em;
  -webkit-mask-size: 1.14em;
          mask-size: 1.14em;
}
.check-container:disabled {
  background-color: rgb(230, 230, 230);
}
.check-container:disabled .toggle-selection {
  background-color: gray;
}
.check-container:not(:disabled):hover, .check-container:not(:disabled):focus-visible {
  background-color: hsl(193, 54%, 61%);
}
.check-container:not(:disabled):hover .toggle-selection, .check-container:not(:disabled):focus-visible .toggle-selection {
  background-color: white;
}
.HighContrast #add-layer-window {
  background-color: yellow;
  color: black;
}
.HighContrast .add-layer-window_container {
  background-color: yellow;
  color: black;
}
.HighContrast .add-layer-window_container .layers-count {
  background-color: black;
  color: yellow;
}
.HighContrast .add-layer-window_container .layers-count.disabled {
  background-color: gray;
  color: white;
}
.HighContrast .add-layer-window_container .check-container {
  background-color: black;
}
.HighContrast .add-layer-window_container .check-container .toggle-selection {
  background-color: yellow;
}
.HighContrast .add-layer-window_container .check-container:hover {
  background-color: white;
}
.HighContrast .add-layer-window_container .check-container:hover .toggle-selection {
  background-color: black;
}
.HighContrast .add-layer-window_container .check-container:disabled {
  background-color: gray;
}
.HighContrast .add-layer-window_container .check-container:disabled .toggle-selection {
  background-color: white;
}
.HighContrast .add-layer-window_container .add-layer_btn {
  background-color: black;
  color: yellow;
}
.HighContrast .add-layer-window_container .add-layer_btn:hover, .HighContrast .add-layer-window_container .add-layer_btn:focus-visible {
  background-color: white;
  color: black;
}
.HighContrast .add-layer-window_container .layers-section_container {
  background-color: white;
}
.HighContrast .add-layer-window_container .layers-section_container .layers-section {
  border-color: white;
}
.HighContrast .add-layer-window_container .add-layer-window_saved-services-list_container {
  background-color: yellow;
  outline: 2px solid black;
}
.HighContrast .add-layer-window_container .add-layer-window_saved-services-list_container .add-layer-window_saved-services-list {
  border-color: yellow;
}
.text-scale-bigger .add-layer-window_container {
  font-size: 18px;
}
.text-scale-bigger .add-layer-window_container .section-start {
  margin-top: 2em;
}
.text-scale-biggest .add-layer-window_container {
  font-size: 24px;
}
.text-scale-biggest .add-layer-window_container .section-start {
  margin-top: 2em;
}
.add-layer_tooltip {
  position: absolute;
  padding: 4px;
  border-radius: 3px;
  background-color: rgb(6, 124, 153);
  z-index: 999999;
}
.x-css-shadow {
  border-radius: 0px !important;
}
.x-panel-ghost {
  background-color: #f4ede3 !important;
  border-radius: 0px !important;
  box-shadow: initial !important;
}
.x-panel-ghost .x-tool {
  display: none;
}
.x-panel-ghost .x-panel-header {
  background: #d96363 !important;
}
.x-panel-ghost .x-panel-header-text-container {
  font-weight: normal !important;
  color: #f4ede3 !important;
  line-height: 36px;
}
.x-panel-ghost .x-panel-body {
  background: #f4ede3 !important;
}
.x-tip {
  border-color: #d96363 !important;
  color: #53433b !important;
  background-color: #f4ede3 !important;
}
.x-border-box {
  box-sizing: border-box;
}
.x-border-box * {
  box-sizing: border-box;
}
.x-clear {
  overflow: hidden;
  clear: both;
  font-size: 0;
  line-height: 0;
  display: table;
}
.x-strict .x-ie7 .x-clear {
  height: 0;
  width: 0;
}
.x-layer {
  position: absolute !important;
  overflow: hidden;
  zoom: 1;
}
.x-hidden, .x-hide-offsets {
  display: block !important;
  visibility: hidden !important;
  position: absolute !important;
  top: -10000px !important;
}
.x-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: default;
}
.x-selectable {
  cursor: auto;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
.x-list-plain {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.x-css-shadow {
  position: absolute;
  border-radius: 5px;
  display: none !important;
}
.x-item-disabled {
  cursor: default;
}
.x-item-disabled * {
  cursor: default;
}
.x-box-item {
  position: absolute !important;
  left: 0;
  top: 0;
}
.x-mask {
  z-index: 100;
  position: absolute;
  width: 100%;
  height: 100%;
  zoom: 1;
}
.x-mask-shim {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.x-mask-msg {
  z-index: 20001;
  position: absolute;
}
.x-box-layout-ct {
  overflow: hidden;
  zoom: 1;
}
.x-box-inner {
  overflow: hidden;
  zoom: 1;
  position: relative;
  left: 0;
  top: 0;
}
.x-horizontal-box-overflow-body {
  float: left;
}
.x-header-icon {
  background-repeat: no-repeat;
  background-position: 0 0;
  vertical-align: middle;
  text-align: center;
}
.x-header-text-container {
  overflow: hidden;
  text-overflow: ellipsis;
}
.x-dd-drag-proxy, .x-dd-drag-current {
  z-index: 1000000 !important;
  pointer-events: none;
}
.x-dd-drag-repair .x-dd-drag-ghost {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
}
.x-dd-drag-repair .x-dd-drop-icon {
  display: none;
}
.x-dd-drag-ghost {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  opacity: 0.85;
  padding: 5px;
  padding-left: 20px;
  white-space: nowrap;
  color: black;
  font: normal 11px Arial, helvetica, sans-serif;
  border: 1px solid;
  border-color: #dddddd #bbbbbb #bbbbbb #dddddd;
  background-color: white;
}
.x-dd-drop-icon {
  position: absolute;
  top: 3px;
  left: 3px;
  display: block;
  width: 16px;
  height: 16px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.x-dd-drop-ok .x-dd-drop-icon {
  background-image: url(images/dd/drop-yes.gif);
}
.x-dd-drop-ok-add .x-dd-drop-icon {
  background-image: url(images/dd/drop-add.gif);
}
.x-dd-drop-nodrop div.x-dd-drop-icon {
  background-image: url(images/dd/drop-no.gif);
}
.x-docked {
  z-index: 1;
}
.x-docked-vertical {
  position: static;
}
.x-docked-top {
  border-bottom-width: 0 !important;
}
.x-docked-bottom {
  border-top-width: 0 !important;
}
.x-docked-left {
  border-right-width: 0 !important;
}
.x-docked-right {
  border-left-width: 0 !important;
}
.x-docked-noborder-top {
  border-top-width: 0 !important;
}
.x-docked-noborder-right {
  border-right-width: 0 !important;
}
.x-docked-noborder-bottom {
  border-bottom-width: 0 !important;
}
.x-docked-noborder-left, .x-noborder-l {
  border-left-width: 0 !important;
}
.x-panel, .x-plain {
  overflow: hidden;
  position: relative;
}
.x-panel {
  outline: none;
}
.x-ie .x-panel-header, .x-ie .x-panel-header-tl, .x-ie .x-panel-header-tc, .x-ie .x-panel-header-tr, .x-ie .x-panel-header-ml, .x-ie .x-panel-header-mc, .x-ie .x-panel-header-mr, .x-ie .x-panel-header-bl, .x-ie .x-panel-header-bc, .x-ie .x-panel-header-br {
  zoom: 1;
}
.x-panel-body {
  overflow: hidden;
}
.x-nlg .x-panel-header-vertical .x-frame-mc {
  background-repeat: repeat-y;
}
.x-panel-header-plain, .x-panel-body-plain {
  border: 0;
  padding: 0;
}
.x-tip {
  position: absolute;
  overflow: visible;
}
.x-tip-body {
  overflow: hidden;
  position: relative;
}
.x-tip-anchor {
  position: absolute;
  overflow: hidden;
  border-style: solid;
}
.x-window {
  outline: none;
  overflow: hidden;
}
.x-window .x-window-wrap {
  position: relative;
}
.x-window-body {
  position: relative;
  overflow: hidden;
}
.x-window-body-plain {
  background: transparent;
}
.x-form-item-label {
  display: block;
}
.x-form-item-label-right {
  text-align: right;
}
.x-form-item-label-top {
  display: block;
  zoom: 1;
}
.x-form-cb-wrap {
  vertical-align: top;
}
.x-form-cb {
  vertical-align: top;
  overflow: hidden;
  padding: 0;
  border: 0;
}
.x-form-cb::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.x-form-cb-label {
  display: inline-block;
  zoom: 1;
}
.x-form-trigger {
  cursor: pointer;
  overflow: hidden;
  background-repeat: no-repeat;
}
.x-item-disabled .x-form-trigger, .x-trigger-noedit {
  cursor: default;
}
.x-form-trigger-wrap {
  vertical-align: top;
  border-collapse: separate;
}
.x-column {
  float: left;
}
.x-ie6 .x-column {
  display: inline;
}
.x-quirks .x-ie .x-form-layout-table {
  position: relative;
}
.x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item {
  position: relative;
}
.x-slider {
  outline: none;
  zoom: 1;
  position: relative;
}
.x-slider-inner {
  position: relative;
  left: 0;
  top: 0;
  overflow: visible;
  zoom: 1;
}
.x-slider-vert .x-slider-inner {
  background: repeat-y 0 0;
}
.x-slider-end {
  zoom: 1;
}
.x-slider-thumb {
  position: absolute;
  background: no-repeat 0 0;
}
.x-slider-horz .x-slider-thumb {
  left: 0;
}
.x-slider-vert .x-slider-thumb {
  bottom: 0;
}
.x-animating-size, .x-collapsed {
  overflow: hidden !important;
}
.x-mask {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  background: #cccccc;
}
.x-mask-msg {
  padding: 2px;
  border-style: solid;
  border-width: 1px;
  border-color: #99bce8;
  background-image: none;
  background-color: #dfe9f6;
}
.x-mask-msg-inner {
  padding: 0 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #a3bad9;
  background-color: #eeeeee;
  color: #222222;
  font: normal 11px Arial, helvetica, sans-serif;
}
.x-mask-msg-text {
  padding: 5px 5px 5px 20px;
  background-image: url(images/grid/loading.gif);
  background-repeat: no-repeat;
  background-position: 0 center;
}
.x-header-draggable .x-header-body, .x-header-ghost {
  cursor: move;
}
.x-header-text {
  white-space: nowrap;
}
.x-panel-ghost {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
  opacity: 0.65;
}
.x-panel-default {
  border-color: #99bce8;
  padding: 0;
}
.x-panel-header-default {
  font-size: 11px;
  border: 1px solid #99bce8;
}
.x-panel-header-default-horizontal {
  padding: 4px 5px 4px 5px;
}
.x-panel-header-default-horizontal-noborder {
  padding: 5px 6px 4px 6px;
}
.x-panel-header-default-vertical {
  padding: 5px 4px 5px 4px;
}
.x-panel-header-default-vertical-noborder {
  padding: 6px 5px 6px 4px;
}
.x-panel-header-text-container-default {
  color: #04408c;
  font-size: 11px;
  font-weight: bold;
  font-family: Arial, helvetica, sans-serif;
  line-height: 15px;
  padding: 0 2px 1px;
  text-transform: none;
}
.x-panel-body-default {
  border-color: #99bce8;
  color: black;
  font-size: 12px;
  font-size: normal;
  border-width: 1px;
  border-style: solid;
}
.x-panel-header-default {
  background-image: none;
  background-color: #cbddf3;
  background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
}
.x-panel-header-default-vertical {
  background-image: none;
  background-color: #cbddf3;
  background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
}
.x-nlg .x-panel-header-default-top {
  background: url(images/panel-header/panel-header-default-top-bg.gif);
}
.x-nlg .x-panel-header-default-bottom {
  background: url(images/panel-header/panel-header-default-bottom-bg.gif);
}
.x-nlg .x-panel-header-default-left {
  background: url(images/panel-header/panel-header-default-left-bg.gif) top right;
}
.x-nlg .x-panel-header-default-right {
  background: url(images/panel-header/panel-header-default-right-bg.gif) top right;
}
.x-panel .x-panel-header-default-collapsed-border-top {
  border-bottom-width: 1px !important;
}
.x-panel .x-panel-header-default-collapsed-border-right {
  border-left-width: 1px !important;
}
.x-panel .x-panel-header-default-collapsed-border-bottom {
  border-top-width: 1px !important;
}
.x-panel .x-panel-header-default-collapsed-border-left {
  border-right-width: 1px !important;
}
.x-panel-header-default-top:after {
  display: none;
  content: "x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom";
}
.x-panel-header-default-bottom:after {
  display: none;
  content: "x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom";
}
.x-panel-header-default-left:after {
  display: none;
  content: "x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), stretch:left";
}
.x-panel-header-default-right:after {
  display: none;
  content: "x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), stretch:left";
}
.x-panel-header-default-vertical .x-panel-header-text-container {
  transform: rotate(90deg);
  transform-origin: 0 0;
}
.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container {
  background-color: #cbddf3;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3);
}
.x-panel-header-default-top {
  box-shadow: #f3f7fb 0 1px 0px 0 inset;
}
.x-panel-header-default-right {
  box-shadow: #f3f7fb -1px 0 0px 0 inset;
}
.x-panel-header-default-bottom {
  box-shadow: #f3f7fb 0 -1px 0px 0 inset;
}
.x-panel-header-default-left {
  box-shadow: #f3f7fb 1px 0 0px 0 inset;
}
.x-panel-header-default .x-panel-header-icon {
  width: 16px;
  height: 20px;
  background-position: center center;
}
.x-panel-header-default .x-panel-header-glyph {
  color: #04408c;
  font-size: 16px;
  line-height: 16px;
  opacity: 0.5;
}
.x-ie8m .x-panel-header-default .x-panel-header-glyph {
  color: #678ebf;
}
.x-panel-header-default-horizontal .x-panel-header-icon-before-title {
  margin: 0 2px 0 0;
}
.x-panel-header-default-horizontal .x-panel-header-icon-after-title {
  margin: 0 0 0 2px;
}
.x-panel-header-default-vertical .x-panel-header-icon-before-title {
  margin: 0 0 2px 0;
}
.x-panel-header-default-vertical .x-panel-header-icon-after-title {
  margin: 2px 0 0 0;
}
.x-panel-header-default-horizontal .x-tool-after-title {
  margin: 0 0 0 2px;
}
.x-panel-header-default-horizontal .x-tool-before-title {
  margin: 0 2px 0 0;
}
.x-panel-header-default-vertical .x-tool-after-title {
  margin: 2px 0 0 0;
}
.x-panel-header-default-vertical .x-tool-before-title {
  margin: 0 0 2px 0;
}
.x-panel-default-resizable .x-panel-handle {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.x-panel-header-default-framed {
  font-size: 11px;
  border: 1px solid #99bce8;
}
.x-panel-header-default-framed-horizontal {
  padding: 4px 5px 4px 5px;
}
.x-panel-header-default-framed-horizontal-noborder {
  padding: 5px 6px 4px 6px;
}
.x-panel-header-default-framed-vertical {
  padding: 5px 4px 5px 4px;
}
.x-panel-header-default-framed-vertical-noborder {
  padding: 6px 5px 6px 4px;
}
.x-panel-header-text-container-default-framed {
  font-size: 12px;
  line-height: 15px;
  padding: 0px 0px;
  text-transform: none;
}
.x-panel-body-default-framed {
  background: #dfe9f6;
  border-color: #99bce8;
  color: black;
  font-size: 12px;
  font-size: normal;
  border-width: 0;
  border-style: solid;
}
.x-panel-default-framed {
  padding: 0px 0px;
  border-width: 0px;
  border-style: solid;
}
.x-panel-default-framed-mc {
  background-color: #dfe9f6;
}
.x-nbr .x-panel-default-framed {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
body.x-nbr .x-panel-default-framed-frameInfo {
  font-family: dh-4-4-4-4-1-1-1-1-4-4-4-4;
}
.x-panel-default-framed-tl {
  background-position: 0 -8px;
}
.x-panel-default-framed-tr {
  background-position: right -12px;
}
.x-panel-default-framed-bl {
  background-position: 0 -16px;
}
.x-panel-default-framed-br {
  background-position: right -20px;
}
.x-panel-default-framed-ml {
  background-position: 0 top;
}
.x-panel-default-framed-mr {
  background-position: right top;
}
.x-panel-default-framed-tc {
  background-position: 0 0;
}
.x-panel-default-framed-bc {
  background-position: 0 -4px;
}
.x-panel-default-framed-tr, .x-panel-default-framed-br, .x-panel-default-framed-mr {
  padding-right: 4px;
}
.x-panel-default-framed-tl, .x-panel-default-framed-bl, .x-panel-default-framed-ml {
  padding-left: 4px;
}
.x-panel-default-framed-tc, .x-panel-default-framed-bc {
  height: 4px;
}
.x-panel-default-framed-tl, .x-panel-default-framed-bl, .x-panel-default-framed-tr, .x-panel-default-framed-br, .x-panel-default-framed-tc, .x-panel-default-framed-bc, .x-panel-default-framed-ml, .x-panel-default-framed-mr {
  zoom: 1;
  background-image: url(images/panel/panel-default-framed-corners.gif);
}
.x-panel-default-framed-ml, .x-panel-default-framed-mr {
  zoom: 1;
  background-image: url(images/panel/panel-default-framed-sides.gif);
  background-repeat: repeat-y;
}
.x-panel-default-framed-mc {
  padding: 1px 1px 1px 1px;
}
.x-strict .x-ie7 .x-panel-default-framed-tl, .x-strict .x-ie7 .x-panel-default-framed-bl {
  position: relative;
  right: 0;
}
.x-panel-default-framed:after {
  display: none;
  content: "x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)";
}
.x-panel-header-default-framed-top {
  padding: 0px 12px 0px 12px;
}
.x-panel-header-default-framed-top-mc {
  background-image: url(images/panel-header/panel-header-default-framed-top-fbg.gif);
  background-position: 0 top;
  background-color: #cbddf3;
}
.x-nlg .x-panel-header-default-framed-top {
  background-image: url(images/panel-header/panel-header-default-framed-top-bg.gif);
  background-position: 0 top;
}
.x-nbr .x-panel-header-default-framed-top {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
body.x-nbr .x-panel-header-default-framed-top-frameInfo {
  font-family: dh-4-4-0-0-1-1-0-1-4-5-4-5;
}
.x-panel-header-default-framed-top-tl {
  background-position: 0 -8px;
}
.x-panel-header-default-framed-top-tr {
  background-position: right -12px;
}
.x-panel-header-default-framed-top-bl {
  background-position: 0 -16px;
}
.x-panel-header-default-framed-top-br {
  background-position: right -20px;
}
.x-panel-header-default-framed-top-ml {
  background-position: 0 top;
}
.x-panel-header-default-framed-top-mr {
  background-position: right top;
}
.x-panel-header-default-framed-top-tc {
  background-position: 0 0;
}
.x-panel-header-default-framed-top-bc {
  background-position: 0 -4px;
}
.x-panel-header-default-framed-top-tr, .x-panel-header-default-framed-top-br, .x-panel-header-default-framed-top-mr {
  padding-right: 4px;
}
.x-panel-header-default-framed-top-tl, .x-panel-header-default-framed-top-bl, .x-panel-header-default-framed-top-ml {
  padding-left: 4px;
}
.x-panel-header-default-framed-top-tc {
  height: 4px;
}
.x-panel-header-default-framed-top-bc {
  height: 0;
}
.x-panel-header-default-framed-top-tl, .x-panel-header-default-framed-top-bl, .x-panel-header-default-framed-top-tr, .x-panel-header-default-framed-top-br, .x-panel-header-default-framed-top-tc, .x-panel-header-default-framed-top-bc, .x-panel-header-default-framed-top-ml, .x-panel-header-default-framed-top-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-top-corners.gif);
}
.x-panel-header-default-framed-top-ml, .x-panel-header-default-framed-top-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-top-sides.gif);
}
.x-panel-header-default-framed-top-mc {
  padding: 1px 2px 4px 2px;
}
.x-strict .x-ie7 .x-panel-header-default-framed-top-tl, .x-strict .x-ie7 .x-panel-header-default-framed-top-bl {
  position: relative;
  right: 0;
}
.x-panel-header-default-framed-top:after {
  display: none;
  content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)";
}
.x-panel-header-default-framed-right {
  border-top-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 0;
  padding: 5px 4px 5px 4px;
  border-width: 1px 1px 1px 0;
  border-style: solid;
  background-image: none;
  background-color: #cbddf3;
  background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
}
.x-panel-header-default-framed-right-mc {
  background-image: url(images/panel-header/panel-header-default-framed-right-fbg.gif);
  background-position: right 0;
  background-color: #cbddf3;
}
.x-nlg .x-panel-header-default-framed-right {
  background-image: url(images/panel-header/panel-header-default-framed-right-bg.gif);
  background-position: right 0;
}
.x-nbr .x-panel-header-default-framed-right {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
body.x-nbr .x-panel-header-default-framed-right-frameInfo {
  font-family: dv-0-4-4-0-1-1-1-0-5-4-5-4;
}
.x-panel-header-default-framed-right-tl {
  background-position: 0 0;
}
.x-panel-header-default-framed-right-tr {
  background-position: 0 -4px;
}
.x-panel-header-default-framed-right-bl {
  background-position: 0 -8px;
}
.x-panel-header-default-framed-right-br {
  background-position: 0 -12px;
}
.x-panel-header-default-framed-right-ml {
  background-position: -4px 0;
}
.x-panel-header-default-framed-right-mr, .x-panel-header-default-framed-right-tc {
  background-position: right 0;
}
.x-panel-header-default-framed-right-bc {
  background-position: right -4px;
}
.x-panel-header-default-framed-right-tr, .x-panel-header-default-framed-right-br, .x-panel-header-default-framed-right-mr {
  padding-right: 4px;
}
.x-panel-header-default-framed-right-tl, .x-panel-header-default-framed-right-bl, .x-panel-header-default-framed-right-ml {
  padding-left: 0;
}
.x-panel-header-default-framed-right-tc, .x-panel-header-default-framed-right-bc {
  height: 4px;
}
.x-panel-header-default-framed-right-tl, .x-panel-header-default-framed-right-bl, .x-panel-header-default-framed-right-tr, .x-panel-header-default-framed-right-br, .x-panel-header-default-framed-right-tc, .x-panel-header-default-framed-right-bc, .x-panel-header-default-framed-right-ml, .x-panel-header-default-framed-right-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-right-corners.gif);
}
.x-panel-header-default-framed-right-tc, .x-panel-header-default-framed-right-bc {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-right-sides.gif);
  background-repeat: repeat-x;
}
.x-panel-header-default-framed-right-mc {
  padding: 2px 1px 2px 4px;
}
.x-strict .x-ie7 .x-panel-header-default-framed-right-tl, .x-strict .x-ie7 .x-panel-header-default-framed-right-bl {
  position: relative;
  right: 0;
}
.x-panel-header-default-framed-right:after {
  display: none;
  content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif)";
}
.x-panel-header-default-framed-bottom {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 4px 5px 4px 5px;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  background-image: none;
  background-color: #cbddf3;
  background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
}
.x-panel-header-default-framed-bottom-mc {
  background-image: url(images/panel-header/panel-header-default-framed-bottom-fbg.gif);
  background-position: 0 bottom;
  background-color: #cbddf3;
}
.x-nlg .x-panel-header-default-framed-bottom {
  background-image: url(images/panel-header/panel-header-default-framed-bottom-bg.gif);
  background-position: 0 bottom;
}
.x-nbr .x-panel-header-default-framed-bottom {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
body.x-nbr .x-panel-header-default-framed-bottom-frameInfo {
  font-family: dh-0-0-4-4-0-1-1-1-4-5-4-5;
}
.x-panel-header-default-framed-bottom-tl {
  background-position: 0 -8px;
}
.x-panel-header-default-framed-bottom-tr {
  background-position: right -12px;
}
.x-panel-header-default-framed-bottom-bl {
  background-position: 0 -16px;
}
.x-panel-header-default-framed-bottom-br {
  background-position: right -20px;
}
.x-panel-header-default-framed-bottom-ml {
  background-position: 0 bottom;
}
.x-panel-header-default-framed-bottom-mr {
  background-position: right bottom;
}
.x-panel-header-default-framed-bottom-tc {
  background-position: 0 0;
}
.x-panel-header-default-framed-bottom-bc {
  background-position: 0 -4px;
}
.x-panel-header-default-framed-bottom-tr, .x-panel-header-default-framed-bottom-br, .x-panel-header-default-framed-bottom-mr {
  padding-right: 4px;
}
.x-panel-header-default-framed-bottom-tl, .x-panel-header-default-framed-bottom-bl, .x-panel-header-default-framed-bottom-ml {
  padding-left: 4px;
}
.x-panel-header-default-framed-bottom-tc {
  height: 0;
}
.x-panel-header-default-framed-bottom-bc {
  height: 4px;
}
.x-panel-header-default-framed-bottom-tl, .x-panel-header-default-framed-bottom-bl, .x-panel-header-default-framed-bottom-tr, .x-panel-header-default-framed-bottom-br, .x-panel-header-default-framed-bottom-tc, .x-panel-header-default-framed-bottom-bc, .x-panel-header-default-framed-bottom-ml, .x-panel-header-default-framed-bottom-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-bottom-corners.gif);
}
.x-panel-header-default-framed-bottom-ml, .x-panel-header-default-framed-bottom-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-bottom-sides.gif);
}
.x-panel-header-default-framed-bottom-mc {
  padding: 4px 2px 1px 2px;
}
.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl, .x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl {
  position: relative;
  right: 0;
}
.x-panel-header-default-framed-bottom:after {
  display: none;
  content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)";
}
.x-panel-header-default-framed-left {
  border-top-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 4px;
  padding: 5px 4px 5px 4px;
  border-width: 1px 0 1px 1px;
  border-style: solid;
  background-image: none;
  background-color: #cbddf3;
  background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
}
.x-panel-header-default-framed-left-mc {
  background-image: url(images/panel-header/panel-header-default-framed-left-fbg.gif);
  background-position: left 0;
  background-color: #cbddf3;
}
.x-nlg .x-panel-header-default-framed-left {
  background-image: url(images/panel-header/panel-header-default-framed-left-bg.gif);
  background-position: left 0;
}
.x-nbr .x-panel-header-default-framed-left {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
body.x-nbr .x-panel-header-default-framed-left-frameInfo {
  font-family: dv-4-0-0-4-1-0-1-1-5-4-5-4;
}
.x-panel-header-default-framed-left-tl {
  background-position: 0 0;
}
.x-panel-header-default-framed-left-tr {
  background-position: 0 -4px;
}
.x-panel-header-default-framed-left-bl {
  background-position: 0 -8px;
}
.x-panel-header-default-framed-left-br {
  background-position: 0 -12px;
}
.x-panel-header-default-framed-left-ml {
  background-position: -4px 0;
}
.x-panel-header-default-framed-left-mr {
  background-position: right 0;
}
.x-panel-header-default-framed-left-tc {
  background-position: left 0;
}
.x-panel-header-default-framed-left-bc {
  background-position: left -4px;
}
.x-panel-header-default-framed-left-tr, .x-panel-header-default-framed-left-br, .x-panel-header-default-framed-left-mr {
  padding-right: 0;
}
.x-panel-header-default-framed-left-tl, .x-panel-header-default-framed-left-bl, .x-panel-header-default-framed-left-ml {
  padding-left: 4px;
}
.x-panel-header-default-framed-left-tc, .x-panel-header-default-framed-left-bc {
  height: 4px;
}
.x-panel-header-default-framed-left-tl, .x-panel-header-default-framed-left-bl, .x-panel-header-default-framed-left-tr, .x-panel-header-default-framed-left-br, .x-panel-header-default-framed-left-tc, .x-panel-header-default-framed-left-bc, .x-panel-header-default-framed-left-ml, .x-panel-header-default-framed-left-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-left-corners.gif);
}
.x-panel-header-default-framed-left-tc, .x-panel-header-default-framed-left-bc {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-left-sides.gif);
  background-repeat: repeat-x;
}
.x-panel-header-default-framed-left-mc {
  padding: 2px 4px 2px 1px;
}
.x-strict .x-ie7 .x-panel-header-default-framed-left-tl, .x-strict .x-ie7 .x-panel-header-default-framed-left-bl {
  position: relative;
  right: 0;
}
.x-panel-header-default-framed-left:after {
  display: none;
  content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif)";
}
.x-panel-header-default-framed-collapsed-top {
  padding: 0px 12px 0px 12px;
  border-width: 0px;
  border-style: solid;
}
.x-panel-header-default-framed-collapsed-top-mc {
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif);
  background-position: 0 top;
  background-color: #cbddf3;
}
.x-nlg .x-panel-header-default-framed-collapsed-top {
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif);
  background-position: 0 top;
}
.x-nbr .x-panel-header-default-framed-collapsed-top {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo {
  font-family: dh-4-4-4-4-1-1-1-1-4-5-4-5;
}
.x-panel-header-default-framed-collapsed-top-tl {
  background-position: 0 -8px;
}
.x-panel-header-default-framed-collapsed-top-tr {
  background-position: right -12px;
}
.x-panel-header-default-framed-collapsed-top-bl {
  background-position: 0 -16px;
}
.x-panel-header-default-framed-collapsed-top-br {
  background-position: right -20px;
}
.x-panel-header-default-framed-collapsed-top-ml {
  background-position: 0 top;
}
.x-panel-header-default-framed-collapsed-top-mr {
  background-position: right top;
}
.x-panel-header-default-framed-collapsed-top-tc {
  background-position: 0 0;
}
.x-panel-header-default-framed-collapsed-top-bc {
  background-position: 0 -4px;
}
.x-panel-header-default-framed-collapsed-top-tr, .x-panel-header-default-framed-collapsed-top-br, .x-panel-header-default-framed-collapsed-top-mr {
  padding-right: 4px;
}
.x-panel-header-default-framed-collapsed-top-tl, .x-panel-header-default-framed-collapsed-top-bl, .x-panel-header-default-framed-collapsed-top-ml {
  padding-left: 4px;
}
.x-panel-header-default-framed-collapsed-top-tc, .x-panel-header-default-framed-collapsed-top-bc {
  height: 4px;
}
.x-panel-header-default-framed-collapsed-top-tl, .x-panel-header-default-framed-collapsed-top-bl, .x-panel-header-default-framed-collapsed-top-tr, .x-panel-header-default-framed-collapsed-top-br, .x-panel-header-default-framed-collapsed-top-tc, .x-panel-header-default-framed-collapsed-top-bc, .x-panel-header-default-framed-collapsed-top-ml, .x-panel-header-default-framed-collapsed-top-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif);
}
.x-panel-header-default-framed-collapsed-top-ml, .x-panel-header-default-framed-collapsed-top-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif);
}
.x-panel-header-default-framed-collapsed-top-mc {
  padding: 1px 2px 1px 2px;
}
.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl, .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl {
  position: relative;
  right: 0;
}
.x-panel-header-default-framed-collapsed-top:after {
  display: none;
  content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)";
}
.x-panel-header-default-framed-collapsed-right {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 5px 4px 5px 4px;
  border-width: 1px;
  border-style: solid;
  background-image: none;
  background-color: #cbddf3;
  background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
}
.x-panel-header-default-framed-collapsed-right-mc {
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif);
  background-position: right 0;
  background-color: #cbddf3;
}
.x-nlg .x-panel-header-default-framed-collapsed-right {
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif);
  background-position: right 0;
}
.x-nbr .x-panel-header-default-framed-collapsed-right {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo {
  font-family: dv-4-4-4-4-1-1-1-1-5-4-5-4;
}
.x-panel-header-default-framed-collapsed-right-tl {
  background-position: 0 0;
}
.x-panel-header-default-framed-collapsed-right-tr {
  background-position: 0 -4px;
}
.x-panel-header-default-framed-collapsed-right-bl {
  background-position: 0 -8px;
}
.x-panel-header-default-framed-collapsed-right-br {
  background-position: 0 -12px;
}
.x-panel-header-default-framed-collapsed-right-ml {
  background-position: -4px 0;
}
.x-panel-header-default-framed-collapsed-right-mr, .x-panel-header-default-framed-collapsed-right-tc {
  background-position: right 0;
}
.x-panel-header-default-framed-collapsed-right-bc {
  background-position: right -4px;
}
.x-panel-header-default-framed-collapsed-right-tr, .x-panel-header-default-framed-collapsed-right-br, .x-panel-header-default-framed-collapsed-right-mr {
  padding-right: 4px;
}
.x-panel-header-default-framed-collapsed-right-tl, .x-panel-header-default-framed-collapsed-right-bl, .x-panel-header-default-framed-collapsed-right-ml {
  padding-left: 4px;
}
.x-panel-header-default-framed-collapsed-right-tc, .x-panel-header-default-framed-collapsed-right-bc {
  height: 4px;
}
.x-panel-header-default-framed-collapsed-right-tl, .x-panel-header-default-framed-collapsed-right-bl, .x-panel-header-default-framed-collapsed-right-tr, .x-panel-header-default-framed-collapsed-right-br, .x-panel-header-default-framed-collapsed-right-tc, .x-panel-header-default-framed-collapsed-right-bc, .x-panel-header-default-framed-collapsed-right-ml, .x-panel-header-default-framed-collapsed-right-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif);
}
.x-panel-header-default-framed-collapsed-right-tc, .x-panel-header-default-framed-collapsed-right-bc {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif);
  background-repeat: repeat-x;
}
.x-panel-header-default-framed-collapsed-right-mc {
  padding: 2px 1px 2px 1px;
}
.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl, .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl {
  position: relative;
  right: 0;
}
.x-panel-header-default-framed-collapsed-right:after {
  display: none;
  content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif)";
}
.x-panel-header-default-framed-collapsed-bottom {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 4px 5px 4px 5px;
  border-width: 1px;
  border-style: solid;
  background-image: none;
  background-color: #cbddf3;
  background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
}
.x-panel-header-default-framed-collapsed-bottom-mc {
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif);
  background-position: 0 bottom;
  background-color: #cbddf3;
}
.x-nlg .x-panel-header-default-framed-collapsed-bottom {
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif);
  background-position: 0 bottom;
}
.x-nbr .x-panel-header-default-framed-collapsed-bottom {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo {
  font-family: dh-4-4-4-4-1-1-1-1-4-5-4-5;
}
.x-panel-header-default-framed-collapsed-bottom-tl {
  background-position: 0 -8px;
}
.x-panel-header-default-framed-collapsed-bottom-tr {
  background-position: right -12px;
}
.x-panel-header-default-framed-collapsed-bottom-bl {
  background-position: 0 -16px;
}
.x-panel-header-default-framed-collapsed-bottom-br {
  background-position: right -20px;
}
.x-panel-header-default-framed-collapsed-bottom-ml {
  background-position: 0 bottom;
}
.x-panel-header-default-framed-collapsed-bottom-mr {
  background-position: right bottom;
}
.x-panel-header-default-framed-collapsed-bottom-tc {
  background-position: 0 0;
}
.x-panel-header-default-framed-collapsed-bottom-bc {
  background-position: 0 -4px;
}
.x-panel-header-default-framed-collapsed-bottom-tr, .x-panel-header-default-framed-collapsed-bottom-br, .x-panel-header-default-framed-collapsed-bottom-mr {
  padding-right: 4px;
}
.x-panel-header-default-framed-collapsed-bottom-tl, .x-panel-header-default-framed-collapsed-bottom-bl, .x-panel-header-default-framed-collapsed-bottom-ml {
  padding-left: 4px;
}
.x-panel-header-default-framed-collapsed-bottom-tc, .x-panel-header-default-framed-collapsed-bottom-bc {
  height: 4px;
}
.x-panel-header-default-framed-collapsed-bottom-tl, .x-panel-header-default-framed-collapsed-bottom-bl, .x-panel-header-default-framed-collapsed-bottom-tr, .x-panel-header-default-framed-collapsed-bottom-br, .x-panel-header-default-framed-collapsed-bottom-tc, .x-panel-header-default-framed-collapsed-bottom-bc, .x-panel-header-default-framed-collapsed-bottom-ml, .x-panel-header-default-framed-collapsed-bottom-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif);
}
.x-panel-header-default-framed-collapsed-bottom-ml, .x-panel-header-default-framed-collapsed-bottom-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif);
}
.x-panel-header-default-framed-collapsed-bottom-mc {
  padding: 1px 2px 1px 2px;
}
.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl, .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl {
  position: relative;
  right: 0;
}
.x-panel-header-default-framed-collapsed-bottom:after {
  display: none;
  content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)";
}
.x-panel-header-default-framed-collapsed-left {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 5px 4px 5px 4px;
  border-width: 1px;
  border-style: solid;
  background-image: none;
  background-color: #cbddf3;
  background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
}
.x-panel-header-default-framed-collapsed-left-mc {
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif);
  background-position: left 0;
  background-color: #cbddf3;
}
.x-nlg .x-panel-header-default-framed-collapsed-left {
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif);
  background-position: left 0;
}
.x-nbr .x-panel-header-default-framed-collapsed-left {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo {
  font-family: dv-4-4-4-4-1-1-1-1-5-4-5-4;
}
.x-panel-header-default-framed-collapsed-left-tl {
  background-position: 0 0;
}
.x-panel-header-default-framed-collapsed-left-tr {
  background-position: 0 -4px;
}
.x-panel-header-default-framed-collapsed-left-bl {
  background-position: 0 -8px;
}
.x-panel-header-default-framed-collapsed-left-br {
  background-position: 0 -12px;
}
.x-panel-header-default-framed-collapsed-left-ml {
  background-position: -4px 0;
}
.x-panel-header-default-framed-collapsed-left-mr {
  background-position: right 0;
}
.x-panel-header-default-framed-collapsed-left-tc {
  background-position: left 0;
}
.x-panel-header-default-framed-collapsed-left-bc {
  background-position: left -4px;
}
.x-panel-header-default-framed-collapsed-left-tr, .x-panel-header-default-framed-collapsed-left-br, .x-panel-header-default-framed-collapsed-left-mr {
  padding-right: 4px;
}
.x-panel-header-default-framed-collapsed-left-tl, .x-panel-header-default-framed-collapsed-left-bl, .x-panel-header-default-framed-collapsed-left-ml {
  padding-left: 4px;
}
.x-panel-header-default-framed-collapsed-left-tc, .x-panel-header-default-framed-collapsed-left-bc {
  height: 4px;
}
.x-panel-header-default-framed-collapsed-left-tl, .x-panel-header-default-framed-collapsed-left-bl, .x-panel-header-default-framed-collapsed-left-tr, .x-panel-header-default-framed-collapsed-left-br, .x-panel-header-default-framed-collapsed-left-tc, .x-panel-header-default-framed-collapsed-left-bc, .x-panel-header-default-framed-collapsed-left-ml, .x-panel-header-default-framed-collapsed-left-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif);
}
.x-panel-header-default-framed-collapsed-left-tc, .x-panel-header-default-framed-collapsed-left-bc {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif);
  background-repeat: repeat-x;
}
.x-panel-header-default-framed-collapsed-left-mc {
  padding: 2px 1px 2px 1px;
}
.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl, .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl {
  position: relative;
  right: 0;
}
.x-panel-header-default-framed-collapsed-left:after {
  display: none;
  content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif)";
}
.x-panel .x-panel-header-default-framed-top {
  border-bottom-width: 1px !important;
}
.x-panel .x-panel-header-default-framed-right {
  border-left-width: 1px !important;
}
.x-panel .x-panel-header-default-framed-bottom {
  border-top-width: 1px !important;
}
.x-panel .x-panel-header-default-framed-left {
  border-right-width: 1px !important;
}
.x-nbr .x-panel-header-default-framed-collapsed-top {
  border-bottom-width: 0 !important;
}
.x-nbr .x-panel-header-default-framed-collapsed-right {
  border-left-width: 0 !important;
}
.x-nbr .x-panel-header-default-framed-collapsed-bottom {
  border-top-width: 0 !important;
}
.x-nbr .x-panel-header-default-framed-collapsed-left {
  border-right-width: 0 !important;
}
.x-panel-header-default-framed-vertical .x-panel-header-text-container {
  transform: rotate(90deg);
  transform-origin: 0 0;
}
.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container {
  background-color: #cbddf3;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3);
}
.x-panel-header-default-framed-right {
  box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset;
}
.x-panel-header-default-framed-bottom {
  box-shadow: #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset;
}
.x-panel-header-default-framed-left {
  box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb 1px 0 0px 0 inset;
}
.x-panel-header-default-framed .x-panel-header-icon {
  width: 16px;
  height: 16px;
  background-position: center center;
}
.x-panel-header-default-framed .x-panel-header-glyph {
  color: #04408c;
  font-size: 16px;
  line-height: 16px;
  opacity: 0.5;
}
.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph {
  color: #678ebf;
}
.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title {
  margin: 0 2px 0 0;
}
.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title {
  margin: 0 0 0 2px;
}
.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title {
  margin: 0 0 2px 0;
}
.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title {
  margin: 2px 0 0 0;
}
.x-panel-header-default-framed-horizontal .x-tool-after-title {
  margin: 0 0 0 2px;
}
.x-panel-header-default-framed-horizontal .x-tool-before-title {
  margin: 0 2px 0 0;
}
.x-panel-header-default-framed-vertical .x-tool-after-title {
  margin: 2px 0 0 0;
}
.x-panel-header-default-framed-vertical .x-tool-before-title {
  margin: 0 0 2px 0;
}
.x-panel-default-framed-resizable .x-panel-handle {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.x-tip-anchor {
  position: absolute;
  overflow: hidden;
  height: 10px;
  width: 10px;
  border-style: solid;
  border-width: 5px;
  border-color: #8eaace;
  zoom: 1;
}
.x-content-box .x-tip-anchor {
  height: 0;
  width: 0;
}
.x-tip-anchor-top {
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}
.x-tip-anchor-bottom {
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}
.x-tip-anchor-left {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.x-tip-anchor-right {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
}
.x-tip-default {
  border-radius: 0px;
  padding: 2px 2px 2px 2px;
  border-width: 0px;
  border-style: solid;
  background-color: #e9f2ff;
}
.x-tip-default-mc {
  background-color: #e9f2ff;
}
.x-nbr .x-tip-default {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
body.x-nbr .x-tip-default-frameInfo {
  font-family: th-3-3-3-3-1-1-1-1-2-2-2-2;
}
.x-tip-default-tl {
  background-position: 0 -6px;
}
.x-tip-default-tr {
  background-position: right -9px;
}
.x-tip-default-bl {
  background-position: 0 -12px;
}
.x-tip-default-br {
  background-position: right -15px;
}
.x-tip-default-ml {
  background-position: 0 top;
}
.x-tip-default-mr {
  background-position: right top;
}
.x-tip-default-tc {
  background-position: 0 0;
}
.x-tip-default-bc {
  background-position: 0 -3px;
}
.x-tip-default-tr, .x-tip-default-br, .x-tip-default-mr {
  padding-right: 3px;
}
.x-tip-default-tl, .x-tip-default-bl, .x-tip-default-ml {
  padding-left: 3px;
}
.x-tip-default-tc, .x-tip-default-bc {
  height: 3px;
}
.x-tip-default-tl, .x-tip-default-bl, .x-tip-default-tr, .x-tip-default-br, .x-tip-default-tc, .x-tip-default-bc, .x-tip-default-ml, .x-tip-default-mr {
  zoom: 1;
  background-image: url(images/tip/tip-default-corners.gif);
}
.x-tip-default-ml, .x-tip-default-mr {
  zoom: 1;
  background-image: url(images/tip/tip-default-sides.gif);
  background-repeat: repeat-y;
}
.x-tip-default-mc {
  padding: 0px 0px 0px 0px;
}
.x-strict .x-ie7 .x-tip-default-tl, .x-strict .x-ie7 .x-tip-default-bl {
  position: relative;
  right: 0;
}
.x-tip-default {
  border-color: #8eaace;
}
.x-tip-default:after {
  display: none;
  content: "x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)";
}
.x-tip-default .x-tool-img {
  background-color: #e9f2ff;
}
.x-tip-header-default .x-tool-after-title {
  margin: 0 0 0 6px;
}
.x-tip-header-default .x-tool-before-title {
  margin: 0 6px 0 0;
}
.x-tip-header-body-default {
  padding: 3px 3px 0 3px;
}
.x-tip-header-text-container-default {
  color: #444444;
  font-size: 11px;
  font-weight: bold;
}
.x-tip-body-default {
  padding: 3px;
  color: #444444;
  font-size: 11px;
  font-weight: normal;
}
.x-tip-body-default a {
  color: #2a2a2a;
}
.x-tip-form-invalid {
  border-radius: 5px;
  padding: 4px 4px 4px 4px;
  border-width: 1px;
  border-style: solid;
  background-color: white;
}
.x-tip-form-invalid-mc {
  background-color: white;
}
.x-nbr .x-tip-form-invalid {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
body.x-nbr .x-tip-form-invalid-frameInfo {
  font-family: th-5-5-5-5-1-1-1-1-4-4-4-4;
}
.x-tip-form-invalid-tl {
  background-position: 0 -10px;
}
.x-tip-form-invalid-tr {
  background-position: right -15px;
}
.x-tip-form-invalid-bl {
  background-position: 0 -20px;
}
.x-tip-form-invalid-br {
  background-position: right -25px;
}
.x-tip-form-invalid-ml {
  background-position: 0 top;
}
.x-tip-form-invalid-mr {
  background-position: right top;
}
.x-tip-form-invalid-tc {
  background-position: 0 0;
}
.x-tip-form-invalid-bc {
  background-position: 0 -5px;
}
.x-tip-form-invalid-tr, .x-tip-form-invalid-br, .x-tip-form-invalid-mr {
  padding-right: 5px;
}
.x-tip-form-invalid-tl, .x-tip-form-invalid-bl, .x-tip-form-invalid-ml {
  padding-left: 5px;
}
.x-tip-form-invalid-tc, .x-tip-form-invalid-bc {
  height: 5px;
}
.x-tip-form-invalid-tl, .x-tip-form-invalid-bl, .x-tip-form-invalid-tr, .x-tip-form-invalid-br, .x-tip-form-invalid-tc, .x-tip-form-invalid-bc, .x-tip-form-invalid-ml, .x-tip-form-invalid-mr {
  zoom: 1;
  background-image: url(images/tip/tip-form-invalid-corners.gif);
}
.x-tip-form-invalid-ml, .x-tip-form-invalid-mr {
  zoom: 1;
  background-image: url(images/tip/tip-form-invalid-sides.gif);
  background-repeat: repeat-y;
}
.x-tip-form-invalid-mc {
  padding: 0px 0px 0px 0px;
}
.x-strict .x-ie7 .x-tip-form-invalid-tl, .x-strict .x-ie7 .x-tip-form-invalid-bl {
  position: relative;
  right: 0;
}
.x-tip-form-invalid {
  border-color: #a1311f;
  box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset;
}
.x-tip-form-invalid:after {
  display: none;
  content: "x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)";
}
.x-tip-form-invalid .x-tool-img {
  background-color: white;
}
.x-tip-header-form-invalid .x-tool-after-title {
  margin: 0 0 0 6px;
}
.x-tip-header-form-invalid .x-tool-before-title {
  margin: 0 6px 0 0;
}
.x-tip-header-body-form-invalid {
  padding: 3px 3px 0 3px;
}
.x-tip-header-text-container-form-invalid {
  color: #444444;
  font-size: 11px;
  font-weight: bold;
}
.x-tip-body-form-invalid {
  padding: 3px 3px 3px 22px;
  color: #444444;
  font-size: 11px;
  font-weight: normal;
  background: 1px 1px no-repeat;
  background-image: url(images/form/exclamation.gif);
}
.x-tip-body-form-invalid a {
  color: #2a2a2a;
}
.x-tip-body-form-invalid li {
  margin-bottom: 4px;
}
.x-tip-body-form-invalid li.last {
  margin-bottom: 0;
}
.x-window-ghost {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
  opacity: 0.65;
}
.x-window-default {
  border-color: #a2b1c5;
  border-radius: 5px;
  box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  border-radius: 5px;
  padding: 4px 4px 4px 4px;
  border-width: 1px;
  border-style: solid;
  background-color: #ced9e7;
}
.x-window-default-mc {
  background-color: #ced9e7;
}
.x-nbr .x-window-default {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
body.x-nbr .x-window-default-frameInfo {
  font-family: dh-5-5-5-5-1-1-1-1-4-4-4-4;
}
.x-window-default-tl {
  background-position: 0 -10px;
}
.x-window-default-tr {
  background-position: right -15px;
}
.x-window-default-bl {
  background-position: 0 -20px;
}
.x-window-default-br {
  background-position: right -25px;
}
.x-window-default-ml {
  background-position: 0 top;
}
.x-window-default-mr {
  background-position: right top;
}
.x-window-default-tc {
  background-position: 0 0;
}
.x-window-default-bc {
  background-position: 0 -5px;
}
.x-window-default-tr, .x-window-default-br, .x-window-default-mr {
  padding-right: 5px;
}
.x-window-default-tl, .x-window-default-bl, .x-window-default-ml {
  padding-left: 5px;
}
.x-window-default-tc, .x-window-default-bc {
  height: 5px;
}
.x-window-default-tl, .x-window-default-bl, .x-window-default-tr, .x-window-default-br, .x-window-default-tc, .x-window-default-bc, .x-window-default-ml, .x-window-default-mr {
  zoom: 1;
  background-image: url(images/window/window-default-corners.gif);
}
.x-window-default-ml, .x-window-default-mr {
  zoom: 1;
  background-image: url(images/window/window-default-sides.gif);
  background-repeat: repeat-y;
}
.x-window-default-mc {
  padding: 0px 0px 0px 0px;
}
.x-strict .x-ie7 .x-window-default-tl, .x-strict .x-ie7 .x-window-default-bl {
  position: relative;
  right: 0;
}
.x-window-default:after {
  display: none;
  content: "x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)";
}
.x-window-body-default {
  border-color: #99bbe8;
  border-width: 1px;
  border-style: solid;
  background: #dfe8f6;
}
.x-window-header-default {
  font-size: 11px;
  border-color: #a2b1c5;
  zoom: 1;
  background-color: #ced9e7;
}
.x-window-header-default .x-tool-img {
  background-color: #ced9e7;
}
.x-window-header-default-vertical .x-window-header-text-container {
  transform: rotate(90deg);
  transform-origin: 0 0;
}
.x-ie9m .x-window-header-default-vertical .x-window-header-text-container {
  background-color: #ced9e7;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#ced9e7);
}
.x-window-header-text-container-default {
  color: #04468c;
  font-weight: bold;
  line-height: 15px;
  font-family: Arial, helvetica, sans-serif;
  font-size: 11px;
  padding: 0 2px 1px;
  text-transform: none;
}
.x-window-header-default-top {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding: 4px 5px 0 5px;
  border-width: 1px 1px 0 1px;
  border-style: solid;
  background-color: #ced9e7;
}
.x-window-header-default-top-mc {
  background-color: #ced9e7;
}
.x-nbr .x-window-header-default-top {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
body.x-nbr .x-window-header-default-top-frameInfo {
  font-family: dh-5-5-0-0-1-1-0-1-4-5-0-5;
}
.x-window-header-default-top-tl {
  background-position: 0 -10px;
}
.x-window-header-default-top-tr {
  background-position: right -15px;
}
.x-window-header-default-top-bl {
  background-position: 0 -20px;
}
.x-window-header-default-top-br {
  background-position: right -25px;
}
.x-window-header-default-top-ml {
  background-position: 0 top;
}
.x-window-header-default-top-mr {
  background-position: right top;
}
.x-window-header-default-top-tc {
  background-position: 0 0;
}
.x-window-header-default-top-bc {
  background-position: 0 -5px;
}
.x-window-header-default-top-tr, .x-window-header-default-top-br, .x-window-header-default-top-mr {
  padding-right: 5px;
}
.x-window-header-default-top-tl, .x-window-header-default-top-bl, .x-window-header-default-top-ml {
  padding-left: 5px;
}
.x-window-header-default-top-tc {
  height: 5px;
}
.x-window-header-default-top-bc {
  height: 0;
}
.x-window-header-default-top-tl, .x-window-header-default-top-bl, .x-window-header-default-top-tr, .x-window-header-default-top-br, .x-window-header-default-top-tc, .x-window-header-default-top-bc, .x-window-header-default-top-ml, .x-window-header-default-top-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-top-corners.gif);
}
.x-window-header-default-top-ml, .x-window-header-default-top-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-top-sides.gif);
  background-repeat: repeat-y;
}
.x-window-header-default-top-mc {
  padding: 0px 1px 0 1px;
}
.x-strict .x-ie7 .x-window-header-default-top-tl, .x-strict .x-ie7 .x-window-header-default-top-bl {
  position: relative;
  right: 0;
}
.x-window-header-default-top:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)";
}
.x-window-header-default-right {
  border-top-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 0;
  padding: 5px 4px 5px 0;
  border-width: 1px 1px 1px 0;
  border-style: solid;
  background-color: #ced9e7;
}
.x-window-header-default-right-mc {
  background-color: #ced9e7;
}
.x-nbr .x-window-header-default-right {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
body.x-nbr .x-window-header-default-right-frameInfo {
  font-family: dh-0-5-5-0-1-1-1-0-5-4-5-0;
}
.x-window-header-default-right-tl {
  background-position: 0 -10px;
}
.x-window-header-default-right-tr {
  background-position: right -15px;
}
.x-window-header-default-right-bl {
  background-position: 0 -20px;
}
.x-window-header-default-right-br {
  background-position: right -25px;
}
.x-window-header-default-right-ml {
  background-position: 0 top;
}
.x-window-header-default-right-mr {
  background-position: right top;
}
.x-window-header-default-right-tc {
  background-position: 0 0;
}
.x-window-header-default-right-bc {
  background-position: 0 -5px;
}
.x-window-header-default-right-tr, .x-window-header-default-right-br, .x-window-header-default-right-mr {
  padding-right: 5px;
}
.x-window-header-default-right-tl, .x-window-header-default-right-bl, .x-window-header-default-right-ml {
  padding-left: 0;
}
.x-window-header-default-right-tc, .x-window-header-default-right-bc {
  height: 5px;
}
.x-window-header-default-right-tl, .x-window-header-default-right-bl, .x-window-header-default-right-tr, .x-window-header-default-right-br, .x-window-header-default-right-tc, .x-window-header-default-right-bc, .x-window-header-default-right-ml, .x-window-header-default-right-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-right-corners.gif);
}
.x-window-header-default-right-ml, .x-window-header-default-right-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-right-sides.gif);
  background-repeat: repeat-y;
}
.x-window-header-default-right-mc {
  padding: 1px 0px 1px 0;
}
.x-strict .x-ie7 .x-window-header-default-right-tl, .x-strict .x-ie7 .x-window-header-default-right-bl {
  position: relative;
  right: 0;
}
.x-window-header-default-right:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), sides:url(images/window-header/window-header-default-right-sides.gif)";
}
.x-window-header-default-bottom {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 0 5px 4px 5px;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  background-color: #ced9e7;
}
.x-window-header-default-bottom-mc {
  background-color: #ced9e7;
}
.x-nbr .x-window-header-default-bottom {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
body.x-nbr .x-window-header-default-bottom-frameInfo {
  font-family: dh-0-0-5-5-0-1-1-1-0-5-4-5;
}
.x-window-header-default-bottom-tl {
  background-position: 0 -10px;
}
.x-window-header-default-bottom-tr {
  background-position: right -15px;
}
.x-window-header-default-bottom-bl {
  background-position: 0 -20px;
}
.x-window-header-default-bottom-br {
  background-position: right -25px;
}
.x-window-header-default-bottom-ml {
  background-position: 0 top;
}
.x-window-header-default-bottom-mr {
  background-position: right top;
}
.x-window-header-default-bottom-tc {
  background-position: 0 0;
}
.x-window-header-default-bottom-bc {
  background-position: 0 -5px;
}
.x-window-header-default-bottom-tr, .x-window-header-default-bottom-br, .x-window-header-default-bottom-mr {
  padding-right: 5px;
}
.x-window-header-default-bottom-tl, .x-window-header-default-bottom-bl, .x-window-header-default-bottom-ml {
  padding-left: 5px;
}
.x-window-header-default-bottom-tc {
  height: 0;
}
.x-window-header-default-bottom-bc {
  height: 5px;
}
.x-window-header-default-bottom-tl, .x-window-header-default-bottom-bl, .x-window-header-default-bottom-tr, .x-window-header-default-bottom-br, .x-window-header-default-bottom-tc, .x-window-header-default-bottom-bc, .x-window-header-default-bottom-ml, .x-window-header-default-bottom-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-bottom-corners.gif);
}
.x-window-header-default-bottom-ml, .x-window-header-default-bottom-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-bottom-sides.gif);
  background-repeat: repeat-y;
}
.x-window-header-default-bottom-mc {
  padding: 0 1px 0px 1px;
}
.x-strict .x-ie7 .x-window-header-default-bottom-tl, .x-strict .x-ie7 .x-window-header-default-bottom-bl {
  position: relative;
  right: 0;
}
.x-window-header-default-bottom:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)";
}
.x-window-header-default-left {
  border-top-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 5px;
  padding: 5px 0 5px 4px;
  border-width: 1px 0 1px 1px;
  border-style: solid;
  background-color: #ced9e7;
}
.x-window-header-default-left-mc {
  background-color: #ced9e7;
}
.x-nbr .x-window-header-default-left {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
body.x-nbr .x-window-header-default-left-frameInfo {
  font-family: dh-5-0-0-5-1-0-1-1-5-0-5-4;
}
.x-window-header-default-left-tl {
  background-position: 0 -10px;
}
.x-window-header-default-left-tr {
  background-position: right -15px;
}
.x-window-header-default-left-bl {
  background-position: 0 -20px;
}
.x-window-header-default-left-br {
  background-position: right -25px;
}
.x-window-header-default-left-ml {
  background-position: 0 top;
}
.x-window-header-default-left-mr {
  background-position: right top;
}
.x-window-header-default-left-tc {
  background-position: 0 0;
}
.x-window-header-default-left-bc {
  background-position: 0 -5px;
}
.x-window-header-default-left-tr, .x-window-header-default-left-br, .x-window-header-default-left-mr {
  padding-right: 0;
}
.x-window-header-default-left-tl, .x-window-header-default-left-bl, .x-window-header-default-left-ml {
  padding-left: 5px;
}
.x-window-header-default-left-tc, .x-window-header-default-left-bc {
  height: 5px;
}
.x-window-header-default-left-tl, .x-window-header-default-left-bl, .x-window-header-default-left-tr, .x-window-header-default-left-br, .x-window-header-default-left-tc, .x-window-header-default-left-bc, .x-window-header-default-left-ml, .x-window-header-default-left-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-left-corners.gif);
}
.x-window-header-default-left-ml, .x-window-header-default-left-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-left-sides.gif);
  background-repeat: repeat-y;
}
.x-window-header-default-left-mc {
  padding: 1px 0 1px 0px;
}
.x-strict .x-ie7 .x-window-header-default-left-tl, .x-strict .x-ie7 .x-window-header-default-left-bl {
  position: relative;
  right: 0;
}
.x-window-header-default-left:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), sides:url(images/window-header/window-header-default-left-sides.gif)";
}
.x-window-header-default-collapsed-top {
  border-radius: 5px;
  padding: 4px 5px 4px 5px;
  border-width: 1px;
  border-style: solid;
  background-color: #ced9e7;
}
.x-window-header-default-collapsed-top-mc {
  background-color: #ced9e7;
}
.x-nbr .x-window-header-default-collapsed-top {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
body.x-nbr .x-window-header-default-collapsed-top-frameInfo {
  font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5;
}
.x-window-header-default-collapsed-top-tl {
  background-position: 0 -10px;
}
.x-window-header-default-collapsed-top-tr {
  background-position: right -15px;
}
.x-window-header-default-collapsed-top-bl {
  background-position: 0 -20px;
}
.x-window-header-default-collapsed-top-br {
  background-position: right -25px;
}
.x-window-header-default-collapsed-top-ml {
  background-position: 0 top;
}
.x-window-header-default-collapsed-top-mr {
  background-position: right top;
}
.x-window-header-default-collapsed-top-tc {
  background-position: 0 0;
}
.x-window-header-default-collapsed-top-bc {
  background-position: 0 -5px;
}
.x-window-header-default-collapsed-top-tr, .x-window-header-default-collapsed-top-br, .x-window-header-default-collapsed-top-mr {
  padding-right: 5px;
}
.x-window-header-default-collapsed-top-tl, .x-window-header-default-collapsed-top-bl, .x-window-header-default-collapsed-top-ml {
  padding-left: 5px;
}
.x-window-header-default-collapsed-top-tc, .x-window-header-default-collapsed-top-bc {
  height: 5px;
}
.x-window-header-default-collapsed-top-tl, .x-window-header-default-collapsed-top-bl, .x-window-header-default-collapsed-top-tr, .x-window-header-default-collapsed-top-br, .x-window-header-default-collapsed-top-tc, .x-window-header-default-collapsed-top-bc, .x-window-header-default-collapsed-top-ml, .x-window-header-default-collapsed-top-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-top-corners.gif);
}
.x-window-header-default-collapsed-top-ml, .x-window-header-default-collapsed-top-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-top-sides.gif);
  background-repeat: repeat-y;
}
.x-window-header-default-collapsed-top-mc {
  padding: 0px 1px 0px 1px;
}
.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl, .x-strict .x-ie7 .x-window-header-default-collapsed-top-bl {
  position: relative;
  right: 0;
}
.x-window-header-default-collapsed-top:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)";
}
.x-window-header-default-collapsed-right {
  border-radius: 5px;
  padding: 5px 4px 5px 4px;
  border-width: 1px;
  border-style: solid;
  background-color: #ced9e7;
}
.x-window-header-default-collapsed-right-mc {
  background-color: #ced9e7;
}
.x-nbr .x-window-header-default-collapsed-right {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
body.x-nbr .x-window-header-default-collapsed-right-frameInfo {
  font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4;
}
.x-window-header-default-collapsed-right-tl {
  background-position: 0 -10px;
}
.x-window-header-default-collapsed-right-tr {
  background-position: right -15px;
}
.x-window-header-default-collapsed-right-bl {
  background-position: 0 -20px;
}
.x-window-header-default-collapsed-right-br {
  background-position: right -25px;
}
.x-window-header-default-collapsed-right-ml {
  background-position: 0 top;
}
.x-window-header-default-collapsed-right-mr {
  background-position: right top;
}
.x-window-header-default-collapsed-right-tc {
  background-position: 0 0;
}
.x-window-header-default-collapsed-right-bc {
  background-position: 0 -5px;
}
.x-window-header-default-collapsed-right-tr, .x-window-header-default-collapsed-right-br, .x-window-header-default-collapsed-right-mr {
  padding-right: 5px;
}
.x-window-header-default-collapsed-right-tl, .x-window-header-default-collapsed-right-bl, .x-window-header-default-collapsed-right-ml {
  padding-left: 5px;
}
.x-window-header-default-collapsed-right-tc, .x-window-header-default-collapsed-right-bc {
  height: 5px;
}
.x-window-header-default-collapsed-right-tl, .x-window-header-default-collapsed-right-bl, .x-window-header-default-collapsed-right-tr, .x-window-header-default-collapsed-right-br, .x-window-header-default-collapsed-right-tc, .x-window-header-default-collapsed-right-bc, .x-window-header-default-collapsed-right-ml, .x-window-header-default-collapsed-right-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-right-corners.gif);
}
.x-window-header-default-collapsed-right-ml, .x-window-header-default-collapsed-right-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-right-sides.gif);
  background-repeat: repeat-y;
}
.x-window-header-default-collapsed-right-mc {
  padding: 1px 0px 1px 0px;
}
.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl, .x-strict .x-ie7 .x-window-header-default-collapsed-right-bl {
  position: relative;
  right: 0;
}
.x-window-header-default-collapsed-right:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)";
}
.x-window-header-default-collapsed-bottom {
  border-radius: 5px;
  padding: 4px 5px 4px 5px;
  border-width: 1px;
  border-style: solid;
  background-color: #ced9e7;
}
.x-window-header-default-collapsed-bottom-mc {
  background-color: #ced9e7;
}
.x-nbr .x-window-header-default-collapsed-bottom {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo {
  font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5;
}
.x-window-header-default-collapsed-bottom-tl {
  background-position: 0 -10px;
}
.x-window-header-default-collapsed-bottom-tr {
  background-position: right -15px;
}
.x-window-header-default-collapsed-bottom-bl {
  background-position: 0 -20px;
}
.x-window-header-default-collapsed-bottom-br {
  background-position: right -25px;
}
.x-window-header-default-collapsed-bottom-ml {
  background-position: 0 top;
}
.x-window-header-default-collapsed-bottom-mr {
  background-position: right top;
}
.x-window-header-default-collapsed-bottom-tc {
  background-position: 0 0;
}
.x-window-header-default-collapsed-bottom-bc {
  background-position: 0 -5px;
}
.x-window-header-default-collapsed-bottom-tr, .x-window-header-default-collapsed-bottom-br, .x-window-header-default-collapsed-bottom-mr {
  padding-right: 5px;
}
.x-window-header-default-collapsed-bottom-tl, .x-window-header-default-collapsed-bottom-bl, .x-window-header-default-collapsed-bottom-ml {
  padding-left: 5px;
}
.x-window-header-default-collapsed-bottom-tc, .x-window-header-default-collapsed-bottom-bc {
  height: 5px;
}
.x-window-header-default-collapsed-bottom-tl, .x-window-header-default-collapsed-bottom-bl, .x-window-header-default-collapsed-bottom-tr, .x-window-header-default-collapsed-bottom-br, .x-window-header-default-collapsed-bottom-tc, .x-window-header-default-collapsed-bottom-bc, .x-window-header-default-collapsed-bottom-ml, .x-window-header-default-collapsed-bottom-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-bottom-corners.gif);
}
.x-window-header-default-collapsed-bottom-ml, .x-window-header-default-collapsed-bottom-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-bottom-sides.gif);
  background-repeat: repeat-y;
}
.x-window-header-default-collapsed-bottom-mc {
  padding: 0px 1px 0px 1px;
}
.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl, .x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl {
  position: relative;
  right: 0;
}
.x-window-header-default-collapsed-bottom:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)";
}
.x-window-header-default-collapsed-left {
  border-radius: 5px;
  padding: 5px 4px 5px 4px;
  border-width: 1px;
  border-style: solid;
  background-color: #ced9e7;
}
.x-window-header-default-collapsed-left-mc {
  background-color: #ced9e7;
}
.x-nbr .x-window-header-default-collapsed-left {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
body.x-nbr .x-window-header-default-collapsed-left-frameInfo {
  font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4;
}
.x-window-header-default-collapsed-left-tl {
  background-position: 0 -10px;
}
.x-window-header-default-collapsed-left-tr {
  background-position: right -15px;
}
.x-window-header-default-collapsed-left-bl {
  background-position: 0 -20px;
}
.x-window-header-default-collapsed-left-br {
  background-position: right -25px;
}
.x-window-header-default-collapsed-left-ml {
  background-position: 0 top;
}
.x-window-header-default-collapsed-left-mr {
  background-position: right top;
}
.x-window-header-default-collapsed-left-tc {
  background-position: 0 0;
}
.x-window-header-default-collapsed-left-bc {
  background-position: 0 -5px;
}
.x-window-header-default-collapsed-left-tr, .x-window-header-default-collapsed-left-br, .x-window-header-default-collapsed-left-mr {
  padding-right: 5px;
}
.x-window-header-default-collapsed-left-tl, .x-window-header-default-collapsed-left-bl, .x-window-header-default-collapsed-left-ml {
  padding-left: 5px;
}
.x-window-header-default-collapsed-left-tc, .x-window-header-default-collapsed-left-bc {
  height: 5px;
}
.x-window-header-default-collapsed-left-tl, .x-window-header-default-collapsed-left-bl, .x-window-header-default-collapsed-left-tr, .x-window-header-default-collapsed-left-br, .x-window-header-default-collapsed-left-tc, .x-window-header-default-collapsed-left-bc, .x-window-header-default-collapsed-left-ml, .x-window-header-default-collapsed-left-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-left-corners.gif);
}
.x-window-header-default-collapsed-left-ml, .x-window-header-default-collapsed-left-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-left-sides.gif);
  background-repeat: repeat-y;
}
.x-window-header-default-collapsed-left-mc {
  padding: 1px 0px 1px 0px;
}
.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl, .x-strict .x-ie7 .x-window-header-default-collapsed-left-bl {
  position: relative;
  right: 0;
}
.x-window-header-default-collapsed-left:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)";
}
.x-window-header-default-top {
  box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
}
.x-window-header-default-right {
  box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
}
.x-window-header-default-bottom {
  box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
}
.x-window-header-default-left {
  box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
}
.x-window-header-default .x-window-header-icon {
  width: 16px;
  height: 16px;
  color: #04468c;
  font-size: 16px;
  line-height: 16px;
  background-position: center center;
}
.x-window-header-default .x-window-header-glyph {
  color: #04468c;
  font-size: 16px;
  line-height: 16px;
  opacity: 0.5;
}
.x-ie8m .x-window-header-default .x-window-header-glyph {
  color: #698fb9;
}
.x-window-header-default-horizontal .x-window-header-icon-before-title {
  margin: 0 2px 0 0;
}
.x-window-header-default-horizontal .x-window-header-icon-after-title {
  margin: 0 0 0 2px;
}
.x-window-header-default-vertical .x-window-header-icon-before-title {
  margin: 0 0 2px 0;
}
.x-window-header-default-vertical .x-window-header-icon-after-title {
  margin: 2px 0 0 0;
}
.x-window-header-default-horizontal .x-tool-after-title {
  margin: 0 0 0 2px;
}
.x-window-header-default-horizontal .x-tool-before-title {
  margin: 0 2px 0 0;
}
.x-window-header-default-vertical .x-tool-after-title {
  margin: 2px 0 0 0;
}
.x-window-header-default-vertical .x-tool-before-title {
  margin: 0 0 2px 0;
}
.x-window-default-collapsed .x-window-header {
  border-width: 1px !important;
}
.x-nbr .x-window-default-collapsed .x-window-header {
  border-width: 0 !important;
}
.x-autocontainer-form-item, .x-anchor-form-item, .x-vbox-form-item, .x-table-form-item {
  margin-bottom: 8px;
  margin-top: 8px;
  margin-left: 12px;
}
.x-ie6 .x-form-form-item td {
  border-top-width: 0;
}
.x-ie6 td.x-form-item-pad {
  height: 5px;
}
.x-form-field {
  color: black;
}
.x-form-type-text textarea.x-form-invalid-field, .x-form-type-text input.x-form-invalid-field {
  background-color: white;
  background-image: url(images/grid/invalid_line.gif);
  background-repeat: repeat-x;
  background-position: bottom;
  border-color: #cc3300;
}
.x-form-type-password textarea.x-form-invalid-field, .x-form-type-password input.x-form-invalid-field {
  background-color: white;
  background-image: url(images/grid/invalid_line.gif);
  background-repeat: repeat-x;
  background-position: bottom;
  border-color: #cc3300;
}
.x-form-type-number textarea.x-form-invalid-field, .x-form-type-number input.x-form-invalid-field {
  background-color: white;
  background-image: url(images/grid/invalid_line.gif);
  background-repeat: repeat-x;
  background-position: bottom;
  border-color: #cc3300;
}
.x-form-type-email textarea.x-form-invalid-field, .x-form-type-email input.x-form-invalid-field {
  background-color: white;
  background-image: url(images/grid/invalid_line.gif);
  background-repeat: repeat-x;
  background-position: bottom;
  border-color: #cc3300;
}
.x-form-type-search textarea.x-form-invalid-field, .x-form-type-search input.x-form-invalid-field {
  background-color: white;
  background-image: url(images/grid/invalid_line.gif);
  background-repeat: repeat-x;
  background-position: bottom;
  border-color: #cc3300;
}
.x-form-type-tel textarea.x-form-invalid-field, .x-form-type-tel input.x-form-invalid-field {
  background-color: white;
  background-image: url(images/grid/invalid_line.gif);
  background-repeat: repeat-x;
  background-position: bottom;
  border-color: #cc3300;
}
.x-item-disabled .x-form-item-label, .x-item-disabled .x-form-field, .x-item-disabled .x-form-display-field, .x-item-disabled .x-form-cb-label, .x-item-disabled .x-form-trigger {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
}
.x-form-text {
  color: black;
  padding: 1px 3px 2px 3px;
  background: white repeat-x 0 0;
  border-width: 1px;
  border-style: solid;
  border-color: #b5b8c8;
  background-image: url(images/form/text-bg.gif);
  height: 22px;
  line-height: 17px;
}
.x-field-toolbar .x-form-text {
  height: 20px;
  line-height: 15px;
}
.x-content-box .x-form-text {
  height: 17px;
}
.x-content-box .x-field-toolbar .x-form-text {
  height: 15px;
}
.x-quirks .x-ie .x-form-text, .x-ie7m .x-form-text {
  margin-top: -1px;
  margin-bottom: -1px;
}
.x-form-cb-wrap {
  height: 22px;
}
.x-toolbar-item .x-form-cb-wrap {
  height: 20px;
}
.x-form-cb {
  margin-top: 5px;
}
.x-toolbar-item .x-form-cb {
  margin-top: 4px;
}
.x-form-checkbox {
  width: 13px;
  height: 13px;
  background: url(images/form/checkbox.gif) no-repeat;
}
.x-form-cb-checked .x-form-checkbox {
  background-position: 0 -13px;
}
.x-form-checkbox-focus {
  background-position: -13px 0;
}
.x-form-cb-checked .x-form-checkbox-focus {
  background-position: -13px -13px;
}
.x-form-cb-label {
  margin-top: 4px;
  font: normal 12px/14px Arial, helvetica, sans-serif;
}
.x-toolbar-item .x-form-cb-label {
  font: normal 11px/13px Arial, helvetica, sans-serif;
  margin-top: 4px;
}
.x-form-cb-label-before {
  margin-right: 4px;
}
.x-form-cb-label-after {
  margin-left: 6px;
}
.x-form-trigger {
  background: url(images/form/trigger.gif);
  width: 17px;
  border-width: 0 0 1px;
  border-color: #b5b8c8;
  border-style: solid;
}
.x-form-trigger-over {
  background-position: -17px 0;
  border-color: #7eadd9;
}
.x-form-trigger-wrap-focus .x-form-trigger {
  background-position: -51px 0;
  border-color: #7eadd9;
}
.x-form-trigger-wrap-focus .x-form-trigger-over {
  background-position: -68px 0;
}
.x-form-trigger-click, .x-form-trigger-wrap-focus .x-form-trigger-click {
  background-position: -34px 0;
}
.x-quirks .prefixie6 .x-form-trigger-input-cell {
  height: 22px;
}
.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell {
  height: 20px;
}
.x-form-trigger-wrap-focus .x-form-spinner-down {
  background-position: -51px -11px;
}
.x-form-trigger-wrap .x-form-spinner-down-over {
  background-position: -17px -11px;
}
.x-form-trigger-wrap-focus .x-form-spinner-down-over {
  background-position: -68px -11px;
}
.x-form-trigger-wrap .x-form-spinner-down-click {
  background-position: -34px -11px;
}
.x-toolbar-item div.x-form-spinner-up, .x-toolbar-item div.x-form-spinner-down {
  background-image: url(images/form/spinner-small.gif);
  height: 10px;
}
.x-toolbar-item .x-form-spinner-down {
  background-position: 0 -10px;
}
.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down {
  background-position: -51px -10px;
}
.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-over {
  background-position: -17px -10px;
}
.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  background-position: -68px -10px;
}
.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-click {
  background-position: -34px -10px;
}
.x-boundlist {
  border-width: 1px;
  border-style: solid;
  border-color: #98c0f4;
  background: white;
}
.x-strict .x-ie7m .x-boundlist-list-ct {
  position: relative;
}
.x-boundlist-item {
  padding: 0 3px;
  line-height: 20px;
  cursor: pointer;
  cursor: hand;
  position: relative;
  zoom: 1;
  border-width: 1px;
  border-style: dotted;
  border-color: white;
}
.x-boundlist-selected {
  background: #cbdaf0;
  border-color: #8eabe4;
}
.x-boundlist-item-over {
  background: #dfe8f6;
  border-color: #a3bae9;
}
.x-boundlist-floating {
  border-top-width: 0;
}
.x-boundlist-above {
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.x-menu-item .x-form-item-label {
  font-size: 11px;
  color: #222222;
}
.x-tool {
  cursor: pointer;
}
.x-tool-img {
  overflow: hidden;
  width: 15px;
  height: 15px;
  background-image: url(images/tools/tool-sprites.gif);
  margin: 0;
}
.x-tool-placeholder {
  visibility: hidden;
}
.x-tool-close {
  background-position: 0 0;
}
.x-tool-minimize {
  background-position: 0 -15px;
}
.x-tool-maximize {
  background-position: 0 -30px;
}
.x-tool-restore {
  background-position: 0 -45px;
}
.x-tool-toggle {
  background-position: 0 -60px;
}
.x-panel-collapsed .x-tool-toggle {
  background-position: 0 -75px;
}
.x-tool-gear {
  background-position: 0 -90px;
}
.x-tool-prev {
  background-position: 0 -105px;
}
.x-tool-next {
  background-position: 0 -120px;
}
.x-tool-pin {
  background-position: 0 -135px;
}
.x-tool-unpin {
  background-position: 0 -150px;
}
.x-tool-right {
  background-position: 0 -165px;
}
.x-tool-left {
  background-position: 0 -180px;
}
.x-tool-down {
  background-position: 0 -195px;
}
.x-tool-up {
  background-position: 0 -210px;
}
.x-tool-refresh {
  background-position: 0 -225px;
}
.x-tool-plus {
  background-position: 0 -240px;
}
.x-tool-minus {
  background-position: 0 -255px;
}
.x-tool-search {
  background-position: 0 -270px;
}
.x-tool-save {
  background-position: 0 -285px;
}
.x-tool-help {
  background-position: 0 -300px;
}
.x-tool-print {
  background-position: 0 -315px;
}
.x-tool-expand {
  background-position: 0 -330px;
}
.x-tool-collapse {
  background-position: 0 -345px;
}
.x-tool-resize {
  background-position: 0 -360px;
}
.x-tool-move {
  background-position: 0 -375px;
}
.x-tool-expand-bottom, .x-tool-collapse-bottom {
  background-position: 0 -195px;
}
.x-tool-expand-top, .x-tool-collapse-top {
  background-position: 0 -210px;
}
.x-tool-expand-left, .x-tool-collapse-left {
  background-position: 0 -180px;
}
.x-tool-expand-right, .x-tool-collapse-right {
  background-position: 0 -165px;
}
.x-tool-over .x-tool-close {
  background-position: -15px 0;
}
.x-tool-over .x-tool-minimize {
  background-position: -15px -15px;
}
.x-tool-over .x-tool-maximize {
  background-position: -15px -30px;
}
.x-tool-over .x-tool-restore {
  background-position: -15px -45px;
}
.x-tool-over .x-tool-toggle {
  background-position: -15px -60px;
}
.x-panel-collapsed .x-tool-over .x-tool-toggle {
  background-position: -15px -75px;
}
.x-tool-over .x-tool-gear {
  background-position: -15px -90px;
}
.x-tool-over .x-tool-prev {
  background-position: -15px -105px;
}
.x-tool-over .x-tool-next {
  background-position: -15px -120px;
}
.x-tool-over .x-tool-pin {
  background-position: -15px -135px;
}
.x-tool-over .x-tool-unpin {
  background-position: -15px -150px;
}
.x-tool-over .x-tool-right {
  background-position: -15px -165px;
}
.x-tool-over .x-tool-left {
  background-position: -15px -180px;
}
.x-tool-over .x-tool-down {
  background-position: -15px -195px;
}
.x-tool-over .x-tool-up {
  background-position: -15px -210px;
}
.x-tool-over .x-tool-refresh {
  background-position: -15px -225px;
}
.x-tool-over .x-tool-plus {
  background-position: -15px -240px;
}
.x-tool-over .x-tool-minus {
  background-position: -15px -255px;
}
.x-tool-over .x-tool-search {
  background-position: -15px -270px;
}
.x-tool-over .x-tool-save {
  background-position: -15px -285px;
}
.x-tool-over .x-tool-help {
  background-position: -15px -300px;
}
.x-tool-over .x-tool-print {
  background-position: -15px -315px;
}
.x-tool-over .x-tool-expand {
  background-position: -15px -330px;
}
.x-tool-over .x-tool-collapse {
  background-position: -15px -345px;
}
.x-tool-over .x-tool-resize {
  background-position: -15px -360px;
}
.x-tool-over .x-tool-move {
  background-position: -15px -375px;
}
.x-tool-over .x-tool-expand-bottom, .x-tool-over .x-tool-collapse-bottom {
  background-position: -15px -195px;
}
.x-tool-over .x-tool-expand-top, .x-tool-over .x-tool-collapse-top {
  background-position: -15px -210px;
}
.x-tool-over .x-tool-expand-left, .x-tool-over .x-tool-collapse-left {
  background-position: -15px -180px;
}
.x-tool-over .x-tool-expand-right, .x-tool-over .x-tool-collapse-right {
  background-position: -15px -165px;
}
.x-resizable-handle {
  position: absolute;
  z-index: 100;
  font-size: 1px;
  line-height: 6px;
  overflow: hidden;
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  background-color: white;
}
.x-collapsed .x-resizable-handle {
  display: none;
}
.x-resizable-over .x-resizable-handle-north {
  cursor: n-resize;
}
.x-resizable-over .x-resizable-handle-south {
  cursor: s-resize;
}
.x-resizable-over .x-resizable-handle-east {
  cursor: e-resize;
}
.x-resizable-over .x-resizable-handle-west {
  cursor: w-resize;
}
.x-resizable-over .x-resizable-handle-southeast {
  cursor: se-resize;
}
.x-resizable-over .x-resizable-handle-northwest {
  cursor: nw-resize;
}
.x-resizable-over .x-resizable-handle-northeast {
  cursor: ne-resize;
}
.x-resizable-over .x-resizable-handle-southwest {
  cursor: sw-resize;
}
.x-resizable-handle-east {
  width: 6px;
  height: 100%;
  right: 0;
  top: 0;
}
.x-resizable-handle-south {
  width: 100%;
  height: 6px;
  left: 0;
  bottom: 0;
}
.x-resizable-handle-west {
  width: 6px;
  height: 100%;
  left: 0;
  top: 0;
}
.x-resizable-handle-north {
  width: 100%;
  height: 6px;
  left: 0;
  top: 0;
}
.x-resizable-handle-southeast {
  width: 6px;
  height: 6px;
  right: 0;
  bottom: 0;
  z-index: 101;
}
.x-resizable-handle-northwest {
  width: 6px;
  height: 6px;
  left: 0;
  top: 0;
  z-index: 101;
}
.x-resizable-handle-northeast {
  width: 6px;
  height: 6px;
  right: 0;
  top: 0;
  z-index: 101;
}
.x-resizable-handle-southwest {
  width: 6px;
  height: 6px;
  left: 0;
  bottom: 0;
  z-index: 101;
}
.x-ie .x-resizable-handle-east {
  margin-right: -1px;
}
.x-ie .x-resizable-handle-south {
  margin-bottom: -1px;
}
.x-resizable-pinned .x-resizable-handle, .x-resizable-over .x-resizable-handle {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.x-window .x-window-handle {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.x-window-collapsed .x-window-handle {
  display: none;
}
.x-resizable-proxy {
  border: 1px dashed #3b5a82;
  position: absolute;
  overflow: hidden;
  z-index: 50000;
}
.x-resizable-over .x-resizable-handle-east, .x-resizable-over .x-resizable-handle-west {
  background-image: url(images/sizer/e-handle.gif);
}
.x-resizable-pinned .x-resizable-handle-east, .x-resizable-pinned .x-resizable-handle-west {
  background-image: url(images/sizer/e-handle.gif);
}
.x-resizable-over .x-resizable-handle-south, .x-resizable-over .x-resizable-handle-north {
  background-image: url(images/sizer/s-handle.gif);
}
.x-resizable-pinned .x-resizable-handle-south, .x-resizable-pinned .x-resizable-handle-north {
  background-image: url(images/sizer/s-handle.gif);
}
.x-resizable-over .x-resizable-handle-southeast, .x-resizable-pinned .x-resizable-handle-southeast {
  background-position: top left;
  background-image: url(images/sizer/se-handle.gif);
}
.x-resizable-over .x-resizable-handle-northwest, .x-resizable-pinned .x-resizable-handle-northwest {
  background-position: bottom right;
  background-image: url(images/sizer/nw-handle.gif);
}
.x-resizable-over .x-resizable-handle-northeast, .x-resizable-pinned .x-resizable-handle-northeast {
  background-position: bottom left;
  background-image: url(images/sizer/ne-handle.gif);
}
.x-resizable-over .x-resizable-handle-southwest, .x-resizable-pinned .x-resizable-handle-southwest {
  background-position: top right;
  background-image: url(images/sizer/sw-handle.gif);
}
.x-slider-horz {
  padding-left: 7px;
  background: no-repeat 0 -15px;
}
.x-slider-horz .x-slider-end {
  padding-right: 7px;
  background: no-repeat right -30px;
}
.x-slider-horz .x-slider-inner {
  height: 15px;
}
.x-ie6 .x-form-item .x-slider-horz, .x-ie7 .x-form-item .x-slider-horz, .x-quirks .x-ie .x-form-item .x-slider-horz {
  margin-top: 4px;
}
.x-slider-horz .x-slider-thumb {
  width: 16px;
  height: 16px;
  margin-left: -6px;
  background-image: url(images/slider/slider-thumb.png);
  top: 1px;
}
.x-slider-horz .x-slider-thumb-over {
  background-position: -16px -15px;
}
.x-slider-horz .x-slider-thumb-drag {
  background-position: -32px -30px;
}
.x-slider-vert {
  padding-top: 7px;
  background: no-repeat -30px 0;
}
.x-slider-vert .x-slider-end {
  padding-bottom: 7px;
  background: no-repeat -15px bottom;
  width: 15px;
}
.x-slider-vert .x-slider-inner {
  width: 15px;
}
.x-slider-vert .x-slider-thumb {
  width: 15px;
  height: 14px;
  margin-bottom: -7px;
  background-image: url(images/slider/slider-v-thumb.png);
}
.x-slider-vert .x-slider-thumb-over {
  background-position: -15px -14px;
}
.x-slider-vert .x-slider-thumb-drag {
  background-position: -30px -28px;
}
.x-slider-horz {
  background-image: url(images/slider/slider-bg.png);
}
.x-slider-horz .x-slider-end, .x-slider-horz .x-slider-inner {
  background-image: url(images/slider/slider-bg.png);
}
.x-slider-vert {
  background-image: url(images/slider/slider-v-bg.png);
}
.x-slider-vert .x-slider-end, .x-slider-vert .x-slider-inner {
  background-image: url(images/slider/slider-v-bg.png);
}
.x-form-trigger {
  height: 22px;
}
.x-content-box .x-form-trigger {
  height: 21px;
}
.x-field-toolbar .x-form-trigger {
  height: 20px;
}
.x-content-box .x-field-toolbar .x-form-trigger {
  height: 19px;
}
.x-content-box div.x-form-spinner-up, .x-content-box div.x-form-spinner-down {
  height: 10px;
}
.x-content-box .x-toolbar-item div.x-form-spinner-up, .x-content-box .x-toolbar-item div.x-form-spinner-down {
  height: 9px;
}
.x-resizable-over .x-resizable-handle-east, .x-resizable-over .x-resizable-handle-west {
  background-position: left;
}
.x-resizable-pinned .x-resizable-handle-east, .x-resizable-pinned .x-resizable-handle-west {
  background-position: left;
}
.x-resizable-over .x-resizable-handle-south, .x-resizable-over .x-resizable-handle-north {
  background-position: top;
}
.x-resizable-pinned .x-resizable-handle-south, .x-resizable-pinned .x-resizable-handle-north {
  background-position: top;
}
.x-resizable-over .x-resizable-handle-southeast, .x-resizable-pinned .x-resizable-handle-southeast {
  background-position: top left;
}
.x-resizable-over .x-resizable-handle-northwest, .x-resizable-pinned .x-resizable-handle-northwest {
  background-position: bottom right;
}
.x-resizable-over .x-resizable-handle-northeast, .x-resizable-pinned .x-resizable-handle-northeast {
  background-position: bottom left;
}
.x-resizable-over .x-resizable-handle-southwest, .x-resizable-pinned .x-resizable-handle-southwest {
  background-position: top right;
}
@font-face {
  font-family: "hehe";
  src: url("fonts/hehe.eot");
  src: url("fonts/hehe.eot?#iefix") format("embedded-opentype"), url("fonts/hehe.woff") format("woff"), url("fonts/hehe.ttf") format("truetype"), url("fonts/hehe.svg#hehe") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "hehe" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^=hehe-icons-]:before,
[class*=" hehe-icons-"]:before {
  font-family: "hehe" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.hehe-icons-headline:before {
  content: "a";
}
.hehe-icons-dot:before {
  content: "b";
}
.hehe-icons-legend:before {
  content: "c";
}
.hehe-icons-pie:before {
  content: "d";
}
.hehe-icons-select:before {
  content: "e";
}
.hehe-icons-time:before {
  content: "f";
}
.hehe-icons-plus:before {
  content: "g";
}
.hehe-icons-editpen:before {
  content: "h";
}
.hehe-icons-myaaps:before {
  content: "i";
}
.hehe-icons-design:before {
  content: "j";
}
.hehe-icons-customize:before {
  content: "l";
}
.hehe-icons-user:before {
  content: "m";
}
.hehe-icons-more:before {
  content: "n";
}
.hehe-icons-properties:before {
  content: "o";
}
.hehe-icons-models:before {
  content: "p";
}
.hehe-icons-tools:before {
  content: "q";
}
.hehe-icons-divide:before {
  content: "r";
}
.hehe-icons-input:before {
  content: "s";
}
.hehe-icons-band:before {
  content: "t";
}
.hehe-icons-tiles:before {
  content: "u";
}
.hehe-icons-search:before {
  content: "v";
}
.hehe-icons-custom:before {
  content: "x";
}
.hehe-icons-dateviewer:before {
  content: "y";
}
.hehe-icons-content:before {
  content: "z";
}
.hehe-icons-zoomout:before {
  content: "A";
}
.hehe-icons-trigger:before {
  content: "B";
}
.hehe-icons-mindmap:before {
  content: "C";
}
.hehe-icons-form:before {
  content: "D";
}
.hehe-icons-list:before {
  content: "E";
}
.hehe-icons-actions:before {
  content: "G";
}
.hehe-icons-cancel:before {
  content: "H";
}
.hehe-icons-save-as-template:before {
  content: "I";
}
.hehe-icons-redo:before {
  content: "J";
}
.hehe-icons-undo:before {
  content: "K";
}
.hehe-icons-duplicate:before {
  content: "L";
}
.hehe-icons-save:before {
  content: "O";
}
.hehe-icons-preview:before {
  content: "P";
}
.hehe-icons-check:before {
  content: "Q";
}
.hehe-icons-launch:before {
  content: "S";
}
.hehe-icons-expand:before {
  content: "T";
}
.hehe-icons-workflow:before {
  content: "V";
}
.hehe-icons-multi:before {
  content: "W";
}
.hehe-icons-hehe-50:before {
  content: "Y";
}
.hehe-icons-refresh:before {
  content: "Z";
}
.hehe-icons-glossary:before {
  content: "1";
}
.hehe-icons-lifebuoy:before {
  content: "2";
}
.hehe-icons-info:before {
  content: "3";
}
.hehe-icons-idea-05:before {
  content: "4";
}
.hehe-icons-d-left:before {
  content: "5";
}
.hehe-icons-d-right:before {
  content: "6";
}
.hehe-icons-d-top:before {
  content: "7";
}
.hehe-icons-d-bottom:before {
  content: "8";
}
.hehe-icons-colapse:before {
  content: "9";
}
.hehe-icons-colapseexpand:before {
  content: "!";
}
.hehe-icons-colapseitem:before {
  content: '"';
}
.hehe-icons-chevron-up:before {
  content: "#";
}
.hehe-icons-bar:before {
  content: "$";
}
.hehe-icons-line:before {
  content: "%";
}
.hehe-icons-mobilemenu:before {
  content: "&";
}
.hehe-icons-zaddfolder:before {
  content: "0";
}
.hehe-icons-analitics:before {
  content: "U";
}
.hehe-icons-add:before {
  content: "w";
}
.hehe-icons-export:before {
  content: "M";
}
.hehe-icons-import:before {
  content: "N";
}
.hehe-icons-document:before {
  content: "F";
}
.hehe-icons-cancel2:before {
  content: "(";
}
.hehe-icons-play:before {
  content: "'";
}
.hehe-icons-globus:before {
  content: "X";
}
.hehe-icons-compress:before {
  content: "*";
}
.hehe-icons-find-new-content:before {
  content: "+";
}
.hehe-icons-hehe:before {
  content: ",";
}
.hehe-icons-unpublish:before {
  content: "-";
}
.hehe-icons-unshare:before {
  content: ".";
}
.hehe-icons-share:before, #toolbars-left-bottom .toolbar #share-map-button:before {
  content: "/";
}
.hehe-icons-publish:before {
  content: ":";
}
.hehe-icons-build:before {
  content: "k";
}
.hehe-icons-delete:before {
  content: "R";
}
.hehe-icons-cancel3-1:before {
  content: ")";
}
.hehe-icons-preview-1:before {
  content: ";";
}
.hehe-icons-validate:before {
  content: "<";
}
.hehe-icons-orders:before {
  content: "=";
}
.hehe-icons-question-mark:before {
  content: ">";
}
.hehe-icons-time-chart:before {
  content: "?";
}
.hehe-icons-promote1:before {
  content: "@";
}
.hehe-icons-promote2:before {
  content: "[";
}
.hehe-icons-revert:before {
  content: "]";
}
.hehe-icons-unpromote1:before {
  content: "^";
}
.hehe-icons-unpromote2:before {
  content: "_";
}
.hehe-icons-update:before {
  content: "`";
}
.hehe-icons-update1:before {
  content: "{";
}
.hehe-icons-time-line:before {
  content: "|";
}
.hehe-icons-time-bar:before {
  content: "}";
}
.hehe-icons-external-services:before {
  content: "~";
}
.hehe-icons-warning:before {
  content: "\e000";
}
.hehe-icons-base-map:before {
  content: "\\";
}
.hehe-icons-b-box:before {
  content: "\e001";
}
.hehe-icons-connection:before {
  content: "\e002";
}
.hehe-icons-incident-analyser-lockup:before {
  content: "\e003";
}
.hehe-icons-measure:before {
  content: "\e004";
}
.hehe-icons-measure-area:before {
  content: "\e005";
}
.hehe-icons-measure-line:before {
  content: "\e006";
}
.hehe-icons-measure-point:before {
  content: "\e007";
}
/* including package ext-theme-base */
/**
 * * Creates a background gradient.
 * *
 * * Example usage:
 * *     .foo {
 * *          @include background-gradient(#808080, matte, left);
 * *     }
 * *
 * * @param {Color} $bg-color The background color of the gradient
 * * @param {String/List} [$type=$base-gradient] The type of gradient to be used. Can either
 * * be a String which is a predefined gradient name, or it can can be a list of color stops.
 * * If null is passed, this mixin will still set the `background-color` to $bg-color.
 * * The available predefined gradient names are:
 * *
 * * * bevel
 * * * glossy
 * * * recessed
 * * * matte
 * * * matte-reverse
 * * * panel-header
 * * * tabbar
 * * * tab
 * * * tab-active
 * * * tab-over
 * * * tab-disabled
 * * * grid-header
 * * * grid-header-over
 * * * grid-row-over
 * * * grid-cell-special
 * * * glossy-button
 * * * glossy-button-over
 * * * glossy-button-pressed
 * *
 * * Each of these gradient names corresponds to a function named linear-gradient[name].
 * * Themes can override these functions to customize the color stops that they return.
 * * For example, to override the glossy-button gradient function add a function named
 * * "linear-gradient-glossy-button" to a file named "sass/etc/mixins/background-gradient.scss"
 * * in your theme.  The function should return the result of calling the Compass linear-gradient
 * * function with the desired direction and color-stop information for the gradient.  For example:
 * *
 * *     @function linear-gradient-glossy-button($direction, $bg-color) {
 * *         @return linear-gradient($direction, color_stops(
 * *             mix(#fff, $bg-color, 10%),
 * *             $bg-color 50%,
 * *             mix(#000, $bg-color, 5%) 51%,
 * *             $bg-color
 * *         ));
 * *     }
 * *
 * * @param {String} [$direction=top] The direction of the gradient. Can either be
 * * `top` or `left`.
 * *
 * * @member Global_CSS */
/* * Method which inserts a full background-image property for a theme image.
 * * It checks if the file exists and if it doesn't, it'll throw an error.
 * * By default it will not include the background-image property if it is not found,
 * * but this can be changed by changing the default value of $include-missing-images to
 * * be true. */
/* including package ext-theme-neutral */
/* including package ext-theme-neptune */
/* including package ext-theme-neptune */
/**
 * * @var {boolean}
 * * True to include the "light" panel UI */
/**
 * * @var {boolean}
 * * True to include the "light-framed" panel UI */
/**
 * * @var {color} $form-field-focus-border-color
 * * In the default neptune color scheme this is the same as $base-highlight-color
 * * but it does not change automatically when one changes the $base-color.  This is because
 * * checkboxes and radio buttons have this focus color hard coded into their background
 * * images.  If this color is changed, you should also modify checkbox and radio button
 * * background images to match */
/* including package ext-theme-neutral */
/**
 * * @class Global_CSS */
/**
 * * @var {color} $color
 * * The default text color to be used throughout the theme. */
/**
 * * @var {string} $font-family
 * * The default font-family to be used throughout the theme. */
/**
 * * @var {string} $font-size
 * * The default font-family to be used throughout the theme. */
/**
 * * @var {string} $base-gradient
 * * The base gradient to be used throughout the theme. */
/**
 * * @var {color} $base-color
 * * The base color to be used throughout the theme. */
/**
 * * @var {color} $neutral-color
 * * The neutral color to be used throughout the theme. */
/**
 * * @var {color} $body-background-color
 * * Background color to apply to the body element */
/**
 * * @class Ext.FocusManager */
/**
 * * @var {color}
 * * The border-color of the focusFrame.  See {@link #method-enable}. */
/**
 * * @var {color}
 * * The border-style of the focusFrame.  See {@link #method-enable}. */
/**
 * * @var {color}
 * * The border-width of the focusFrame.  See {@link #method-enable}. */
/**
 * * @class Ext.LoadMask */
/**
 * * @var {number}
 * * Opacity of the LoadMask */
/**
 * * @var {color}
 * * The background-color of the LoadMask */
/**
 * * @var {string}
 * * The type of cursor to dislay when the cursor is over the LoadMask */
/**
 * * @var {number/list}
 * * The padding to apply to the LoadMask's message element */
/**
 * * @var {string}
 * * The border-style of the LoadMask's message element */
/**
 * * @var {color}
 * * The border-color of the LoadMask's message element */
/**
 * * @var {number}
 * * The border-width of the LoadMask's message element */
/**
 * * @var {color}
 * * The background-color of the LoadMask's message element */
/**
 * * @var {string/list}
 * * The background-gradient of the LoadMask's message element. Can be either the name
 * * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
 * * {@link Global_CSS#background-gradient}. */
/**
 * * @var {number/list}
 * * The padding of the message inner element */
/**
 * * @var {string}
 * * The icon to display in the message inner element */
/**
 * * @var {list}
 * * The background-position of the icon */
/**
 * * @var {string}
 * * The border-style of the message inner element */
/**
 * * @var {color}
 * * The border-color of the message inner element */
/**
 * * @var {number}
 * * The border-width of the message inner element */
/**
 * * @var {color}
 * * The background-color of the message inner element */
/**
 * * @var {color}
 * * The text color of the message inner element */
/**
 * * @var {number}
 * * The font-size of the message inner element */
/**
 * * @var {string}
 * * The font-weight of the message inner element */
/**
 * * @var {string}
 * * The font-family of the message inner element */
/**
 * * @var {number/list}
 * * The padding of the message element */
/**
 * * @var {number}
 * * The border-radius of the message element */
/**
 * * @class Ext.ProgressBar */
/**
 * * @var {number}
 * * The height of the ProgressBar */
/**
 * * @var {color}
 * * The border-color of the ProgressBar */
/**
 * * @var {number}
 * * The border-width of the ProgressBar */
/**
 * * @var {number}
 * * The border-radius of the ProgressBar */
/**
 * * @var {color}
 * * The background-color of the ProgressBar */
/**
 * * @var {color}
 * * The background-color of the ProgressBar's moving element */
/**
 * * @var {string/list}
 * * The background-gradient of the ProgressBar's moving element. Can be either the name of
 * * a predefined gradient or a list of color stops. Used as the `$type` parameter for
 * * {@link Global_CSS#background-gradient}. */
/**
 * * @var {color}
 * * The color of the ProgressBar's text when in front of the ProgressBar's moving element */
/**
 * * @var {color}
 * * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it */
/**
 * * @var {string}
 * * The text-align of the ProgressBar's text */
/**
 * * @var {number}
 * * The font-size of the ProgressBar's text */
/**
 * * @var {string}
 * * The font-weight of the ProgressBar's text */
/**
 * * @var {boolean}
 * * True to include the "default" ProgressBar UI */
/**
 * * @class Ext.button.Button */
/**
 * * @var {number}
 * * The default width for a button's {@link #cfg-menu} arrow */
/**
 * * @var {number}
 * * The default height for a button's {@link #cfg-menu} arrow */
/**
 * * @var {number}
 * * The default width for a {@link Ext.button.Split Split Button}'s arrow */
/**
 * * @var {number}
 * * The default height for a {@link Ext.button.Split Split Button}'s arrow */
/**
 * * @var {number}
 * * The default space between a button's icon and text */
/**
 * * @var {number}
 * * The default border-radius for a small {@link #scale} button */
/**
 * * @var {number}
 * * The default border-width for a small {@link #scale} button */
/**
 * * @var {number}
 * * The default padding for a small {@link #scale} button */
/**
 * * @var {number}
 * * The default horizontal padding to add to the left and right of the text element for
 * * a small {@link #scale} button */
/**
 * * @var {number}
 * * The default font-size for a small {@link #scale} button */
/**
 * * @var {number}
 * * The default font-size for a small {@link #scale} button when the cursor is over the button */
/**
 * * @var {number}
 * * The default font-size for a small {@link #scale} button when the button is focused */
/**
 * * @var {number}
 * * The default font-size for a small {@link #scale} button when the button is pressed */
/**
 * * @var {number}
 * * The default font-size for a small {@link #scale} button when the button is disabled */
/**
 * * @var {string}
 * * The default font-weight for a small {@link #scale} button */
/**
 * * @var {string}
 * * The default font-weight for a small {@link #scale} button when the cursor is over the button */
/**
 * * @var {string}
 * * The default font-weight for a small {@link #scale} button when the button is focused */
/**
 * * @var {string}
 * * The default font-weight for a small {@link #scale} button when the button is pressed */
/**
 * * @var {string}
 * * The default font-weight for a small {@link #scale} button when the button is disabled */
/**
 * * @var {string}
 * * The default font-family for a small {@link #scale} button */
/**
 * * @var {string}
 * * The default font-family for a small {@link #scale} button when the cursor is over the button */
/**
 * * @var {string}
 * * The default font-family for a small {@link #scale} button when the button is focused */
/**
 * * @var {string}
 * * The default font-family for a small {@link #scale} button when the button is pressed */
/**
 * * @var {string}
 * * The default font-family for a small {@link #scale} button when the button is disabled */
/**
 * * @var {number}
 * * The default icon size for a small {@link #scale} button */
/**
 * * @var {number}
 * * The default width of a small {@link #scale} button's {@link #cfg-menu} arrow */
/**
 * * @var {number}
 * * The default height of a small {@link #scale} button's {@link #cfg-menu} arrow */
/**
 * * @var {number}
 * * The default width of a small {@link #scale} {@link Ext.button.Split Split Button}'s arrow */
/**
 * * @var {number}
 * * The default height of a small {@link #scale} {@link Ext.button.Split Split Button}'s arrow */
/**
 * * @var {number}
 * * The default border-radius for a medium {@link #scale} button */
/**
 * * @var {number}
 * * The default border-width for a medium {@link #scale} button */
/**
 * * @var {number}
 * * The default padding for a medium {@link #scale} button */
/**
 * * @var {number}
 * * The default horizontal padding to add to the left and right of the text element for
 * * a medium {@link #scale} button */
/**
 * * @var {number}
 * * The default font-size for a medium {@link #scale} button */
/**
 * * @var {number}
 * * The default font-size for a medium {@link #scale} button when the cursor is over the button */
/**
 * * @var {number}
 * * The default font-size for a medium {@link #scale} button when the button is focused */
/**
 * * @var {number}
 * * The default font-size for a medium {@link #scale} button when the button is pressed */
/**
 * * @var {number}
 * * The default font-size for a medium {@link #scale} button when the button is disabled */
/**
 * * @var {string}
 * * The default font-weight for a medium {@link #scale} button */
/**
 * * @var {string}
 * * The default font-weight for a medium {@link #scale} button when the cursor is over the button */
/**
 * * @var {string}
 * * The default font-weight for a medium {@link #scale} button when the button is focused */
/**
 * * @var {string}
 * * The default font-weight for a medium {@link #scale} button when the button is pressed */
/**
 * * @var {string}
 * * The default font-weight for a medium {@link #scale} button when the button is disabled */
/**
 * * @var {string}
 * * The default font-family for a medium {@link #scale} button */
/**
 * * @var {string}
 * * The default font-family for a medium {@link #scale} button when the cursor is over the button */
/**
 * * @var {string}
 * * The default font-family for a medium {@link #scale} button when the button is focused */
/**
 * * @var {string}
 * * The default font-family for a medium {@link #scale} button when the button is pressed */
/**
 * * @var {string}
 * * The default font-family for a medium {@link #scale} button when the button is disabled */
/**
 * * @var {number}
 * * The default icon size for a medium {@link #scale} button */
/**
 * * @var {number}
 * * The default width of a medium {@link #scale} button's {@link #cfg-menu} arrow */
/**
 * * @var {number}
 * * The default height of a medium {@link #scale} button's {@link #cfg-menu} arrow */
/**
 * * @var {number}
 * * The default width of a medium {@link #scale} {@link Ext.button.Split Split Button}'s arrow */
/**
 * * @var {number}
 * * The default height of a medium {@link #scale} {@link Ext.button.Split Split Button}'s arrow */
/**
 * * @var {number}
 * * The default border-radius for a large {@link #scale} button */
/**
 * * @var {number}
 * * The default border-width for a large {@link #scale} button */
/**
 * * @var {number}
 * * The default padding for a large {@link #scale} button */
/**
 * * @var {number}
 * * The default horizontal padding to add to the left and right of the text element for
 * * a large {@link #scale} button */
/**
 * * @var {number}
 * * The default font-size for a large {@link #scale} button */
/**
 * * @var {number}
 * * The default font-size for a large {@link #scale} button when the cursor is over the button */
/**
 * * @var {number}
 * * The default font-size for a large {@link #scale} button when the button is focused */
/**
 * * @var {number}
 * * The default font-size for a large {@link #scale} button when the button is pressed */
/**
 * * @var {number}
 * * The default font-size for a large {@link #scale} button when the button is disabled */
/**
 * * @var {string}
 * * The default font-weight for a large {@link #scale} button */
/**
 * * @var {string}
 * * The default font-weight for a large {@link #scale} button when the cursor is over the button */
/**
 * * @var {string}
 * * The default font-weight for a large {@link #scale} button when the button is focused */
/**
 * * @var {string}
 * * The default font-weight for a large {@link #scale} button when the button is pressed */
/**
 * * @var {string}
 * * The default font-weight for a large {@link #scale} button when the button is disabled */
/**
 * * @var {string}
 * * The default font-family for a large {@link #scale} button */
/**
 * * @var {string}
 * * The default font-family for a large {@link #scale} button when the cursor is over the button */
/**
 * * @var {string}
 * * The default font-family for a large {@link #scale} button when the button is focused */
/**
 * * @var {string}
 * * The default font-family for a large {@link #scale} button when the button is pressed */
/**
 * * @var {string}
 * * The default font-family for a large {@link #scale} button when the button is disabled */
/**
 * * @var {number}
 * * The default icon size for a large {@link #scale} button */
/**
 * * @var {number}
 * * The default width of a large {@link #scale} button's {@link #cfg-menu} arrow */
/**
 * * @var {number}
 * * The default height of a large {@link #scale} button's {@link #cfg-menu} arrow */
/**
 * * @var {number}
 * * The default width of a large {@link #scale} {@link Ext.button.Split Split Button}'s arrow */
/**
 * * @var {number}
 * * The default height of a large {@link #scale} {@link Ext.button.Split Split Button}'s arrow */
/**
 * * @var {color}
 * * The base color for the `default` button UI */
/**
 * * @var {color}
 * * The base color for the `default` button UI when the cursor is over the button */
/**
 * * @var {color}
 * * The base color for the `default` button UI when the button is focused */
/**
 * * @var {color}
 * * The base color for the `default` button UI when the button is pressed */
/**
 * * @var {color}
 * * The base color for the `default` button UI when the button is disabled */
/**
 * * @var {color}
 * * The border-color for the `default` button UI */
/**
 * * @var {color}
 * * The border-color for the `default` button UI when the cursor is over the button */
/**
 * * @var {color}
 * * The border-color for the `default` button UI when the button is focused */
/**
 * * @var {color}
 * * The border-color for the `default` button UI when the button is pressed */
/**
 * * @var {color}
 * * The border-color for the `default` button UI when the button is disabled */
/**
 * * @var {color}
 * * The background-color for the `default` button UI */
/**
 * * @var {color}
 * * The background-color for the `default` button UI when the cursor is over the button */
/**
 * * @var {color}
 * * The background-color for the `default` button UI when the button is focused */
/**
 * * @var {color}
 * * The background-color for the `default` button UI when the button is pressed */
/**
 * * @var {color}
 * * The background-color for the `default` button UI when the button is disabled */
/**
 * * @var {string/list}
 * * The background-gradient for the `default` button UI.  Can be either the name of a
 * * predefined gradient or a list of color stops. Used as the `$type` parameter for
 * * {@link Global_CSS#background-gradient}. */
/**
 * * @var {string/list}
 * * The background-gradient for the `default` button UI when the cursor is over the button.
 * * Can be either the name of a predefined gradient or a list of color stops. Used as the
 * * `$type` parameter for {@link Global_CSS#background-gradient}. */
/**
 * * @var {string/list}
 * * The background-gradient for the `default` button UI when the button is focused.  Can be
 * * either the name of a predefined gradient or a list of color stops. Used as the `$type`
 * * parameter for {@link Global_CSS#background-gradient}. */
/**
 * * @var {string/list}
 * * The background-gradient for the `default` button UI when the button is pressed.  Can be
 * * either the name of a predefined gradient or a list of color stops. Used as the `$type`
 * * parameter for {@link Global_CSS#background-gradient}. */
/**
 * * @var {string/list}
 * * The background-gradient for the `default` button UI when the button is disabled.  Can be
 * * either the name of a predefined gradient or a list of color stops. Used as the `$type`
 * * parameter for {@link Global_CSS#background-gradient}. */
/**
 * * @var {color}
 * * The text color for the `default` button UI */
/**
 * * @var {color}
 * * The text color for the `default` button UI when the cursor is over the button */
/**
 * * @var {color}
 * * The text color for the `default` button UI when the button is focused */
/**
 * * @var {color}
 * * The text color for the `default` button UI when the button is pressed */
/**
 * * @var {color}
 * * The text color for the `default` button UI when the button is disabled */
/**
 * * @var {color}
 * * The color of the {@link #glyph} icon for the `default` button UI */
/**
 * * @var {color}
 * * The opacity of the {@link #glyph} icon for the `default` button UI */
/**
 * * @var {color}
 * * The border-color for the `default-toolbar` button UI */
/**
 * * @var {color}
 * * The border-color for the `default-toolbar` button UI when the cursor is over the button */
/**
 * * @var {color}
 * * The border-color for the `default-toolbar` button UI when the button is focused */
/**
 * * @var {color}
 * * The border-color for the `default-toolbar` button UI when the button is pressed */
/**
 * * @var {color}
 * * The border-color for the `default-toolbar` button UI when the button is disabled */
/**
 * * @var {color}
 * * The background-color for the `default-toolbar` button UI */
/**
 * * @var {color}
 * * The background-color for the `default-toolbar` button UI when the cursor is over the button */
/**
 * * @var {color}
 * * The background-color for the `default-toolbar` button UI when the button is focused */
/**
 * * @var {color}
 * * The background-color for the `default-toolbar` button UI when the button is pressed */
/**
 * * @var {color}
 * * The background-color for the `default-toolbar` button UI when the button is disabled */
/**
 * * @var {string/list}
 * * The background-gradient for the `default-toolbar` button UI.  Can be either the name of
 * * a predefined gradient or a list of color stops. Used as the `$type` parameter for
 * * {@link Global_CSS#background-gradient}. */
/**
 * * @var {string/list}
 * * The background-gradient for the `default-toolbar` button UI when the cursor is over the
 * * button. Can be either the name of a predefined gradient or a list of color stops. Used
 * * as the `$type` parameter for {@link Global_CSS#background-gradient}. */
/**
 * * @var {string/list}
 * * The background-gradient for the `default-toolbar` button UI when the button is focused.
 * * Can be either the name of a predefined gradient or a list of color stops. Used as the
 * * `$type` parameter for {@link Global_CSS#background-gradient}. */
/**
 * * @var {string/list}
 * * The background-gradient for the `default-toolbar` button UI when the button is pressed.
 * * Can be either the name of a predefined gradient or a list of color stops. Used as the
 * * `$type` parameter for {@link Global_CSS#background-gradient}. */
/**
 * * @var {string/list}
 * * The background-gradient for the `default-toolbar` button UI when the button is disabled.
 * * Can be either the name of a predefined gradient or a list of color stops. Used as the
 * * `$type` parameter for {@link Global_CSS#background-gradient}. */
/**
 * * @var {color}
 * * The text color for the `default-toolbar` button UI */
/**
 * * @var {color}
 * * The text color for the `default-toolbar` button UI when the cursor is over the button */
/**
 * * @var {color}
 * * The text color for the `default-toolbar` button UI when the button is focused */
/**
 * * @var {color}
 * * The text color for the `default-toolbar` button UI when the button is pressed */
/**
 * * @var {color}
 * * The text color for the `default-toolbar` button UI when the button is disabled */
/**
 * * @var {color}
 * * The color of the {@link #glyph} icon for the `default-toolbar` button UI */
/**
 * * @var {color}
 * * The opacity of the {@link #glyph} icon for the `default-toolbar` button UI */
/**
 * * @var {boolean} $button-include-ui-menu-arrows
 * * True to use a different image url for the menu button arrows for each button UI */
/**
 * * @var {boolean} $button-include-ui-split-arrows
 * * True to use a different image url for the split button arrows for each button UI */
/**
 * * @var {boolean} $button-include-split-over-arrows
 * * True to include different split arrows for buttons' hover state. */
/**
 * * @var {boolean} $button-toolbar-include-split-noline-arrows
 * * True to include "noline" split arrows for toolbar buttons in their default state. */
/**
 * * @var {number} $button-opacity-disabled
 * * opacity to apply to the button's main element when the buton is disabled */
/**
 * * @var {number} $button-inner-opacity-disabled
 * * opacity to apply to the button's inner elements (icon and text) when the buton is disabled */
/**
 * * @var {number} $button-toolbar-opacity-disabled
 * * opacity to apply to the toolbar button's main element when the buton is disabled */
/**
 * * @var {number} $button-toolbar-inner-opacity-disabled
 * * opacity to apply to the toolbar button's inner elements (icon and text) when the buton is disabled */
/**
 * * @var {boolean}
 * * True to include the "default" button UI */
/**
 * * @var {boolean}
 * * True to include the "default" button UI for "small" scale buttons */
/**
 * * @var {boolean}
 * * True to include the "default" button UI for "medium" scale buttons */
/**
 * * @var {boolean}
 * * True to include the "default" button UI for "large" scale buttons */
/**
 * * @var {boolean}
 * * True to include the "default-toolbar" button UI */
/**
 * * @var {boolean}
 * * True to include the "default-toolbar" button UI for "small" scale buttons */
/**
 * * @var {boolean}
 * * True to include the "default-toolbar" button UI for "medium" scale buttons */
/**
 * * @var {boolean}
 * * True to include the "default-toolbar" button UI for "large" scale buttons */
/**
 * * @class Ext.toolbar.Toolbar */
/**
 * * @var {number}
 * * The default font-size of Toolbar text */
/**
 * * @var {color}
 * * The background-color of the Toolbar */
/**
 * * @var {string/list}
 * * The background-gradient of the Toolbar.  Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. */
/**
 * * @var {number}
 * * The horizontal spacing of Toolbar items */
/**
 * * @var {number}
 * * The vertical spacing of Toolbar items */
/**
 * * @var {number}
 * * The horizontal spacing of {@link Ext.panel.Panel#fbar footer} Toolbar items */
/**
 * * @var {number}
 * * The vertical spacing of {@link Ext.panel.Panel#fbar footer} Toolbar items */
/**
 * * @var {color}
 * * The background-color of {@link Ext.panel.Panel#fbar footer} Toolbars */
/**
 * * @var {number}
 * * The border-width of {@link Ext.panel.Panel#fbar footer} Toolbars */
/**
 * * @var {number/list}
 * * The margin of {@link Ext.panel.Panel#fbar footer} Toolbars */
/**
 * * @var {color}
 * * The border-color of Toolbars */
/**
 * * @var {number}
 * * The border-width of Toolbars */
/**
 * * @var {string}
 * * The border-style of Toolbars */
/**
 * * @var {number}
 * * The width of Toolbar {@link Ext.toolbar.Spacer Spacers} */
/**
 * * @var {color}
 * * The main border-color of Toolbar {@link Ext.toolbar.Separator Separators} */
/**
 * * @var {color}
 * * The highlight border-color of Toolbar {@link Ext.toolbar.Separator Separators} */
/**
 * * @var {number/list}
 * * The margin of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar */
/**
 * * @var {number}
 * * The height of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar */
/**
 * * @var {string}
 * * The border-style of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar */
/**
 * * @var {number}
 * * The border-width of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar */
/**
 * * @var {number/list}
 * * The margin of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar */
/**
 * * @var {string}
 * * The border-style of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar */
/**
 * * @var {number}
 * * The border-width of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar */
/**
 * * @var {string}
 * * The default font-family of Toolbar text */
/**
 * * @var {number}
 * * The default font-size of Toolbar text */
/**
 * * @var {number}
 * * The default font-size of Toolbar text */
/**
 * * @var {number/list}
 * * The margin of Toolbar text */
/**
 * * @var {color}
 * * The text-color of Toolbar text */
/**
 * * @var {number/list}
 * * The padding of Toolbar text */
/**
 * * @var {number}
 * * The line-height of Toolbar text */
/**
 * * @var {number}
 * * The width of Toolbar scrollers */
/**
 * * @var {number}
 * * The height of Toolbar scrollers */
/**
 * * @var {color}
 * * The border-color of Toolbar scrollers */
/**
 * * @var {number}
 * * The border-width of Toolbar scrollers */
/**
 * * @var {string}
 * * The cursor of Toolbar scrollers */
/**
 * * @var {string}
 * * The cursor of disabled Toolbar scrollers */
/**
 * * @var {number}
 * * The opacity of disabled Toolbar scrollers */
/**
 * * @var {string}
 * * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar */
/**
 * * @var {boolean}
 * * True to include the "default" toolbar UI */
/**
 * * @class Ext.panel.Panel */
/**
 * * @var {number}
 * * The default border-width of Panels */
/**
 * * @var {color}
 * * The base color of Panels */
/**
 * * @var {color}
 * * The default border-color of Panels */
/**
 * * @var {$border-width-threshold}
 * * The maximum width a Panel's border can be before resizer handles are embedded into the borders using negative absolute positions.
 * *
 * * This defaults to 2, so that in the classic theme which uses 1 pixel borders, resize handles are in the content area
 * * within the border as they always have been.
 * *
 * * In the Neptune theme, the handles are embedded into the 5 pixel wide borders of any framed panel. */
/**
 * * @var {string}
 * * The default border-style of Panels */
/**
 * * @var {color}
 * * The default body background-color of Panels */
/**
 * * @var {color}
 * * The default color of text inside a Panel's body */
/**
 * * @var {color}
 * * The default border-color of the Panel body */
/**
 * * @var {number}
 * * The default border-width of the Panel body */
/**
 * * @var {number}
 * * The default font-size of the Panel body */
/**
 * * @var {string}
 * * The default font-weight of the Panel body */
/**
 * * @var {number}
 * * The space between the Panel {@link Ext.panel.Tool Tools} */
/**
 * * @var {string}
 * * The background sprite to use for Panel {@link Ext.panel.Tool Tools} */
/**
 * * @var {number}
 * * The border-width of Panel Headers */
/**
 * * @var {string}
 * * The border-style of Panel Headers */
/**
 * * @var {number/list}
 * * The padding of Panel Headers */
/**
 * * @var {number}
 * * The font-size of Panel Headers */
/**
 * * @var {number}
 * * The line-height of Panel Headers */
/**
 * * @var {string}
 * * The font-weight of Panel Headers */
/**
 * * @var {string}
 * * The font-family of Panel Headers */
/**
 * * @var {string}
 * * The text-transform of Panel Headers */
/**
 * * @var {number/list}
 * * The padding of the Panel Header's text element */
/**
 * * @var {string/list}
 * * The background-gradient of the Panel Header. Can be either the name of a predefined
 * * gradient or a list of color stops. Used as the `$type` parameter for
 * * {@link Global_CSS#background-gradient}. */
/**
 * * @var {color}
 * * The border-color of the Panel Header */
/**
 * * @var {color}
 * * The inner border-color of the Panel Header */
/**
 * * @var {number}
 * * The inner border-width of the Panel Header */
/**
 * * @var {color}
 * * The text color of the Panel Header */
/**
 * * @var {color}
 * * The background-color of the Panel Header */
/**
 * * @var {number}
 * * The width of the Panel Header icon */
/**
 * * @var {number}
 * * The height of the Panel Header icon */
/**
 * * @var {number}
 * * The space between the Panel Header icon and text */
/**
 * * @var {list}
 * * The background-position of  the Panel Header icon */
/**
 * * @var {color}
 * * The color of the Panel Header glyph icon */
/**
 * * @var {number}
 * * The opacity of the Panel Header glyph icon */
/**
 * * @var {color}
 * * The base color of the framed Panels */
/**
 * * @var {number}
 * * The border-radius of framed Panels */
/**
 * * @var {number}
 * * The border-width of framed Panels */
/**
 * * @var {string}
 * * The border-style of framed Panels */
/**
 * * @var {number}
 * * The padding of framed Panels */
/**
 * * @var {color}
 * * The background-color of framed Panels */
/**
 * * @var {color}
 * * The border-color of framed Panels */
/**
 * * @var {number}
 * * The border-width of the body element of framed Panels */
/**
 * * @var {number}
 * * The border-width of framed Panel Headers */
/**
 * * @var {color}
 * * The inner border-color of framed Panel Headers */
/**
 * * @var {number}
 * * The inner border-width of framed Panel Headers */
/**
 * * @var {number/list}
 * * The padding of framed Panel Headers */
/**
 * * @var {number}
 * * The opacity of ghost Panels while dragging */
/**
 * * @var {string}
 * * The direction to strech the background-gradient of top docked Headers when slicing images
 * * for IE using Sencha Cmd */
/**
 * * @var {string}
 * * The direction to strech the background-gradient of bottom docked Headers when slicing images
 * * for IE using Sencha Cmd */
/**
 * * @var {string}
 * * The direction to strech the background-gradient of right docked Headers when slicing images
 * * for IE using Sencha Cmd */
/**
 * * @var {string}
 * * The direction to strech the background-gradient of left docked Headers when slicing images
 * * for IE using Sencha Cmd */
/**
 * * @var {boolean}
 * * True to include neptune style border management rules. */
/**
 * * @var {color}
 * * The color to apply to the border that wraps the body and docked items in a framed
 * * panel. The presence of the wrap border in a framed panel is controlled by the
 * * {@link #border} config. Only applicable when `$panel-include-border-management-rules` is
 * * `true`. */
/**
 * * @var {number}
 * * The width to apply to the border that wraps the body and docked items in a framed
 * * panel. The presence of the wrap border in a framed panel is controlled by the
 * * {@link #border} config. Only applicable when `$panel-include-border-management-rules` is
 * * `true`. */
/**
 * * @var {boolean}
 * * True to include the "default" panel UI */
/**
 * * @var {boolean}
 * * True to include the "default-framed" panel UI */
/**
 * * @class Ext.tip.Tip */
/**
 * * @var {color}
 * * The background-color of the Tip */
/**
 * * @var {string/list}
 * * The background-gradient of the Tip. Can be either the name of a predefined gradient or a
 * * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. */
/**
 * * @var {color}
 * * The text color of the Tip body */
/**
 * * @var {number}
 * * The font-size of the Tip body */
/**
 * * @var {string}
 * * The font-weight of the Tip body */
/**
 * * @var {number/list}
 * * The padding of the Tip body */
/**
 * * @var {color}
 * * The text color of any anchor tags inside the Tip body */
/**
 * * @var {color}
 * * The text color of the Tip header */
/**
 * * @var {number}
 * * The font-size of the Tip header */
/**
 * * @var {string}
 * * The font-weight of the Tip header */
/**
 * * @var {number/list}
 * * The padding of the Tip header's body element */
/**
 * * @var {color}
 * * The border-color of the Tip */
/**
 * * @var {number}
 * * The border-width of the Tip */
/**
 * * @var {number}
 * * The border-radius of the Tip */
/**
 * * @var {color}
 * * The inner border-color of the form field error Tip */
/**
 * * @var {number}
 * * The inner border-width of the form field error Tip */
/**
 * * @var {color}
 * * The border-color of the form field error Tip */
/**
 * * @var {number}
 * * The border-radius of the form field error Tip */
/**
 * * @var {number}
 * * The border-width of the form field error Tip */
/**
 * * @var {color}
 * * The background-color of the form field error Tip */
/**
 * * @var {number/list}
 * * The padding of the form field error Tip's body element */
/**
 * * @var {color}
 * * The text color of the form field error Tip's body element */
/**
 * * @var {number}
 * * The font-size of the form field error Tip's body element */
/**
 * * @var {string}
 * * The font-weight of the form field error Tip's body element */
/**
 * * @var {color}
 * * The color of anchor tags in the form field error Tip's body element */
/**
 * * @var {number}
 * * The space between {@link Ext.panel.Tool Tools} in the header */
/**
 * * @var {string}
 * * The sprite to use for the header {@link Ext.panel.Tool Tools} */
/**
 * * @var {boolean}
 * * True to include the "default" tip UI */
/**
 * * @var {boolean}
 * * True to include the "form-invalid" tip UI */
/**
 * * @class Ext.container.ButtonGroup */
/**
 * * @var {color}
 * * The background-color of the ButtonGroup */
/**
 * * @var {color}
 * * The border-color of the ButtonGroup */
/**
 * * @var {number}
 * * The border-radius of the ButtonGroup */
/**
 * * @var {number}
 * * The border-radius of framed ButtonGroups */
/**
 * * @var {number}
 * * The border-width of the ButtonGroup */
/**
 * * @var {number/list}
 * * The body padding of the ButtonGroup */
/**
 * * @var {number/list}
 * * The inner border-width of the ButtonGroup */
/**
 * * @var {color}
 * * The inner border-color of the ButtonGroup */
/**
 * * @var {number/list}
 * * The margin of the header element. Used to add space around the header. */
/**
 * * @var {number}
 * * The font-size of the header */
/**
 * * @var {number}
 * * The font-weight of the header */
/**
 * * @var {number}
 * * The font-family of the header */
/**
 * * @var {number}
 * * The line-height of the header */
/**
 * * @var {number}
 * * The text color of the header */
/**
 * * @var {number}
 * * The padding of the header */
/**
 * * @var {number}
 * * The background-color of the header */
/**
 * * @var {number}
 * * The border-spacing to use on the table layout element */
/**
 * * @var {number}
 * * The background-color of framed ButtonGroups */
/**
 * * @var {number}
 * * The border-width of framed ButtonGroups */
/**
 * * @var {string}
 * * Sprite image to use for header {@link Ext.panel.Tool Tools} */
/**
 * * @var {boolean}
 * * True to include the "default" button group UI */
/**
 * * @var {boolean}
 * * True to include the "default-framed" button group UI */
/**
 * * @class Ext.window.Window */
/**
 * * @var {color}
 * * The base color of Windows */
/**
 * * @var {number}
 * * The padding of Windows */
/**
 * * @var {number}
 * * The border-radius of Windows */
/**
 * * @var {number}
 * * The border-width of Windows */
/**
 * * @var {color}
 * * The border-color of Windows */
/**
 * * @var {color}
 * * The inner border-color of Windows */
/**
 * * @var {number}
 * * The inner border-width of Windows */
/**
 * * @var {color}
 * * The background-color of Windows */
/**
 * * @var {number}
 * * The body border-width of Windows */
/**
 * * @var {string}
 * * The body border-style of Windows */
/**
 * * @var {color}
 * * The body border-color of Windows */
/**
 * * @var {color}
 * * The body background-color of Windows */
/**
 * * @var {color}
 * * The body text color of Windows */
/**
 * * @var {number/list}
 * * The padding of Window Headers */
/**
 * * @var {number}
 * * The font-size of Window Headers */
/**
 * * @var {number}
 * * The line-height of Window Headers */
/**
 * * @var {color}
 * * The text color of Window Headers */
/**
 * * @var {color}
 * * The background-color of Window Headers */
/**
 * * @var {string}
 * * The font-weight of Window Headers */
/**
 * * @var {number}
 * * The space between the Window {@link Ext.panel.Tool Tools} */
/**
 * * @var {string}
 * * The background sprite to use for Window {@link Ext.panel.Tool Tools} */
/**
 * * @var {string}
 * * The font-family of Window Headers */
/**
 * * @var {number/list}
 * * The padding of the Window Header's text element */
/**
 * * @var {string}
 * * The text-transform of Window Headers */
/**
 * * @var {number}
 * * The width of the Window Header icon */
/**
 * * @var {number}
 * * The height of the Window Header icon */
/**
 * * @var {number}
 * * The space between the Window Header icon and text */
/**
 * * @var {list}
 * * The background-position of  the Window Header icon */
/**
 * * @var {color}
 * * The color of the Window Header glyph icon */
/**
 * * @var {number}
 * * The opacity of the Window Header glyph icon */
/**
 * * @var {number}
 * * The border-width of Window Headers */
/**
 * * @var {color}
 * * The inner border-color of Window Headers */
/**
 * * @var {number}
 * * The inner border-width of Window Headers */
/**
 * * @var {boolean} $ui-force-header-border
 * * True to force the window header to have a border on the side facing the window body.
 * * Overrides dock layout's border management border removal rules. */
/**
 * * @var {number}
 * * The opacity of ghost Windows while dragging */
/**
 * * @var {boolean}
 * * True to include neptune style border management rules. */
/**
 * * @var {color}
 * * The color to apply to the border that wraps the body and docked items. The presence of
 * * the wrap border is controlled by the {@link #border} config. Only applicable when
 * * `$window-include-border-management-rules` is `true`. */
/**
 * * @var {number}
 * * The width to apply to the border that wraps the body and docked items. The presence of
 * * the wrap border is controlled by the {@link #border} config. Only applicable when
 * * `$window-include-border-management-rules` is `true`. */
/**
 * * @var {boolean}
 * * True to include the "default" window UI */
/**
 * * @class Ext.form.Labelable */
/**
 * * @var {color}
 * * The text color of form field labels */
/**
 * * @var {string}
 * * The font-weight of form field labels */
/**
 * * @var {number}
 * * The font-size of form field labels */
/**
 * * @var {string}
 * * The font-family of form field labels */
/**
 * * @var {number}
 * * The line-height of form field labels */
/**
 * * @var {color}
 * * The text color of toolbar field labels */
/**
 * * @var {string}
 * * The font-weight of toolbar field labels */
/**
 * * @var {number}
 * * The font-size of toolbar field labels */
/**
 * * @var {string}
 * * The font-family of toolbar field labels */
/**
 * * @var {number}
 * * The line-height of toolbar field labels */
/**
 * * @var {number}
 * * Width for form error icons. */
/**
 * * @var {number}
 * * Height for form error icons. */
/**
 * * @var {number/list}
 * * Margin for error icons that are aligned to the side of the field */
/**
 * * @var {number}
 * * The space between the icon and the message for errors that display under the field */
/**
 * * @var {number/list}
 * * The padding on errors that display under the form field */
/**
 * * @var {color}
 * * The text color of form error messages */
/**
 * * @var {string}
 * * The font-weight of form error messages */
/**
 * * @var {number}
 * * The font-size of form error messages */
/**
 * * @var {string}
 * * The font-family of form error messages */
/**
 * * @var {number}
 * * The line-height of form error messages */
/**
 * * @var {measurement} $form-item-margin-bottom
 * * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout */
/**
 * * @class Ext.form.field.Base */
/**
 * * @var {number} $form-field-height
 * * Height for form fields. */
/**
 * * @var {number} $form-toolbar-field-height
 * * Height for form fields in toolbar. */
/**
 * * @var {number} $form-field-padding
 * * Padding around form fields. */
/**
 * * @var {number} $form-field-font-size
 * * Font size for form fields. */
/**
 * * @var {string} $form-field-font-family
 * * Font family for form fields. */
/**
 * * @var {string} $form-field-font-weight
 * * Font weight for form fields. */
/**
 * * @var {font} $form-field-font
 * * Font for form fields. */
/**
 * * @var {number} $form-toolbar-field-font-size
 * * Font size for toolbar form fields. */
/**
 * * @var {string} $form-toolbar-field-font-family
 * * Font family for toolbar form fields. */
/**
 * * @var {string} $form-toolbar-field-font-weight
 * * Font weight for toolbar form fields. */
/**
 * * @var {font} $form-toolbar-field-font
 * * Font for toolbar form fields. */
/**
 * * @var {color} $form-field-color
 * * Text color for form fields. */
/**
 * * @var {color} $form-field-empty-color
 * * Text color for empty form fields. */
/**
 * * @var {color} $form-field-border-color
 * * Border color for form fields. */
/**
 * * @var {number} $form-field-border-width
 * * Border width for form fields. */
/**
 * * @var {string} $form-field-border-style
 * * Border style for form fields. */
/**
 * * @var {color} $form-field-focus-border-color
 * * Border color for focused form fields. */
/**
 * * @var {color} $form-field-invalid-border-color
 * * Border color for invalid form fields. */
/**
 * * @var {color} $form-field-background-color
 * * Background color for form fields. */
/**
 * * @var {string} $form-field-background-image
 * * Background image for form fields. */
/**
 * * @var {color} $form-field-invalid-background-color
 * * Background color for invalid form fields. */
/**
 * * @var {string} $form-field-invalid-background-image
 * * Background image for invalid form fields. */
/**
 * * @var {string} $form-field-invalid-background-repeat
 * * Background repeat for invalid form fields. */
/**
 * * @var {string/list} $form-field-invalid-background-position
 * * Background position for invalid form fields. */
/**
 * * @var {number} $form-field-disabled-opacity */
/**
 * * @class Ext.form.field.TextArea */
/**
 * * @var {number/string}
 * * The line-height to use for the TextArea's text */
/**
 * * @class Ext.form.field.Display */
/**
 * * @var {color}
 * * The text color of display fields */
/**
 * * @var {string}
 * * The font-weight of display fields */
/**
 * * @var {number}
 * * The font-size of display fields */
/**
 * * @var {string}
 * * The font-family of display fields */
/**
 * * @var {number}
 * * The line-height of display fields */
/**
 * * @var {string}
 * * The font-weight of toolbar display fields */
/**
 * * @var {number}
 * * The font-size of toolbar display fields */
/**
 * * @var {string}
 * * The font-family of toolbar display fields */
/**
 * * @var {number}
 * * The line-height of toolbar display fields */
/**
 * * @class Ext.window.MessageBox */
/**
 * * @var {color}
 * * The background-color of the MessageBox body */
/**
 * * @var {number}
 * * The border-width of the MessageBox body */
/**
 * * @var {color}
 * * The border-color of the MessageBox body */
/**
 * * @var {string}
 * * The border-style of the MessageBox body */
/**
 * * @var {list}
 * * The background-position of the MessageBox icon */
/**
 * * @class Ext.form.field.Checkbox */
/**
 * * @var {number}
 * * The size of the checkbox */
/**
 * * @var {number}
 * * The space between the boxLabel and the checkbox. */
/**
 * * @class Ext.form.CheckboxGroup */
/**
 * * @var {number/list}
 * * The padding of the CheckboxGroup body element */
/**
 * * @var {color}
 * * The text color of the CheckboxGroup label */
/**
 * * @var {number}
 * * The padding of the CheckboxGroup label */
/**
 * * @var {number}
 * * The margin of the CheckboxGroup label */
/**
 * * @var {number}
 * * The border-width of the CheckboxGroup label */
/**
 * * @var {number}
 * * The border-style of the CheckboxGroup label */
/**
 * * @var {number}
 * * The border-color of the CheckboxGroup label */
/**
 * * @class Ext.form.FieldSet */
/**
 * * @var {number}
 * * The font-size of the FieldSet header */
/**
 * * @var {string}
 * * The font-weight of the FieldSet header */
/**
 * * @var {string}
 * * The font-family of the FieldSet header */
/**
 * * @var {number/string}
 * * The line-height of the FieldSet header */
/**
 * * @var {color}
 * * The text color of the FieldSet header */
/**
 * * @var {number}
 * * The border-width of the FieldSet */
/**
 * * @var {string}
 * * The border-style of the FieldSet */
/**
 * * @var {color}
 * * The border-color of the FieldSet */
/**
 * * @var {number/list}
 * * The FieldSet's padding */
/**
 * * @var {number/list}
 * * The FieldSet's margin */
/**
 * * @var {number/list}
 * * The padding to apply to the FieldSet's header */
/**
 * * @var {number/list}
 * * The margin to apply to the FieldSet's collapse tool */
/**
 * * @var {number/list}
 * * The padding to apply to the FieldSet's collapse tool */
/**
 * * @var {number/list}
 * * The margin to apply to the FieldSet's checkbox (for FieldSets that use
 * * {@link #checkboxToggle}) */
/**
 * * @var {number}
 * * The size of the FieldSet's collapse tool */
/**
 * * @var {string} $fieldset-collapse-tool-background-image
 * * The background-image to use for the collapse tool. If null the default tool
 * * sprite will be used.  Defaults to null. */
/**
 * * @class Ext.form.field.Radio */
/**
 * * @var {number}
 * * The size of the radio button */
/**
 * * @class Ext.form.field.Trigger */
/**
 * * @var {number}
 * * The width of the Trigger field's trigger element */
/**
 * * @var {number/list}
 * * The width of the trigger's border */
/**
 * * @var {color}
 * * The color of the trigger's border */
/**
 * * @var {string}
 * * The style of the trigger's border */
/**
 * * @var {color}
 * * The color of the trigger's border when hovered */
/**
 * * @var {color}
 * * The color of the trigger's border when the field is focused */
/**
 * * @var {color}
 * * The color of the trigger's border when the field is focused and the trigger is hovered */
/**
 * * @class Ext.form.field.Spinner */
/**
 * * @var {number}
 * * The height of the Spinner trigger buttons */
/**
 * * @var {number}
 * * The height of the Spinner trigger buttons when the Spinner is used on a
 * * {@link Ext.toolbar.Toolbar Toolbar} */
/**
 * * @class Ext.toolbar.Paging */
/**
 * * @var {boolean}
 * * True to include different icons when the paging toolbar buttons are disabled. */
/**
 * * @class Ext.view.BoundList */
/**
 * * @var {color}
 * * The background-color of the BoundList */
/**
 * * @var {color}
 * * The border-color of the BoundList */
/**
 * * @var {number}
 * * The border-width of the BoundList */
/**
 * * @var {string}
 * * The border-style of the BoundList */
/**
 * * @var {number}
 * * The height of BoundList items */
/**
 * * @var {number/list}
 * * The padding of BoundList items */
/**
 * * @var {number}
 * * The border-width of BoundList items */
/**
 * * @var {string}
 * * The border-style of BoundList items */
/**
 * * @var {color}
 * * The border-color of BoundList items */
/**
 * * @var {color}
 * * The border-color of hovered BoundList items */
/**
 * * @var {color}
 * * The border-color of selected BoundList items */
/**
 * * @var {color}
 * * The background-color of hovered BoundList items */
/**
 * * @var {color}
 * * The background-color of selected BoundList items */
/**
 * * @class Ext.picker.Date */
/**
 * * @var {number}
 * * The border-width of the DatePicker */
/**
 * * @var {string}
 * * The border-style of the DatePicker */
/**
 * * @var {color}
 * * The background-color of the DatePicker */
/**
 * * @var {string}
 * * The background-image of the DatePicker next arrow */
/**
 * * @var {string}
 * * The background-image of the DatePicker previous arrow */
/**
 * * @var {number}
 * * The width of DatePicker arrows */
/**
 * * @var {number}
 * * The height of DatePicker arrows */
/**
 * * @var {string}
 * * The type of cursor to display when the cursor is over a DatePicker arrow */
/**
 * * @var {number}
 * * The opacity of the DatePicker arrows */
/**
 * * @var {number}
 * * The opacity of the DatePicker arrows when hovered */
/**
 * * @var {string/list}
 * * The Date Picker header background gradient. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. */
/**
 * * @var {number/list}
 * * The padding of the Date Picker header */
/**
 * * @var {color}
 * * The color of the Date Picker month button */
/**
 * * @var {number}
 * * The width of the arrow on the Date Picker month button */
/**
 * * @var {string}
 * * The background-image of the arrow on the Date Picker month button */
/**
 * * @var {boolean}
 * * True to render the month button as transparent */
/**
 * * @var {string}
 * * The text-align of the Date Picker header */
/**
 * * @var {number}
 * * The height of Date Picker items */
/**
 * * @var {number}
 * * The width of Date Picker items */
/**
 * * @var {number/list}
 * * The padding of Date Picker items */
/**
 * * @var {string}
 * * The font-family of Date Picker items */
/**
 * * @var {number}
 * * The font-size of Date Picker items */
/**
 * * @var {string}
 * * The font-weight of Date Picker items */
/**
 * * @var {string}
 * * The text-align of Date Picker items */
/**
 * * @var {color}
 * * The text color of Date Picker items */
/**
 * * @var {string}
 * * The type of cursor to display when the cursor is over a Date Picker item */
/**
 * * @var {string}
 * * The font-family of Date Picker column headers */
/**
 * * @var {number}
 * * The font-size of Date Picker column headers */
/**
 * * @var {string}
 * * The font-weight of Date Picker column headers */
/**
 * * @var {string/list}
 * * The background-gradient of Date Picker column headers. Can be either the name of a
 * * predefined gradient or a list of color stops. Used as the `$type` parameter for
 * * {@link Global_CSS#background-gradient}. */
/**
 * * @var {string}
 * * The border-style of Date Picker column headers */
/**
 * * @var {number}
 * * The border-width of Date Picker column headers */
/**
 * * @var {string}
 * * The text-align of Date Picker column headers */
/**
 * * @var {number}
 * * The height of Date Picker column headers */
/**
 * * @var {number/list}
 * * The padding of Date Picker column headers */
/**
 * * @var {number}
 * * The border-width of Date Picker items */
/**
 * * @var {string}
 * * The border-style of Date Picker items */
/**
 * * @var {color}
 * * The border-color of Date Picker items */
/**
 * * @var {string}
 * * The border-style of today's date on the Date Picker */
/**
 * * @var {string}
 * * The border-style of the selected item */
/**
 * * @var {string}
 * * The font-weight of the selected item */
/**
 * * @var {color}
 * * The text color of the items in the previous and next months */
/**
 * * @var {string}
 * * The type of cursor to display when the cursor is over a disabled item */
/**
 * * @var {color}
 * * The text color of disabled Date Picker items */
/**
 * * @var {color}
 * * The background-color of disabled Date Picker items */
/**
 * * @var {color}
 * * The background-color of the Date Picker footer */
/**
 * * @var {string/list}
 * * The background-gradient of the Date Picker footer. Can be either the name of a
 * * predefined gradient or a list of color stops. Used as the `$type` parameter for
 * * {@link Global_CSS#background-gradient}. */
/**
 * * @var {number/list}
 * * The border-width of the Date Picker footer */
/**
 * * @var {string}
 * * The border-style of the Date Picker footer */
/**
 * * @var {string}
 * * The text-align of the Date Picker footer */
/**
 * * @var {number/list}
 * * The padding of the Date Picker footer */
/**
 * * @var {number}
 * * The space between the footer buttons */
/**
 * * @var {color}
 * * The border-color of the Month Picker */
/**
 * * @var {number}
 * * The border-width of the Month Picker */
/**
 * * @var {string}
 * * The border-style of the Month Picker */
/**
 * * @var {color}
 * * The text color of Month Picker items */
/**
 * * @var {color}
 * * The text color of Month Picker items */
/**
 * * @var {color}
 * * The border-color of Month Picker items */
/**
 * * @var {string}
 * * The border-style of Month Picker items */
/**
 * * @var {string}
 * * The font-family of Month Picker items */
/**
 * * @var {number}
 * * The font-size of Month Picker items */
/**
 * * @var {string}
 * * The font-weight of Month Picker items */
/**
 * * @var {number/list}
 * * The margin of Month Picker items */
/**
 * * @var {string}
 * * The text-align of Month Picker items */
/**
 * * @var {number}
 * * The height of Month Picker items */
/**
 * * @var {string}
 * * The type of cursor to display when the cursor is over a Month Picker item */
/**
 * * @var {color}
 * * The background-color of hovered Month Picker items */
/**
 * * @var {color}
 * * The background-color of selected Month Picker items */
/**
 * * @var {string}
 * * The border-style of selected Month Picker items */
/**
 * * @var {color}
 * * The border-color of selected Month Picker items */
/**
 * * @var {number}
 * * The height of the Month Picker year navigation buttons */
/**
 * * @var {number}
 * * The width of the Month Picker year navigation buttons */
/**
 * * @var {string}
 * * The type of cursor to display when the cursor is over a Month Picker year navigation button */
/**
 * * @var {number}
 * * The opacity of the Month Picker year navigation buttons */
/**
 * * @var {number}
 * * The opacity of hovered Month Picker year navigation buttons */
/**
 * * @var {string}
 * * The background-image of the Month Picker next year navigation button */
/**
 * * @var {string}
 * * The background-image of the Month Picker previous year navigation button */
/**
 * * @var {list}
 * * The background-poisition of the Month Picker next year navigation button */
/**
 * * @var {list}
 * * The background-poisition of the hovered Month Picker next year navigation button */
/**
 * * @var {list}
 * * The background-poisition of the Month Picker previous year navigation button */
/**
 * * @var {list}
 * * The background-poisition of the hovered Month Picker previous year navigation button */
/**
 * * @var {string}
 * * The border-style of the Month Picker separator */
/**
 * * @var {number}
 * * The border-width of the Month Picker separator */
/**
 * * @var {color}
 * * The border-color of the Month Picker separator */
/**
 * * @var {number/list}
 * * The margin of Month Picker items when the datepicker does not have footer buttons */
/**
 * * @var {number}
 * * The height of Month Picker items when the datepicker does not have footer buttons */
/**
 * * @class Ext.picker.Color */
/**
 * * @var {color}
 * * The background-color of Color Pickers */
/**
 * * @var {color}
 * * The border-color of Color Pickers */
/**
 * * @var {number}
 * * The border-width of Color Pickers */
/**
 * * @var {string}
 * * The border-style of Color Pickers */
/**
 * * @var {number}
 * * The number of columns to display in the Color Picker */
/**
 * * @var {number}
 * * The number of rows to display in the Color Picker */
/**
 * * @var {number}
 * * The height of each Color Picker item */
/**
 * * @var {number}
 * * The width of each Color Picker item */
/**
 * * @var {number}
 * * The padding of each Color Picker item */
/**
 * * @var {string}
 * * The cursor to display when the mouse is over a Color Picker item */
/**
 * * @var {color}
 * * The border-color of Color Picker items */
/**
 * * @var {number}
 * * The border-width of Color Picker items */
/**
 * * @var {string}
 * * The border-style of Color Picker items */
/**
 * * @var {color}
 * * The border-color of hovered Color Picker items */
/**
 * * @var {color}
 * * The background-color of Color Picker items */
/**
 * * @var {color}
 * * The background-color of hovered Color Picker items */
/**
 * * @var {color}
 * * The border-color of the selected Color Picker item */
/**
 * * @var {color}
 * * The background-color of the selected Color Picker item */
/**
 * * @var {color}
 * * The inner border-color of Color Picker items */
/**
 * * @var {number}
 * * The inner border-width of Color Picker items */
/**
 * * @var {string}
 * * The inner border-style of Color Picker items */
/**
 * * @class Ext.form.field.HtmlEditor */
/**
 * * @var {number}
 * * The border-width of the HtmlEditor */
/**
 * * @var {color}
 * * The border-color of the HtmlEditor */
/**
 * * @var {color}
 * * The background-color of the HtmlEditor */
/**
 * * @var {number}
 * * The size of the HtmlEditor toolbar icons */
/**
 * * @var {number}
 * * The font-size of the HtmlEditor's font selection control */
/**
 * * @var {number}
 * * The font-family of the HtmlEditor's font selection control */
/**
 * * @class Ext.panel.Table */
/**
 * * @var {color}
 * * The color of the text in the grid cells */
/**
 * * @var {number}
 * * The font size of the text in the grid cells */
/**
 * * var {number} $grid-row-cell-line-height
 * * The line-height of the text inside the grid cells. */
/**
 * * @var {string}
 * * The font-weight of the text in the grid cells */
/**
 * * @var {string}
 * * The font-family of the text in the grid cells */
/**
 * * @var {color}
 * * The background-color of the grid cells */
/**
 * * @var {color}
 * * The border-color of row/column borders. Can be specified as a single color, or as a list
 * * of colors containing the row border color followed by the column border color. */
/**
 * * @var {string}
 * * The border-style of the row/column borders. */
/**
 * * @var {number}
 * * The border-width of the row and column borders. */
/**
 * * @var {color}
 * * The background-color of "special" cells.  Special cells are created by {@link
 * * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
 * * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. */
/**
 * * @var {string}
 * * The background-gradient to use for "special" cells.  Special cells are created by {@link
 * * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
 * * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. */
/**
 * * @var {number}
 * * The border-width of "special" cells.  Special cells are created by {@link
 * * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
 * * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
 * * Only applies to the vertical border, since the row border width is determined by
 * * {#$grid-row-cell-border-width}. */
/**
 * * @var {color}
 * * The border-color of "special" cells.  Special cells are created by {@link
 * * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
 * * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
 * * Only applies to the vertical border, since the row border color is determined by
 * * {#$grid-row-cell-border-color}. */
/**
 * * @var {string}
 * * The border-style of "special" cells.  Special cells are created by {@link
 * * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
 * * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
 * * Only applies to the vertical border, since the row border style is determined by
 * * {#$grid-row-cell-border-style}. */
/**
 * * @var {color}
 * * The border-color of "special" cells when the row is selected using a {@link
 * * Ext.selection.RowModel Row Selection Model}.  Special cells are created by {@link
 * * Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
 * * Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
 * * Only applies to the vertical border, since the selected row border color is determined by
 * * {#$grid-row-cell-selected-border-color}. */
/**
 * * @var {color} 
 * * The background-color of "special" cells when the row is hovered. Special cells are
 * * created by {@link Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel
 * * Checkbox Selection Model} and {@link Ext.grid.plugin.RowExpander RowExpander}. */
/**
 * * @var {color}
 * * The background-color color of odd-numbered rows when the table view is configured with
 * * `{@link Ext.view.Table#stripeRows stripeRows}: true`. */
/**
 * * @var {string}
 * * The border-style of the hovered row */
/**
 * * @var {color}
 * * The text color of the hovered row */
/**
 * * @var {color}
 * * The background-color of the hovered row */
/**
 * * @var {color}
 * * The border-color of the hovered row */
/**
 * * @var {string}
 * * The border-style of the selected row */
/**
 * * @var {color}
 * * The text color of the selected row */
/**
 * * @var {color}
 * * The background-color of the selected row */
/**
 * * @var {color}
 * * The border-color of the selected row */
/**
 * * @var {color}
 * * The border-color of the focused row */
/**
 * * @var {string}
 * * The border-style of the focused row */
/**
 * * @var {color}
 * * The text color of the focused row */
/**
 * * @var {color}
 * * The background-color of the focused row */
/**
 * * @var {boolean}
 * * True to show the focus border when a row is focused even if the grid has no 
 * * {@link Ext.panel.Table#rowLines rowLines}. */
/**
 * * @var {color} 
 * * The text color of a selected cell when using a {@link Ext.selection.CellModel
 * * Cell Selection Model}. */
/**
 * * @var {color} 
 * * The background-color of a selected cell when using a {@link Ext.selection.CellModel
 * * Cell Selection Model}. */
/**
 * * @var {number}
 * * The amount of padding to apply to the grid cell's inner div element */
/**
 * * @var {string}
 * * The type of text-overflow to use on the grid cell's inner div element */
/**
 * * @var {color}
 * * The border-color of the grid body */
/**
 * * @var {number}
 * * The border-width of the grid body border */
/**
 * * @var {string}
 * * The border-style of the grid body border */
/**
 * * @var {color}
 * * The background-color of the grid body */
/**
 * * @var {number}
 * * The amount of padding to apply to the grid body when the grid contains no data. */
/**
 * * @var {color}
 * * The text color of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
 * * the grid contains no data. */
/**
 * * @var {color}
 * * The background color of the grid body when the grid contains no data. */
/**
 * * @var {number}
 * * The font-size of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
 * * the grid contains no data. */
/**
 * * @var {number}
 * * The font-weight of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
 * * the grid contains no data. */
/**
 * * @var {number}
 * * The font-family of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
 * * the grid contains no data. */
/**
 * * @var {color}
 * * The color of the resize markers that display when dragging a column border to resize
 * * the column */
/**
 * * @class Ext.grid.header.DropZone */
/**
 * * @var {number}
 * * The size of the column move icon */
/**
 * * @class Ext.grid.header.Container */
/**
 * * @var {color}
 * * The background-color of grid headers */
/**
 * * @var {string/list}
 * * The background-gradient of grid headers.  Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. */
/**
 * * @var {color}
 * * The border-color of grid headers */
/**
 * * @var {number}
 * * The border-width of grid headers */
/**
 * * @var {string}
 * * The border-style of grid headers */
/**
 * * @var {color}
 * * The background-color of grid headers when the cursor is over the header */
/**
 * * @var {string/list}
 * * The background-gradient of grid headers when the cursor is over the header.  Can be
 * * either the name of a predefined gradient or a list of color stops. Used as the `$type`
 * * parameter for {@link Global_CSS#background-gradient}. */
/**
 * * @var {color}
 * * The background-color of a grid header when its menu is open */
/**
 * * @var {number/list}
 * * The padding to apply to grid headers */
/**
 * * @var {number}
 * * The height of grid header triggers */
/**
 * * @var {number}
 * * The width of grid header triggers */
/**
 * * @var {number}
 * * The width of the grid header sort icon */
/**
 * * @var {string}
 * * The type of cursor to display when the cursor is over a grid header trigger */
/**
 * * @var {number}
 * * The amount of space between the header trigger and text */
/**
 * * @var {list}
 * * The background-position of the header trigger */
/**
 * * @var {color}
 * * The background-color of the header trigger */
/**
 * * @var {color}
 * * The background-color of the header trigger when the menu is open */
/**
 * * @var {number}
 * * The space between the grid header sort icon and the grid header text */
/**
 * * @class Ext.grid.column.Column */
/**
 * * @var {string}
 * * The font-family of grid column headers */
/**
 * * @var {number}
 * * The font-size of grid column headers */
/**
 * * @var {string}
 * * The font-weight of grid column headers */
/**
 * * @var {number}
 * * The line-height of grid column headers */
/**
 * * @var {color}
 * * The text color of grid column headers */
/**
 * * @var {number}
 * * The border-width of grid column headers */
/**
 * * @var {string}
 * * The border-style of grid column headers */
/**
 * * @class Ext.grid.column.Action */
/**
 * * @var {number}
 * * The height of action column icons */
/**
 * * @var {number}
 * * The width of action column icons */
/**
 * * @var {string}
 * * The type of cursor to display when the cursor is over an action column icon */
/**
 * * @var {number}
 * * The opacity of disabled action column icons */
/**
 * * @var {number}
 * * The amount of padding to add to the left and right of the action column cell */
/**
 * * @class Ext.grid.column.CheckColumn */
/**
 * * @var {number}
 * * Opacity of disabled CheckColumns */
/**
 * * @class Ext.grid.column.RowNumberer */
/**
 * * @var {number}
 * * The horizontal space before the number in the RowNumberer cell */
/**
 * * @var {number}
 * * The horizontal space after the number in the RowNumberer cell */
/**
 * * @class Ext.grid.feature.Grouping */
/**
 * * @var {color}
 * * The background color of group headers */
/**
 * * @var {number/list}
 * * The border-width of group headers */
/**
 * * @var {string}
 * * The border-style of group headers */
/**
 * * @var {color}
 * * The border-color of group headers */
/**
 * * @var {number/list}
 * * The padding of group headers */
/**
 * * @var {string}
 * * The cursor of group headers */
/**
 * * @var {color}
 * * The text color of group header titles */
/**
 * * @var {string}
 * * The font-family of group header titles */
/**
 * * @var {number}
 * * The font-size of group header titles */
/**
 * * @var {string}
 * * The font-weight of group header titles */
/**
 * * @var {number}
 * * The line-height of group header titles */
/**
 * * @var {number/list}
 * * The amount of padding to add to the group title element.  This is typically used
 * * to reserve space for an icon by setting the amountof space to be reserved for the icon
 * * as the left value and setting the remaining sides to 0. */
/**
 * * @class Ext.grid.feature.RowBody */
/**
 * * @var {number}
 * * The font-size of the RowBody */
/**
 * * @var {number}
 * * The line-height of the RowBody */
/**
 * * @var {string}
 * * The font-family of the RowBody */
/**
 * * @var {number}
 * * The font-weight of the RowBody */
/**
 * * @var {number/list}
 * * The padding of the RowBody */
/**
 * * @class Ext.grid.feature.RowWrap */
/**
 * * @var {color}
 * * The border-color of wrapped rows */
/**
 * * @var {string}
 * * The border-style of wrapped rows */
/**
 * * @class Ext.grid.locking.Lockable */
/**
 * * @var {number}
 * * The width of the border between the locked views */
/**
 * * @var {string}
 * * The border-style of the border between the locked views */
/**
 * * @class Ext.grid.plugin.Editing */
/**
 * * The height of grid editor text fields.  Defaults to $form-field-height.  If grid row
 * * height is smaller than $form-field-height, defaults to the grid row height.  Grid row
 * * height is caluclated by adding $grid-row-cell-line-height to the top and bottom values of
 * * $grid-cell-inner-padding. */
/**
 * * The padding of grid editor text fields. */
/**
 * * @var {number}
 * * The font size of the grid editor text */
/**
 * * @var {string}
 * * The font-weight of the grid editor text */
/**
 * * @var {string}
 * * The font-family of the grid editor text */
/**
 * * @class Ext.grid.plugin.RowEditing */
/**
 * * @var {color}
 * * The background-color of the RowEditor */
/**
 * * @var {color}
 * * The border-color of the RowEditor */
/**
 * * @var {number}
 * * The border-width of the RowEditor */
/**
 * * @var {number/list}
 * * The padding of the RowEditor */
/**
 * * @var {number}
 * * The amount of space in between the editor fields */
/**
 * * @var {number}
 * * The space between the RowEditor buttons */
/**
 * * @var {number}
 * * The border-radius of the RowEditor button container */
/**
 * * @var {number/list}
 * * The padding of the RowEditor button container */
/**
 * * @var {number/list}
 * * Padding to apply to the body element of the error tooltip */
/**
 * * @var {string}
 * * The list-style of the error tooltip's list items */
/**
 * * @var {number}
 * * Space to add before each list item on the error tooltip */
/**
 * * @class Ext.grid.plugin.RowExpander */
/**
 * * @var {number}
 * * The height of the RowExpander icon */
/**
 * * @var {number}
 * * The width of the RowExpander icon */
/**
 * * @var {number}
 * * The horizontal space before the RowExpander icon */
/**
 * * @var {number}
 * * The horizontal space after the RowExpander icon */
/**
 * * @var {string}
 * * The cursor for the RowExpander icon */
/**
 * * @class Ext.grid.property.Grid */
/**
 * * @var {string}
 * * The background-image of property grid cells */
/**
 * * @var {string}
 * * The background-position of property grid cells */
/**
 * * @var {number/string}
 * * The padding to add before the text of property grid cells to make room for the
 * * background-image. Only applies if $grid-property-cell-background-image is not null */
/**
 * * @class Ext.layout.container.Accordion */
/**
 * * @var {color}
 * * The text color of Accordion headers */
/**
 * * @var {color}
 * * The background-color of Accordion headers */
/**
 * * @var {number}
 * * The size of {@link Ext.panel.Tool Tools} in Accordion headers */
/**
 * * @var {number/list}
 * * The border-width of Accordion headers */
/**
 * * @var {number/list}
 * * The padding of Accordion headers */
/**
 * * @var {string}
 * * The font-weight of Accordion headers */
/**
 * * @var {string}
 * * The font-family of Accordion headers */
/**
 * * @var {string}
 * * The text-transform property of Accordion headers */
/**
 * * @var {string}
 * * The text-transform property of Accordion headers */
/**
 * * @var {color}
 * * The background-color of the Accordion layout element */
/**
 * * @var {color}
 * * The background-color of the Accordion layout element */
/**
 * * @var {number/list}
 * * The padding of the Accordion layout element */
/**
 * * @var {string}
 * * The sprite image to use for {@link Ext.panel.Tool Tools} in Accordion headers */
/**
 * * @class Ext.resizer.Splitter */
/**
 * * @var {number}
 * * The size of the Splitter */
/**
 * * @var {color}
 * * The background-color of the active Splitter (the Splitter currently being dragged) */
/**
 * * @var {number}
 * * The opacity of the active Splitter (the Splitter currently being dragged) */
/**
 * * @var {number}
 * * The opacity of the collapse tool on the active Splitter (the Splitter currently being dragged) */
/**
 * * @var {string}
 * * The the type of cursor to display when the cursor is over the collapse tool */
/**
 * * @var {number}
 * * The size of the collapse tool. This becomes the width of the collapse tool for
 * * horizontal splitters, and the height for vertical splitters. */
/**
 * * @class Ext.layout.container.Border */
/**
 * * @var {color}
 * * The background-color of the Border layout element */
/**
 * * @class Ext.menu.Menu */
/**
 * * @var {color}
 * * The background-color of the Menu */
/**
 * * @var {color}
 * * The border-color of {@link Ext.menu.Separator Menu Separators} */
/**
 * * @var {color}
 * * The background-color of {@link Ext.menu.Separator Menu Separators} */
/**
 * * @var {number}
 * * The size of {@link Ext.menu.Separator Menu Separators} */
/**
 * * @var {color}
 * * The border-color of the Menu */
/**
 * * @var {string}
 * * The border-style of the Menu */
/**
 * * @var {number}
 * * The border-width of the Menu */
/**
 * * @var {number}
 * * The font-size of {@link Ext.menu.Item Menu Items} */
/**
 * * @var {number}
 * * The margin of {@link Ext.menu.Item Menu Items} */
/**
 * * @var {number}
 * * The height of {@link Ext.menu.Item Menu Items} */
/**
 * * @var {number}
 * * The border-width of {@link Ext.menu.Item Menu Items} */
/**
 * * @var {string}
 * * The style of cursor to display when the cursor is over a {@link Ext.menu.Item Menu Item} */
/**
 * * @var {color}
 * * The background-color of the active {@link Ext.menu.Item Menu Item} */
/**
 * * @var {color}
 * * The border-color of the active {@link Ext.menu.Item Menu Item} */
/**
 * * @var {string/list}
 * * The background-gradient for {@link Ext.menu.Item Menu Items}. Can be either the name
 * * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
 * * {@link Global_CSS#background-gradient}. */
/**
 * * @var {number}
 * * The border-radius of {@link Ext.menu.Item Menu Items} */
/**
 * * @var {number}
 * * The size of {@link Ext.menu.Item Menu Item} icons */
/**
 * * @var {number}
 * * The space to the left and right of {@link Ext.menu.Item Menu Item} icons */
/**
 * * @var {list}
 * * The background-position of {@link Ext.menu.Item Menu Item} icons */
/**
 * * @var {number}
 * * The space to the left and right of {@link Ext.menu.Item Menu Item} text */
/**
 * * @var {number/list}
 * * The margin of {@link Ext.menu.Separator Menu Separators} */
/**
 * * @var {number}
 * * The padding to the right of {@link Ext.menu.CheckItem Check Items}, to make room
 * * for the checkbox */
/**
 * * @var {number}
 * * The height of {@link Ext.menu.Item Menu Item} arrows */
/**
 * * @var {number}
 * * The width of {@link Ext.menu.Item Menu Item} arrows */
/**
 * * @var {number}
 * * The space to the left and right of {@link Ext.menu.Item Menu Item} arrows */
/**
 * * @var {number}
 * * The opacity of disabled {@link Ext.menu.Item Menu Items} */
/**
 * * @var {number}
 * * The height of Menu crollers */
/**
 * * @var {number}
 * * The opacity of Menu crollers */
/**
 * * @var {number}
 * * The opacity of Menu crollers when hovered */
/**
 * * @var {number}
 * * The opacity of Menu crollers when pressed */
/**
 * * @var {number/list}
 * * The padding to apply to the Menu body element */
/**
 * * @var {color}
 * * The color of Menu Item text */
/**
 * * @var {number/list}
 * * The margin non-MenuItems placed in a Menu */
/**
 * * @var {color} $menu-glyph-color
 * * The color to use for menu icons configured using {@link Ext.menu.Item#glyph glyph} */
/**
 * * @var {number} $menu-glyph-opacity
 * * The opacity to use for menu icons configured using {@link Ext.menu.Item#glyph glyph} */
/**
 * * @class Ext.panel.Tool */
/**
 * * @var {number}
 * * The size of Tools */
/**
 * * @var {boolean}
 * * True to change the background-position of the Tool on hover. Allows for a separate
 * * hover state icon in the sprite. */
/**
 * * @var {string}
 * * The cursor to display when the mouse cursor is over a Tool */
/**
 * * @var {number}
 * * The opacity of Tools */
/**
 * * @var {number}
 * * The opacity of hovered Tools */
/**
 * * @var {number}
 * * The opacity of pressed Tools */
/**
 * * @var {string}
 * * The sprite to use as the background-image for Tools */
/**
 * * @class Ext.slider.Multi */
/**
 * * @var {number}
 * * The horizontal slider thumb width */
/**
 * * @var {number}
 * * The horizontal slider thumb height */
/**
 * * @var {number}
 * * The width of the horizontal slider end caps */
/**
 * * @var {number}
 * * The vertical slider thumb width */
/**
 * * @var {number}
 * * The vertical slider thumb height */
/**
 * * @var {number}
 * * The height of the vertical slider end caps */
/**
 * * @class Ext.tab.Tab */
/**
 * * @var {color}
 * * The base color of Tabs */
/**
 * * @var {color}
 * * The base color of hovered Tabs */
/**
 * * @var {color}
 * * The base color of the active Tabs */
/**
 * * @var {color}
 * * The base color of disabled Tabs */
/**
 * * @var {color}
 * * The text color of Tabs */
/**
 * * @var {color}
 * * The text color of hovered Tabs */
/**
 * * @var {color}
 * * The text color of the active Tab */
/**
 * * @var {color}
 * * The text color of disabled Tabs */
/**
 * * @var {number}
 * * The font-size of Tabs */
/**
 * * @var {number}
 * * The font-size of hovered Tabs */
/**
 * * @var {number}
 * * The font-size of the active Tab */
/**
 * * @var {number}
 * * The font-size of disabled Tabs */
/**
 * * @var {string}
 * * The font-family of Tabs */
/**
 * * @var {string}
 * * The font-family of hovered Tabs */
/**
 * * @var {string}
 * * The font-family of the active Tab */
/**
 * * @var {string}
 * * The font-family of disabled Tabs */
/**
 * * @var {string}
 * * The font-weight of Tabs */
/**
 * * @var {string}
 * * The font-weight of hovered Tabs */
/**
 * * @var {string}
 * * The font-weight of the active Tab */
/**
 * * @var {string}
 * * The font-weight of disabled Tabs */
/**
 * * @var {string}
 * * The Tab cursor */
/**
 * * @var {string}
 * * The cursor of disabled Tabs */
/**
 * * @var {string/list}
 * * The background-gradient for Tabs. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for 
 * * {@link Global_CSS#background-gradient}. */
/**
 * * @var {string/list}
 * * The background-gradient for hovered Tabs. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for 
 * * {@link Global_CSS#background-gradient}. */
/**
 * * @var {string/list}
 * * The background-gradient for the active Tab. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for 
 * * {@link Global_CSS#background-gradient}. */
/**
 * * @var {string/list}
 * * The background-gradient for disabled Tabs. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for 
 * * {@link Global_CSS#background-gradient}. */
/**
 * * @var {list}
 * * The border-radius of Tabs */
/**
 * * @var {number}
 * * The border-width of Tabs */
/**
 * * @var {number/list}
 * * The inner border-width of Tabs */
/**
 * * @var {color}
 * * The inner border-color of Tabs */
/**
 * * @var {color}
 * * The border-color of Tabs */
/**
 * * @var {color}
 * * The border-color of hovered Tabs */
/**
 * * @var {color}
 * * The border-color of the active Tab */
/**
 * * @var {color}
 * * The border-color of disabled Tabs */
/**
 * * @var {number/list}
 * * The padding of Tabs */
/**
 * * @var {number/list}
 * * The padding of the Tab's text element */
/**
 * * @var {number}
 * * The line-height of Tabs */
/**
 * * @var {number/list}
 * * The margin of Tabs. Typically used to add horizontal space between the tabs. */
/**
 * * @var {number}
 * * The width of the Tab close icon */
/**
 * * @var {number}
 * * The height of the Tab close icon */
/**
 * * @var {number}
 * * The distance to offset the Tab close icon from the top of the tab */
/**
 * * @var {number}
 * * The distance to offset the Tab close icon from the right of the tab */
/**
 * * @var {number}
 * * the space in between the text and the close button */
/**
 * * @var {number}
 * * The opacity of the Tab close icon */
/**
 * * @var {number}
 * * The opacity of the Tab close icon when hovered */
/**
 * * @var {number}
 * * The opacity of the Tab close icon when the Tab is disabled */
/**
 * * @var {boolean}
 * * True to change the x background-postition of the close icon background image on hover
 * * to allow for a horizontally aligned background image sprite */
/**
 * * @var {boolean}
 * * True to change the x background-postition of the close icon background image on click
 * * to allow for a horizontally aligned background image sprite */
/**
 * * @var {number}
 * * The width of Tab icons */
/**
 * * @var {number}
 * * The height of Tab icons */
/**
 * * @var {number}
 * * The space between the Tab icon and the Tab text */
/**
 * * @var {number}
 * * The background-position of Tab icons */
/**
 * * @var {color}
 * * The color of Tab glyph icons */
/**
 * * @var {color}
 * * The color of a Tab glyph icon when the Tab is hovered */
/**
 * * @var {color}
 * * The color of a Tab glyph icon when the Tab is active */
/**
 * * @var {color}
 * * The color of a Tab glyph icon when the Tab is disabled */
/**
 * * @var {number}
 * * The opacity of a Tab glyph icon */
/**
 * * @var {number}
 * * The opacity of a Tab glyph icon when the Tab is disabled */
/**
 * * @var {number}
 * * opacity to apply to the tab's main element when the tab is disabled */
/**
 * * @var {number}
 * * opacity to apply to the tab's text element when the tab is disabled */
/**
 * * @var {number}
 * * opacity to apply to the tab's icon element when the tab is disabled */
/**
 * * @var {string}
 * * Experimental - Has issues with IE
 * * The direction to rotate the contents of a left-aligned tab.  `right` to rotate
 * * clockwise or `left` to rotate counterclockwise. Defaults to `left`. */
/**
 * * @var {string}
 * * Experimental - Has issues with IE
 * * The direction to rotate the contents of a right-aligned tab.  `right` to rotate
 * * clockwise or `left` to rotate counterclockwise. Defaults to `right`. */
/**
 * * @var {boolean}
 * * True to include the "default" tab UI */
/**
 * * @class Ext.tab.Bar */
/**
 * * @var {number/list}
 * * The padding of the Tab Bar */
/**
 * * @var {number/list}
 * * The padding of the {@link Ext.tab.Panel#plain plain} Tab Bar */
/**
 * * @var {color}
 * * The base color of the Tab Bar */
/**
 * * @var {string/list}
 * * The background-gradient of the Tab Bar. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for 
 * * {@link Global_CSS#background-gradient}. */
/**
 * * @var {color}
 * * The border-color of the Tab Bar */
/**
 * * @var {number/list}
 * * The border-width of the Tab Bar */
/**
 * * @var {number/list}
 * * The border-width of the {@link Ext.tab.Panel#plain plain} Tab Bar */
/**
 * * @var {number}
 * * The height of the Tab Bar strip */
/**
 * * @var {color}
 * * The border-color of the Tab Bar strip */
/**
 * * @var {color}
 * * The background-color of the Tab Bar strip */
/**
 * * @var {number/list}
 * * The border-width of the Tab Bar strip */
/**
 * * @var {number/list}
 * * The border-width of the {@link Ext.tab.Panel#plain plain} Tab Bar strip */
/**
 * * @var {number}
 * * The width of the Tab Bar scrollers */
/**
 * * @var {string}
 * * The cursor of the Tab Bar scrollers */
/**
 * * @var {string}
 * * The cursor of disabled Tab Bar scrollers */
/**
 * * @var {number}
 * * The opacity of Tab Bar scrollers */
/**
 * * @var {number}
 * * The opacity of hovered Tab Bar scrollers */
/**
 * * @var {number}
 * * The opacity of pressed Tab Bar scrollers */
/**
 * * @var {number}
 * * The opacity of disabled Tab Bar scrollers */
/**
 * * @var {boolean}
 * * true to change the x postition of the background image on hover to allow for a
 * * horizonatlly alined background image sprite */
/**
 * * @var {boolean}
 * * true to include separate scroller icons for "plain" tabbars */
/**
 * * @var {boolean}
 * * if true, the tabbar will use symmetrical scroller icons.  Top and bottom tabbars
 * * will share icons, and Left and right will share icons. */
/**
 * * @var {boolean}
 * * True to include the "default" tabbar UI */
/**
 * * @class Ext.selection.CheckboxModel */
/**
 * * @var {number}
 * * The horizontal space before the checkbox */
/**
 * * @var {number}
 * * The horizontal space after the checkbox */
/**
 * * @class Ext.tree.Panel */
/**
 * * @var {number} $tree-elbow-width
 * * The width of the tree elbow/arrow icons */
/**
 * * @var {number} $tree-icon-width
 * * The width of the tree folder/leaf icons */
/**
 * * @var {number} $tree-elbow-spacing 
 * * The amount of spacing between the tree elbows or arrows, and the checkbox or icon. */
/**
 * * @var {number} $tree-checkbox-spacing
 * * The amount of space (in pixels) between the tree checkbox and the folder/leaf icon */
/**
 * * @var {number} $tree-icon-spacing
 * * The amount of space (in pixels) between the folder/leaf icons and the text */
/**
 * * @var {string} $tree-expander-cursor
 * * The type of cursor to display when the mouse is over a tree expander (+, - or arrow icon) */
/**
 * * @var {number/list}
 * * The amount of padding to apply to the tree cell's inner div element */
/* including package ext-theme-base */
/**
 * * @class Global_CSS */
/**
 * * @var {string} $prefix
 * * The prefix to be applied to all CSS selectors. If this is changed, it must also be changed in your
 * * JavaScript application. */
/**
 * * @var {boolean/string} $relative-image-path-for-uis
 * * True to use a relative image path for all new UIs. If true, the path will be "../images/".
 * * It can also be a string of the path value.
 * * It defaults to false, which means it will look for the images in the ExtJS SDK folder. */
/**
 * * @var {boolean} $include-not-found-images
 * * True to include files which are not found when compiling your SASS */
/**
 * * @var {boolean} $include-ie
 * * True to include Internet Explorer specific rules */
/**
 * * @var {boolean} $include-content-box
 * * True to include rules for browsers that do not support the border-box model
 * * (IE6 strict and IE7 strict) */
/**
 * * @var {boolean} $include-ff
 * * True to include Firefox specific rules */
/**
 * * @var {boolean} $include-chrome
 * * True to include Chrome specific rules */
/**
 * * @var {boolean} $include-safari
 * * True to include Safari specific rules */
/**
 * * @var {boolean} $include-opera
 * * True to include Opera specific rules */
/**
 * * @var {boolean} $include-webkit
 * * True to include Webkit specific rules */
/**
 * * @var {measurement} $css-shadow-border-radius
 * * The border radius for CSS shadows */
/**
 * * @var {color} $include-shadow-images
 * * True to include all shadow images. */
/**
 * * @var {string} $image-extension
 * * default file extension to use for images (defaults to 'png'). */
/**
 * * @var {string} $slicer-image-extension
 * * default file extension to use for slicer images (defaults to 'gif'). */
/**
 * * Default search path for images */
/**
 * * @var {boolean}
 * * True to include the default UI for each component. */
/**
 * * @var {string}
 * * The base path relative to the CSS output directory to use for theme resources.  For example
 * * if the theme's images live one directory up from the generated CSS output in a directory
 * * named 'foo/images/', you would need to set this variable to '../foo/' in order for the image
 * * paths in the CSS output to be generated correctly. By default this is the same as the
 * * CSS output directory. */
/* including package ext-theme-base */
/* line 1, ../../../ext-theme-base/sass/src/Component.scss */
.x-body {
  margin: 0;
}
/* line 5, ../../../ext-theme-base/sass/src/Component.scss */
img {
  border: 0;
}
/* line 10, ../../../ext-theme-base/sass/src/Component.scss */
.x-border-box {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.x-border-box * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
/* line 17, ../../../ext-theme-base/sass/src/Component.scss */
.x-rtl {
  direction: rtl;
}
/* line 21, ../../../ext-theme-base/sass/src/Component.scss */
.x-ltr {
  direction: ltr;
}
/* line 25, ../../../ext-theme-base/sass/src/Component.scss */
.x-clear {
  overflow: hidden;
  clear: both;
  font-size: 0;
  line-height: 0;
  display: table;
}
/* line 33, ../../../ext-theme-base/sass/src/Component.scss */
.x-strict .x-ie7 .x-clear {
  height: 0;
  width: 0;
}
/* line 41, ../../../ext-theme-base/sass/src/Component.scss */
.x-layer {
  position: absolute !important;
  overflow: hidden;
  zoom: 1;
}
/* line 49, ../../../ext-theme-base/sass/src/Component.scss */
.x-fixed-layer {
  position: fixed !important;
  overflow: hidden;
  zoom: 1;
}
/* line 55, ../../../ext-theme-base/sass/src/Component.scss */
.x-shim {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
/* line 63, ../../../ext-theme-base/sass/src/Component.scss */
.x-hide-display {
  display: none !important;
}
/* line 67, ../../../ext-theme-base/sass/src/Component.scss */
.x-hide-visibility {
  visibility: hidden !important;
}
/* line 72, ../../../ext-theme-base/sass/src/Component.scss */
.x-ie6 .x-item-disabled {
  filter: none;
}
/* line 78, ../../../ext-theme-base/sass/src/Component.scss */
.x-hidden, .x-hide-offsets {
  display: block !important;
  visibility: hidden !important;
  position: absolute !important;
  top: -10000px !important;
}
/* line 88, ../../../ext-theme-base/sass/src/Component.scss */
.x-hide-nosize {
  height: 0 !important;
  width: 0 !important;
}
/* line 94, ../../../ext-theme-base/sass/src/Component.scss */
.x-hide-clip {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  clip: rect(0 0 0 0);
}
/* line 102, ../../../ext-theme-base/sass/src/Component.scss */
.x-masked-relative {
  position: relative;
}
/* line 108, ../../../ext-theme-base/sass/src/Component.scss */
.x-ie-shadow {
  background-color: #777;
  display: none;
  position: absolute;
  overflow: hidden;
  zoom: 1;
}
/* line 117, ../../../ext-theme-base/sass/src/Component.scss */
.x-unselectable {
  user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  cursor: default;
}
/* line 121, ../../../ext-theme-base/sass/src/Component.scss */
.x-selectable {
  cursor: auto;
  -moz-user-select: text;
  -webkit-user-select: text;
  user-select: text;
  -o-user-select: text;
}
/* line 136, ../../../ext-theme-base/sass/src/Component.scss */
.x-list-plain {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
/* line 143, ../../../ext-theme-base/sass/src/Component.scss */
.x-table-plain {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
}
/* line 156, ../../../ext-theme-base/sass/src/Component.scss */
.x-frame-tl, .x-frame-tr, .x-frame-tc, .x-frame-bl, .x-frame-br, .x-frame-bc {
  overflow: hidden;
  background-repeat: no-repeat;
}
/* line 162, ../../../ext-theme-base/sass/src/Component.scss */
.x-frame-tc, .x-frame-bc {
  background-repeat: repeat-x;
}
/* line 166, ../../../ext-theme-base/sass/src/Component.scss */
.x-frame-mc {
  background-repeat: repeat-x;
  overflow: hidden;
}
/* line 171, ../../../ext-theme-base/sass/src/Component.scss */
.x-proxy-el {
  position: absolute;
  background: #b4b4b4;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}
/* line 178, ../../../ext-theme-base/sass/src/Component.scss */
.x-css-shadow {
  position: absolute;
  border-radius: 5px;
}
/* line 184, ../../../ext-theme-base/sass/src/Component.scss */
.x-item-disabled {
  cursor: default;
}
.x-item-disabled * {
  cursor: default;
}
/* line 3, ../../../ext-theme-base/sass/src/layout/container/Container.scss */
.x-box-item {
  position: absolute !important;
  left: 0;
  top: 0;
}
/* line 4, ../../../ext-theme-base/sass/src/Editor.scss */
div.x-editor {
  overflow: visible;
}
/* line 1, ../../../ext-theme-base/sass/src/LoadMask.scss */
.x-mask {
  z-index: 100;
  position: absolute;
  width: 100%;
  height: 100%;
  zoom: 1;
}
/* line 10, ../../../ext-theme-base/sass/src/LoadMask.scss */
.x-mask-shim {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 20, ../../../ext-theme-base/sass/src/LoadMask.scss */
.x-mask-msg {
  z-index: 20001;
  position: absolute;
}
/* line 1, ../../../ext-theme-base/sass/src/ProgressBar.scss */
.x-progress {
  position: relative;
  border-style: solid;
  overflow: hidden;
}
/* line 7, ../../../ext-theme-base/sass/src/ProgressBar.scss */
.x-progress-bar {
  overflow: hidden;
  position: absolute;
  width: 0;
  height: 100%;
}
/* line 14, ../../../ext-theme-base/sass/src/ProgressBar.scss */
.x-progress-text {
  overflow: hidden;
  position: absolute;
}
/* line 1, ../../../ext-theme-base/sass/src/button/Button.scss */
.x-btn {
  display: inline-block;
  position: relative;
  zoom: 1;
  *display: inline;
  outline: 0;
  cursor: pointer;
  white-space: nowrap;
  vertical-align: middle;
  text-decoration: none;
}
/* line 15, ../../../ext-theme-base/sass/src/button/Button.scss */
.x-btn-wrap {
  position: relative;
  display: block;
}
/* line 20, ../../../ext-theme-base/sass/src/button/Button.scss */
.x-btn-button {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  zoom: 1;
}
/* line 28, ../../../ext-theme-base/sass/src/button/Button.scss */
.x-btn-inner {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  zoom: 1;
}
/* line 35, ../../../ext-theme-base/sass/src/button/Button.scss */
.x-btn-icon-el {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background-repeat: no-repeat;
  text-align: center;
}
/* line 45, ../../../ext-theme-base/sass/src/button/Button.scss */
.x-btn-inner-center {
  text-align: center;
}
/* line 49, ../../../ext-theme-base/sass/src/button/Button.scss */
.x-btn-inner-left {
  text-align: left;
}
/* line 59, ../../../ext-theme-base/sass/src/button/Button.scss */
.x-btn-inner-right {
  text-align: right;
}
/* line 1, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x-box-layout-ct {
  overflow: hidden;
  zoom: 1;
}
/* line 6, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x-box-target {
  position: absolute;
  width: 20000px;
  top: 0;
  left: 0;
  height: 1px;
}
/* line 31, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x-box-inner {
  overflow: hidden;
  zoom: 1;
  position: relative;
  left: 0;
  top: 0;
}
/* line 41, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x-horizontal-box-overflow-body {
  float: left;
}
/* line 45, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x-box-scroller {
  position: relative;
  background-repeat: no-repeat;
}
/* line 51, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x-box-scroller-left, .x-box-scroller-right {
  float: left;
  height: 100%;
  z-index: 5;
}
/* line 59, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x-box-scroller-top .x-box-scroller, .x-box-scroller-bottom .x-box-scroller {
  line-height: 0;
  font-size: 0;
  background-position: center 0;
}
/* line 66, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x-box-menu-after {
  float: right;
}
/* line 1, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */
.x-toolbar-text {
  white-space: nowrap;
}
/* line 5, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */
.x-toolbar-separator {
  display: block;
  font-size: 1px;
  overflow: hidden;
  cursor: default;
  border: 0;
  width: 0;
  height: 0;
  line-height: 0px;
}
/* line 17, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */
.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal {
  width: 2px;
}
/* line 22, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */
.x-toolbar-scroller {
  padding-left: 0;
}
/* line 29, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */
.x-toolbar-plain {
  border: 0;
}
/* line 1, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-docked {
  position: absolute !important;
  z-index: 1;
}
/* line 7, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-docked-vertical {
  position: static;
}
/* line 11, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-docked-top {
  border-bottom-width: 0 !important;
}
/* line 15, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-docked-bottom {
  border-top-width: 0 !important;
}
/* line 19, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-docked-left {
  border-right-width: 0 !important;
}
/* line 23, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-docked-right {
  border-left-width: 0 !important;
}
/* line 27, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-docked-noborder-top {
  border-top-width: 0 !important;
}
/* line 31, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-docked-noborder-right {
  border-right-width: 0 !important;
}
/* line 35, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-docked-noborder-bottom {
  border-bottom-width: 0 !important;
}
/* line 39, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-docked-noborder-left, .x-noborder-l {
  border-left-width: 0 !important;
}
/* line 45, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
/* line 48, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-noborder-b {
  border-bottom-width: 0 !important;
}
/* line 51, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-noborder-bl {
  border-bottom-width: 0 !important;
  border-left-width: 0 !important;
}
/* line 55, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-noborder-r {
  border-right-width: 0 !important;
}
/* line 58, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-noborder-rl {
  border-right-width: 0 !important;
  border-left-width: 0 !important;
}
/* line 62, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-noborder-rb {
  border-right-width: 0 !important;
  border-bottom-width: 0 !important;
}
/* line 66, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-noborder-rbl {
  border-right-width: 0 !important;
  border-bottom-width: 0 !important;
  border-left-width: 0 !important;
}
/* line 71, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-noborder-t {
  border-top-width: 0 !important;
}
/* line 74, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-noborder-tl {
  border-top-width: 0 !important;
  border-left-width: 0 !important;
}
/* line 78, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-noborder-tb {
  border-top-width: 0 !important;
  border-bottom-width: 0 !important;
}
/* line 82, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-noborder-tbl {
  border-top-width: 0 !important;
  border-bottom-width: 0 !important;
  border-left-width: 0 !important;
}
/* line 87, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-noborder-tr {
  border-top-width: 0 !important;
  border-right-width: 0 !important;
}
/* line 91, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-noborder-trl {
  border-top-width: 0 !important;
  border-right-width: 0 !important;
  border-left-width: 0 !important;
}
/* line 96, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-noborder-trb {
  border-top-width: 0 !important;
  border-right-width: 0 !important;
  border-bottom-width: 0 !important;
}
/* line 101, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x-noborder-trbl {
  border-width: 0 !important;
}
/* line 1, ../../../ext-theme-base/sass/src/panel/Header.scss */
.x-header-icon {
  background-repeat: no-repeat;
  background-position: 0 0;
  vertical-align: middle;
  text-align: center;
}
/* line 8, ../../../ext-theme-base/sass/src/panel/Header.scss */
.x-header-text-container {
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 4, ../../../ext-theme-base/sass/src/dd/DD.scss */
.x-dd-drag-proxy, .x-dd-drag-current {
  z-index: 1000000 !important;
  pointer-events: none;
}
/* line 2, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */
.x-dd-drag-repair .x-dd-drag-ghost {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
}
.x-dd-drag-repair .x-dd-drop-icon {
  display: none;
}
/* line 6, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */
/* line 11, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */
.x-dd-drag-ghost {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  opacity: 0.85;
  padding: 5px;
  padding-left: 20px;
  white-space: nowrap;
  color: #000;
  font: normal 12px helvetica, arial, verdana, sans-serif;
  border: 1px solid;
  border-color: #ddd #bbb #bbb #ddd;
  background-color: #fff;
}
/* line 28, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */
.x-dd-drop-icon {
  position: absolute;
  top: 3px;
  left: 3px;
  display: block;
  width: 16px;
  height: 16px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
/* line 66, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */
.x-dd-drop-ok .x-dd-drop-icon {
  background-image: url(images/dd/drop-yes.png);
}
/* line 70, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */
.x-dd-drop-ok-add .x-dd-drop-icon {
  background-image: url(images/dd/drop-add.png);
}
/* line 75, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */
.x-dd-drop-nodrop div.x-dd-drop-icon {
  background-image: url(images/dd/drop-no.png);
}
/* line 2, ../../../ext-theme-base/sass/src/panel/Panel.scss */
.x-panel, .x-plain {
  overflow: hidden;
  position: relative;
}
/* line 7, ../../../ext-theme-base/sass/src/panel/Panel.scss */
.x-panel {
  outline: none;
}
/* line 23, ../../../ext-theme-base/sass/src/panel/Panel.scss */
.x-ie .x-panel-header, .x-ie .x-panel-header-tl, .x-ie .x-panel-header-tc, .x-ie .x-panel-header-tr, .x-ie .x-panel-header-ml, .x-ie .x-panel-header-mc, .x-ie .x-panel-header-mr, .x-ie .x-panel-header-bl, .x-ie .x-panel-header-bc, .x-ie .x-panel-header-br {
  zoom: 1;
}
/* line 29, ../../../ext-theme-base/sass/src/panel/Panel.scss */
.x-ie8 td.x-frame-mc {
  vertical-align: top;
}
/* line 35, ../../../ext-theme-base/sass/src/panel/Panel.scss */
.x-panel-body {
  overflow: hidden;
  position: relative;
}
/* line 42, ../../../ext-theme-base/sass/src/panel/Panel.scss */
.x-nlg .x-panel-header-vertical .x-frame-mc {
  background-repeat: repeat-y;
}
/* line 49, ../../../ext-theme-base/sass/src/panel/Panel.scss */
.x-panel-header-plain, .x-panel-body-plain {
  border: 0;
  padding: 0;
}
/* line 1, ../../../ext-theme-base/sass/src/tip/Tip.scss */
.x-tip {
  position: absolute;
  overflow: visible;
  /*pointer needs to be able to stick out */
}
/* line 6, ../../../ext-theme-base/sass/src/tip/Tip.scss */
.x-tip-body {
  overflow: hidden;
  position: relative;
}
/* line 11, ../../../ext-theme-base/sass/src/tip/Tip.scss */
.x-tip-anchor {
  position: absolute;
  overflow: hidden;
  border-style: solid;
}
/* line 1, ../../../ext-theme-base/sass/src/layout/container/Table.scss */
.x-table-layout {
  font-size: 1em;
}
/* line 1, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */
.x-btn-group {
  position: relative;
  overflow: hidden;
}
/* line 6, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */
.x-btn-group-body {
  position: relative;
  zoom: 1;
}
.x-btn-group-body .x-table-layout-cell {
  vertical-align: top;
}
/* line 9, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */
/* line 1, ../../../ext-theme-base/sass/src/container/Viewport.scss */
.x-viewport {
  margin: 0;
  padding: 0;
  border: 0 none;
  overflow: hidden;
  height: 100%;
  position: static;
}
.x-viewport body {
  margin: 0;
  padding: 0;
  border: 0 none;
  overflow: hidden;
  height: 100%;
  position: static;
}
/* line 1, ../../../ext-theme-base/sass/src/window/Window.scss */
.x-window {
  outline: none;
  overflow: hidden;
}
.x-window .x-window-wrap {
  position: relative;
}
/* line 5, ../../../ext-theme-base/sass/src/window/Window.scss */
/* line 10, ../../../ext-theme-base/sass/src/window/Window.scss */
.x-window-body {
  position: relative;
  overflow: hidden;
}
/* line 15, ../../../ext-theme-base/sass/src/window/Window.scss */
.x-window-body-plain {
  background: transparent;
}
/* line 1, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x-form-item-label {
  display: block;
}
/* line 5, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x-form-item-label-right {
  text-align: right;
}
/* line 9, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x-form-item-label-top {
  display: block;
  zoom: 1;
}
/* line 15, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x-form-invalid-icon {
  overflow: hidden;
}
.x-form-invalid-icon ul {
  display: none;
}
/* line 17, ../../../ext-theme-base/sass/src/form/Labelable.scss */
/* line 1, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */
.x-form-textarea {
  overflow: auto;
  resize: none;
}
/* line 5, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */
.x-safari.x-mac .x-form-textarea {
  margin-bottom: -2px;
}
/* line 1, ../../../ext-theme-base/sass/src/form/field/Display.scss */
.x-form-display-field-body, .x-form-cb-wrap {
  vertical-align: top;
}
/* line 1, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */
/* line 5, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */
.x-form-cb {
  vertical-align: top;
  overflow: hidden;
  padding: 0;
  border: 0;
}
.x-form-cb::-moz-focus-inner {
  padding: 0;
  border: 0;
}
/* line 10, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */
/* line 16, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */
.x-form-cb-label {
  display: inline-block;
  zoom: 1;
}
/* line 1, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
.x-fieldset {
  display: block;
  /* preserve margins in IE */
  position: relative;
}
/* line 6, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
.x-fieldset-header {
  overflow: hidden;
}
.x-fieldset-header .x-form-item, .x-fieldset-header .x-tool {
  float: left;
}
.x-fieldset-header .x-form-cb-wrap {
  font-size: 0;
  line-height: 0;
}
.x-fieldset-header .x-form-cb {
  margin: 0;
}
/* line 10, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
/* line 14, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
/* line 19, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
/* line 33, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
.x-fieldset-header-text {
  float: left;
}
/*misc */
/* line 4, ../../../ext-theme-base/sass/src/form/Panel.scss */
.x-webkit *:focus {
  outline: none !important;
}
/* line 11, ../../../ext-theme-base/sass/src/form/Panel.scss */
.x-form-item {
  vertical-align: top;
  table-layout: fixed;
}
/* line 17, ../../../ext-theme-base/sass/src/form/Panel.scss */
.x-form-item-body {
  position: relative;
}
/* line 33, ../../../ext-theme-base/sass/src/form/Panel.scss */
.x-form-form-item td {
  border-top: 1px solid transparent;
}
/* line 1, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */
.x-form-trigger {
  cursor: pointer;
  overflow: hidden;
  background-repeat: no-repeat;
}
/* line 5, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */
.x-item-disabled .x-form-trigger, .x-trigger-noedit {
  cursor: default;
}
/* line 10, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */
/* line 14, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */
.x-form-trigger-wrap {
  vertical-align: top;
  border-collapse: separate;
}
/* line 2, ../../../ext-theme-base/sass/src/form/field/Spinner.scss */
.x-form-spinner-up, .x-form-spinner-down {
  font-size: 0;
}
/* line 1, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-datepicker {
  position: relative;
}
/* line 5, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-datepicker-inner {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
}
/* line 11, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-datepicker-cell {
  padding: 0;
}
/* line 15, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-datepicker-header {
  position: relative;
  zoom: 1;
}
/* line 20, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-datepicker-arrow {
  position: absolute;
  outline: none;
  font-size: 0;
}
/* line 26, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-datepicker-column-header {
  padding: 0;
}
/* line 30, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-datepicker-date {
  display: block;
  zoom: 1;
  text-decoration: none;
}
/* line 36, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-monthpicker {
  position: absolute;
  left: 0;
  top: 0;
}
/* line 42, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-monthpicker-body {
  height: 100%;
}
/* line 47, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-monthpicker-months, .x-monthpicker-years {
  float: left;
  height: 100%;
}
/* line 52, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-monthpicker-item {
  float: left;
}
/* line 56, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-monthpicker-item-inner {
  display: block;
  text-decoration: none;
}
/* line 61, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-monthpicker-yearnav-button-ct {
  float: left;
  text-align: center;
}
/* line 66, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-monthpicker-yearnav-button {
  display: inline-block;
  outline: none;
  font-size: 0;
}
/* line 72, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-monthpicker-buttons {
  position: absolute;
  bottom: 0;
  width: 100%;
}
/* line 78, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x-strict .x-ie6 .x-monthpicker-buttons {
  bottom: -1px;
}
/* line 1, ../../../ext-theme-base/sass/src/form/field/File.scss */
.x-form-file-btn {
  overflow: hidden;
}
/* line 5, ../../../ext-theme-base/sass/src/form/field/File.scss */
.x-form-file-input {
  border: 0;
  position: absolute;
  cursor: pointer;
  top: -2px;
  right: -2px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  /* Yes, there's actually a good reason for this...
  * * If the configured buttonText is set to something longer than the default,
  * * then it will quickly exceed the width of the hidden file input's "Browse..."
  * * button, so part of the custom button's clickable area will be covered by
  * * the hidden file input's text box instead. This results in a text-selection
  * * mouse cursor over that part of the button, at least in Firefox, which is
  * * confusing to a user. Giving the hidden file input a huge font-size makes
  * * the native button part very large so it will cover the whole clickable area. */
  font-size: 1000px;
}
/* line 1, ../../../ext-theme-base/sass/src/form/field/Hidden.scss */
.x-form-item-hidden {
  margin: 0;
}
/* line 1, ../../../ext-theme-base/sass/src/picker/Color.scss */
.x-color-picker-item {
  float: left;
  text-decoration: none;
}
/* line 6, ../../../ext-theme-base/sass/src/picker/Color.scss */
.x-color-picker-item-inner {
  display: block;
  font-size: 1px;
}
/* line 1, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-toolbar {
  position: static !important;
}
/* line 5, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */
.x-htmleditor-iframe {
  display: block;
  overflow: auto;
}
/* line 1, ../../../ext-theme-base/sass/src/layout/container/Fit.scss */
.x-fit-item {
  position: relative;
}
/* line 2, ../../../ext-theme-base/sass/src/panel/Table.scss */
.x-grid-row, .x-grid-data-row {
  outline: none;
}
/* line 6, ../../../ext-theme-base/sass/src/panel/Table.scss */
.x-grid-view {
  overflow: hidden;
  position: relative;
}
/* line 11, ../../../ext-theme-base/sass/src/panel/Table.scss */
.x-grid-table {
  table-layout: fixed;
  border-collapse: separate;
}
/* line 16, ../../../ext-theme-base/sass/src/panel/Table.scss */
.x-grid-td {
  overflow: hidden;
  border-width: 0;
  vertical-align: top;
}
/* line 22, ../../../ext-theme-base/sass/src/panel/Table.scss */
.x-grid-cell-inner {
  overflow: hidden;
  white-space: nowrap;
  zoom: 1;
}
/* line 28, ../../../ext-theme-base/sass/src/panel/Table.scss */
.x-grid-resize-marker {
  position: absolute;
  z-index: 5;
  top: 0;
}
/* line 2, ../../../ext-theme-base/sass/src/grid/header/DropZone.scss */
.col-move-top, .col-move-bottom {
  position: absolute;
  top: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  z-index: 20000;
  background: no-repeat center top transparent;
}
/* line 1, ../../../ext-theme-base/sass/src/grid/header/Container.scss */
.x-grid-header-ct {
  cursor: default;
}
/* line 1, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x-column-header {
  position: absolute;
  overflow: hidden;
  background-repeat: repeat-x;
}
/* line 7, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x-column-header-inner {
  zoom: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
/* line 14, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x-column-header-text {
  white-space: nowrap;
  background-repeat: no-repeat;
  zoom: 1;
  display: inline-block;
}
/* line 25, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x-column-header-trigger {
  display: none;
  height: 100%;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
/* line 43, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x-column-header-over .x-column-header-trigger, .x-column-header-open .x-column-header-trigger {
  display: block;
}
/* line 48, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x-column-header-align-right {
  text-align: right;
}
/* line 58, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x-column-header-align-left {
  text-align: left;
}
/* line 68, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x-column-header-align-center {
  text-align: center;
}
/* line 1, ../../../ext-theme-base/sass/src/grid/column/Action.scss */
.x-grid-cell-inner-action-col, .x-grid-cell-inner-checkcolumn {
  line-height: 0;
  font-size: 0;
}
/* line 1, ../../../ext-theme-base/sass/src/grid/column/CheckColumn.scss */
/* line 1, ../../../ext-theme-base/sass/src/grid/column/RowNumberer.scss */
.x-row-numberer .x-column-header-inner {
  text-overflow: clip;
}
/* line 3, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */
.x-grid-group, .x-grid-group-body {
  zoom: 1;
}
.x-grid-group-hd {
  zoom: 1;
  white-space: nowrap;
}
/* line 7, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */
/* line 11, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */
.x-grid-row-body-hidden, .x-grid-group-collapsed {
  display: none;
}
/* line 1, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */
.x-grid-rowbody {
  zoom: 1;
}
/* line 5, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */
.x-grid-row-body-hidden {
  display: none;
}
/* line 3, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */
td.x-grid-rowwrap .x-grid-table {
  border: 0;
}
td.x-grid-rowwrap .x-grid-cell {
  border-bottom: 0;
  background-color: transparent;
}
/* line 6, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */
/* line 2, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */
.x-grid-editor .x-form-cb-wrap {
  text-align: center;
}
.x-grid-editor .x-form-display-field {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
}
.x-grid-editor div.x-form-action-col-field {
  line-height: 0;
}
/* line 9, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */
/* line 17, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */
/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */
.x-grid-row-editor {
  position: absolute;
  overflow: visible;
  z-index: 1;
}
/* line 7, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */
.x-grid-row-editor-buttons {
  position: absolute;
  white-space: nowrap;
}
/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowExpander.scss */
.x-grid-row-expander {
  font-size: 0;
  line-height: 0;
}
/* line 1, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */
.x-abs-layout-ct {
  position: relative;
}
/* line 5, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */
.x-abs-layout-item {
  position: absolute !important;
}
/* line 1, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */
.x-splitter {
  font-size: 1px;
}
/* line 5, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */
.x-splitter-horizontal {
  cursor: e-resize;
  cursor: row-resize;
}
/* line 10, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */
.x-splitter-vertical {
  cursor: e-resize;
  cursor: col-resize;
}
/* line 17, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */
.x-splitter-collapsed, .x-splitter-horizontal-noresize, .x-splitter-vertical-noresize {
  cursor: default;
}
/* line 21, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */
.x-splitter-active {
  z-index: 4;
}
/* line 25, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */
.x-collapse-el {
  position: absolute;
  background-repeat: no-repeat;
}
/* line 1, ../../../ext-theme-base/sass/src/layout/container/Border.scss */
.x-border-layout-ct {
  overflow: hidden;
  zoom: 1;
  position: relative;
}
/* line 6, ../../../ext-theme-base/sass/src/layout/container/Border.scss */
/* line 10, ../../../ext-theme-base/sass/src/layout/container/Border.scss */
.x-border-region-slide-in {
  z-index: 5;
}
/* line 14, ../../../ext-theme-base/sass/src/layout/container/Border.scss */
.x-region-collapsed-placeholder {
  z-index: 4;
}
/* line 1, ../../../ext-theme-base/sass/src/layout/container/Column.scss */
.x-column {
  float: left;
}
/* line 21, ../../../ext-theme-base/sass/src/layout/container/Column.scss */
.x-ie6 .x-column {
  display: inline;
  /*prevent IE6 double-margin bug */
}
/* line 25, ../../../ext-theme-base/sass/src/layout/container/Column.scss */
.x-quirks .x-ie .x-form-layout-table {
  position: relative;
}
.x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item {
  position: relative;
}
/* line 2, ../../../ext-theme-base/sass/src/layout/container/Form.scss */
.x-form-layout-table {
  border-collapse: separate;
  border-spacing: 0 2px;
}
/* line 9, ../../../ext-theme-base/sass/src/layout/container/Form.scss */
.x-ie6 .x-form-layout-table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* line 1, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x-menu {
  outline: none;
}
/* line 5, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x-menu-item {
  white-space: nowrap;
  overflow: hidden;
}
/* line 11, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x-menu-item-cmp {
  margin: 2px;
}
.x-menu-item-cmp .x-field-label-cell {
  vertical-align: middle;
}
/* line 14, ../../../ext-theme-base/sass/src/menu/Menu.scss */
/* line 22, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x-menu-icon-separator {
  position: absolute;
  top: 0px;
  z-index: 0;
  height: 100%;
  overflow: hidden;
}
/* line 28, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x-menu-plain .x-menu-icon-separator {
  display: none;
}
/* line 33, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x-menu-item-link {
  text-decoration: none;
  outline: 0;
  zoom: 1;
}
/* line 40, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x-menu-item-text {
  zoom: 1;
}
/* line 47, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x-menu-item-icon, .x-menu-item-icon-right, .x-menu-item-arrow {
  position: absolute;
  text-align: center;
}
/* line 1, ../../../ext-theme-base/sass/src/resizer/SplitterTracker.scss */
.x-resizable-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 200000;
  background-color: #fff;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
/* line 1, ../../../ext-theme-base/sass/src/slider/Multi.scss */
.x-slider {
  outline: none;
  zoom: 1;
  position: relative;
}
/* line 9, ../../../ext-theme-base/sass/src/slider/Multi.scss */
.x-slider-inner {
  position: relative;
  left: 0;
  top: 0;
  overflow: visible;
  zoom: 1;
}
/* line 17, ../../../ext-theme-base/sass/src/slider/Multi.scss */
.x-slider-vert .x-slider-inner {
  background: repeat-y 0 0;
}
/* line 23, ../../../ext-theme-base/sass/src/slider/Multi.scss */
.x-slider-end {
  zoom: 1;
}
/* line 28, ../../../ext-theme-base/sass/src/slider/Multi.scss */
.x-slider-thumb {
  position: absolute;
  background: no-repeat 0 0;
}
/* line 31, ../../../ext-theme-base/sass/src/slider/Multi.scss */
.x-slider-horz .x-slider-thumb {
  left: 0;
}
/* line 34, ../../../ext-theme-base/sass/src/slider/Multi.scss */
.x-slider-vert .x-slider-thumb {
  bottom: 0;
}
/* line 1, ../../../ext-theme-base/sass/src/tab/Tab.scss */
a.x-tab {
  text-decoration: none;
}
/* line 1, ../../../ext-theme-base/sass/src/tab/Bar.scss */
.x-tab-bar {
  position: relative;
}
/* line 1, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */
.x-column-header-checkbox .x-column-header-text {
  display: block;
  background-repeat: no-repeat;
  font-size: 0;
}
/* line 7, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */
.x-grid-cell-row-checker {
  vertical-align: middle;
  background-repeat: no-repeat;
  font-size: 0;
}
/* line 1, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab {
  display: block;
  white-space: nowrap;
  z-index: 1;
}
/* line 7, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-active {
  z-index: 3;
}
/* line 11, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-wrap {
  display: block;
  position: relative;
}
/* line 16, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-button {
  zoom: 1;
  display: block;
  outline: none;
}
/* line 22, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-inner {
  display: block;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  zoom: 1;
}
/* line 32, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-btn-icon-el {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background-repeat: no-repeat;
  text-align: center;
}
/* line 42, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-bar {
  z-index: 1;
}
/* line 46, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-bar-body {
  z-index: 2;
  position: relative;
}
/* line 51, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-bar-strip {
  position: absolute;
  line-height: 0;
  font-size: 0;
  z-index: 1;
}
/* line 58, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-bar-horizontal .x-tab-bar-strip {
  width: 100%;
  left: 0;
}
/* line 63, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-bar-vertical .x-tab-bar-strip {
  height: 100%;
  top: 0;
}
/* line 68, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-bar-strip-top {
  bottom: 0;
}
/* line 72, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-bar-strip-bottom {
  top: 0;
}
/* line 76, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-bar-strip-left {
  right: 0;
}
/* line 87, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-bar-strip-right {
  left: 0;
}
/* line 98, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-bar-plain {
  background: transparent !important;
}
.floatingpanel .x-tab-bar-plain {
  background: #067C99 !important;
}
/* line 102, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-icon-el {
  position: absolute;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
}
/* line 118, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-close-btn {
  display: block;
  position: absolute;
  font-size: 0;
  line-height: 0;
  background: no-repeat;
}
/* line 126, ../../../ext-theme-base/sass/src/tab/Panel.scss */
.x-tab-mc {
  overflow: visible;
}
/* line 3, ../../../ext-theme-base/sass/src/tree/Panel.scss */
.x-autowidth-table .x-grid-table {
  table-layout: auto;
  width: auto !important;
}
/* line 8, ../../../ext-theme-base/sass/src/tree/Panel.scss */
.x-tree-view {
  overflow: hidden;
}
/* line 13, ../../../ext-theme-base/sass/src/tree/Panel.scss */
.x-tree-elbow-img, .x-tree-icon {
  background-repeat: no-repeat;
  background-position: 0 center;
  vertical-align: top;
}
/* line 19, ../../../ext-theme-base/sass/src/tree/Panel.scss */
.x-tree-checkbox {
  border: 0;
  padding: 0;
  vertical-align: top;
  position: relative;
  background-color: transparent;
}
/* line 27, ../../../ext-theme-base/sass/src/tree/Panel.scss */
.x-tree-animator-wrap {
  overflow: hidden;
}
/* line 31, ../../../ext-theme-base/sass/src/tree/Panel.scss */
.x-tree-node-text {
  zoom: 1;
}
/* line 1, ../../../ext-theme-base/sass/src/draw/Component.scss */
.x-surface {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  overflow: hidden;
}
/* line 6, ../../../ext-theme-base/sass/src/draw/Component.scss */
.rvml {
  behavior: url(#default#VML);
}
/* line 10, ../../../ext-theme-base/sass/src/draw/Component.scss */
.x-surface tspan {
  user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  cursor: default;
}
/* line 14, ../../../ext-theme-base/sass/src/draw/Component.scss */
.x-vml-sprite {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
}
/* line 22, ../../../ext-theme-base/sass/src/draw/Component.scss */
.x-vml-group {
  position: absolute;
  left: 0;
  top: 0;
  width: 1000px;
  height: 1000px;
}
/* line 30, ../../../ext-theme-base/sass/src/draw/Component.scss */
.x-vml-measure-span {
  position: absolute;
  left: -9999em;
  top: -9999em;
  padding: 0;
  margin: 0;
  display: inline;
}
/* line 39, ../../../ext-theme-base/sass/src/draw/Component.scss */
.x-vml-base {
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
  display: inline-block;
}
/* line 47, ../../../ext-theme-base/sass/src/draw/Component.scss */
/* line 55, ../../../ext-theme-base/sass/src/draw/Component.scss */
svg, vml {
  overflow: hidden;
}
/* including package ext-theme-neutral */
/* line 1, ../../../ext-theme-neutral/sass/src/Component.scss */
.x-body {
  color: black;
  font-size: 13px;
  font-family: helvetica, arial, verdana, sans-serif;
  background: #f5f5f5;
}
/* line 13, ../../../ext-theme-neutral/sass/src/Component.scss */
.x-animating-size, .x-collapsed {
  overflow: hidden !important;
}
/* line 2, ../../../ext-theme-neutral/sass/src/Editor.scss */
.x-editor .x-form-item-body {
  padding-bottom: 0;
}
/* line 1, ../../../ext-theme-neutral/sass/src/FocusManager.scss */
.x-focus-element {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 0px;
  height: 0px;
}
/* line 9, ../../../ext-theme-neutral/sass/src/FocusManager.scss */
.x-focus-frame {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 100000000;
  width: 0px;
  height: 0px;
}
/* line 21, ../../../ext-theme-neutral/sass/src/FocusManager.scss */
.x-focus-frame-top, .x-focus-frame-bottom, .x-focus-frame-left, .x-focus-frame-right {
  position: absolute;
  top: 0px;
  left: 0px;
}
/* line 28, ../../../ext-theme-neutral/sass/src/FocusManager.scss */
.x-focus-frame-top, .x-focus-frame-bottom {
  border-top: solid 2px #15428b;
  height: 2px;
}
/* line 34, ../../../ext-theme-neutral/sass/src/FocusManager.scss */
.x-focus-frame-left, .x-focus-frame-right {
  border-left: solid 2px #15428b;
  width: 2px;
}
/* line 1, ../../../ext-theme-neutral/sass/src/LoadMask.scss */
.x-mask {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  background: white;
}
/* line 9, ../../../ext-theme-neutral/sass/src/LoadMask.scss */
.x-mask-msg {
  padding: 8px;
  border-radius: 3px;
  background-image: none;
  background-color: #e5e5e5;
}
/* line 29, ../../../ext-theme-neutral/sass/src/LoadMask.scss */
.x-mask-msg-inner {
  padding: 0;
  background-color: transparent;
  color: #666666;
  font: normal 13px helvetica, arial, verdana, sans-serif;
}
/* line 41, ../../../ext-theme-neutral/sass/src/LoadMask.scss */
.x-mask-msg-text {
  padding: 21px 0 0;
  background-image: url(images/loadmask/loading.gif);
  background-repeat: no-repeat;
  background-position: center 0;
}
/**
 * * Creates a visual theme for an Ext.ProgressBar
 * *
 * * @param {string} $ui-label
 * * The name of the UI being created. Can not included spaces or special punctuation
 * * (used in CSS class names).
 * *
 * * @param {color} [$ui-border-color=$progress-border-color]
 * * The border-color of the ProgressBar
 * *
 * * @param {color} [$ui-background-color=$progress-background-color]
 * * The background-color of the ProgressBar
 * *
 * * @param {color} [$ui-bar-background-color=$progress-bar-background-color]
 * * The background-color of the ProgressBar's moving element
 * *
 * * @param {string/list} [$ui-bar-background-gradient=$progress-bar-background-gradient]
 * * The background-gradient of the ProgressBar's moving element. Can be either the name of
 * * a predefined gradient or a list of color stops. Used as the `$type` parameter for
 * * {@link Global_CSS#background-gradient}.
 * *
 * * @param {color} [$ui-color-front=$progress-text-color-front]
 * * The color of the ProgressBar's text when in front of the ProgressBar's moving element
 * *
 * * @param {color} [$ui-color-back=$progress-text-color-back]
 * * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it
 * *
 * * @param {number} [$ui-height=$progress-height]
 * * The height of the ProgressBar
 * *
 * * @param {number} [$ui-border-width=$progress-border-width]
 * * The border-width of the ProgressBar
 * *
 * * @param {number} [$ui-border-radius=$progress-border-radius]
 * * The border-radius of the ProgressBar
 * *
 * * @param {string} [$ui-text-text-align=$progress-text-text-align]
 * * The text-align of the ProgressBar's text
 * *
 * * @param {number} [$ui-text-font-size=$progress-text-font-size]
 * * The font-size of the ProgressBar's text
 * *
 * * @param {string} [$ui-text-font-weight=$progress-text-font-weight]
 * * The font-weight of the ProgressBar's text
 * *
 * * @member Ext.ProgressBar */
/* line 67, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */
.x-progress-default {
  background-color: #f5f5f5;
  border-width: 0;
  height: 20px;
  border-color: #0097BA;
}
/* line 72, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */
.x-content-box .x-progress-default {
  height: 20px;
}
/* line 84, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */
.x-progress-default .x-progress-bar-default {
  background-image: none;
  background-color: #c1ddf1;
}
.x-progress-default .x-progress-text {
  color: #666666;
  font-weight: bold;
  font-size: 13px;
  text-align: center;
  line-height: 20px;
}
.x-progress-default .x-progress-text-back {
  color: #666666;
  line-height: 20px;
}
/* line 99, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */
/* line 107, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */
/**
 * * Creates a visual theme for a Button
 * *
 * * @param {string} $ui
 * * The name of the UI being created. Can not included spaces or special punctuation
 * * (used in CSS class names).
 * *
 * * @param {number} [$border-radius=0px]
 * * The border-radius of the button
 * *
 * * @param {number} [$border-width=0px]
 * * The border-width of the button
 * *
 * * @param {color} $border-color
 * * The border-color of the button
 * *
 * * @param {color} $border-color-over
 * * The border-color of the button when the cursor is over the button
 * *
 * * @param {color} $border-color-focus
 * * The border-color of the button when focused
 * *
 * * @param {color} $border-color-pressed
 * * The border-color of the button when pressed
 * *
 * * @param {color} $border-color-disabled
 * * The border-color of the button when disabled
 * *
 * * @param {number} $padding
 * * The amount of padding inside the border of the button on all sides
 * *
 * * @param {number} $text-padding
 * * The amount of horizontal space to add to the left and right of the button text
 * *
 * * @param {color} $background-color
 * * The background-color of the button
 * *
 * * @param {color} $background-color-over
 * * The background-color of the button when the cursor is over the button
 * *
 * * @param {color} $background-color-focus
 * * The background-color of the button when focused
 * *
 * * @param {color} $background-color-pressed
 * * The background-color of the button when pressed
 * *
 * * @param {color} $background-color-disabled
 * * The background-color of the button when disabled
 * *
 * * @param {string/list} $background-gradient
 * * The background-gradient for the button.  Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
 * *
 * * @param {string} $background-gradient-over
 * * The background-gradient to use when the cursor is over the button. Can be either the
 * * name of a predefined gradient or a list of color stops. Used as the `$type` parameter
 * * for {@link Global_CSS#background-gradient}.
 * *
 * * @param {string} $background-gradient-focus
 * * The background-gradient to use when the the button is focused. Can be either the name
 * * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
 * * {@link Global_CSS#background-gradient}.
 * *
 * * @param {string} $background-gradient-pressed
 * * The background-gradient to use when the the button is pressed. Can be either the name
 * * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
 * * {@link Global_CSS#background-gradient}.
 * *
 * * @param {string} $background-gradient-disabled
 * * The background-gradient to use when the the button is disabled. Can be either the name
 * * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
 * * {@link Global_CSS#background-gradient}.
 * *
 * * @param {color} $color
 * * The text color of the button
 * *
 * * @param {color} $color-over
 * * The text color of the button when the cursor is over the button
 * *
 * * @param {color} $color-focus
 * * The text color of the button when the button is focused
 * *
 * * @param {color} $color-pressed
 * * The text color of the button when the button is pressed
 * *
 * * @param {color} $color-disabled
 * * The text color of the button when the button is disabled
 * *
 * * @param {number} $font-size
 * * The font-size of the button
 * *
 * * @param {number} $font-size-over
 * * The font-size of the button when the cursor is over the button
 * *
 * * @param {number} $font-size-focus
 * * The font-size of the button when the button is focused
 * *
 * * @param {number} $font-size-pressed
 * * The font-size of the button when the button is pressed
 * *
 * * @param {number} $font-size-disabled
 * * The font-size of the button when the button is disabled
 * *
 * * @param {string} $font-weight
 * * The font-weight of the button
 * *
 * * @param {string} $font-weight-over
 * * The font-weight of the button when the cursor is over the button
 * *
 * * @param {string} $font-weight-focus
 * * The font-weight of the button when the button is focused
 * *
 * * @param {string} $font-weight-pressed
 * * The font-weight of the button when the button is pressed
 * *
 * * @param {string} $font-weight-disabled
 * * The font-weight of the button when the button is disabled
 * *
 * * @param {string} $font-family
 * * The font-family of the button
 * *
 * * @param {string} $font-family-over
 * * The font-family of the button when the cursor is over the button
 * *
 * * @param {string} $font-family-focus
 * * The font-family of the button when the button is focused
 * *
 * * @param {string} $font-family-pressed
 * * The font-family of the button when the button is pressed
 * *
 * * @param {string} $font-family-disabled
 * * The font-family of the button when the button is disabled
 * *
 * * @param {number} $icon-size
 * * The size of the button icon
 * *
 * * @param {color} $glyph-color
 * * The color of the button's {@link #glyph} icon
 * *
 * * @param {number} [$glyph-opacity=1]
 * * The opacity of the button's {@link #glyph} icon
 * *
 * * @param {number} $arrow-width
 * * The width of the button's {@link #cfg-menu} arrow
 * *
 * * @param {number} $arrow-height
 * * The height of the button's {@link #cfg-menu} arrow
 * *
 * * @param {number} $split-width
 * * The width of a {@link Ext.button.Split Split Button}'s arrow
 * *
 * * @param {number} $split-height
 * * The height of a {@link Ext.button.Split Split Button}'s arrow
 * *
 * * @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows]
 * * True to include the UI name in the file name of the {@link #cfg-menu}
 * * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
 * *
 * * @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows]
 * * True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s
 * * arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
 * *
 * * @param {boolean} [$include-split-noline-arrows=false]
 * * True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s 
 * * arrow icon.  Used for hiding the split line when toolbar buttons are in their default
 * * state.
 * *
 * * @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows]
 * * True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor
 * * is over the button.  The over icon file name will have a "-o" suffix
 * *
 * * @param {number} [$opacity-disabled=1]
 * * The opacity of the button when it is disabled
 * *
 * * @param {number} [$inner-opacity-disabled=1]
 * * The opacity of the button's text and icon elements when when the button is disabled
 * * 
 * * @member Ext.button.Button */
/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small {
  border-color: #126daf;
  border-radius: 0px;
  padding: 3px 3px 3px 3px;
  border-width: 0px;
  border-style: solid;
  background-image: none;
  background-color: #0097BA;
  background-image: linear-gradient(top, #4b9cd7, #0097BA 50%, #358ac8 51%, #0097BA);
}
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-small-mc {
  background-image: url(images/btn/btn-default-small-fbg.gif);
  background-position: 0 top;
  background-color: #0097BA;
}
/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nlg .x-btn-default-small {
  background-image: url(images/btn/btn-default-small-bg.gif);
  background-position: 0 top;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-btn-default-small {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-btn-default-small-frameInfo {
  font-family: th-3-3-3-3-1-1-1-1-3-3-3-3;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-small-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-small-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-small-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-small-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-small-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-small-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-small-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-small-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-small-tr, .x-btn-default-small-br, .x-btn-default-small-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-small-tl, .x-btn-default-small-bl, .x-btn-default-small-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-small-tc, .x-btn-default-small-bc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-small-tl, .x-btn-default-small-bl, .x-btn-default-small-tr, .x-btn-default-small-br, .x-btn-default-small-tc, .x-btn-default-small-bc, .x-btn-default-small-ml, .x-btn-default-small-mr {
  zoom: 1;
  background-image: url(images/btn/btn-default-small-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-small-ml, .x-btn-default-small-mr {
  zoom: 1;
  background-image: url(images/btn/btn-default-small-sides.gif);
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-small-mc {
  padding: 1px 1px 1px 1px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-btn-default-small-tl, .x-strict .x-ie7 .x-btn-default-small-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-small:after {
  display: none;
  content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)";
}
.x-btn-default-small .x-btn-inner {
  font-size: 12px;
  font-weight: bold;
  font-family: helvetica, arial, verdana, sans-serif;
  color: white;
  padding: 0 5px;
}
.x-btn-default-small .x-btn-arrow {
  background-image: url(images/button/default-small-arrow.png);
}
.x-btn-default-small .x-btn-arrow-right {
  padding-right: 21px;
}
.x-btn-default-small .x-btn-arrow-bottom {
  padding-bottom: 18px;
}
.x-btn-default-small .x-btn-glyph {
  font-size: 16px;
  line-height: 16px;
  color: white;
  opacity: 0.5;
}
/*</if slicer> */
/* /* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie8m .x-btn-default-small .x-btn-glyph {
  color: #9bc8e9;
}
/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-disabled {
  border-color: #0097BA;
}
/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-icon .x-btn-button, .x-btn-default-small-noicon .x-btn-button {
  height: 16px;
}
/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-icon .x-btn-inner, .x-btn-default-small-noicon .x-btn-inner {
  line-height: 16px;
}
/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner, .x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner, .x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner {
  padding-right: 0;
}
/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-icon .x-btn-inner {
  width: 16px;
  padding: 0;
}
.x-btn-default-small-icon .x-btn-icon-el {
  width: 16px;
  height: 16px;
}
/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-icon-text-left .x-btn-button {
  height: 16px;
}
.x-btn-default-small-icon-text-left .x-btn-inner {
  line-height: 16px;
  padding-left: 21px;
}
.x-btn-default-small-icon-text-left .x-btn-icon-el {
  width: 16px;
  right: auto;
}
/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el {
  height: 16px;
}
/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-icon-text-right .x-btn-button {
  height: 16px;
}
.x-btn-default-small-icon-text-right .x-btn-inner {
  line-height: 16px;
  padding-right: 21px;
}
.x-btn-default-small-icon-text-right .x-btn-icon-el {
  width: 16px;
  left: auto;
}
/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el {
  height: 16px;
}
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-icon-text-top .x-btn-inner {
  padding-top: 21px;
}
.x-btn-default-small-icon-text-top .x-btn-icon-el {
  height: 16px;
  bottom: auto;
}
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el {
  width: 100%;
}
/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-icon-text-bottom .x-btn-inner {
  padding-bottom: 21px;
}
.x-btn-default-small-icon-text-bottom .x-btn-icon-el {
  height: 16px;
  top: auto;
}
/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el {
  width: 100%;
}
/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-over, .x-btn-default-small-focus {
  border-color: #0097BA;
  background-image: none;
  background-color: #067C99;
  background-image: linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2);
}
/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-menu-active, .x-btn-default-small-pressed {
  border-color: #0097BA;
  background-image: none;
  background-color: #2a6d9e;
  background-image: linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7);
}
/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-over .x-frame-tl, .x-btn-default-small-over .x-frame-bl, .x-btn-default-small-over .x-frame-tr, .x-btn-default-small-over .x-frame-br, .x-btn-default-small-over .x-frame-tc, .x-btn-default-small-over .x-frame-bc {
  background-image: url(images/btn/btn-default-small-over-corners.gif);
}
.x-btn-default-small-over .x-frame-ml, .x-btn-default-small-over .x-frame-mr {
  background-image: url(images/btn/btn-default-small-over-sides.gif);
}
.x-btn-default-small-over .x-frame-mc {
  background-color: #3386c2;
  background-image: url(images/btn/btn-default-small-over-fbg.gif);
}
/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-focus .x-frame-tl, .x-btn-default-small-focus .x-frame-bl, .x-btn-default-small-focus .x-frame-tr, .x-btn-default-small-focus .x-frame-br, .x-btn-default-small-focus .x-frame-tc, .x-btn-default-small-focus .x-frame-bc {
  background-image: url(images/btn/btn-default-small-focus-corners.gif);
}
.x-btn-default-small-focus .x-frame-ml, .x-btn-default-small-focus .x-frame-mr {
  background-image: url(images/btn/btn-default-small-focus-sides.gif);
}
.x-btn-default-small-focus .x-frame-mc {
  background-color: #3386c2;
  background-image: url(images/btn/btn-default-small-focus-fbg.gif);
}
/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-menu-active .x-frame-tl, .x-btn-default-small-menu-active .x-frame-bl, .x-btn-default-small-menu-active .x-frame-tr, .x-btn-default-small-menu-active .x-frame-br, .x-btn-default-small-menu-active .x-frame-tc, .x-btn-default-small-menu-active .x-frame-bc {
  background-image: url(images/btn/btn-default-small-pressed-corners.gif);
}
.x-btn-default-small-pressed .x-frame-tl, .x-btn-default-small-pressed .x-frame-bl, .x-btn-default-small-pressed .x-frame-tr, .x-btn-default-small-pressed .x-frame-br, .x-btn-default-small-pressed .x-frame-tc, .x-btn-default-small-pressed .x-frame-bc {
  background-image: url(images/btn/btn-default-small-pressed-corners.gif);
}
/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-menu-active .x-frame-ml, .x-btn-default-small-menu-active .x-frame-mr {
  background-image: url(images/btn/btn-default-small-pressed-sides.gif);
}
.x-btn-default-small-pressed .x-frame-ml, .x-btn-default-small-pressed .x-frame-mr {
  background-image: url(images/btn/btn-default-small-pressed-sides.gif);
}
/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-menu-active .x-frame-mc, .x-btn-default-small-pressed .x-frame-mc {
  background-color: #2a6d9e;
  background-image: url(images/btn/btn-default-small-pressed-fbg.gif);
}
/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-disabled .x-frame-tl, .x-btn-default-small-disabled .x-frame-bl, .x-btn-default-small-disabled .x-frame-tr, .x-btn-default-small-disabled .x-frame-br, .x-btn-default-small-disabled .x-frame-tc, .x-btn-default-small-disabled .x-frame-bc {
  background-image: url(images/btn/btn-default-small-disabled-corners.gif);
}
.x-btn-default-small-disabled .x-frame-ml, .x-btn-default-small-disabled .x-frame-mr {
  background-image: url(images/btn/btn-default-small-disabled-sides.gif);
}
.x-btn-default-small-disabled .x-frame-mc {
  background-image: url(images/btn/btn-default-small-disabled-fbg.gif);
}
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nlg .x-btn-default-small-over {
  background-image: url(images/btn/btn-default-small-over-bg.gif);
}
.x-nlg .x-btn-default-small-focus {
  background-image: url(images/btn/btn-default-small-focus-bg.gif);
}
.x-nlg .x-btn-default-small-menu-active, .x-nlg .x-btn-default-small-pressed {
  background-image: url(images/btn/btn-default-small-pressed-bg.gif);
}
.x-nlg .x-btn-default-small-disabled {
  background-image: url(images/btn/btn-default-small-disabled-bg.gif);
}
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nbr .x-btn-default-small {
  background-image: none;
}
/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small .x-btn-split-right {
  background-image: url(images/button/default-small-s-arrow.png);
  padding-right: 23px;
}
.x-btn-default-small .x-btn-split-bottom {
  background-image: url(images/button/default-small-s-arrow-b.png);
  padding-bottom: 20px;
}
/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-small-disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-small-over:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-small-focus:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-small-pressed:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-small-disabled:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)";
}
/*</if slicer> */
/* /* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium {
  border-color: #126daf;
  border-radius: 3px;
  padding: 3px 3px 3px 3px;
  border-width: 1px;
  border-style: solid;
  background-image: none;
  background-color: #0097BA;
  background-image: linear-gradient(top, #4b9cd7, #0097BA 50%, #358ac8 51%, #0097BA);
}
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-medium-mc {
  background-image: url(images/btn/btn-default-medium-fbg.gif);
  background-position: 0 top;
  background-color: #0097BA;
}
/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nlg .x-btn-default-medium {
  background-image: url(images/btn/btn-default-medium-bg.gif);
  background-position: 0 top;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-btn-default-medium {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-btn-default-medium-frameInfo {
  font-family: th-3-3-3-3-1-1-1-1-3-3-3-3;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-medium-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-medium-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-medium-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-medium-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-medium-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-medium-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-medium-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-medium-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-medium-tr, .x-btn-default-medium-br, .x-btn-default-medium-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-medium-tl, .x-btn-default-medium-bl, .x-btn-default-medium-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-medium-tc, .x-btn-default-medium-bc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-medium-tl, .x-btn-default-medium-bl, .x-btn-default-medium-tr, .x-btn-default-medium-br, .x-btn-default-medium-tc, .x-btn-default-medium-bc, .x-btn-default-medium-ml, .x-btn-default-medium-mr {
  zoom: 1;
  background-image: url(images/btn/btn-default-medium-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-medium-ml, .x-btn-default-medium-mr {
  zoom: 1;
  background-image: url(images/btn/btn-default-medium-sides.gif);
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-medium-mc {
  padding: 1px 1px 1px 1px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-btn-default-medium-tl, .x-strict .x-ie7 .x-btn-default-medium-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-medium:after {
  display: none;
  content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)";
}
.x-btn-default-medium .x-btn-inner {
  font-size: 14px;
  font-weight: bold;
  font-family: helvetica, arial, verdana, sans-serif;
  color: white;
  padding: 0 8px;
}
.x-btn-default-medium .x-btn-arrow {
  background-image: url(images/button/default-medium-arrow.png);
}
.x-btn-default-medium .x-btn-arrow-right {
  padding-right: 30px;
}
.x-btn-default-medium .x-btn-arrow-bottom {
  padding-bottom: 26px;
}
.x-btn-default-medium .x-btn-glyph {
  font-size: 24px;
  line-height: 24px;
  color: white;
  opacity: 0.5;
}
/*</if slicer> */
/* /* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie8m .x-btn-default-medium .x-btn-glyph {
  color: #9bc8e9;
}
/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-disabled {
  border-color: #0097BA;
}
/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-icon .x-btn-button, .x-btn-default-medium-noicon .x-btn-button {
  height: 24px;
}
/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-icon .x-btn-inner, .x-btn-default-medium-noicon .x-btn-inner {
  line-height: 24px;
}
/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner, .x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner, .x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner {
  padding-right: 0;
}
/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-icon .x-btn-inner {
  width: 24px;
  padding: 0;
}
.x-btn-default-medium-icon .x-btn-icon-el {
  width: 24px;
  height: 24px;
}
/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-icon-text-left .x-btn-button {
  height: 24px;
}
.x-btn-default-medium-icon-text-left .x-btn-inner {
  line-height: 24px;
  padding-left: 29px;
}
.x-btn-default-medium-icon-text-left .x-btn-icon-el {
  width: 24px;
  right: auto;
}
/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el {
  height: 24px;
}
/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-icon-text-right .x-btn-button {
  height: 24px;
}
.x-btn-default-medium-icon-text-right .x-btn-inner {
  line-height: 24px;
  padding-right: 29px;
}
.x-btn-default-medium-icon-text-right .x-btn-icon-el {
  width: 24px;
  left: auto;
}
/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el {
  height: 24px;
}
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-icon-text-top .x-btn-inner {
  padding-top: 29px;
}
.x-btn-default-medium-icon-text-top .x-btn-icon-el {
  height: 24px;
  bottom: auto;
}
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el {
  width: 100%;
}
/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-icon-text-bottom .x-btn-inner {
  padding-bottom: 29px;
}
.x-btn-default-medium-icon-text-bottom .x-btn-icon-el {
  height: 24px;
  top: auto;
}
/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el {
  width: 100%;
}
/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-over, .x-btn-default-medium-focus {
  border-color: #0097BA;
  background-image: none;
  background-color: #3386c2;
  background-image: linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2);
}
/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-menu-active, .x-btn-default-medium-pressed {
  border-color: #0097BA;
  background-image: none;
  background-color: #2a6d9e;
  background-image: linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7);
}
/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-over .x-frame-tl, .x-btn-default-medium-over .x-frame-bl, .x-btn-default-medium-over .x-frame-tr, .x-btn-default-medium-over .x-frame-br, .x-btn-default-medium-over .x-frame-tc, .x-btn-default-medium-over .x-frame-bc {
  background-image: url(images/btn/btn-default-medium-over-corners.gif);
}
.x-btn-default-medium-over .x-frame-ml, .x-btn-default-medium-over .x-frame-mr {
  background-image: url(images/btn/btn-default-medium-over-sides.gif);
}
.x-btn-default-medium-over .x-frame-mc {
  background-color: #3386c2;
  background-image: url(images/btn/btn-default-medium-over-fbg.gif);
}
/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-focus .x-frame-tl, .x-btn-default-medium-focus .x-frame-bl, .x-btn-default-medium-focus .x-frame-tr, .x-btn-default-medium-focus .x-frame-br, .x-btn-default-medium-focus .x-frame-tc, .x-btn-default-medium-focus .x-frame-bc {
  background-image: url(images/btn/btn-default-medium-focus-corners.gif);
}
.x-btn-default-medium-focus .x-frame-ml, .x-btn-default-medium-focus .x-frame-mr {
  background-image: url(images/btn/btn-default-medium-focus-sides.gif);
}
.x-btn-default-medium-focus .x-frame-mc {
  background-color: #3386c2;
  background-image: url(images/btn/btn-default-medium-focus-fbg.gif);
}
/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-menu-active .x-frame-tl, .x-btn-default-medium-menu-active .x-frame-bl, .x-btn-default-medium-menu-active .x-frame-tr, .x-btn-default-medium-menu-active .x-frame-br, .x-btn-default-medium-menu-active .x-frame-tc, .x-btn-default-medium-menu-active .x-frame-bc {
  background-image: url(images/btn/btn-default-medium-pressed-corners.gif);
}
.x-btn-default-medium-pressed .x-frame-tl, .x-btn-default-medium-pressed .x-frame-bl, .x-btn-default-medium-pressed .x-frame-tr, .x-btn-default-medium-pressed .x-frame-br, .x-btn-default-medium-pressed .x-frame-tc, .x-btn-default-medium-pressed .x-frame-bc {
  background-image: url(images/btn/btn-default-medium-pressed-corners.gif);
}
/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-menu-active .x-frame-ml, .x-btn-default-medium-menu-active .x-frame-mr {
  background-image: url(images/btn/btn-default-medium-pressed-sides.gif);
}
.x-btn-default-medium-pressed .x-frame-ml, .x-btn-default-medium-pressed .x-frame-mr {
  background-image: url(images/btn/btn-default-medium-pressed-sides.gif);
}
/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-menu-active .x-frame-mc, .x-btn-default-medium-pressed .x-frame-mc {
  background-color: #2a6d9e;
  background-image: url(images/btn/btn-default-medium-pressed-fbg.gif);
}
/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-disabled .x-frame-tl, .x-btn-default-medium-disabled .x-frame-bl, .x-btn-default-medium-disabled .x-frame-tr, .x-btn-default-medium-disabled .x-frame-br, .x-btn-default-medium-disabled .x-frame-tc, .x-btn-default-medium-disabled .x-frame-bc {
  background-image: url(images/btn/btn-default-medium-disabled-corners.gif);
}
.x-btn-default-medium-disabled .x-frame-ml, .x-btn-default-medium-disabled .x-frame-mr {
  background-image: url(images/btn/btn-default-medium-disabled-sides.gif);
}
.x-btn-default-medium-disabled .x-frame-mc {
  background-image: url(images/btn/btn-default-medium-disabled-fbg.gif);
}
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nlg .x-btn-default-medium-over {
  background-image: url(images/btn/btn-default-medium-over-bg.gif);
}
.x-nlg .x-btn-default-medium-focus {
  background-image: url(images/btn/btn-default-medium-focus-bg.gif);
}
.x-nlg .x-btn-default-medium-menu-active, .x-nlg .x-btn-default-medium-pressed {
  background-image: url(images/btn/btn-default-medium-pressed-bg.gif);
}
.x-nlg .x-btn-default-medium-disabled {
  background-image: url(images/btn/btn-default-medium-disabled-bg.gif);
}
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nbr .x-btn-default-medium {
  background-image: none;
}
/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium .x-btn-split-right {
  background-image: url(images/button/default-medium-s-arrow.png);
  padding-right: 32px;
}
.x-btn-default-medium .x-btn-split-bottom {
  background-image: url(images/button/default-medium-s-arrow-b.png);
  padding-bottom: 28px;
}
/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-medium-disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-medium-over:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-medium-focus:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-medium-pressed:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-medium-disabled:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)";
}
/*</if slicer> */
/* /* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large {
  border-color: #126daf;
  border-radius: 3px;
  padding: 3px 3px 3px 3px;
  border-width: 1px;
  border-style: solid;
  background-image: none;
  background-color: #0097BA;
  background-image: linear-gradient(top, #4b9cd7, #0097BA 50%, #358ac8 51%, #0097BA);
}
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-large-mc {
  background-image: url(images/btn/btn-default-large-fbg.gif);
  background-position: 0 top;
  background-color: #0097BA;
}
/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nlg .x-btn-default-large {
  background-image: url(images/btn/btn-default-large-bg.gif);
  background-position: 0 top;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-btn-default-large {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-btn-default-large-frameInfo {
  font-family: th-3-3-3-3-1-1-1-1-3-3-3-3;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-large-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-large-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-large-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-large-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-large-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-large-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-large-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-large-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-large-tr, .x-btn-default-large-br, .x-btn-default-large-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-large-tl, .x-btn-default-large-bl, .x-btn-default-large-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-large-tc, .x-btn-default-large-bc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-large-tl, .x-btn-default-large-bl, .x-btn-default-large-tr, .x-btn-default-large-br, .x-btn-default-large-tc, .x-btn-default-large-bc, .x-btn-default-large-ml, .x-btn-default-large-mr {
  zoom: 1;
  background-image: url(images/btn/btn-default-large-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-large-ml, .x-btn-default-large-mr {
  zoom: 1;
  background-image: url(images/btn/btn-default-large-sides.gif);
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-large-mc {
  padding: 1px 1px 1px 1px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-btn-default-large-tl, .x-strict .x-ie7 .x-btn-default-large-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-large:after {
  display: none;
  content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)";
}
.x-btn-default-large .x-btn-inner {
  font-size: 16px;
  font-weight: bold;
  font-family: helvetica, arial, verdana, sans-serif;
  color: white;
  padding: 0 10px;
}
.x-btn-default-large .x-btn-arrow {
  background-image: url(images/button/default-large-arrow.png);
}
.x-btn-default-large .x-btn-arrow-right {
  padding-right: 36px;
}
.x-btn-default-large .x-btn-arrow-bottom {
  padding-bottom: 32px;
}
.x-btn-default-large .x-btn-glyph {
  font-size: 32px;
  line-height: 32px;
  color: white;
  opacity: 0.5;
}
/*</if slicer> */
/* /* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie8m .x-btn-default-large .x-btn-glyph {
  color: #9bc8e9;
}
/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-disabled {
  border-color: #0097BA;
}
/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-icon .x-btn-button, .x-btn-default-large-noicon .x-btn-button {
  height: 32px;
}
/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-icon .x-btn-inner, .x-btn-default-large-noicon .x-btn-inner {
  line-height: 32px;
}
/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner, .x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner, .x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner {
  padding-right: 0;
}
/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-icon .x-btn-inner {
  width: 32px;
  padding: 0;
}
.x-btn-default-large-icon .x-btn-icon-el {
  width: 32px;
  height: 32px;
}
/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-icon-text-left .x-btn-button {
  height: 32px;
}
.x-btn-default-large-icon-text-left .x-btn-inner {
  line-height: 32px;
  padding-left: 37px;
}
.x-btn-default-large-icon-text-left .x-btn-icon-el {
  width: 32px;
  right: auto;
}
/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el {
  height: 32px;
}
/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-icon-text-right .x-btn-button {
  height: 32px;
}
.x-btn-default-large-icon-text-right .x-btn-inner {
  line-height: 32px;
  padding-right: 37px;
}
.x-btn-default-large-icon-text-right .x-btn-icon-el {
  width: 32px;
  left: auto;
}
/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el {
  height: 32px;
}
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-icon-text-top .x-btn-inner {
  padding-top: 37px;
}
.x-btn-default-large-icon-text-top .x-btn-icon-el {
  height: 32px;
  bottom: auto;
}
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el {
  width: 100%;
}
/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-icon-text-bottom .x-btn-inner {
  padding-bottom: 37px;
}
.x-btn-default-large-icon-text-bottom .x-btn-icon-el {
  height: 32px;
  top: auto;
}
/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el {
  width: 100%;
}
/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-over, .x-btn-default-large-focus {
  border-color: #0097BA;
  background-image: none;
  background-color: #3386c2;
  background-image: linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2);
}
/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-menu-active, .x-btn-default-large-pressed {
  border-color: #0097BA;
  background-image: none;
  background-color: #2a6d9e;
  background-image: linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7);
}
/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-over .x-frame-tl, .x-btn-default-large-over .x-frame-bl, .x-btn-default-large-over .x-frame-tr, .x-btn-default-large-over .x-frame-br, .x-btn-default-large-over .x-frame-tc, .x-btn-default-large-over .x-frame-bc {
  background-image: url(images/btn/btn-default-large-over-corners.gif);
}
.x-btn-default-large-over .x-frame-ml, .x-btn-default-large-over .x-frame-mr {
  background-image: url(images/btn/btn-default-large-over-sides.gif);
}
.x-btn-default-large-over .x-frame-mc {
  background-color: #3386c2;
  background-image: url(images/btn/btn-default-large-over-fbg.gif);
}
/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-focus .x-frame-tl, .x-btn-default-large-focus .x-frame-bl, .x-btn-default-large-focus .x-frame-tr, .x-btn-default-large-focus .x-frame-br, .x-btn-default-large-focus .x-frame-tc, .x-btn-default-large-focus .x-frame-bc {
  background-image: url(images/btn/btn-default-large-focus-corners.gif);
}
.x-btn-default-large-focus .x-frame-ml, .x-btn-default-large-focus .x-frame-mr {
  background-image: url(images/btn/btn-default-large-focus-sides.gif);
}
.x-btn-default-large-focus .x-frame-mc {
  background-color: #3386c2;
  background-image: url(images/btn/btn-default-large-focus-fbg.gif);
}
/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-menu-active .x-frame-tl, .x-btn-default-large-menu-active .x-frame-bl, .x-btn-default-large-menu-active .x-frame-tr, .x-btn-default-large-menu-active .x-frame-br, .x-btn-default-large-menu-active .x-frame-tc, .x-btn-default-large-menu-active .x-frame-bc {
  background-image: url(images/btn/btn-default-large-pressed-corners.gif);
}
.x-btn-default-large-pressed .x-frame-tl, .x-btn-default-large-pressed .x-frame-bl, .x-btn-default-large-pressed .x-frame-tr, .x-btn-default-large-pressed .x-frame-br, .x-btn-default-large-pressed .x-frame-tc, .x-btn-default-large-pressed .x-frame-bc {
  background-image: url(images/btn/btn-default-large-pressed-corners.gif);
}
/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-menu-active .x-frame-ml, .x-btn-default-large-menu-active .x-frame-mr {
  background-image: url(images/btn/btn-default-large-pressed-sides.gif);
}
.x-btn-default-large-pressed .x-frame-ml, .x-btn-default-large-pressed .x-frame-mr {
  background-image: url(images/btn/btn-default-large-pressed-sides.gif);
}
/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-menu-active .x-frame-mc, .x-btn-default-large-pressed .x-frame-mc {
  background-color: #2a6d9e;
  background-image: url(images/btn/btn-default-large-pressed-fbg.gif);
}
/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-disabled .x-frame-tl, .x-btn-default-large-disabled .x-frame-bl, .x-btn-default-large-disabled .x-frame-tr, .x-btn-default-large-disabled .x-frame-br, .x-btn-default-large-disabled .x-frame-tc, .x-btn-default-large-disabled .x-frame-bc {
  background-image: url(images/btn/btn-default-large-disabled-corners.gif);
}
.x-btn-default-large-disabled .x-frame-ml, .x-btn-default-large-disabled .x-frame-mr {
  background-image: url(images/btn/btn-default-large-disabled-sides.gif);
}
.x-btn-default-large-disabled .x-frame-mc {
  background-image: url(images/btn/btn-default-large-disabled-fbg.gif);
}
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nlg .x-btn-default-large-over {
  background-image: url(images/btn/btn-default-large-over-bg.gif);
}
.x-nlg .x-btn-default-large-focus {
  background-image: url(images/btn/btn-default-large-focus-bg.gif);
}
.x-nlg .x-btn-default-large-menu-active, .x-nlg .x-btn-default-large-pressed {
  background-image: url(images/btn/btn-default-large-pressed-bg.gif);
}
.x-nlg .x-btn-default-large-disabled {
  background-image: url(images/btn/btn-default-large-disabled-bg.gif);
}
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nbr .x-btn-default-large {
  background-image: none;
}
/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large .x-btn-split-right {
  background-image: url(images/button/default-large-s-arrow.png);
  padding-right: 38px;
}
.x-btn-default-large .x-btn-split-bottom {
  background-image: url(images/button/default-large-s-arrow-b.png);
  padding-bottom: 34px;
}
/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-large-disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-large-over:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-large-focus:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-large-pressed:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-large-disabled:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)";
}
/*</if slicer> */
/* /* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small {
  border-color: #e1e1e1;
  border-radius: 0px;
  padding: 3px 3px 3px 3px;
  border-width: 1px;
  border-style: solid;
  background-image: none;
  background-color: #f5f5f5;
  background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5);
}
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-small-mc {
  background-image: url(images/btn/btn-default-toolbar-small-fbg.gif);
  background-position: 0 top;
  background-color: #f5f5f5;
}
/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nlg .x-btn-default-toolbar-small {
  background-image: url(images/btn/btn-default-toolbar-small-bg.gif);
  background-position: 0 top;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-btn-default-toolbar-small {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-btn-default-toolbar-small-frameInfo {
  font-family: th-3-3-3-3-1-1-1-1-3-3-3-3;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-small-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-small-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-small-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-small-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-small-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-small-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-small-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-small-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-small-tr, .x-btn-default-toolbar-small-br, .x-btn-default-toolbar-small-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-small-tl, .x-btn-default-toolbar-small-bl, .x-btn-default-toolbar-small-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-small-tc, .x-btn-default-toolbar-small-bc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-small-tl, .x-btn-default-toolbar-small-bl, .x-btn-default-toolbar-small-tr, .x-btn-default-toolbar-small-br, .x-btn-default-toolbar-small-tc, .x-btn-default-toolbar-small-bc, .x-btn-default-toolbar-small-ml, .x-btn-default-toolbar-small-mr {
  zoom: 1;
  background-image: url(images/btn/btn-default-toolbar-small-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-small-ml, .x-btn-default-toolbar-small-mr {
  zoom: 1;
  background-image: url(images/btn/btn-default-toolbar-small-sides.gif);
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-small-mc {
  padding: 1px 1px 1px 1px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-btn-default-toolbar-small-tl, .x-strict .x-ie7 .x-btn-default-toolbar-small-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-toolbar-small:after {
  display: none;
  content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-toolbar-small-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-bg.gif), corners:url(images/btn/btn-default-toolbar-small-corners.gif), sides:url(images/btn/btn-default-toolbar-small-sides.gif)";
}
.x-btn-default-toolbar-small .x-btn-inner {
  font-size: 12px;
  font-weight: bold;
  font-family: helvetica, arial, verdana, sans-serif;
  color: #666666;
  padding: 0 5px;
}
.x-btn-default-toolbar-small .x-btn-arrow {
  background-image: url(images/button/default-toolbar-small-arrow.png);
}
.x-btn-default-toolbar-small .x-btn-arrow-right {
  padding-right: 21px;
}
.x-btn-default-toolbar-small .x-btn-arrow-bottom {
  padding-bottom: 18px;
}
.x-btn-default-toolbar-small .x-btn-glyph {
  font-size: 16px;
  line-height: 16px;
  color: #666666;
  opacity: 0.5;
}
/*</if slicer> */
/* /* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph {
  color: #adadad;
}
/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-disabled {
  background-image: none;
  background-color: #f5f5f5;
  background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5);
}
/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-icon .x-btn-button, .x-btn-default-toolbar-small-noicon .x-btn-button {
  height: 16px;
}
/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-icon .x-btn-inner, .x-btn-default-toolbar-small-noicon .x-btn-inner {
  line-height: 16px;
}
/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner, .x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner, .x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner {
  padding-right: 0;
}
/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-icon .x-btn-inner {
  width: 16px;
  padding: 0;
}
.x-btn-default-toolbar-small-icon .x-btn-icon-el {
  width: 16px;
  height: 16px;
}
/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-icon-text-left .x-btn-button {
  height: 16px;
}
.x-btn-default-toolbar-small-icon-text-left .x-btn-inner {
  line-height: 16px;
  padding-left: 21px;
}
.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el {
  width: 16px;
  right: auto;
}
/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el {
  height: 16px;
}
/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-icon-text-right .x-btn-button {
  height: 16px;
}
.x-btn-default-toolbar-small-icon-text-right .x-btn-inner {
  line-height: 16px;
  padding-right: 21px;
}
.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el {
  width: 16px;
  left: auto;
}
/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el {
  height: 16px;
}
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-icon-text-top .x-btn-inner {
  padding-top: 21px;
}
.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el {
  height: 16px;
  bottom: auto;
}
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el {
  width: 100%;
}
/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner {
  padding-bottom: 21px;
}
.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el {
  height: 16px;
  top: auto;
}
/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el {
  width: 100%;
}
/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-over, .x-btn-default-toolbar-small-focus {
  background-image: none;
  background-color: #ebebeb;
  background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb);
}
/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-menu-active, .x-btn-default-toolbar-small-pressed {
  background-image: none;
  background-color: #e1e1e1;
  background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4);
}
/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-over .x-frame-tl, .x-btn-default-toolbar-small-over .x-frame-bl, .x-btn-default-toolbar-small-over .x-frame-tr, .x-btn-default-toolbar-small-over .x-frame-br, .x-btn-default-toolbar-small-over .x-frame-tc, .x-btn-default-toolbar-small-over .x-frame-bc {
  background-image: url(images/btn/btn-default-toolbar-small-over-corners.gif);
}
.x-btn-default-toolbar-small-over .x-frame-ml, .x-btn-default-toolbar-small-over .x-frame-mr {
  background-image: url(images/btn/btn-default-toolbar-small-over-sides.gif);
}
.x-btn-default-toolbar-small-over .x-frame-mc {
  background-color: #ebebeb;
  background-image: url(images/btn/btn-default-toolbar-small-over-fbg.gif);
}
/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-focus .x-frame-tl, .x-btn-default-toolbar-small-focus .x-frame-bl, .x-btn-default-toolbar-small-focus .x-frame-tr, .x-btn-default-toolbar-small-focus .x-frame-br, .x-btn-default-toolbar-small-focus .x-frame-tc, .x-btn-default-toolbar-small-focus .x-frame-bc {
  background-image: url(images/btn/btn-default-toolbar-small-focus-corners.gif);
}
.x-btn-default-toolbar-small-focus .x-frame-ml, .x-btn-default-toolbar-small-focus .x-frame-mr {
  background-image: url(images/btn/btn-default-toolbar-small-focus-sides.gif);
}
.x-btn-default-toolbar-small-focus .x-frame-mc {
  background-color: #ebebeb;
  background-image: url(images/btn/btn-default-toolbar-small-focus-fbg.gif);
}
/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-menu-active .x-frame-tl, .x-btn-default-toolbar-small-menu-active .x-frame-bl, .x-btn-default-toolbar-small-menu-active .x-frame-tr, .x-btn-default-toolbar-small-menu-active .x-frame-br, .x-btn-default-toolbar-small-menu-active .x-frame-tc, .x-btn-default-toolbar-small-menu-active .x-frame-bc {
  background-image: url(images/btn/btn-default-toolbar-small-pressed-corners.gif);
}
.x-btn-default-toolbar-small-pressed .x-frame-tl, .x-btn-default-toolbar-small-pressed .x-frame-bl, .x-btn-default-toolbar-small-pressed .x-frame-tr, .x-btn-default-toolbar-small-pressed .x-frame-br, .x-btn-default-toolbar-small-pressed .x-frame-tc, .x-btn-default-toolbar-small-pressed .x-frame-bc {
  background-image: url(images/btn/btn-default-toolbar-small-pressed-corners.gif);
}
/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-menu-active .x-frame-ml, .x-btn-default-toolbar-small-menu-active .x-frame-mr {
  background-image: url(images/btn/btn-default-toolbar-small-pressed-sides.gif);
}
.x-btn-default-toolbar-small-pressed .x-frame-ml, .x-btn-default-toolbar-small-pressed .x-frame-mr {
  background-image: url(images/btn/btn-default-toolbar-small-pressed-sides.gif);
}
/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-menu-active .x-frame-mc, .x-btn-default-toolbar-small-pressed .x-frame-mc {
  background-color: #e1e1e1;
  background-image: url(images/btn/btn-default-toolbar-small-pressed-fbg.gif);
}
/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-disabled .x-frame-tl, .x-btn-default-toolbar-small-disabled .x-frame-bl, .x-btn-default-toolbar-small-disabled .x-frame-tr, .x-btn-default-toolbar-small-disabled .x-frame-br, .x-btn-default-toolbar-small-disabled .x-frame-tc, .x-btn-default-toolbar-small-disabled .x-frame-bc {
  background-image: url(images/btn/btn-default-toolbar-small-disabled-corners.gif);
}
.x-btn-default-toolbar-small-disabled .x-frame-ml, .x-btn-default-toolbar-small-disabled .x-frame-mr {
  background-image: url(images/btn/btn-default-toolbar-small-disabled-sides.gif);
}
.x-btn-default-toolbar-small-disabled .x-frame-mc {
  background-color: #f5f5f5;
  background-image: url(images/btn/btn-default-toolbar-small-disabled-fbg.gif);
}
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nlg .x-btn-default-toolbar-small-over {
  background-image: url(images/btn/btn-default-toolbar-small-over-bg.gif);
}
.x-nlg .x-btn-default-toolbar-small-focus {
  background-image: url(images/btn/btn-default-toolbar-small-focus-bg.gif);
}
.x-nlg .x-btn-default-toolbar-small-menu-active, .x-nlg .x-btn-default-toolbar-small-pressed {
  background-image: url(images/btn/btn-default-toolbar-small-pressed-bg.gif);
}
.x-nlg .x-btn-default-toolbar-small-disabled {
  background-image: url(images/btn/btn-default-toolbar-small-disabled-bg.gif);
}
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nbr .x-btn-default-toolbar-small {
  background-image: none;
}
/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small .x-btn-split-right {
  background-image: url(images/button/default-toolbar-small-s-arrow.png);
  padding-right: 23px;
}
.x-btn-default-toolbar-small .x-btn-split-bottom {
  background-image: url(images/button/default-toolbar-small-s-arrow-b.png);
  padding-bottom: 20px;
}
/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-small-disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-toolbar-small-over:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-toolbar-small-focus:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-toolbar-small-pressed:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-toolbar-small-disabled:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-disabled-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-disabled-bg.gif)";
}
/*</if slicer> */
/* /* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium {
  border-color: #e1e1e1;
  border-radius: 3px;
  padding: 3px 3px 3px 3px;
  border-width: 1px;
  border-style: solid;
  background-image: none;
  background-color: #f5f5f5;
  background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5);
}
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-medium-mc {
  background-image: url(images/btn/btn-default-toolbar-medium-fbg.gif);
  background-position: 0 top;
  background-color: #f5f5f5;
}
/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nlg .x-btn-default-toolbar-medium {
  background-image: url(images/btn/btn-default-toolbar-medium-bg.gif);
  background-position: 0 top;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-btn-default-toolbar-medium {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-btn-default-toolbar-medium-frameInfo {
  font-family: th-3-3-3-3-1-1-1-1-3-3-3-3;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-medium-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-medium-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-medium-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-medium-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-medium-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-medium-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-medium-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-medium-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-medium-tr, .x-btn-default-toolbar-medium-br, .x-btn-default-toolbar-medium-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-medium-tl, .x-btn-default-toolbar-medium-bl, .x-btn-default-toolbar-medium-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-medium-tc, .x-btn-default-toolbar-medium-bc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-medium-tl, .x-btn-default-toolbar-medium-bl, .x-btn-default-toolbar-medium-tr, .x-btn-default-toolbar-medium-br, .x-btn-default-toolbar-medium-tc, .x-btn-default-toolbar-medium-bc, .x-btn-default-toolbar-medium-ml, .x-btn-default-toolbar-medium-mr {
  zoom: 1;
  background-image: url(images/btn/btn-default-toolbar-medium-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-medium-ml, .x-btn-default-toolbar-medium-mr {
  zoom: 1;
  background-image: url(images/btn/btn-default-toolbar-medium-sides.gif);
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-medium-mc {
  padding: 1px 1px 1px 1px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl, .x-strict .x-ie7 .x-btn-default-toolbar-medium-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-toolbar-medium:after {
  display: none;
  content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-toolbar-medium-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-bg.gif), corners:url(images/btn/btn-default-toolbar-medium-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-sides.gif)";
}
.x-btn-default-toolbar-medium .x-btn-inner {
  font-size: 14px;
  font-weight: bold;
  font-family: helvetica, arial, verdana, sans-serif;
  color: #666666;
  padding: 0 8px;
}
.x-btn-default-toolbar-medium .x-btn-arrow {
  background-image: url(images/button/default-toolbar-medium-arrow.png);
}
.x-btn-default-toolbar-medium .x-btn-arrow-right {
  padding-right: 30px;
}
.x-btn-default-toolbar-medium .x-btn-arrow-bottom {
  padding-bottom: 26px;
}
.x-btn-default-toolbar-medium .x-btn-glyph {
  font-size: 24px;
  line-height: 24px;
  color: #666666;
  opacity: 0.5;
}
/*</if slicer> */
/* /* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph {
  color: #adadad;
}
/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-disabled {
  background-image: none;
  background-color: #f5f5f5;
  background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5);
}
/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-icon .x-btn-button, .x-btn-default-toolbar-medium-noicon .x-btn-button {
  height: 24px;
}
/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-icon .x-btn-inner, .x-btn-default-toolbar-medium-noicon .x-btn-inner {
  line-height: 24px;
}
/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner, .x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner, .x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner {
  padding-right: 0;
}
/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-icon .x-btn-inner {
  width: 24px;
  padding: 0;
}
.x-btn-default-toolbar-medium-icon .x-btn-icon-el {
  width: 24px;
  height: 24px;
}
/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-icon-text-left .x-btn-button {
  height: 24px;
}
.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner {
  line-height: 24px;
  padding-left: 29px;
}
.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el {
  width: 24px;
  right: auto;
}
/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el {
  height: 24px;
}
/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-icon-text-right .x-btn-button {
  height: 24px;
}
.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner {
  line-height: 24px;
  padding-right: 29px;
}
.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el {
  width: 24px;
  left: auto;
}
/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el {
  height: 24px;
}
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner {
  padding-top: 29px;
}
.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el {
  height: 24px;
  bottom: auto;
}
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el {
  width: 100%;
}
/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner {
  padding-bottom: 29px;
}
.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el {
  height: 24px;
  top: auto;
}
/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el {
  width: 100%;
}
/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-over, .x-btn-default-toolbar-medium-focus {
  background-image: none;
  background-color: #ebebeb;
  background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb);
}
/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-menu-active, .x-btn-default-toolbar-medium-pressed {
  background-image: none;
  background-color: #e1e1e1;
  background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4);
}
/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-over .x-frame-tl, .x-btn-default-toolbar-medium-over .x-frame-bl, .x-btn-default-toolbar-medium-over .x-frame-tr, .x-btn-default-toolbar-medium-over .x-frame-br, .x-btn-default-toolbar-medium-over .x-frame-tc, .x-btn-default-toolbar-medium-over .x-frame-bc {
  background-image: url(images/btn/btn-default-toolbar-medium-over-corners.gif);
}
.x-btn-default-toolbar-medium-over .x-frame-ml, .x-btn-default-toolbar-medium-over .x-frame-mr {
  background-image: url(images/btn/btn-default-toolbar-medium-over-sides.gif);
}
.x-btn-default-toolbar-medium-over .x-frame-mc {
  background-color: #ebebeb;
  background-image: url(images/btn/btn-default-toolbar-medium-over-fbg.gif);
}
/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-focus .x-frame-tl, .x-btn-default-toolbar-medium-focus .x-frame-bl, .x-btn-default-toolbar-medium-focus .x-frame-tr, .x-btn-default-toolbar-medium-focus .x-frame-br, .x-btn-default-toolbar-medium-focus .x-frame-tc, .x-btn-default-toolbar-medium-focus .x-frame-bc {
  background-image: url(images/btn/btn-default-toolbar-medium-focus-corners.gif);
}
.x-btn-default-toolbar-medium-focus .x-frame-ml, .x-btn-default-toolbar-medium-focus .x-frame-mr {
  background-image: url(images/btn/btn-default-toolbar-medium-focus-sides.gif);
}
.x-btn-default-toolbar-medium-focus .x-frame-mc {
  background-color: #ebebeb;
  background-image: url(images/btn/btn-default-toolbar-medium-focus-fbg.gif);
}
/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-menu-active .x-frame-tl, .x-btn-default-toolbar-medium-menu-active .x-frame-bl, .x-btn-default-toolbar-medium-menu-active .x-frame-tr, .x-btn-default-toolbar-medium-menu-active .x-frame-br, .x-btn-default-toolbar-medium-menu-active .x-frame-tc, .x-btn-default-toolbar-medium-menu-active .x-frame-bc {
  background-image: url(images/btn/btn-default-toolbar-medium-pressed-corners.gif);
}
.x-btn-default-toolbar-medium-pressed .x-frame-tl, .x-btn-default-toolbar-medium-pressed .x-frame-bl, .x-btn-default-toolbar-medium-pressed .x-frame-tr, .x-btn-default-toolbar-medium-pressed .x-frame-br, .x-btn-default-toolbar-medium-pressed .x-frame-tc, .x-btn-default-toolbar-medium-pressed .x-frame-bc {
  background-image: url(images/btn/btn-default-toolbar-medium-pressed-corners.gif);
}
/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-menu-active .x-frame-ml, .x-btn-default-toolbar-medium-menu-active .x-frame-mr {
  background-image: url(images/btn/btn-default-toolbar-medium-pressed-sides.gif);
}
.x-btn-default-toolbar-medium-pressed .x-frame-ml, .x-btn-default-toolbar-medium-pressed .x-frame-mr {
  background-image: url(images/btn/btn-default-toolbar-medium-pressed-sides.gif);
}
/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-menu-active .x-frame-mc, .x-btn-default-toolbar-medium-pressed .x-frame-mc {
  background-color: #e1e1e1;
  background-image: url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif);
}
/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-disabled .x-frame-tl, .x-btn-default-toolbar-medium-disabled .x-frame-bl, .x-btn-default-toolbar-medium-disabled .x-frame-tr, .x-btn-default-toolbar-medium-disabled .x-frame-br, .x-btn-default-toolbar-medium-disabled .x-frame-tc, .x-btn-default-toolbar-medium-disabled .x-frame-bc {
  background-image: url(images/btn/btn-default-toolbar-medium-disabled-corners.gif);
}
.x-btn-default-toolbar-medium-disabled .x-frame-ml, .x-btn-default-toolbar-medium-disabled .x-frame-mr {
  background-image: url(images/btn/btn-default-toolbar-medium-disabled-sides.gif);
}
.x-btn-default-toolbar-medium-disabled .x-frame-mc {
  background-color: #f5f5f5;
  background-image: url(images/btn/btn-default-toolbar-medium-disabled-fbg.gif);
}
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nlg .x-btn-default-toolbar-medium-over {
  background-image: url(images/btn/btn-default-toolbar-medium-over-bg.gif);
}
.x-nlg .x-btn-default-toolbar-medium-focus {
  background-image: url(images/btn/btn-default-toolbar-medium-focus-bg.gif);
}
.x-nlg .x-btn-default-toolbar-medium-menu-active, .x-nlg .x-btn-default-toolbar-medium-pressed {
  background-image: url(images/btn/btn-default-toolbar-medium-pressed-bg.gif);
}
.x-nlg .x-btn-default-toolbar-medium-disabled {
  background-image: url(images/btn/btn-default-toolbar-medium-disabled-bg.gif);
}
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nbr .x-btn-default-toolbar-medium {
  background-image: none;
}
/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium .x-btn-split-right {
  background-image: url(images/button/default-toolbar-medium-s-arrow.png);
  padding-right: 32px;
}
.x-btn-default-toolbar-medium .x-btn-split-bottom {
  background-image: url(images/button/default-toolbar-medium-s-arrow-b.png);
  padding-bottom: 28px;
}
/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-medium-disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-toolbar-medium-over:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-toolbar-medium-focus:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-toolbar-medium-pressed:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-toolbar-medium-disabled:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-disabled-bg.gif)";
}
/*</if slicer> */
/* /* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large {
  border-color: #e1e1e1;
  border-radius: 3px;
  padding: 3px 3px 3px 3px;
  border-width: 1px;
  border-style: solid;
  background-image: none;
  background-color: #f5f5f5;
  background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5);
}
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-large-mc {
  background-image: url(images/btn/btn-default-toolbar-large-fbg.gif);
  background-position: 0 top;
  background-color: #f5f5f5;
}
/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nlg .x-btn-default-toolbar-large {
  background-image: url(images/btn/btn-default-toolbar-large-bg.gif);
  background-position: 0 top;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-btn-default-toolbar-large {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-btn-default-toolbar-large-frameInfo {
  font-family: th-3-3-3-3-1-1-1-1-3-3-3-3;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-large-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-large-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-large-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-large-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-large-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-large-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-large-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-large-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-large-tr, .x-btn-default-toolbar-large-br, .x-btn-default-toolbar-large-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-large-tl, .x-btn-default-toolbar-large-bl, .x-btn-default-toolbar-large-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-large-tc, .x-btn-default-toolbar-large-bc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-large-tl, .x-btn-default-toolbar-large-bl, .x-btn-default-toolbar-large-tr, .x-btn-default-toolbar-large-br, .x-btn-default-toolbar-large-tc, .x-btn-default-toolbar-large-bc, .x-btn-default-toolbar-large-ml, .x-btn-default-toolbar-large-mr {
  zoom: 1;
  background-image: url(images/btn/btn-default-toolbar-large-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-large-ml, .x-btn-default-toolbar-large-mr {
  zoom: 1;
  background-image: url(images/btn/btn-default-toolbar-large-sides.gif);
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-default-toolbar-large-mc {
  padding: 1px 1px 1px 1px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-btn-default-toolbar-large-tl, .x-strict .x-ie7 .x-btn-default-toolbar-large-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-toolbar-large:after {
  display: none;
  content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-toolbar-large-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-bg.gif), corners:url(images/btn/btn-default-toolbar-large-corners.gif), sides:url(images/btn/btn-default-toolbar-large-sides.gif)";
}
.x-btn-default-toolbar-large .x-btn-inner {
  font-size: 16px;
  font-weight: bold;
  font-family: helvetica, arial, verdana, sans-serif;
  color: #666666;
  padding: 0 10px;
}
.x-btn-default-toolbar-large .x-btn-arrow {
  background-image: url(images/button/default-toolbar-large-arrow.png);
}
.x-btn-default-toolbar-large .x-btn-arrow-right {
  padding-right: 36px;
}
.x-btn-default-toolbar-large .x-btn-arrow-bottom {
  padding-bottom: 32px;
}
.x-btn-default-toolbar-large .x-btn-glyph {
  font-size: 32px;
  line-height: 32px;
  color: #666666;
  opacity: 0.5;
}
/*</if slicer> */
/* /* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph {
  color: #adadad;
}
/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-disabled {
  background-image: none;
  background-color: #f5f5f5;
  background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5);
}
/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-icon .x-btn-button, .x-btn-default-toolbar-large-noicon .x-btn-button {
  height: 32px;
}
/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-icon .x-btn-inner, .x-btn-default-toolbar-large-noicon .x-btn-inner {
  line-height: 32px;
}
/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner, .x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner, .x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner {
  padding-right: 0;
}
/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-icon .x-btn-inner {
  width: 32px;
  padding: 0;
}
.x-btn-default-toolbar-large-icon .x-btn-icon-el {
  width: 32px;
  height: 32px;
}
/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-icon-text-left .x-btn-button {
  height: 32px;
}
.x-btn-default-toolbar-large-icon-text-left .x-btn-inner {
  line-height: 32px;
  padding-left: 37px;
}
.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el {
  width: 32px;
  right: auto;
}
/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el {
  height: 32px;
}
/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-icon-text-right .x-btn-button {
  height: 32px;
}
.x-btn-default-toolbar-large-icon-text-right .x-btn-inner {
  line-height: 32px;
  padding-right: 37px;
}
.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el {
  width: 32px;
  left: auto;
}
/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el {
  height: 32px;
}
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-icon-text-top .x-btn-inner {
  padding-top: 37px;
}
.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el {
  height: 32px;
  bottom: auto;
}
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el {
  width: 100%;
}
/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner {
  padding-bottom: 37px;
}
.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el {
  height: 32px;
  top: auto;
}
/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el {
  width: 100%;
}
/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-over, .x-btn-default-toolbar-large-focus {
  background-image: none;
  background-color: #ebebeb;
  background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb);
}
/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-menu-active, .x-btn-default-toolbar-large-pressed {
  background-image: none;
  background-color: #e1e1e1;
  background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4);
}
/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-over .x-frame-tl, .x-btn-default-toolbar-large-over .x-frame-bl, .x-btn-default-toolbar-large-over .x-frame-tr, .x-btn-default-toolbar-large-over .x-frame-br, .x-btn-default-toolbar-large-over .x-frame-tc, .x-btn-default-toolbar-large-over .x-frame-bc {
  background-image: url(images/btn/btn-default-toolbar-large-over-corners.gif);
}
.x-btn-default-toolbar-large-over .x-frame-ml, .x-btn-default-toolbar-large-over .x-frame-mr {
  background-image: url(images/btn/btn-default-toolbar-large-over-sides.gif);
}
.x-btn-default-toolbar-large-over .x-frame-mc {
  background-color: #ebebeb;
  background-image: url(images/btn/btn-default-toolbar-large-over-fbg.gif);
}
/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-focus .x-frame-tl, .x-btn-default-toolbar-large-focus .x-frame-bl, .x-btn-default-toolbar-large-focus .x-frame-tr, .x-btn-default-toolbar-large-focus .x-frame-br, .x-btn-default-toolbar-large-focus .x-frame-tc, .x-btn-default-toolbar-large-focus .x-frame-bc {
  background-image: url(images/btn/btn-default-toolbar-large-focus-corners.gif);
}
.x-btn-default-toolbar-large-focus .x-frame-ml, .x-btn-default-toolbar-large-focus .x-frame-mr {
  background-image: url(images/btn/btn-default-toolbar-large-focus-sides.gif);
}
.x-btn-default-toolbar-large-focus .x-frame-mc {
  background-color: #ebebeb;
  background-image: url(images/btn/btn-default-toolbar-large-focus-fbg.gif);
}
/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-menu-active .x-frame-tl, .x-btn-default-toolbar-large-menu-active .x-frame-bl, .x-btn-default-toolbar-large-menu-active .x-frame-tr, .x-btn-default-toolbar-large-menu-active .x-frame-br, .x-btn-default-toolbar-large-menu-active .x-frame-tc, .x-btn-default-toolbar-large-menu-active .x-frame-bc {
  background-image: url(images/btn/btn-default-toolbar-large-pressed-corners.gif);
}
.x-btn-default-toolbar-large-pressed .x-frame-tl, .x-btn-default-toolbar-large-pressed .x-frame-bl, .x-btn-default-toolbar-large-pressed .x-frame-tr, .x-btn-default-toolbar-large-pressed .x-frame-br, .x-btn-default-toolbar-large-pressed .x-frame-tc, .x-btn-default-toolbar-large-pressed .x-frame-bc {
  background-image: url(images/btn/btn-default-toolbar-large-pressed-corners.gif);
}
/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-menu-active .x-frame-ml, .x-btn-default-toolbar-large-menu-active .x-frame-mr {
  background-image: url(images/btn/btn-default-toolbar-large-pressed-sides.gif);
}
.x-btn-default-toolbar-large-pressed .x-frame-ml, .x-btn-default-toolbar-large-pressed .x-frame-mr {
  background-image: url(images/btn/btn-default-toolbar-large-pressed-sides.gif);
}
/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-menu-active .x-frame-mc, .x-btn-default-toolbar-large-pressed .x-frame-mc {
  background-color: #e1e1e1;
  background-image: url(images/btn/btn-default-toolbar-large-pressed-fbg.gif);
}
/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-disabled .x-frame-tl, .x-btn-default-toolbar-large-disabled .x-frame-bl, .x-btn-default-toolbar-large-disabled .x-frame-tr, .x-btn-default-toolbar-large-disabled .x-frame-br, .x-btn-default-toolbar-large-disabled .x-frame-tc, .x-btn-default-toolbar-large-disabled .x-frame-bc {
  background-image: url(images/btn/btn-default-toolbar-large-disabled-corners.gif);
}
.x-btn-default-toolbar-large-disabled .x-frame-ml, .x-btn-default-toolbar-large-disabled .x-frame-mr {
  background-image: url(images/btn/btn-default-toolbar-large-disabled-sides.gif);
}
.x-btn-default-toolbar-large-disabled .x-frame-mc {
  background-color: #f5f5f5;
  background-image: url(images/btn/btn-default-toolbar-large-disabled-fbg.gif);
}
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nlg .x-btn-default-toolbar-large-over {
  background-image: url(images/btn/btn-default-toolbar-large-over-bg.gif);
}
.x-nlg .x-btn-default-toolbar-large-focus {
  background-image: url(images/btn/btn-default-toolbar-large-focus-bg.gif);
}
.x-nlg .x-btn-default-toolbar-large-menu-active, .x-nlg .x-btn-default-toolbar-large-pressed {
  background-image: url(images/btn/btn-default-toolbar-large-pressed-bg.gif);
}
.x-nlg .x-btn-default-toolbar-large-disabled {
  background-image: url(images/btn/btn-default-toolbar-large-disabled-bg.gif);
}
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nbr .x-btn-default-toolbar-large {
  background-image: none;
}
/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large .x-btn-split-right {
  background-image: url(images/button/default-toolbar-large-s-arrow.png);
  padding-right: 38px;
}
.x-btn-default-toolbar-large .x-btn-split-bottom {
  background-image: url(images/button/default-toolbar-large-s-arrow-b.png);
  padding-bottom: 34px;
}
/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-default-toolbar-large-disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-toolbar-large-over:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-toolbar-large-focus:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-toolbar-large-pressed:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-default-toolbar-large-disabled:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-disabled-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-disabled-bg.gif)";
}
/*</if slicer> */
/* /* line 1161, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-icon-text-left .x-btn-icon-el {
  background-position: left center;
}
/* line 1173, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-icon-text-right .x-btn-icon-el {
  background-position: right center;
}
/* line 1184, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-icon-text-top .x-btn-icon-el {
  background-position: center top;
}
/* line 1188, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-icon-text-bottom .x-btn-icon-el {
  background-position: center bottom;
}
/* line 1192, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-arrow-right {
  background-position: right center;
}
/* line 1202, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-arrow-bottom {
  background-position: center bottom;
}
/* line 1206, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-arrow {
  background-repeat: no-repeat;
}
/* line 1211, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-split {
  display: block;
  background-repeat: no-repeat;
}
/* line 1216, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-split-right {
  background-position: right center;
}
/* line 1226, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-split-bottom {
  background-position: center bottom;
}
/* line 1230, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-cycle-fixed-width .x-btn-inner {
  text-align: inherit;
}
/**
 * * Creates a visual theme for a Toolbar.
 * * @param {String} $ui
 * * The name of the UI
 * *
 * * @param {color} [$background-color=$toolbar-background-color]
 * * The background color of the toolbar
 * *
 * * @param {string/list} [$background-gradient=$toolbar-background-gradient]
 * * The background gradient of the toolbar
 * *
 * * @param {color} [$border-color=$toolbar-border-color]
 * * The border color of the toolbar
 * *
 * * @param {number} [$border-width=$toolbar-border-width]
 * * The border-width of the toolbar
 * *
 * * @param {string} [$scroller-cursor=$toolbar-scroller-cursor]
 * * The cursor of Toolbar scrollers
 * *
 * * @param {string} [$scroller-cursor-disabled=$toolbar-scroller-cursor-disabled]
 * * The cursor of disabled Toolbar scrollers
 * *
 * * @param {number} [$scroller-opacity-disabled=$toolbar-scroller-opacity-disabled]
 * * The opacity of disabled Toolbar scrollers
 * *
 * * @param {string} [$tool-background-image=$toolbar-tool-background-image]
 * * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar
 * *
 * * @member Ext.toolbar.Toolbar */
/* line 94, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x-toolbar {
  font-size: 13px;
  border-style: solid;
  padding: 6px 0 6px 8px;
}
/* line 101, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x-toolbar-item {
  margin: 0 8px 0 0;
}
/* line 112, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x-toolbar-text {
  margin: 0 6px 0 4px;
  color: #333f49;
  line-height: 16px;
  font-family: helvetica, arial, verdana, sans-serif;
  font-size: 12px;
  font-weight: normal;
}
/* line 121, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x-toolbar-separator-horizontal {
  margin: 0 8px 0 0;
  height: 14px;
  border-style: solid;
  border-width: 0 0 0 1px;
  border-left-color: #e1e1e1;
  border-right-color: white;
}
/* line 137, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x-toolbar-footer {
  background: #FFF;
  border: 0;
  margin: 0;
  padding: 6px 0 6px 6px;
}
.x-toolbar-footer .x-toolbar-item {
  margin: 0 6px 0 0;
}
/* line 144, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
/* line 149, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x-toolbar-spacer {
  width: 2px;
}
/* line 154, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x-toolbar-more-icon {
  background-image: url(images/toolbar/more.png) !important;
  background-position: center center !important;
  background-repeat: no-repeat;
}
/* line 45, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x-toolbar-default {
  border-color: silver;
  border-width: 1px;
  background-image: none;
  background-color: white;
}
.x-toolbar-default .x-box-scroller {
  cursor: pointer;
}
.x-toolbar-default .x-box-scroller-disabled {
  cursor: default;
}
.x-toolbar-default .x-tool-img {
  background-image: url(images/tools/tool-sprites-dark.png);
  background-color: white;
}
/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
/* line 65, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
/* line 166, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x-toolbar-scroll-left {
  background-image: url(images/toolbar/scroll-left.png);
  background-position: 0 0;
  width: 16px;
  height: 16px;
  border-style: solid;
  border-color: #8db2e3;
  border-width: 0;
  margin-top: 4px;
}
/* line 177, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x-toolbar-scroll-left-hover {
  background-position: 0 0;
}
/* line 181, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x-toolbar-scroll-right {
  background-image: url(images/toolbar/scroll-right.png);
  width: 16px;
  height: 16px;
  border-style: solid;
  border-color: #8db2e3;
  border-width: 0;
  margin-top: 4px;
}
/* line 191, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x-toolbar-scroll-right-hover {
  background-position: -16px 0;
}
/* line 195, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x-toolbar .x-box-menu-after {
  margin: 0 8px 0 8px;
}
/* line 199, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x-toolbar-vertical {
  padding: 6px 8px 0 8px;
}
.x-toolbar-vertical .x-toolbar-item {
  margin: 0 0 6px 0;
}
.x-toolbar-vertical .x-toolbar-text {
  margin: 4px 0 6px 0;
}
.x-toolbar-vertical .x-toolbar-separator-vertical {
  margin: 0 5px 6px;
  border-style: solid none;
  border-width: 1px 0 0;
  border-top-color: #e1e1e1;
  border-bottom-color: white;
}
.x-toolbar-vertical .x-box-menu-after, .x-toolbar-vertical .x-rtl.x-box-menu-after {
  margin: 6px 0 6px 0;
  display: block;
  float: none;
}
/* line 202, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
/* line 206, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
/* line 210, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
/* line 219, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
/* line 2, ../../../ext-theme-neutral/sass/src/panel/Header.scss */
.x-header-draggable .x-header-body, .x-header-ghost {
  cursor: move;
}
/* line 6, ../../../ext-theme-neutral/sass/src/panel/Header.scss */
.x-header-text {
  white-space: nowrap;
}
/**
 * * Creates a visual theme for a Panel
 * *
 * * @param {string} $ui-label
 * * The name of the UI being created. Can not included spaces or special punctuation
 * * (used in CSS class names).
 * * 
 * * @param {color} [$ui-border-color=$panel-border-color]
 * * The border-color of the Panel
 * *
 * * @param {number} [$ui-border-radius=$panel-border-radius]
 * * The border-radius of the Panel
 * *
 * * @param {number} [$ui-border-width=$panel-border-width]
 * * The border-width of the Panel
 * *
 * * @param {number} [$ui-padding=$panel-padding]
 * * The padding of the Panel
 * *
 * * @param {color} [$ui-header-color=$panel-header-color]
 * * The text color of the Header
 * *
 * * @param {string} [$ui-header-font-family=$panel-header-font-family]
 * * The font-family of the Header
 * *
 * * @param {number} [$ui-header-font-size=$panel-header-font-size]
 * * The font-size of the Header
 * *
 * * @param {string} [$ui-header-font-weight=$panel-header-font-weight]
 * * The font-weight of the Header
 * *
 * * @param {number} [$ui-header-line-height=$panel-header-line-height]
 * * The line-height of the Header
 * *
 * * @param {color} [$ui-header-border-color=$panel-header-border-color]
 * * The border-color of the Header
 * *
 * * @param {number} [$ui-header-border-width=$panel-header-border-width]
 * * The border-width of the Header
 * *
 * * @param {string} [$ui-header-border-style=$panel-header-border-style]
 * * The border-style of the Header
 * *
 * * @param {color} [$ui-header-background-color=$panel-header-background-color]
 * * The background-color of the Header
 * *
 * * @param {string/list} [$ui-header-background-gradient=$panel-header-background-gradient]
 * * The background-gradient of the Header. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
 * *
 * * @param {color} [$ui-header-inner-border-color=$panel-header-inner-border-color]
 * * The inner border-color of the Header
 * *
 * * @param {number} [$ui-header-inner-border-width=$panel-header-inner-border-width]
 * * The inner border-width of the Header
 * *
 * * @param {number/list} [$ui-header-text-padding=$panel-header-text-padding]
 * * The padding of the Header's text element
 * *
 * * @param {string} [$ui-header-text-transform=$panel-header-text-transform]
 * * The text-transform of the Header
 * *
 * * @param {number/list} [$ui-header-padding=$panel-header-padding]
 * * The padding of the Header
 * *
 * * @param {number} [$ui-header-icon-width=$panel-header-icon-width]
 * * The width of the Header icon
 * *
 * * @param {number} [$ui-header-icon-height=$panel-header-icon-height]
 * * The height of the Header icon
 * *
 * * @param {number} [$ui-header-icon-spacing=$panel-header-icon-spacing]
 * * The space between the Header icon and text
 * *
 * * @param {list} [$ui-header-icon-background-position=$panel-header-icon-background-position]
 * * The background-position of the Header icon
 * *
 * * @param {color} [$ui-header-glyph-color=$panel-header-glyph-color]
 * * The color of the Header glyph icon
 * *
 * * @param {number} [$ui-header-glyph-opacity=$panel-header-glyph-opacity]
 * * The opacity of the Header glyph icon
 * *
 * * @param {number} [$ui-tool-spacing=$panel-tool-spacing]
 * * The space between the Panel {@link Ext.panel.Tool Tools}
 * *
 * * @param {string} [$ui-tool-background-image=$panel-tool-background-image]
 * * The background sprite to use for Panel {@link Ext.panel.Tool Tools}
 * *
 * * @param {color} [$ui-body-color=$panel-body-color]
 * * The color of text inside the Panel body
 * *
 * * @param {color} [$ui-body-border-color=$panel-body-border-color]
 * * The border-color of the Panel body
 * *
 * * @param {number} [$ui-body-border-width=$panel-body-border-width]
 * * The border-width of the Panel body
 * *
 * * @param {string} [$ui-body-border-style=$panel-body-border-style]
 * * The border-style of the Panel body
 * *
 * * @param {color} [$ui-body-background-color=$panel-body-background-color]
 * * The background-color of the Panel body
 * *
 * * @param {number} [$ui-body-font-size=$panel-body-font-size]
 * * The font-size of the Panel body
 * *
 * * @param {string} [$ui-body-font-weight=$panel-body-font-weight]
 * * The font-weight of the Panel body
 * *
 * * @param {string} [$ui-background-stretch-top=$panel-background-stretch-top]
 * * The direction to strech the background-gradient of top docked Headers when slicing images
 * * for IE using Sencha Cmd
 * *
 * * @param {string} [$ui-background-stretch-bottom=$panel-background-stretch-bottom]
 * * The direction to strech the background-gradient of bottom docked Headers when slicing images
 * * for IE using Sencha Cmd
 * *
 * * @param {string} [$ui-background-stretch-right=$panel-background-stretch-right]
 * * The direction to strech the background-gradient of right docked Headers when slicing images
 * * for IE using Sencha Cmd
 * *
 * * @param {string} [$ui-background-stretch-left=$panel-background-stretch-left]
 * * The direction to strech the background-gradient of left docked Headers when slicing images
 * * for IE using Sencha Cmd
 * *
 * * @param {boolean} [$ui-include-border-management-rules=$panel-include-border-management-rules]
 * * True to include neptune style border management rules.
 * *
 * * @param {color} [$ui-wrap-border-color=$panel-wrap-border-color]
 * * The color to apply to the border that wraps the body and docked items in a framed
 * * panel. The presence of the wrap border in a framed panel is controlled by the
 * * {@link #border} config. Only applicable when `$ui-include-border-management-rules` is
 * * `true`.
 * *
 * * @param {color} [$ui-wrap-border-width=$panel-wrap-border-width]
 * * The width to apply to the border that wraps the body and docked items in a framed
 * * panel. The presence of the wrap border in a framed panel is controlled by the
 * * {@link #border} config. Only applicable when `$ui-include-border-management-rules` is
 * * `true`.
 * *
 * * @member Ext.panel.Panel */
/* line 736, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-ghost {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-default {
  border-color: #0097BA;
  padding: 0;
}
/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default {
  font-size: 13px;
  border: 1px solid #0097BA;
}
.x-panel-header-default .x-tool-img {
  background-color: transparent;
}
/* line 219, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-horizontal {
  padding: 9px 9px 10px 9px;
}
/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-horizontal-noborder {
  padding: 10px 10px 10px 10px;
}
/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-vertical {
  padding: 9px 9px 9px 10px;
}
/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-vertical-noborder {
  padding: 10px 10px 10px 10px;
}
/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-text-container-default {
  color: white;
  font-size: 13px;
  font-weight: bold;
  font-family: arial, helvetica, verdana, sans-serif;
  line-height: 15px;
  padding: 1px 0 0;
  text-transform: none;
}
/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-body-default {
  background: white;
  border-color: #0097BA;
  color: black;
  font-size: 13px;
  font-size: normal;
  border-width: 1px;
  border-style: solid;
}
/* line 432, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default, .x-panel-header-default-vertical {
  background-image: none;
  background-color: #0097BA;
}
/* line 436, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 494, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel .x-panel-header-default-collapsed-border-top {
  border-bottom-width: 1px !important;
}
.x-panel .x-panel-header-default-collapsed-border-right {
  border-left-width: 1px !important;
}
.x-panel .x-panel-header-default-collapsed-border-bottom {
  border-top-width: 1px !important;
}
.x-panel .x-panel-header-default-collapsed-border-left {
  border-right-width: 1px !important;
}
/* line 498, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 502, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 506, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-default-top:after, .x-panel-header-default-bottom:after {
  display: none;
  content: "x-slicer:stretch:bottom";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-default-left:after, .x-panel-header-default-right:after {
  display: none;
  content: "x-slicer:stretch:left";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
/*</if slicer> */
/* /* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-vertical .x-panel-header-text-container {
  -webkit-transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  -moz-transform: rotate(90deg);
  -moz-transform-origin: 0 0;
  -o-transform: rotate(90deg);
  -o-transform-origin: 0 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
}
/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */
.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container {
  background-color: #0097BA;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=$col-blue);
}
/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default .x-panel-header-icon {
  width: 16px;
  height: 16px;
  background-position: center center;
}
.x-panel-header-default .x-panel-header-glyph {
  color: white;
  font-size: 16px;
  line-height: 16px;
  opacity: 0.5;
}
/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-ie8m .x-panel-header-default .x-panel-header-glyph {
  color: #8abfe5;
}
/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-horizontal .x-panel-header-icon-before-title {
  margin: 0 6px 0 0;
}
.x-panel-header-default-horizontal .x-panel-header-icon-after-title {
  margin: 0 0 0 6px;
}
/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-vertical .x-panel-header-icon-before-title {
  margin: 0 0 6px 0;
}
.x-panel-header-default-vertical .x-panel-header-icon-after-title {
  margin: 6px 0 0 0;
}
/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-horizontal .x-tool-after-title {
  margin: 0 0 0 6px;
}
.x-panel-header-default-horizontal .x-tool-before-title {
  margin: 0 6px 0 0;
}
/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-vertical .x-tool-after-title {
  margin: 6px 0 0 0;
}
.x-panel-header-default-vertical .x-tool-before-title {
  margin: 0 0 6px 0;
}
/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 687, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-default-resizable .x-panel-handle {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
/* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-outer-border-l {
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-outer-border-b {
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-outer-border-bl {
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-outer-border-r {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
}
/* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-outer-border-rl {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-outer-border-rb {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-outer-border-rbl {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-outer-border-t {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
}
/* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-outer-border-tl {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-outer-border-tb {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-outer-border-tbl {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-outer-border-tr {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
}
/* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-outer-border-trl {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-outer-border-trb {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-outer-border-trbl {
  border-color: #0097BA !important;
  border-width: 1px !important;
}
/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-default-framed {
  border-color: #0097BA;
  padding: 0;
}
/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-framed {
  font-size: 13px;
  border: 5px solid #0097BA;
}
.x-panel-header-default-framed .x-tool-img {
  background-color: #0097BA;
}
/* line 219, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-framed-horizontal {
  padding: 5px;
}
/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-framed-horizontal-noborder {
  padding: 10px 10px 5px 10px;
}
/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-framed-vertical {
  padding: 5px 5px 5px 5px;
}
/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-framed-vertical-noborder {
  padding: 10px 10px 10px 5px;
}
/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-text-container-default-framed {
  color: white;
  font-size: 12px;
  font-weight: bold;
  font-family: arial, helvetica, verdana, sans-serif;
  line-height: 15px;
  padding: 1px 0 0;
  text-transform: none;
}
/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-body-default-framed {
  background: white;
  border-color: #0097BA;
  color: black;
  font-size: 12px;
  font-size: normal;
  border-width: 1px;
  border-style: solid;
}
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed {
  border-radius: 0px;
  padding: 0px 0px 0px 0px;
  border-width: 5px;
  border-style: solid;
  background-color: white;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed-mc {
  background-color: white;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-default-framed {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-default-framed-frameInfo {
  font-family: dh-4-4-4-4-5-5-5-5-0-0-0-0;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed-tr, .x-panel-default-framed-br, .x-panel-default-framed-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed-tl, .x-panel-default-framed-bl, .x-panel-default-framed-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed-tc, .x-panel-default-framed-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed-tl, .x-panel-default-framed-bl, .x-panel-default-framed-tr, .x-panel-default-framed-br, .x-panel-default-framed-tc, .x-panel-default-framed-bc, .x-panel-default-framed-ml, .x-panel-default-framed-mr {
  zoom: 1;
  background-image: url(images/panel/panel-default-framed-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed-ml, .x-panel-default-framed-mr {
  zoom: 1;
  background-image: url(images/panel/panel-default-framed-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-default-framed-mc {
  padding: 0px 0px 0px 0px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-default-framed-tl, .x-strict .x-ie7 .x-panel-default-framed-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-default-framed:after {
  display: none;
  content: "x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0px 12px;
  border-width: 5px 5px 0 5px;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-default-framed-top {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-default-framed-top-frameInfo {
  font-family: dh-4-4-0-0-5-5-0-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-tr, .x-panel-header-default-framed-top-br, .x-panel-header-default-framed-top-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-tl, .x-panel-header-default-framed-top-bl, .x-panel-header-default-framed-top-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-tc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-bc {
  height: 0;
}
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-tl, .x-panel-header-default-framed-top-bl, .x-panel-header-default-framed-top-tr, .x-panel-header-default-framed-top-br, .x-panel-header-default-framed-top-tc, .x-panel-header-default-framed-top-bc, .x-panel-header-default-framed-top-ml, .x-panel-header-default-framed-top-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-top-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-ml, .x-panel-header-default-framed-top-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-top-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-top-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-default-framed-top-tl, .x-strict .x-ie7 .x-panel-header-default-framed-top-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-default-framed-top:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right {
  border-top-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 0;
  padding: 5px 5px 5px 5px;
  border-width: 5px 5px 5px 0;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-default-framed-right {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-default-framed-right-frameInfo {
  font-family: dh-0-4-4-0-5-5-5-0-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right-ml {
  background-position: 0 right;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right-mr {
  background-position: right right;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right-tr, .x-panel-header-default-framed-right-br, .x-panel-header-default-framed-right-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right-tl, .x-panel-header-default-framed-right-bl, .x-panel-header-default-framed-right-ml {
  padding-left: 0;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right-tc, .x-panel-header-default-framed-right-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right-tl, .x-panel-header-default-framed-right-bl, .x-panel-header-default-framed-right-tr, .x-panel-header-default-framed-right-br, .x-panel-header-default-framed-right-tc, .x-panel-header-default-framed-right-bc, .x-panel-header-default-framed-right-ml, .x-panel-header-default-framed-right-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-right-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right-ml, .x-panel-header-default-framed-right-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-right-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-right-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-default-framed-right-tl, .x-strict .x-ie7 .x-panel-header-default-framed-right-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-default-framed-right:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 0 5px 5px 5px;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-default-framed-bottom {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-default-framed-bottom-frameInfo {
  font-family: dh-0-0-4-4-0-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-ml {
  background-position: 0 bottom;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-mr {
  background-position: right bottom;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-tr, .x-panel-header-default-framed-bottom-br, .x-panel-header-default-framed-bottom-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-tl, .x-panel-header-default-framed-bottom-bl, .x-panel-header-default-framed-bottom-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-tc {
  height: 0;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-bc {
  height: 5px;
}
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-tl, .x-panel-header-default-framed-bottom-bl, .x-panel-header-default-framed-bottom-tr, .x-panel-header-default-framed-bottom-br, .x-panel-header-default-framed-bottom-tc, .x-panel-header-default-framed-bottom-bc, .x-panel-header-default-framed-bottom-ml, .x-panel-header-default-framed-bottom-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-bottom-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-ml, .x-panel-header-default-framed-bottom-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-bottom-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-bottom-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl, .x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-default-framed-bottom:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left {
  border-top-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 5px 0 5px 5px;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-default-framed-left {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-default-framed-left-frameInfo {
  font-family: dh-4-0-0-4-5-0-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left-ml {
  background-position: 0 left;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left-mr {
  background-position: right left;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left-tr, .x-panel-header-default-framed-left-br, .x-panel-header-default-framed-left-mr {
  padding-right: 0;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left-tl, .x-panel-header-default-framed-left-bl, .x-panel-header-default-framed-left-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left-tc, .x-panel-header-default-framed-left-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left-tl, .x-panel-header-default-framed-left-bl, .x-panel-header-default-framed-left-tr, .x-panel-header-default-framed-left-br, .x-panel-header-default-framed-left-tc, .x-panel-header-default-framed-left-bc, .x-panel-header-default-framed-left-ml, .x-panel-header-default-framed-left-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-left-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left-ml, .x-panel-header-default-framed-left-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-left-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-left-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-default-framed-left-tl, .x-strict .x-ie7 .x-panel-header-default-framed-left-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-default-framed-left:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 0px 12px;
  border-width: 0px;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-default-framed-collapsed-top {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo {
  font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top-tr, .x-panel-header-default-framed-collapsed-top-br, .x-panel-header-default-framed-collapsed-top-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top-tl, .x-panel-header-default-framed-collapsed-top-bl, .x-panel-header-default-framed-collapsed-top-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top-tc, .x-panel-header-default-framed-collapsed-top-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top-tl, .x-panel-header-default-framed-collapsed-top-bl, .x-panel-header-default-framed-collapsed-top-tr, .x-panel-header-default-framed-collapsed-top-br, .x-panel-header-default-framed-collapsed-top-tc, .x-panel-header-default-framed-collapsed-top-bc, .x-panel-header-default-framed-collapsed-top-ml, .x-panel-header-default-framed-collapsed-top-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top-ml, .x-panel-header-default-framed-collapsed-top-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-top-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl, .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-default-framed-collapsed-top:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 5px;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-default-framed-collapsed-right {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo {
  font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right-ml {
  background-position: 0 right;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right-mr {
  background-position: right right;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right-tr, .x-panel-header-default-framed-collapsed-right-br, .x-panel-header-default-framed-collapsed-right-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right-tl, .x-panel-header-default-framed-collapsed-right-bl, .x-panel-header-default-framed-collapsed-right-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right-tc, .x-panel-header-default-framed-collapsed-right-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right-tl, .x-panel-header-default-framed-collapsed-right-bl, .x-panel-header-default-framed-collapsed-right-tr, .x-panel-header-default-framed-collapsed-right-br, .x-panel-header-default-framed-collapsed-right-tc, .x-panel-header-default-framed-collapsed-right-bc, .x-panel-header-default-framed-collapsed-right-ml, .x-panel-header-default-framed-collapsed-right-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right-ml, .x-panel-header-default-framed-collapsed-right-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-right-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl, .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-default-framed-collapsed-right:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 5px;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-default-framed-collapsed-bottom {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo {
  font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom-ml {
  background-position: 0 bottom;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom-mr {
  background-position: right bottom;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom-tr, .x-panel-header-default-framed-collapsed-bottom-br, .x-panel-header-default-framed-collapsed-bottom-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom-tl, .x-panel-header-default-framed-collapsed-bottom-bl, .x-panel-header-default-framed-collapsed-bottom-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom-tc, .x-panel-header-default-framed-collapsed-bottom-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom-tl, .x-panel-header-default-framed-collapsed-bottom-bl, .x-panel-header-default-framed-collapsed-bottom-tr, .x-panel-header-default-framed-collapsed-bottom-br, .x-panel-header-default-framed-collapsed-bottom-tc, .x-panel-header-default-framed-collapsed-bottom-bc, .x-panel-header-default-framed-collapsed-bottom-ml, .x-panel-header-default-framed-collapsed-bottom-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom-ml, .x-panel-header-default-framed-collapsed-bottom-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-bottom-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl, .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-default-framed-collapsed-bottom:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 5px;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-default-framed-collapsed-left {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo {
  font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left-ml {
  background-position: 0 left;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left-mr {
  background-position: right left;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left-tr, .x-panel-header-default-framed-collapsed-left-br, .x-panel-header-default-framed-collapsed-left-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left-tl, .x-panel-header-default-framed-collapsed-left-bl, .x-panel-header-default-framed-collapsed-left-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left-tc, .x-panel-header-default-framed-collapsed-left-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left-tl, .x-panel-header-default-framed-collapsed-left-bl, .x-panel-header-default-framed-collapsed-left-tr, .x-panel-header-default-framed-collapsed-left-br, .x-panel-header-default-framed-collapsed-left-tc, .x-panel-header-default-framed-collapsed-left-bc, .x-panel-header-default-framed-collapsed-left-ml, .x-panel-header-default-framed-collapsed-left-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left-ml, .x-panel-header-default-framed-collapsed-left-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-default-framed-collapsed-left-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl, .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-default-framed-collapsed-left:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif)";
}
/*</if slicer> */
/* /* line 396, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel .x-panel-header-default-framed-top {
  border-bottom-width: 5px !important;
}
.x-panel .x-panel-header-default-framed-right {
  border-left-width: 5px !important;
}
.x-panel .x-panel-header-default-framed-bottom {
  border-top-width: 5px !important;
}
.x-panel .x-panel-header-default-framed-left {
  border-right-width: 5px !important;
}
/* line 400, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 404, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 408, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 414, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-nbr .x-panel-header-default-framed-collapsed-top {
  border-bottom-width: 0 !important;
}
.x-nbr .x-panel-header-default-framed-collapsed-right {
  border-left-width: 0 !important;
}
.x-nbr .x-panel-header-default-framed-collapsed-bottom {
  border-top-width: 0 !important;
}
.x-nbr .x-panel-header-default-framed-collapsed-left {
  border-right-width: 0 !important;
}
/* line 418, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 426, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-framed-vertical .x-panel-header-text-container {
  -webkit-transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  -moz-transform: rotate(90deg);
  -moz-transform-origin: 0 0;
  -o-transform: rotate(90deg);
  -o-transform-origin: 0 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
}
/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */
.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container {
  background-color: #0097BA;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=$col-blue);
}
/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-framed .x-panel-header-icon {
  width: 16px;
  height: 16px;
  background-position: center center;
}
.x-panel-header-default-framed .x-panel-header-glyph {
  color: white;
  font-size: 16px;
  line-height: 16px;
  opacity: 0.5;
}
/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph {
  color: #8abfe5;
}
/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title {
  margin: 0 6px 0 0;
}
.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title {
  margin: 0 0 0 6px;
}
/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title {
  margin: 0 0 6px 0;
}
.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title {
  margin: 6px 0 0 0;
}
/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-framed-horizontal .x-tool-after-title {
  margin: 0 0 0 6px;
}
.x-panel-header-default-framed-horizontal .x-tool-before-title {
  margin: 0 6px 0 0;
}
/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-default-framed-vertical .x-tool-after-title {
  margin: 6px 0 0 0;
}
.x-panel-header-default-framed-vertical .x-tool-before-title {
  margin: 0 0 6px 0;
}
/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 684, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-default-framed-resizable {
  overflow: visible;
}
.x-panel-default-framed-resizable .x-panel-handle {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.x-panel-default-framed-resizable .x-panel-handle-north-br {
  top: -5px;
}
.x-panel-default-framed-resizable .x-panel-handle-south-br {
  bottom: -5px;
}
.x-panel-default-framed-resizable .x-panel-handle-east-br {
  right: -5px;
}
.x-panel-default-framed-resizable .x-panel-handle-west-br {
  left: -5px;
}
.x-panel-default-framed-resizable .x-panel-handle-northwest-br {
  left: -5px;
  top: -5px;
}
.x-panel-default-framed-resizable .x-panel-handle-northeast-br {
  right: -5px;
  top: -5px;
}
.x-panel-default-framed-resizable .x-panel-handle-southeast-br {
  right: -5px;
  bottom: -5px;
}
.x-panel-default-framed-resizable .x-panel-handle-southwest-br {
  left: -5px;
  bottom: -5px;
}
/* line 687, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 696, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 699, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 702, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 705, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 708, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 712, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 716, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 720, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-framed-outer-border-l {
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-framed-outer-border-b {
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-framed-outer-border-bl {
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-framed-outer-border-r {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
}
/* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-framed-outer-border-rl {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-framed-outer-border-rb {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-framed-outer-border-rbl {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-framed-outer-border-t {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
}
/* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-framed-outer-border-tl {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-framed-outer-border-tb {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-framed-outer-border-tbl {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-framed-outer-border-tr {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
}
/* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-framed-outer-border-trl {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-framed-outer-border-trb {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-default-framed-outer-border-trbl {
  border-color: #0097BA !important;
  border-width: 1px !important;
}
/**
 * * Creates a visual theme for a Ext.tip.Tip
 * *
 * * @param {string} $ui-label
 * * The name of the UI being created. Can not included spaces or special punctuation
 * * (used in CSS class names).
 * *
 * * @param {color} [$ui-border-color=$tip-border-color]
 * * The border-color of the Tip
 * *
 * * @param {number} [$ui-border-width=$tip-border-width]
 * * The border-width of the Tip
 * *
 * * @param {number} [$ui-border-radius=$tip-border-radius]
 * * The border-radius of the Tip
 * *
 * * @param {color} [$ui-background-color=$tip-background-color]
 * * The background-color of the Tip
 * *
 * * @param {string/list} [$ui-background-gradient=$tip-background-gradient]
 * * The background-gradient of the Tip. Can be either the name of a predefined gradient or a
 * * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
 * *
 * * @param {number} [$ui-tool-spacing=$tip-tool-spacing]
 * * The space between {@link Ext.panel.Tool Tools} in the header
 * *
 * * @param {string} [$ui-tool-background-image=$tip-tool-background-image]
 * * The sprite to use for the header {@link Ext.panel.Tool Tools}
 * *
 * * @param {number/list} [$ui-header-body-padding=$tip-header-body-padding]
 * * The padding of the Tip header's body element
 * *
 * * @param {color} [$ui-header-color=$tip-header-color]
 * * The text color of the Tip header
 * *
 * * @param {number} [$ui-header-font-size=$tip-header-font-size]
 * * The font-size of the Tip header
 * *
 * * @param {string} [$ui-header-font-weight=$tip-header-font-weight]
 * * The font-weight of the Tip header
 * *
 * * @param {number/list} [$ui-body-padding=$tip-body-padding]
 * * The padding of the Tip body
 * *
 * * @param {color} [$ui-body-color=$tip-body-color]
 * * The text color of the Tip body
 * *
 * * @param {number} [$ui-body-font-size=$tip-body-font-size]
 * * The font-size of the Tip body
 * *
 * * @param {string} [$ui-body-font-weight=$tip-body-font-weight]
 * * The font-weight of the Tip body
 * *
 * * @param {color} [$ui-body-link-color=$tip-body-link-color]
 * * The text color of any anchor tags inside the Tip body
 * *
 * * @param {number} [$ui-inner-border-width=0]
 * * The inner border-width of the Tip
 * *
 * * @param {color} [$ui-inner-border-color=#fff]
 * * The inner border-color of the Tip
 * *
 * * @member Ext.tip.Tip */
/* line 167, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x-tip-anchor {
  position: absolute;
  overflow: hidden;
  height: 10px;
  width: 10px;
  border-style: solid;
  border-width: 5px;
  border-color: #e1e1e1;
  zoom: 1;
}
/* line 182, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x-content-box .x-tip-anchor {
  height: 0;
  width: 0;
}
/* line 189, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x-tip-anchor-top {
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  _border-top-color: pink;
  _border-left-color: pink;
  _border-right-color: pink;
  _filter: chroma(color=pink);
}
/* line 202, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x-tip-anchor-bottom {
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  _border-bottom-color: pink;
  _border-left-color: pink;
  _border-right-color: pink;
  _filter: chroma(color=pink);
}
/* line 215, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x-tip-anchor-left {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  _border-top-color: pink;
  _border-bottom-color: pink;
  _border-left-color: pink;
  _filter: chroma(color=pink);
}
/* line 228, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x-tip-anchor-right {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
  _border-top-color: pink;
  _border-bottom-color: pink;
  _border-right-color: pink;
  _filter: chroma(color=pink);
}
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default {
  border-radius: 3px;
  padding: 2px 2px 2px 2px;
  border-width: 1px;
  border-style: solid;
  background-color: #eaf3fa;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default-mc {
  background-color: #eaf3fa;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-tip-default {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-tip-default-frameInfo {
  font-family: th-3-3-3-3-1-1-1-1-2-2-2-2;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default-tr, .x-tip-default-br, .x-tip-default-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default-tl, .x-tip-default-bl, .x-tip-default-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default-tc, .x-tip-default-bc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default-tl, .x-tip-default-bl, .x-tip-default-tr, .x-tip-default-br, .x-tip-default-tc, .x-tip-default-bc, .x-tip-default-ml, .x-tip-default-mr {
  zoom: 1;
  background-image: url(images/tip/tip-default-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default-ml, .x-tip-default-mr {
  zoom: 1;
  background-image: url(images/tip/tip-default-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-default-mc {
  padding: 0px 0px 0px 0px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-tip-default-tl, .x-strict .x-ie7 .x-tip-default-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tip-default {
  border-color: #e1e1e1;
}
.x-tip-default:after {
  display: none;
  content: "x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)";
}
.x-tip-default .x-tool-img {
  background-image: url(images/tools/tool-sprites-dark.png);
  background-color: #eaf3fa;
}
/*</if slicer> */
/* /* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x-tip-header-default .x-tool-after-title {
  margin: 0 0 0 6px;
}
.x-tip-header-default .x-tool-before-title {
  margin: 0 6px 0 0;
}
/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x-tip-header-body-default {
  padding: 3px 3px 0 3px;
}
/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x-tip-header-text-container-default {
  color: black;
  font-size: 13px;
  font-weight: bold;
}
/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x-tip-body-default {
  padding: 3px;
  color: black;
  font-size: 13px;
  font-weight: normal;
}
.x-tip-body-default a {
  color: black;
}
/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid {
  border-radius: 3px;
  padding: 2px 2px 2px 2px;
  border-width: 1px;
  border-style: solid;
  background-color: #eaf3fa;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid-mc {
  background-color: #eaf3fa;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-tip-form-invalid {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-tip-form-invalid-frameInfo {
  font-family: th-3-3-3-3-1-1-1-1-2-2-2-2;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid-tr, .x-tip-form-invalid-br, .x-tip-form-invalid-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid-tl, .x-tip-form-invalid-bl, .x-tip-form-invalid-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid-tc, .x-tip-form-invalid-bc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid-tl, .x-tip-form-invalid-bl, .x-tip-form-invalid-tr, .x-tip-form-invalid-br, .x-tip-form-invalid-tc, .x-tip-form-invalid-bc, .x-tip-form-invalid-ml, .x-tip-form-invalid-mr {
  zoom: 1;
  background-image: url(images/tip/tip-form-invalid-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid-ml, .x-tip-form-invalid-mr {
  zoom: 1;
  background-image: url(images/tip/tip-form-invalid-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tip-form-invalid-mc {
  padding: 0px 0px 0px 0px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-tip-form-invalid-tl, .x-strict .x-ie7 .x-tip-form-invalid-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tip-form-invalid {
  border-color: #e1e1e1;
}
.x-tip-form-invalid:after {
  display: none;
  content: "x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)";
}
.x-tip-form-invalid .x-tool-img {
  background-image: url(images/tools/tool-sprites-dark.png);
  background-color: #eaf3fa;
}
/*</if slicer> */
/* /* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x-tip-header-form-invalid .x-tool-after-title {
  margin: 0 0 0 6px;
}
.x-tip-header-form-invalid .x-tool-before-title {
  margin: 0 6px 0 0;
}
/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x-tip-header-body-form-invalid {
  padding: 3px 3px 0 3px;
}
/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x-tip-header-text-container-form-invalid {
  color: black;
  font-size: 13px;
  font-weight: bold;
}
/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x-tip-body-form-invalid {
  padding: 3px 3px 3px 22px;
  color: black;
  font-size: 13px;
  font-weight: normal;
  background: 1px 1px no-repeat;
  background-image: url(images/form/exclamation.png);
}
.x-tip-body-form-invalid a {
  color: black;
}
.x-tip-body-form-invalid li {
  margin-bottom: 4px;
}
.x-tip-body-form-invalid li.last {
  margin-bottom: 0;
}
/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
/* line 265, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
/* line 268, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
/* line 270, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
/**
 * * Creates a visual theme for a ButtonGroup.
 * *
 * * @param {string} $ui-label
 * * The name of the UI being created. Can not included spaces or special punctuation
 * * (used in CSS class names).
 * *
 * * @param {color} [$ui-background-color=$btn-group-background-color]
 * * The background-color of the button group
 * *
 * * @param {color} [$ui-border-color=$btn-group-border-color]
 * * The border-color of the button group
 * *
 * * @param {number} [$ui-border-width=$btn-group-border-width]
 * * The border-width of the button group
 * *
 * * @param {number} [$ui-border-radius=$btn-group-border-radius]
 * * The border-radius of the button group
 * *
 * * @param {color} [$ui-inner-border-color=$btn-group-inner-border-color]
 * * The inner border-color of the button group
 * *
 * * @param {color} [$ui-header-background-color=$btn-group-header-background-color]
 * * The background-color of the header
 * *
 * * @param {string} [$ui-header-font=$btn-group-header-font]
 * * The font of the header
 * *
 * * @param {color} [$ui-header-color=$btn-group-header-color]
 * * The text color of the header
 * *
 * * @param {number} [$ui-header-line-height=$btn-group-header-line-height]
 * * The line-height of the header
 * *
 * * @param {number} [$ui-header-padding=$btn-group-header-padding]
 * * The padding of the header
 * *
 * * @param {number} [$ui-body-padding=$btn-group-padding]
 * * The padding of the body element
 * *
 * * @param {string} [$ui-tool-background-image=$btn-group-tool-background-image]
 * * Sprite image to use for header {@link Ext.panel.Tool Tools}
 * *
 * * @member Ext.container.ButtonGroup */
/* line 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x-btn-group-default {
  border-color: #dfeaf2;
  box-shadow: white 0 1px 0px 0 inset, white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
}
/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x-btn-group-header-default {
  padding: 4px 5px;
  line-height: 16px;
  background: #dfeaf2;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.x-btn-group-header-default .x-tool-img {
  background-image: url(images/tools/tool-sprites-dark.png);
  background-color: transparent;
}
/* line 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x-btn-group-header-text-container-default {
  font: normal 13px helvetica, arial, verdana, sans-serif;
  line-height: 16px;
  color: #666666;
}
/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x-btn-group-body-default {
  padding: 0 1px;
}
.x-btn-group-body-default .x-table-layout {
  border-spacing: 5px;
}
/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed {
  border-radius: 3px;
  padding: 0px 1px 0px 1px;
  border-width: 3px;
  border-style: solid;
  background-color: white;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-mc {
  background-color: white;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-btn-group-default-framed {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-btn-group-default-framed-frameInfo {
  font-family: dh-3-3-3-3-3-3-3-3-0-1-0-1;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-tr, .x-btn-group-default-framed-br, .x-btn-group-default-framed-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-tl, .x-btn-group-default-framed-bl, .x-btn-group-default-framed-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-tc, .x-btn-group-default-framed-bc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-tl, .x-btn-group-default-framed-bl, .x-btn-group-default-framed-tr, .x-btn-group-default-framed-br, .x-btn-group-default-framed-tc, .x-btn-group-default-framed-bc, .x-btn-group-default-framed-ml, .x-btn-group-default-framed-mr {
  zoom: 1;
  background-image: url(images/btn-group/btn-group-default-framed-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-ml, .x-btn-group-default-framed-mr {
  zoom: 1;
  background-image: url(images/btn-group/btn-group-default-framed-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-mc {
  padding: 0px 1px 0px 1px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-btn-group-default-framed-tl, .x-strict .x-ie7 .x-btn-group-default-framed-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-group-default-framed:after {
  display: none;
  content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle {
  border-radius: 3px;
  padding: 0px 1px 0px 1px;
  border-width: 3px;
  border-style: solid;
  background-color: white;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle-mc {
  background-color: white;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-btn-group-default-framed-notitle {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-btn-group-default-framed-notitle-frameInfo {
  font-family: dh-3-3-3-3-3-3-3-3-0-1-0-1;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle-tr, .x-btn-group-default-framed-notitle-br, .x-btn-group-default-framed-notitle-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle-tl, .x-btn-group-default-framed-notitle-bl, .x-btn-group-default-framed-notitle-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle-tc, .x-btn-group-default-framed-notitle-bc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle-tl, .x-btn-group-default-framed-notitle-bl, .x-btn-group-default-framed-notitle-tr, .x-btn-group-default-framed-notitle-br, .x-btn-group-default-framed-notitle-tc, .x-btn-group-default-framed-notitle-bc, .x-btn-group-default-framed-notitle-ml, .x-btn-group-default-framed-notitle-mr {
  zoom: 1;
  background-image: url(images/btn-group/btn-group-default-framed-notitle-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle-ml, .x-btn-group-default-framed-notitle-mr {
  zoom: 1;
  background-image: url(images/btn-group/btn-group-default-framed-notitle-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-group-default-framed-notitle-mc {
  padding: 0px 1px 0px 1px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl, .x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-group-default-framed-notitle:after {
  display: none;
  content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)";
}
/*</if slicer> */
/* /* line 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x-btn-group-default-framed {
  border-color: #dfeaf2;
  box-shadow: white 0 1px 0px 0 inset, white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
}
/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x-btn-group-header-default-framed {
  padding: 4px 5px;
  line-height: 16px;
  background: #dfeaf2;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.x-btn-group-header-default-framed .x-tool-img {
  background-image: url(images/tools/tool-sprites-dark.png);
  background-color: #dfeaf2;
}
/* line 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x-btn-group-header-text-container-default-framed {
  font: normal 13px helvetica, arial, verdana, sans-serif;
  line-height: 16px;
  color: #666666;
}
/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x-btn-group-body-default-framed {
  padding: 0 1px 0 1px;
}
.x-btn-group-body-default-framed .x-table-layout {
  border-spacing: 5px;
}
/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
/**
 * * Creates a visual theme for a Window
 * *
 * * @param {string} $ui-label
 * * The name of the UI being created. Can not included spaces or special punctuation
 * * (used in CSS class names).
 * *
 * * @param {number} [$ui-padding=$window-padding]
 * * The padding of the Window
 * *
 * * @param {number} [$ui-border-radius=$window-border-radius]
 * * The border-radius of the Window
 * *
 * * @param {color} [$ui-border-color=$window-border-color]
 * * The border-color of the Window
 * *
 * * @param {number} [$ui-border-width=$window-border-width]
 * * The border-width of the Window
 * *
 * * @param {color} [$ui-inner-border-color=$window-inner-border-color]
 * * The inner border-color of the Window
 * *
 * * @param {number} [$ui-inner-border-width=$window-inner-border-width]
 * * The inner border-width of the Window
 * *
 * * @param {color} [$ui-header-color=$window-header-color]
 * * The text color of the Header
 * *
 * * @param {color} [$ui-header-background-color=$window-header-background-color]
 * * The background-color of the Header
 * *
 * * @param {number/list} [$ui-header-padding=$window-header-padding]
 * * The padding of the Header
 * *
 * * @param {string} [$ui-header-font-family=$window-header-font-family]
 * * The font-family of the Header
 * *
 * * @param {number} [$ui-header-font-size=$window-header-font-size]
 * * The font-size of the Header
 * *
 * * @param {string} [$ui-header-font-weight=$window-header-font-weight]
 * * The font-weight of the Header
 * *
 * * @param {number} [$ui-header-line-height=$window-header-line-height]
 * * The line-height of the Header
 * *
 * * @param {number/list} [$ui-header-text-padding=$window-header-text-padding]
 * * The padding of the Header's text element
 * *
 * * @param {string} [$ui-header-text-transform=$window-header-text-transform]
 * * The text-transform of the Header
 * *
 * * @param {color} [$ui-header-border-color=$ui-border-color]
 * * The border-color of the Header
 * *
 * * @param {number} [$ui-header-border-width=$window-header-border-width]
 * * The border-width of the Header
 * *
 * * @param {color} [$ui-header-inner-border-color=$window-header-inner-border-color]
 * * The inner border-color of the Header
 * *
 * * @param {number} [$ui-header-inner-border-width=$window-header-inner-border-width]
 * * The inner border-width of the Header
 * *
 * * @param {number} [$ui-header-icon-width=$window-header-icon-width]
 * * The width of the Header icon
 * *
 * * @param {number} [$ui-header-icon-height=$window-header-icon-height]
 * * The height of the Header icon
 * *
 * * @param {number} [$ui-header-icon-spacing=$window-header-icon-spacing]
 * * The space between the Header icon and text
 * *
 * * @param {list} [$ui-header-icon-background-position=$window-header-icon-background-position]
 * * The background-position of the Header icon
 * *
 * * @param {color} [$ui-header-glyph-color=$window-header-glyph-color]
 * * The color of the Header glyph icon
 * *
 * * @param {number} [$ui-header-glyph-opacity=$window-header-glyph-opacity]
 * * The opacity of the Header glyph icon
 * *
 * * @param {number} [$ui-tool-spacing=$window-tool-spacing]
 * * The space between the {@link Ext.panel.Tool Tools}
 * *
 * * @param {string} [$ui-tool-background-image=$window-tool-background-image]
 * * The background sprite to use for {@link Ext.panel.Tool Tools}
 * *
 * * @param {color} [$ui-body-border-color=$window-body-border-color]
 * * The border-color of the Window body
 * *
 * * @param {color} [$ui-body-background-color=$window-body-background-color]
 * * The background-color of the Window body
 * *
 * * @param {number} [$ui-body-border-width=$window-body-border-width]
 * * The border-width of the Window body
 * *
 * * @param {string} [$ui-body-border-style=$window-body-border-style]
 * * The border-style of the Window body
 * *
 * * @param {color} [$ui-body-color=$window-body-color]
 * * The color of text inside the Window body
 * *
 * * @param {color} [$ui-background-color=$window-background-color]
 * * The background-color of the Window
 * *
 * * @param {boolean} [$ui-force-header-border=$window-force-header-border]
 * * True to force the window header to have a border on the side facing
 * * the window body.  Overrides dock layout's border management border
 * * removal rules.
 * *
 * * @param {boolean} [$ui-include-border-management-rules=$window-include-border-management-rules]
 * * True to include neptune style border management rules.
 * *
 * * @param {color} [$ui-wrap-border-color=$window-wrap-border-color]
 * * The color to apply to the border that wraps the body and docked items. The presence of
 * * the wrap border is controlled by the {@link #border} config. Only applicable when
 * * `$ui-include-border-management-rules` is `true`.
 * *
 * * @param {color} [$ui-wrap-border-width=$window-wrap-border-width]
 * * The width to apply to the border that wraps the body and docked items. The presence of
 * * the wrap border is controlled by the {@link #border} config. Only applicable when
 * * `$ui-include-border-management-rules` is `true`.
 * *
 * * @member Ext.window.Window */
/* line 545, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x-window-ghost {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/* line 174, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x-window-default {
  border-color: #0097BA;
  border-radius: 0px;
  border-radius: 0px;
  padding: 0px 0px 0px 0px;
  border-width: 5px;
  border-style: solid;
  background-color: white;
}
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-default-mc {
  background-color: white;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-window-default {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-window-default-frameInfo {
  font-family: dh-4-4-4-4-5-5-5-5-0-0-0-0;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-default-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-default-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-default-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-default-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-default-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-default-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-default-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-default-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-default-tr, .x-window-default-br, .x-window-default-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-default-tl, .x-window-default-bl, .x-window-default-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-default-tc, .x-window-default-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-default-tl, .x-window-default-bl, .x-window-default-tr, .x-window-default-br, .x-window-default-tc, .x-window-default-bc, .x-window-default-ml, .x-window-default-mr {
  zoom: 1;
  background-image: url(images/window/window-default-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-default-ml, .x-window-default-mr {
  zoom: 1;
  background-image: url(images/window/window-default-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-default-mc {
  padding: 0px 0px 0px 0px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-window-default-tl, .x-strict .x-ie7 .x-window-default-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-window-default:after {
  display: none;
  content: "x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)";
}
/*</if slicer> */
/* /* line 195, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x-window-body-default {
  border-color: #0097BA;
  border-width: 1px;
  border-style: solid;
  background: white;
  color: black;
}
/* line 206, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x-window-header-default {
  font-size: 13px;
  border-color: #0097BA;
  zoom: 1;
  background-color: #0097BA;
}
.x-window-header-default .x-tool-img {
  background-color: #0097BA;
}
/* line 212, ../../../ext-theme-neutral/sass/src/window/Window.scss */
/* line 223, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x-window-header-default-vertical .x-window-header-text-container {
  -webkit-transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  -moz-transform: rotate(90deg);
  -moz-transform-origin: 0 0;
  -o-transform: rotate(90deg);
  -o-transform-origin: 0 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
}
/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */
.x-ie9m .x-window-header-default-vertical .x-window-header-text-container {
  background-color: #0097BA;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=$col-blue);
}
/* line 233, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x-window-header-text-container-default {
  color: white;
  font-weight: bold;
  line-height: 15px;
  font-family: arial, helvetica, verdana, sans-serif;
  font-size: 13px;
  padding: 1px 0 0;
  text-transform: none;
}
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding: 5px 5px 5px 5px;
  border-width: 5px 5px 5px 5px;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-window-header-default-top {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-window-header-default-top-frameInfo {
  font-family: dh-4-4-0-0-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top-tr, .x-window-header-default-top-br, .x-window-header-default-top-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top-tl, .x-window-header-default-top-bl, .x-window-header-default-top-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top-tc, .x-window-header-default-top-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top-tl, .x-window-header-default-top-bl, .x-window-header-default-top-tr, .x-window-header-default-top-br, .x-window-header-default-top-tc, .x-window-header-default-top-bc, .x-window-header-default-top-ml, .x-window-header-default-top-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-top-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top-ml, .x-window-header-default-top-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-top-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-top-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-window-header-default-top-tl, .x-strict .x-ie7 .x-window-header-default-top-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-window-header-default-top:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right {
  border-top-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 0;
  padding: 5px 5px 5px 5px;
  border-width: 5px 5px 5px 5px;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-window-header-default-right {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-window-header-default-right-frameInfo {
  font-family: dh-0-4-4-0-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right-tr, .x-window-header-default-right-br, .x-window-header-default-right-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right-tl, .x-window-header-default-right-bl, .x-window-header-default-right-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right-tc, .x-window-header-default-right-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right-tl, .x-window-header-default-right-bl, .x-window-header-default-right-tr, .x-window-header-default-right-br, .x-window-header-default-right-tc, .x-window-header-default-right-bc, .x-window-header-default-right-ml, .x-window-header-default-right-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-right-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right-ml, .x-window-header-default-right-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-right-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-right-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-window-header-default-right-tl, .x-strict .x-ie7 .x-window-header-default-right-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-window-header-default-right:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), sides:url(images/window-header/window-header-default-right-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 5px 5px 5px 5px;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-window-header-default-bottom {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-window-header-default-bottom-frameInfo {
  font-family: dh-0-0-4-4-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom-tr, .x-window-header-default-bottom-br, .x-window-header-default-bottom-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom-tl, .x-window-header-default-bottom-bl, .x-window-header-default-bottom-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom-tc, .x-window-header-default-bottom-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom-tl, .x-window-header-default-bottom-bl, .x-window-header-default-bottom-tr, .x-window-header-default-bottom-br, .x-window-header-default-bottom-tc, .x-window-header-default-bottom-bc, .x-window-header-default-bottom-ml, .x-window-header-default-bottom-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-bottom-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom-ml, .x-window-header-default-bottom-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-bottom-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-bottom-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-window-header-default-bottom-tl, .x-strict .x-ie7 .x-window-header-default-bottom-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-window-header-default-bottom:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left {
  border-top-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 5px 5px 5px 5px;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-window-header-default-left {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-window-header-default-left-frameInfo {
  font-family: dh-4-0-0-4-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left-tr, .x-window-header-default-left-br, .x-window-header-default-left-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left-tl, .x-window-header-default-left-bl, .x-window-header-default-left-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left-tc, .x-window-header-default-left-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left-tl, .x-window-header-default-left-bl, .x-window-header-default-left-tr, .x-window-header-default-left-br, .x-window-header-default-left-tc, .x-window-header-default-left-bc, .x-window-header-default-left-ml, .x-window-header-default-left-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-left-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left-ml, .x-window-header-default-left-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-left-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-left-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-window-header-default-left-tl, .x-strict .x-ie7 .x-window-header-default-left-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-window-header-default-left:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), sides:url(images/window-header/window-header-default-left-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top {
  border-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 5px;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-window-header-default-collapsed-top {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-window-header-default-collapsed-top-frameInfo {
  font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top-tr, .x-window-header-default-collapsed-top-br, .x-window-header-default-collapsed-top-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top-tl, .x-window-header-default-collapsed-top-bl, .x-window-header-default-collapsed-top-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top-tc, .x-window-header-default-collapsed-top-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top-tl, .x-window-header-default-collapsed-top-bl, .x-window-header-default-collapsed-top-tr, .x-window-header-default-collapsed-top-br, .x-window-header-default-collapsed-top-tc, .x-window-header-default-collapsed-top-bc, .x-window-header-default-collapsed-top-ml, .x-window-header-default-collapsed-top-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-top-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top-ml, .x-window-header-default-collapsed-top-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-top-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-top-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl, .x-strict .x-ie7 .x-window-header-default-collapsed-top-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-window-header-default-collapsed-top:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right {
  border-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 5px;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-window-header-default-collapsed-right {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-window-header-default-collapsed-right-frameInfo {
  font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right-tr, .x-window-header-default-collapsed-right-br, .x-window-header-default-collapsed-right-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right-tl, .x-window-header-default-collapsed-right-bl, .x-window-header-default-collapsed-right-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right-tc, .x-window-header-default-collapsed-right-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right-tl, .x-window-header-default-collapsed-right-bl, .x-window-header-default-collapsed-right-tr, .x-window-header-default-collapsed-right-br, .x-window-header-default-collapsed-right-tc, .x-window-header-default-collapsed-right-bc, .x-window-header-default-collapsed-right-ml, .x-window-header-default-collapsed-right-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-right-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right-ml, .x-window-header-default-collapsed-right-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-right-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-right-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl, .x-strict .x-ie7 .x-window-header-default-collapsed-right-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-window-header-default-collapsed-right:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom {
  border-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 5px;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-window-header-default-collapsed-bottom {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo {
  font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom-tr, .x-window-header-default-collapsed-bottom-br, .x-window-header-default-collapsed-bottom-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom-tl, .x-window-header-default-collapsed-bottom-bl, .x-window-header-default-collapsed-bottom-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom-tc, .x-window-header-default-collapsed-bottom-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom-tl, .x-window-header-default-collapsed-bottom-bl, .x-window-header-default-collapsed-bottom-tr, .x-window-header-default-collapsed-bottom-br, .x-window-header-default-collapsed-bottom-tc, .x-window-header-default-collapsed-bottom-bc, .x-window-header-default-collapsed-bottom-ml, .x-window-header-default-collapsed-bottom-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-bottom-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom-ml, .x-window-header-default-collapsed-bottom-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-bottom-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-bottom-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl, .x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-window-header-default-collapsed-bottom:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left {
  border-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 5px;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left-mc {
  background-color: #0097BA;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-window-header-default-collapsed-left {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-window-header-default-collapsed-left-frameInfo {
  font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left-tr, .x-window-header-default-collapsed-left-br, .x-window-header-default-collapsed-left-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left-tl, .x-window-header-default-collapsed-left-bl, .x-window-header-default-collapsed-left-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left-tc, .x-window-header-default-collapsed-left-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left-tl, .x-window-header-default-collapsed-left-bl, .x-window-header-default-collapsed-left-tr, .x-window-header-default-collapsed-left-br, .x-window-header-default-collapsed-left-tc, .x-window-header-default-collapsed-left-bc, .x-window-header-default-collapsed-left-ml, .x-window-header-default-collapsed-left-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-left-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left-ml, .x-window-header-default-collapsed-left-mr {
  zoom: 1;
  background-image: url(images/window-header/window-header-default-collapsed-left-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-window-header-default-collapsed-left-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl, .x-strict .x-ie7 .x-window-header-default-collapsed-left-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-window-header-default-collapsed-left:after {
  display: none;
  content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)";
}
/*</if slicer> */
/* /* line 355, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x-window-header-default .x-window-header-icon {
  width: 16px;
  height: 16px;
  color: white;
  font-size: 16px;
  line-height: 16px;
  background-position: center center;
}
.x-window-header-default .x-window-header-glyph {
  color: white;
  font-size: 16px;
  line-height: 16px;
  opacity: 0.5;
}
/* line 364, ../../../ext-theme-neutral/sass/src/window/Window.scss */
/* line 380, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x-ie8m .x-window-header-default .x-window-header-glyph {
  color: #9bc8e9;
}
/* line 388, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x-window-header-default-horizontal .x-window-header-icon-before-title {
  margin: 0 6px 0 0;
}
.x-window-header-default-horizontal .x-window-header-icon-after-title {
  margin: 0 0 0 6px;
}
/* line 398, ../../../ext-theme-neutral/sass/src/window/Window.scss */
/* line 410, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x-window-header-default-vertical .x-window-header-icon-before-title {
  margin: 0 0 6px 0;
}
.x-window-header-default-vertical .x-window-header-icon-after-title {
  margin: 6px 0 0 0;
}
/* line 420, ../../../ext-theme-neutral/sass/src/window/Window.scss */
/* line 433, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x-window-header-default-horizontal .x-tool-after-title {
  margin: 0 0 0 6px;
}
.x-window-header-default-horizontal .x-tool-before-title {
  margin: 0 6px 0 0;
}
/* line 443, ../../../ext-theme-neutral/sass/src/window/Window.scss */
/* line 455, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x-window-header-default-vertical .x-tool-after-title {
  margin: 6px 0 0 0;
}
.x-window-header-default-vertical .x-tool-before-title {
  margin: 0 0 6px 0;
}
/* line 465, ../../../ext-theme-neutral/sass/src/window/Window.scss */
/* line 479, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x-window-header-default {
  border-width: 5px !important;
}
/* line 489, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x-nbr .x-window-default-collapsed .x-window-header {
  border-width: 0 !important;
}
/* line 500, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x-window-default-resizable {
  overflow: visible;
}
.x-window-default-resizable .x-window-handle-north-br {
  top: -5px;
}
.x-window-default-resizable .x-window-handle-south-br {
  bottom: -5px;
}
.x-window-default-resizable .x-window-handle-east-br {
  right: -5px;
}
.x-window-default-resizable .x-window-handle-west-br {
  left: -5px;
}
.x-window-default-resizable .x-window-handle-northwest-br {
  left: -5px;
  top: -5px;
}
.x-window-default-resizable .x-window-handle-northeast-br {
  right: -5px;
  top: -5px;
}
.x-window-default-resizable .x-window-handle-southeast-br {
  right: -5px;
  bottom: -5px;
}
.x-window-default-resizable .x-window-handle-southwest-br {
  left: -5px;
  bottom: -5px;
}
/* line 505, ../../../ext-theme-neutral/sass/src/window/Window.scss */
/* line 508, ../../../ext-theme-neutral/sass/src/window/Window.scss */
/* line 511, ../../../ext-theme-neutral/sass/src/window/Window.scss */
/* line 514, ../../../ext-theme-neutral/sass/src/window/Window.scss */
/* line 517, ../../../ext-theme-neutral/sass/src/window/Window.scss */
/* line 521, ../../../ext-theme-neutral/sass/src/window/Window.scss */
/* line 525, ../../../ext-theme-neutral/sass/src/window/Window.scss */
/* line 529, ../../../ext-theme-neutral/sass/src/window/Window.scss */
/* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-window-default-outer-border-l {
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-window-default-outer-border-b {
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-window-default-outer-border-bl {
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-window-default-outer-border-r {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
}
/* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-window-default-outer-border-rl {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-window-default-outer-border-rb {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-window-default-outer-border-rbl {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-window-default-outer-border-t {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
}
/* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-window-default-outer-border-tl {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-window-default-outer-border-tb {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-window-default-outer-border-tbl {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-window-default-outer-border-tr {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
}
/* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-window-default-outer-border-trl {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-window-default-outer-border-trb {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-window-default-outer-border-trbl {
  border-color: #0097BA !important;
  border-width: 1px !important;
}
/* line 1, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x-form-invalid-under {
  padding: 2px 2px 2px 20px;
  color: #cf4c35;
  font: normal 13px helvetica, arial, verdana, sans-serif;
  line-height: 16px;
  background: no-repeat 0 2px;
  background-image: url(images/form/exclamation.png);
}
/* line 14, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
div.x-lbl-top-err-icon {
  margin-bottom: 4px;
}
/* line 18, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x-form-invalid-icon {
  width: 16px;
  height: 16px;
  margin: 0 5px;
  background-image: url(images/form/exclamation.png);
  background-repeat: no-repeat;
}
/* line 26, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x-form-item-label {
  color: black;
  font: normal 13px/17px helvetica, arial, verdana, sans-serif;
  margin-top: 4px;
}
/* line 45, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x-autocontainer-form-item, .x-anchor-form-item, .x-vbox-form-item, .x-table-form-item {
  margin-bottom: 5px;
}
/* line 53, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x-ie6 .x-form-form-item td {
  border-top-width: 0;
}
.x-ie6 td.x-form-item-pad {
  height: 5px;
}
/* line 59, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */
.x-form-field {
  color: black;
}
/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */
.x-form-item, .x-form-field {
  font: normal 13px helvetica, arial, verdana, sans-serif;
}
/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */
.x-form-type-text textarea.x-form-invalid-field, .x-form-type-text input.x-form-invalid-field {
  background-color: white;
  border-color: #cf4c35;
}
.x-form-type-password textarea.x-form-invalid-field, .x-form-type-password input.x-form-invalid-field {
  background-color: white;
  border-color: #cf4c35;
}
.x-form-type-number textarea.x-form-invalid-field, .x-form-type-number input.x-form-invalid-field {
  background-color: white;
  border-color: #cf4c35;
}
.x-form-type-email textarea.x-form-invalid-field, .x-form-type-email input.x-form-invalid-field {
  background-color: white;
  border-color: #cf4c35;
}
.x-form-type-search textarea.x-form-invalid-field, .x-form-type-search input.x-form-invalid-field {
  background-color: white;
  border-color: #cf4c35;
}
.x-form-type-tel textarea.x-form-invalid-field, .x-form-type-tel input.x-form-invalid-field {
  background-color: white;
  border-color: #cf4c35;
}
/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */
.x-item-disabled .x-form-item-label, .x-item-disabled .x-form-field, .x-item-disabled .x-form-display-field, .x-item-disabled .x-form-cb-label, .x-item-disabled .x-form-trigger {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
}
/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x-form-text {
  color: black;
  padding: 4px 6px 3px 6px;
  background: white repeat-x 0 0;
  border-width: 1px;
  border-style: solid;
  border-color: silver #d9d9d9 #d9d9d9;
  height: 24px;
  line-height: 15px;
}
/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x-content-box .x-form-text {
  height: 15px;
}
/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x-form-focus {
  border-color: #0097BA;
}
/* line 39, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x-form-empty-field, textarea.x-form-empty-field {
  color: gray;
}
/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x-quirks .x-ie .x-form-text, .x-ie7m .x-form-text {
  margin-top: -1px;
  margin-bottom: -1px;
}
/* line 1, ../../../ext-theme-neutral/sass/src/form/field/TextArea.scss */
.x-form-textarea {
  line-height: normal;
  height: auto;
}
/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */
.x-form-display-field-body {
  height: 24px;
}
/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */
.x-form-display-field {
  font: normal 13px/17px helvetica, arial, verdana, sans-serif;
  color: black;
  margin-top: 4px;
}
/* line 1, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */
.x-message-box .x-window-body {
  background-color: white;
  border-width: 0;
}
/* line 13, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */
.x-message-box-info, .x-message-box-warning, .x-message-box-question, .x-message-box-error {
  background-position: top left;
  background-repeat: no-repeat;
}
/* line 29, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */
.x-message-box-info {
  background-image: url(images/shared/icon-info.png);
}
/* line 33, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */
.x-message-box-warning {
  background-image: url(images/shared/icon-warning.png);
}
/* line 37, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */
.x-message-box-question {
  background-image: url(images/shared/icon-question.png);
}
/* line 41, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */
.x-message-box-error {
  background-image: url(images/shared/icon-error.png);
}
/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x-form-cb-wrap {
  height: 24px;
}
/* line 10, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x-form-cb {
  margin-top: 5px;
}
/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x-form-checkbox {
  width: 15px;
  height: 15px;
  background: url(images/form/checkbox.png) no-repeat;
}
/* line 25, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x-form-cb-checked .x-form-checkbox {
  background-position: 0 -15px;
}
/* Focused */
/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x-form-checkbox-focus {
  background-position: -15px 0;
}
/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x-form-cb-checked .x-form-checkbox-focus {
  background-position: -15px -15px;
}
/* boxLabel */
/* line 40, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x-form-cb-label {
  margin-top: 4px;
  font: normal 13px/17px helvetica, arial, verdana, sans-serif;
}
/* line 53, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x-form-cb-label-before {
  margin-right: 4px;
}
/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x-form-cb-label-after {
  margin-left: 4px;
}
/* line 1, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */
.x-form-checkboxgroup-body {
  padding: 0 4px;
}
/* line 6, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */
.x-form-invalid .x-form-checkboxgroup-body {
  border: 1px solid #cf4c35;
}
/* line 16, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */
.x-check-group-alt {
  background: #f5f5f5;
  border-top: 1px dotted #f5f5f5;
  border-bottom: 1px dotted #f5f5f5;
}
/* line 22, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */
.x-form-check-group-label {
  color: black;
  padding: 2px;
  margin: 0 30px 5px 0;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: black;
}
/* line 1, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-fieldset {
  border: 1px solid #b5b8c8;
  padding: 0 10px;
  margin: 0 0 10px;
}
/* line 11, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-ie8m .x-fieldset, .x-quirks .x-ie .x-fieldset, .x-ie8m .x-fieldset .x-fieldset-body, .x-quirks .x-ie .x-fieldset .x-fieldset-body {
  padding-top: 0;
}
/* line 13, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
/* line 19, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-fieldset-header-checkbox {
  line-height: 16px;
  margin: 1px 3px 0 0;
}
/* line 24, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-fieldset-header {
  padding: 0 3px 1px;
}
.x-fieldset-header .x-tool {
  margin-top: 1px;
  padding: 0;
}
/* line 27, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
/* line 39, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-fieldset-header-text {
  font: 12px/16px bold helvetica, arial, verdana, sans-serif;
  color: black;
  padding: 1px 0;
}
/* line 44, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-fieldset-header-text-collapsible {
  cursor: pointer;
}
/* line 50, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-fieldset-with-title .x-fieldset-header-checkbox, .x-fieldset-with-title .x-tool {
  margin: 1px 3px 0 0;
}
/* line 66, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-webkit .x-fieldset-header {
  -webkit-padding-start: 3px;
  -webkit-padding-end: 3px;
}
/* line 76, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-opera .x-fieldset-with-legend {
  margin-top: -1px;
}
.x-opera.x-mac .x-fieldset-header-text {
  padding: 2px 0 0;
}
/* line 79, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
/* line 87, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-strict .x-ie8 .x-fieldset-header {
  margin-bottom: -1px;
}
.x-strict .x-ie8 .x-fieldset-header .x-tool, .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text, .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox {
  position: relative;
  top: -1px;
}
/* line 91, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
/* line 101, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-quirks .x-ie .x-fieldset-header, .x-ie8m .x-fieldset-header {
  padding-left: 1px;
  padding-right: 1px;
}
/* line 109, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-fieldset-collapsed {
  padding-bottom: 0 !important;
  border-width: 1px 1px 0 1px !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
}
.x-fieldset-collapsed .x-fieldset-body {
  display: none;
}
/* line 114, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
/* line 123, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-ie6 .x-fieldset-collapsed {
  border-width: 1px 0 0 0 !important;
  padding-bottom: 0 !important;
  margin-left: 1px;
  margin-right: 1px;
}
/* line 131, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-ie .x-fieldset-bwrap {
  zoom: 1;
}
/* line 137, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-fieldset .x-tool-toggle {
  background-image: url(images/fieldset/collapse-tool.png);
  background-position: 0 0;
}
.x-fieldset .x-tool-over .x-tool-toggle {
  background-position: 0 -15px;
}
/* line 144, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
/* line 151, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-fieldset-collapsed .x-tool-toggle {
  background-position: -15px 0;
}
.x-fieldset-collapsed .x-tool-over .x-tool-toggle {
  background-position: -15px -15px;
}
/* line 156, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
/* IE legend positioning bug */
/* line 164, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-ie .x-fieldset-noborder legend {
  position: relative;
  margin-bottom: 23px;
}
.x-ie .x-fieldset-noborder legend span {
  position: absolute;
  left: 16px;
}
/* line 170, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
/* line 176, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-fieldset {
  overflow: hidden;
}
/* line 180, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-fieldset-bwrap {
  overflow: hidden;
  zoom: 1;
}
/* line 186, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x-fieldset-body {
  overflow: hidden;
}
/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */
.x-form-radio {
  width: 15px;
  height: 15px;
  background: url(images/form/radio.png) no-repeat;
}
/* line 7, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */
.x-form-cb-checked .x-form-radio {
  background-position: 0 -15px;
}
/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */
.x-form-radio-focus {
  background-position: -15px 0;
}
/* line 15, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */
.x-form-cb-checked .x-form-radio-focus {
  background-position: -15px -15px;
}
/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */
.x-form-trigger {
  background: url(images/form/trigger.png);
  width: 22px;
}
/* line 18, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */
.x-trigger-cell {
  background-color: white;
  width: 22px;
}
/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */
.x-form-trigger-over {
  background-position: -22px 0;
}
/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */
.x-form-trigger-wrap-focus .x-form-trigger {
  background-position: -66px -2px;
  border-left-width: 1px;
}
.x-form-trigger-wrap-focus .x-form-trigger-over {
  background-position: -88px -2px;
}
/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */
/* line 42, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */
.x-form-trigger-click, .x-form-trigger-wrap-focus .x-form-trigger-click {
  background-position: -44px -2px;
}
/* line 49, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */
.x-form-clear-trigger {
  background-image: url(images/form/clear-trigger.png);
}
/* line 59, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */
.x-form-search-trigger {
  background-image: url(images/form/search-trigger.png);
}
/* line 73, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */
.x-quirks .prefixie6 .x-form-trigger-input-cell, .x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell {
  height: 24px;
}
/* line 77, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */
/* line 3, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */
div.x-form-spinner-up, div.x-form-spinner-down {
  background-image: url(images/form/spinner.png);
  background-color: white;
  width: 22px;
  height: 11px;
  border-left-width: 1px;
}
/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */
.x-form-spinner-down, .x-form-spinner-down-over {
  background-position: 0 -10px;
}
.x-form-spinner-up, .x-form-spinner-up-over {
  background-position-y: -2px;
}
/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */
.x-form-trigger-wrap-focus .x-form-spinner-down {
  background-position: -66px -10px;
  border-left-width: 1px;
}
/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */
.x-form-trigger-wrap .x-form-spinner-down-over {
  background-position: -22px -10px;
}
/* line 29, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */
.x-form-trigger-wrap-focus .x-form-spinner-down-over {
  background-position: -88px -10px;
}
/* line 32, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */
.x-form-trigger-wrap .x-form-spinner-down-click {
  background-position: -44px -10px;
}
/* line 1, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x-tbar-page-number {
  width: 30px;
}
/* line 5, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x-tbar-page-first {
  background-image: url(images/grid/page-first.png);
}
/* line 9, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x-tbar-page-prev {
  background-image: url(images/grid/page-prev.png);
}
/* line 13, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x-tbar-page-next {
  background-image: url(images/grid/page-next.png);
}
/* line 17, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x-tbar-page-last {
  background-image: url(images/grid/page-last.png);
}
/* line 21, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x-tbar-loading {
  background-image: url(images/grid/refresh.png);
}
/* line 1, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */
.x-boundlist {
  border-width: 1px;
  border-style: solid;
  border-color: #e1e1e1;
  background: white;
}
/* line 10, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */
.x-strict .x-ie7m .x-boundlist-list-ct {
  position: relative;
}
/* line 15, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */
.x-boundlist-item {
  padding: 0 6px;
  line-height: 22px;
  cursor: pointer;
  cursor: hand;
  position: relative;
  /*allow hover in IE on empty items */
  zoom: 1;
  border-width: 1px;
  border-style: dotted;
  border-color: white;
}
/* line 33, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */
.x-boundlist-selected {
  background: #c1ddf1;
  border-color: #c1ddf1;
}
/* line 38, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */
.x-boundlist-item-over {
  background: #d6e8f6;
  border-color: #d6e8f6;
}
/* line 43, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */
.x-boundlist-floating {
  border-top-width: 0;
}
/* line 47, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */
.x-boundlist-above {
  border-top-width: 1px;
  border-bottom-width: 1px;
}
/* line 9, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker {
  border-width: 1px;
  border-style: solid;
  border-color: #e1e1e1;
  background-color: white;
  width: 212px;
}
/* line 19, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker-header {
  padding: 4px 6px;
  text-align: center;
  background-image: none;
  background-color: #f5f5f5;
}
/* line 32, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker-arrow {
  width: 12px;
  height: 12px;
  top: 9px;
  cursor: pointer;
  background-color: #f5f5f5;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
/* line 50, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
a.x-datepicker-arrow:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
/* line 55, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker-next {
  right: 6px;
  background-image: url(images/datepicker/arrow-right.png);
}
/* line 60, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker-prev {
  left: 6px;
  background-image: url(images/datepicker/arrow-left.png);
}
/* line 76, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker-month .x-btn {
  background: transparent;
  border-width: 0 !important;
}
.x-datepicker-month .x-btn .x-btn-tc, .x-datepicker-month .x-btn .x-btn-tl, .x-datepicker-month .x-btn .x-btn-tr, .x-datepicker-month .x-btn .x-btn-mc, .x-datepicker-month .x-btn .x-btn-ml, .x-datepicker-month .x-btn .x-btn-mr, .x-datepicker-month .x-btn .x-btn-bc, .x-datepicker-month .x-btn .x-btn-bl, .x-datepicker-month .x-btn .x-btn-br {
  background: transparent;
  border-width: 0 !important;
}
.x-datepicker-month .x-btn-inner {
  color: #0097BA;
}
.x-datepicker-month .x-btn-split-right {
  background-image: url(images/datepicker/month-arrow.png);
  padding-right: 8px;
}
/* line 83, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
/* line 88, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
/* line 94, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker-column-header {
  width: 30px;
  color: black;
  font: bold 13px helvetica, arial, verdana, sans-serif;
  text-align: right;
  background-image: none;
  background-color: white;
}
/* line 113, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker-column-header-inner {
  line-height: 25px;
  padding: 0 9px 0 0;
}
/* line 118, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker-cell {
  text-align: right;
  border-width: 1px;
  border-style: solid;
  border-color: white;
}
/* line 128, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker-date {
  padding: 0 7px 0 0;
  font: normal 13px helvetica, arial, verdana, sans-serif;
  color: black;
  cursor: pointer;
  line-height: 23px;
}
/* line 138, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
a.x-datepicker-date:hover {
  color: black;
  background-color: #eaf3fa;
}
/* line 143, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker-selected {
  border-style: solid;
  border-color: #0097BA;
}
.x-datepicker-selected .x-datepicker-date {
  background-color: #d6e8f6;
  font-weight: bold;
}
/* line 146, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
/* line 152, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker-today {
  border-color: darkred;
  border-style: solid;
}
/* line 159, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker-prevday .x-datepicker-date, .x-datepicker-nextday .x-datepicker-date {
  color: #bfbfbf;
}
/* line 166, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker-disabled a.x-datepicker-date {
  background-color: #eeeeee;
  cursor: default;
  color: gray;
}
.x-datepicker-disabled a.x-datepicker-date:hover {
  background-color: #eeeeee;
}
/* line 174, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
/* line 179, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker-footer, .x-monthpicker-buttons {
  padding: 3px 0;
  background-image: none;
  background-color: #f5f5f5;
  text-align: center;
}
/* line 195, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-datepicker-footer .x-btn, .x-monthpicker-buttons .x-btn {
  margin: 0 3px 0 2px;
}
/* line 201, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-monthpicker {
  width: 212px;
  border-width: 1px;
  border-style: solid;
  border-color: #e1e1e1;
  background-color: white;
}
/* line 211, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-monthpicker-months {
  border-width: 0 1px 0 0;
  border-color: #e1e1e1;
  border-style: solid;
  width: 105px;
}
.x-monthpicker-months .x-monthpicker-item {
  width: 52px;
}
/* line 220, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
/* line 225, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-monthpicker-years {
  width: 105px;
}
.x-monthpicker-years .x-monthpicker-item {
  width: 52px;
}
/* line 228, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
/* line 233, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-monthpicker-item {
  margin: 5px 0 5px;
  font: normal 13px helvetica, arial, verdana, sans-serif;
  text-align: center;
}
/* line 239, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-monthpicker-item-inner {
  margin: 0 5px 0 5px;
  color: black;
  border-width: 1px;
  border-style: solid;
  border-color: white;
  line-height: 22px;
  cursor: pointer;
}
/* line 254, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
a.x-monthpicker-item-inner:hover {
  background-color: #eaf3fa;
}
/* line 258, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-monthpicker-selected {
  background-color: #d6e8f6;
  border-style: solid;
  border-color: #0097BA;
}
/* line 264, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-monthpicker-yearnav {
  height: 34px;
}
/* line 268, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-monthpicker-yearnav-button-ct {
  width: 52px;
}
/* line 272, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-monthpicker-yearnav-button {
  height: 12px;
  width: 12px;
  cursor: pointer;
  margin-top: 11px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  background-color: white;
}
/* line 289, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
a.x-monthpicker-yearnav-button:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
/* line 294, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-monthpicker-yearnav-next {
  background-image: url(images/datepicker/arrow-right.png);
  background-position: 0 0;
}
/* line 299, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-monthpicker-yearnav-next-over {
  background-position: 0 0;
}
/* line 303, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-monthpicker-yearnav-prev {
  background-image: url(images/datepicker/arrow-left.png);
  background-position: 0 0;
}
/* line 308, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-monthpicker-yearnav-prev-over {
  background-position: 0 0;
}
/* line 313, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x-monthpicker-small .x-monthpicker-item {
  margin: 2px 0 2px;
}
.x-monthpicker-small .x-monthpicker-item-inner {
  margin: 0 5px 0 5px;
}
.x-monthpicker-small .x-monthpicker-yearnav {
  height: 28px;
}
.x-monthpicker-small .x-monthpicker-yearnav-button {
  margin-top: 8px;
}
/* line 317, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
/* line 321, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
/* line 325, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */
.x-form-date-trigger {
  background-image: url(images/form/date-trigger.png);
}
/* line 1, ../../../ext-theme-neutral/sass/src/form/field/File.scss */
.x-form-file-wrap .x-form-text {
  color: gray;
}
/* line 1, ../../../ext-theme-neutral/sass/src/picker/Color.scss */
.x-color-picker {
  width: 192px;
  height: 120px;
  background-color: white;
  border-color: white;
  border-width: 0;
  border-style: solid;
}
/* line 10, ../../../ext-theme-neutral/sass/src/picker/Color.scss */
.x-color-picker-item {
  width: 24px;
  height: 24px;
  border-width: 1px;
  border-color: white;
  border-style: solid;
  background-color: white;
  cursor: pointer;
  padding: 2px;
}
/* line 20, ../../../ext-theme-neutral/sass/src/picker/Color.scss */
.x-content-box .x-color-picker-item {
  width: 18px;
  height: 18px;
}
/* line 28, ../../../ext-theme-neutral/sass/src/picker/Color.scss */
a.x-color-picker-item:hover, .x-color-picker-selected {
  border-color: #8bb8f3;
  background-color: #e6e6e6;
}
/* line 33, ../../../ext-theme-neutral/sass/src/picker/Color.scss */
/* line 38, ../../../ext-theme-neutral/sass/src/picker/Color.scss */
.x-color-picker-item-inner {
  line-height: 16px;
  border-color: #e1e1e1;
  border-width: 1px;
  border-style: solid;
}
/* line 1, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-btn-text {
  background: transparent no-repeat;
  background-image: url(images/editor/tb-sprite.png);
}
.x-html-editor-tb .x-edit-bold {
  background-position: 0 0;
  background-image: url(images/editor/tb-sprite.png);
}
/* line 7, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-menu-item div.x-edit-bold {
  background-position: 0 0;
  background-image: url(images/editor/tb-sprite.png);
}
/* line 13, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-edit-italic, .x-menu-item div.x-edit-italic {
  background-position: -16px 0;
  background-image: url(images/editor/tb-sprite.png);
}
/* line 19, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-edit-underline, .x-menu-item div.x-edit-underline {
  background-position: -32px 0;
  background-image: url(images/editor/tb-sprite.png);
}
/* line 25, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-edit-forecolor, .x-menu-item div.x-edit-forecolor {
  background-position: -160px 0;
  background-image: url(images/editor/tb-sprite.png);
}
/* line 31, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-edit-backcolor, .x-menu-item div.x-edit-backcolor {
  background-position: -176px 0;
  background-image: url(images/editor/tb-sprite.png);
}
/* line 37, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-edit-justifyleft, .x-menu-item div.x-edit-justifyleft {
  background-position: -112px 0;
  background-image: url(images/editor/tb-sprite.png);
}
/* line 43, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-edit-justifycenter, .x-menu-item div.x-edit-justifycenter {
  background-position: -128px 0;
  background-image: url(images/editor/tb-sprite.png);
}
/* line 49, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-edit-justifyright, .x-menu-item div.x-edit-justifyright {
  background-position: -144px 0;
  background-image: url(images/editor/tb-sprite.png);
}
/* line 55, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-edit-insertorderedlist, .x-menu-item div.x-edit-insertorderedlist {
  background-position: -80px 0;
  background-image: url(images/editor/tb-sprite.png);
}
/* line 61, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-edit-insertunorderedlist, .x-menu-item div.x-edit-insertunorderedlist {
  background-position: -96px 0;
  background-image: url(images/editor/tb-sprite.png);
}
/* line 67, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-edit-increasefontsize, .x-menu-item div.x-edit-increasefontsize {
  background-position: -48px 0;
  background-image: url(images/editor/tb-sprite.png);
}
/* line 73, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-edit-decreasefontsize, .x-menu-item div.x-edit-decreasefontsize {
  background-position: -64px 0;
  background-image: url(images/editor/tb-sprite.png);
}
/* line 79, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-edit-sourceedit, .x-menu-item div.x-edit-sourceedit {
  background-position: -192px 0;
  background-image: url(images/editor/tb-sprite.png);
}
/* line 85, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-edit-createlink, .x-menu-item div.x-edit-createlink {
  background-position: -208px 0;
  background-image: url(images/editor/tb-sprite.png);
}
/* line 90, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
  padding: 5px;
  padding-bottom: 1px;
}
/* line 95, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-tb .x-font-select {
  font-size: 13px;
  font-family: inherit;
}
/* line 100, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x-html-editor-wrap textarea {
  font: normal 13px helvetica, arial, verdana, sans-serif;
  background-color: white;
  resize: none;
}
/* line 1, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-body {
  background: white;
  border-width: 1px;
  border-style: solid;
  border-color: silver;
}
/* line 8, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-empty {
  padding: 10px;
  color: gray;
  background-color: white;
  font: normal 13px helvetica, arial, verdana, sans-serif;
}
/* line 15, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-cell {
  font: normal 13px/15px helvetica, arial, verdana, sans-serif;
  background-color: white;
  border-color: #ededed;
  border-style: solid;
}
/* line 26, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-row-alt .x-grid-td {
  background-color: #fafafa;
}
/* line 30, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-row-before-over .x-grid-td, .x-grid-row-over .x-grid-td {
  border-bottom-style: solid;
  border-bottom-color: #e2eff8;
}
/* line 35, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
/* line 40, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-row-before-selected .x-grid-td, .x-grid-row-selected .x-grid-td {
  border-bottom-style: solid;
  border-bottom-color: #c1ddf1;
}
/* line 45, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
/* line 50, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-row-before-focused .x-grid-td {
  border-bottom-style: solid;
  border-bottom-color: #e2eff8;
}
/* line 58, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-row-focused .x-grid-td, .x-grid-row-over .x-grid-td {
  background-color: #e2eff8;
}
/* line 65, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
/* line 73, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-row-selected .x-grid-td {
  background-color: #c1ddf1;
}
/* line 82, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-row-focused .x-grid-td {
  border-bottom-style: solid;
  border-bottom-color: #e2eff8;
}
/* line 96, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-with-row-lines .x-grid-row-focused-first .x-grid-td {
  border-top: 1px solid #e2eff8;
}
/* line 103, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-row-selected .x-grid-row-summary .x-grid-td {
  border-bottom-color: #c1ddf1;
  border-top-width: 0;
}
/* line 108, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-row-focused .x-grid-row-summary .x-grid-td {
  border-bottom-color: #e2eff8;
  border-top-width: 0;
}
/* line 115, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-with-row-lines .x-grid-td {
  border-bottom-width: 1px;
}
.x-grid-with-row-lines .x-grid-table {
  border-top: 1px solid white;
}
.x-grid-with-row-lines .x-grid-table-over-first {
  border-top-style: solid;
  border-top-color: #e2eff8;
}
.x-grid-with-row-lines .x-grid-table-selected-first {
  border-top-style: solid;
  border-top-color: #c1ddf1;
}
.x-grid-with-row-lines .x-grid-table-focused-first {
  border-top-style: solid;
  border-top-color: #e2eff8;
}
/* line 121, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
/* line 125, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
/* line 130, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
/* line 143, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
/* line 149, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-cell-inner {
  text-overflow: ellipsis;
  padding: 5px 10px 4px 10px;
}
/* line 178, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-cell-special {
  border-color: #ededed;
  border-style: solid;
  border-right-width: 1px 0;
}
/* line 228, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-dirty-cell {
  background: url(images/grid/dirty.png) no-repeat 0 0;
}
/* line 241, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-row .x-grid-cell-selected {
  background-color: #c1ddf1;
}
/* line 247, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-with-col-lines .x-grid-cell {
  border-right-width: 1px;
}
/* line 259, ../../../ext-theme-neutral/sass/src/panel/Table.scss */
.x-grid-resize-marker {
  width: 1px;
  background-color: #0f0f0f;
}
/* line 1, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */
.x-grid-drop-indicator {
  position: absolute;
  height: 1px;
  line-height: 0px;
  background-color: #77BC71;
  overflow: visible;
  pointer-events: none;
}
.x-grid-drop-indicator .x-grid-drop-indicator-left {
  position: absolute;
  top: -8px;
  left: -12px;
  background-image: url(images/grid/dd-insert-arrow-right.png);
  height: 16px;
  width: 16px;
}
.x-grid-drop-indicator .x-grid-drop-indicator-right {
  position: absolute;
  top: -8px;
  right: -11px;
  background-image: url(images/grid/dd-insert-arrow-left.png);
  height: 16px;
  width: 16px;
}
/* line 9, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */
/* line 18, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */
/* line 29, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */
.x-ie6 .x-grid-drop-indicator-left {
  background-image: url(images/grid/dd-insert-arrow-right.png);
}
.x-ie6 .x-grid-drop-indicator-right {
  background-image: url(images/grid/dd-insert-arrow-left.png);
}
/* line 33, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */
/* line 2, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */
.col-move-top, .col-move-bottom {
  width: 9px;
  height: 9px;
}
/* line 7, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */
.col-move-top {
  background-image: url(images/grid/col-move-top.png);
}
/* line 11, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */
.col-move-bottom {
  background-image: url(images/grid/col-move-bottom.png);
}
/* line 1, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */
.x-grid-header-ct {
  border: 1px solid #0097BA;
  border-bottom-color: #f5f5f5;
  background-color: #f5f5f5;
}
/* line 14, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */
.x-accordion-item .x-grid-header-ct {
  border-width: 0 0 1px !important;
}
.x-accordion-item .x-grid-header-ct-hidden {
  border: 0 !important;
}
/* line 19, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */
/* line 28, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */
.x-grid-body {
  border-top-color: silver;
}
/* line 32, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */
.x-hmenu-sort-asc .x-menu-item-icon {
  background-image: url(images/grid/hmenu-asc.png);
}
/* line 36, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */
.x-hmenu-sort-desc .x-menu-item-icon {
  background-image: url(images/grid/hmenu-desc.png);
}
/* line 40, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */
.x-cols-icon .x-menu-item-icon {
  background-image: url(images/grid/columns.png);
}
/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x-column-header {
  border-right: 1px solid silver;
  color: #666666;
  font: bold 13px/15px helvetica, arial, verdana, sans-serif;
  background-color: #f5f5f5;
}
/* line 24, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x-group-sub-header {
  background: transparent;
  border-top: 1px solid silver;
}
.x-group-sub-header .x-column-header-inner {
  padding: 6px 10px 7px 10px;
}
/* line 29, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
/* line 34, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x-column-header-inner {
  padding: 7px 10px 7px 10px;
  text-overflow: ellipsis;
}
/* line 42, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x-column-header-over, .x-column-header-sort-ASC, .x-column-header-sort-DESC {
  background-image: none;
  background-color: #eef6fb;
}
/* line 70, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x-column-header-open {
  background-color: #eef6fb;
}
.x-column-header-open .x-column-header-trigger {
  background-color: #dfeaf2;
}
/* line 73, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
/* line 78, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x-column-header-trigger {
  width: 18px;
  cursor: pointer;
  background-color: transparent;
  background-position: center center;
}
/* line 96, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x-column-header-align-right .x-column-header-text {
  margin-right: 12px;
}
/* line 110, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x-column-header-sort-ASC .x-column-header-text, .x-column-header-sort-DESC .x-column-header-text {
  padding-right: 17px;
  background-position: right center;
}
/* line 127, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x-column-header-sort-ASC .x-column-header-text {
  background-image: url(images/grid/sort_asc.png);
}
/* line 130, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x-column-header-sort-DESC .x-column-header-text {
  background-image: url(images/grid/sort_desc.png);
}
/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */
.x-grid-cell-inner-action-col {
  padding: 4px 4px 4px 4px;
}
/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */
.x-action-col-cell .x-item-disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
}
/* line 16, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */
.x-action-col-icon {
  height: 16px;
  width: 16px;
  cursor: pointer;
}
/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */
.x-grid-cell-inner-checkcolumn {
  padding: 5px 10px 4px 10px;
}
/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */
.x-grid-checkcolumn {
  width: 15px;
  height: 15px;
  background: url(images/form/checkbox.png) 0 0 no-repeat;
}
/* line 17, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */
.x-item-disabled .x-grid-checkcolumn {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
}
/* line 22, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */
.x-grid-checkcolumn-checked {
  background-position: 0 -15px;
}
/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/RowNumberer.scss */
.x-grid-cell-inner-row-numberer {
  padding: 5px 5px 4px 3px;
}
/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
.x-grid-group-hd {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: silver;
  padding: 8px 4px 8px 4px;
  background: #f5f5f5;
  cursor: pointer;
}
/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
.x-grid-group-hd-not-collapsible {
  cursor: default;
}
/* line 15, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
.x-grid-group-hd-collapsible .x-grid-group-title {
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url(images/grid/group-collapse.png);
  padding: 0 0 0 17px;
}
/* line 30, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
.x-grid-group-title {
  color: #666666;
  font: bold 13px/15px helvetica, arial, verdana, sans-serif;
}
/* line 36, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
.x-grid-group-hd-collapsed .x-grid-group-title, .x-grid-group-collapsed .x-grid-group-title {
  background-image: url(images/grid/group-expand.png);
}
/* line 41, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
/* line 45, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
.x-group-by-icon, .x-show-groups-icon {
  background-image: url(images/grid/group-by.png);
}
/* line 49, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */
.x-grid-rowbody {
  font: normal 13px/15px helvetica, arial, verdana, sans-serif;
  padding: 5px 10px 5px 10px;
}
/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowWrap.scss */
.x-grid-rowwrap {
  border-color: #ededed;
  border-style: solid;
}
/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */
.x-summary-bottom {
  border-bottom-color: #f5f5f5;
}
/* line 5, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */
.x-docked-summary {
  border-width: 1px;
  border-color: #0097BA;
  border-style: solid;
}
.x-docked-summary .x-grid-table {
  width: 100%;
}
/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */
/* line 18, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */
.x-grid-row-summary .x-grid-cell, .x-grid-row-summary .x-grid-rowwrap, .x-grid-row-summary .x-grid-cell-rowbody {
  border-color: #ededed;
  background-color: transparent !important;
  border-top-width: 0;
  font: normal 13px/15px helvetica, arial, verdana, sans-serif;
}
/* line 26, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */
.x-grid-with-row-lines .x-grid-table-summary {
  border: 0;
}
/* line 1, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
.x-grid-locked .x-grid-inner-locked {
  border-width: 0 1px 0 0;
  border-style: solid;
}
/* line 17, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
.x-grid-inner-locked .x-column-header-last, .x-grid-inner-locked .x-grid-cell-last {
  border-right-width: 0 !important;
}
/* line 39, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
.x-hmenu-lock .x-menu-item-icon {
  background-image: url(images/grid/hmenu-lock.png);
}
/* line 43, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
.x-hmenu-unlock .x-menu-item-icon {
  background-image: url(images/grid/hmenu-unlock.png);
}
/* line 4, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */
.x-grid-editor .x-form-text {
  font: normal 13px/15px helvetica, arial, verdana, sans-serif;
  padding: 4px 9px 3px 9px;
}
/* line 21, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */
.x-gecko .x-grid-editor .x-form-text {
  padding-left: 8px;
  padding-right: 8px;
}
/* line 58, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */
.x-grid-editor .x-form-display-field-body {
  height: 24px;
}
.x-grid-editor .x-form-display-field {
  font: normal 13px/15px helvetica, arial, verdana, sans-serif;
  padding: 5px 10px 4px 10px;
  text-overflow: ellipsis;
}
.x-grid-editor .x-form-action-col-field {
  padding: 4px 4px 4px 4px;
}
/* line 62, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */
/* line 73, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */
/* line 3, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */
.x-tree-cell-editor .x-form-text {
  padding-left: 3px;
  padding-right: 3px;
}
/* line 8, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */
.x-gecko .x-tree-cell-editor .x-form-text {
  padding-left: 2px;
  padding-right: 2px;
}
/* line 2, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x-grid-row-editor .x-field {
  margin: 0 3px 0 2px;
}
.x-grid-row-editor .x-form-display-field {
  padding: 5px 7px 4px 8px;
}
.x-grid-row-editor .x-form-action-col-field {
  padding: 4px 1px 4px 2px;
}
.x-grid-row-editor .x-form-text {
  padding: 4px 6px 3px 7px;
}
/* line 7, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
/* line 16, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
/* line 27, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
/* line 30, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x-gecko .x-grid-row-editor .x-form-text {
  padding-left: 6px;
  padding-right: 5px;
}
/* line 38, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x-grid-row-editor .x-panel-body {
  border-top: 1px solid #e1e1e1 !important;
  border-bottom: 1px solid #e1e1e1 !important;
  padding: 5px 0 5px 0;
  background-color: #dfeaf2;
}
/* line 48, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x-grid-with-col-lines .x-grid-row-editor .x-form-cb {
  margin-right: 1px;
}
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 5px 5px 5px 5px;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  background-color: #dfeaf2;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-mc {
  background-color: #dfeaf2;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-grid-row-editor-buttons-default-bottom {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo {
  font-family: th-0-0-5-5-0-1-1-1-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-tr, .x-grid-row-editor-buttons-default-bottom-br, .x-grid-row-editor-buttons-default-bottom-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-tl, .x-grid-row-editor-buttons-default-bottom-bl, .x-grid-row-editor-buttons-default-bottom-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-tc {
  height: 0;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-bc {
  height: 5px;
}
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-tl, .x-grid-row-editor-buttons-default-bottom-bl, .x-grid-row-editor-buttons-default-bottom-tr, .x-grid-row-editor-buttons-default-bottom-br, .x-grid-row-editor-buttons-default-bottom-tc, .x-grid-row-editor-buttons-default-bottom-bc, .x-grid-row-editor-buttons-default-bottom-ml, .x-grid-row-editor-buttons-default-bottom-mr {
  zoom: 1;
  background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-ml, .x-grid-row-editor-buttons-default-bottom-mr {
  zoom: 1;
  background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-bottom-mc {
  padding: 5px 1px 1px 1px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl, .x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-grid-row-editor-buttons-default-bottom:after {
  display: none;
  content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding: 5px 5px 5px 5px;
  border-width: 1px 1px 0 1px;
  border-style: solid;
  background-color: #dfeaf2;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-mc {
  background-color: #dfeaf2;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-grid-row-editor-buttons-default-top {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo {
  font-family: th-5-5-0-0-1-1-0-1-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-tr, .x-grid-row-editor-buttons-default-top-br, .x-grid-row-editor-buttons-default-top-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-tl, .x-grid-row-editor-buttons-default-top-bl, .x-grid-row-editor-buttons-default-top-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-tc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-bc {
  height: 0;
}
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-tl, .x-grid-row-editor-buttons-default-top-bl, .x-grid-row-editor-buttons-default-top-tr, .x-grid-row-editor-buttons-default-top-br, .x-grid-row-editor-buttons-default-top-tc, .x-grid-row-editor-buttons-default-top-bc, .x-grid-row-editor-buttons-default-top-ml, .x-grid-row-editor-buttons-default-top-mr {
  zoom: 1;
  background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-ml, .x-grid-row-editor-buttons-default-top-mr {
  zoom: 1;
  background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-grid-row-editor-buttons-default-top-mc {
  padding: 1px 1px 5px 1px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl, .x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-grid-row-editor-buttons-default-top:after {
  display: none;
  content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)";
}
/*</if slicer> */
/* /* line 97, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x-grid-row-editor-buttons-default-bottom {
  top: 35px;
}
/* line 103, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x-grid-row-editor-buttons-default-top {
  bottom: 35px;
}
/* line 108, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x-grid-row-editor-buttons {
  border-color: #e1e1e1;
}
/* line 112, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x-row-editor-update-button {
  margin-right: 3px;
}
/* line 115, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x-row-editor-cancel-button {
  margin-left: 2px;
}
/* line 131, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x-grid-row-editor-errors .x-tip-body {
  padding: 5px;
}
/* line 136, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x-grid-row-editor-errors-item {
  list-style: disc;
  margin-left: 15px;
}
/* line 1, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */
.x-grid-cell-inner-row-expander {
  padding: 7px 6px 6px 6px;
}
/* line 14, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */
.x-grid-row-expander {
  width: 11px;
  height: 11px;
  cursor: pointer;
  background-image: url(images/grid/group-collapse.png);
}
/* line 20, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */
.x-grid-row-collapsed .x-grid-row-expander {
  background-image: url(images/grid/group-expand.png);
}
/* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
.x-accordion-layout-ct {
  background-color: white;
  padding: 5px 5px 0;
}
/* line 6, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
.x-accordion-hd .x-panel-header-text-container {
  color: #FFF;
  font-weight: bold;
  font-family: helvetica, arial, verdana, sans-serif;
  text-transform: none;
}
/* line 13, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
.x-accordion-item {
  margin: 0 0 5px;
}
.x-accordion-item .x-accordion-hd {
  background: #87c5d4;
  border-top-color: white;
  padding: 8px 10px;
}
.x-accordion-item .x-accordion-hd-sibling-expanded {
  border-top-color: #0097BA;
}
.x-accordion-item .x-accordion-hd-last-collapsed {
  border-bottom-color: #87c5d4;
}
.x-accordion-item .x-accordion-body {
  border-width: 0;
}
/* line 16, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
/* line 22, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
/* line 26, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
/* line 30, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
/* line 37, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
.x-accordion-hd .x-tool-collapse-top, .x-accordion-hd .x-tool-collapse-bottom {
  background-position: 0 -272px;
}
.x-accordion-hd .x-tool-expand-top, .x-accordion-hd .x-tool-expand-bottom {
  background-position: 0 -256px;
}
.x-accordion-hd .x-tool-img {
  background-image: url(images/tools/tool-sprites-dark.png);
  background-color: transparent;
}
/* line 42, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
/* line 61, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x-collapse-el {
  cursor: pointer;
}
/* line 6, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x-layout-split-left, .x-layout-split-right {
  top: 50%;
  margin-top: -24px;
  width: 8px;
  height: 48px;
}
/* line 14, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x-layout-split-top, .x-layout-split-bottom {
  left: 50%;
  width: 48px;
  height: 8px;
  margin-left: -24px;
}
/* line 21, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x-layout-split-left {
  background-image: url(images/util/splitter/mini-left.png);
}
/* line 25, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x-layout-split-right {
  background-image: url(images/util/splitter/mini-right.png);
}
/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x-layout-split-top {
  background-image: url(images/util/splitter/mini-top.png);
}
/* line 45, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x-layout-split-bottom {
  background-image: url(images/util/splitter/mini-bottom.png);
}
/* line 50, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x-splitter-collapsed .x-layout-split-left {
  background-image: url(images/util/splitter/mini-right.png);
}
.x-splitter-collapsed .x-layout-split-right {
  background-image: url(images/util/splitter/mini-left.png);
}
.x-splitter-collapsed .x-layout-split-top {
  background-image: url(images/util/splitter/mini-bottom.png);
}
.x-splitter-collapsed .x-layout-split-bottom {
  background-image: url(images/util/splitter/mini-top.png);
}
/* line 54, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
/* line 74, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
/* line 79, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x-splitter-active {
  background-color: #b4b4b4;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}
.x-splitter-active .x-collapse-el {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
}
/* line 83, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
/* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Border.scss */
.x-border-layout-ct {
  background-color: #0097BA;
}
/* line 7, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu {
  border-style: solid;
  border-width: 1px;
  border-color: #e1e1e1;
}
/* line 14, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-body {
  background: white;
  padding: 0;
}
/* line 19, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-icon-separator {
  left: 22px;
  border-left: solid 1px #e1e1e1;
  background-color: white;
  width: 1px;
}
/* line 33, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-item {
  cursor: pointer;
}
/* line 46, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-item-indent {
  margin-left: 27px;
}
/* line 57, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-item-active {
  background-image: none;
  background-color: #d6e8f6;
  border-color: #0079d2;
}
/* line 75, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-nlg .x-menu-item-active {
  background: #d6e8f6 repeat-x left top;
  background-image: url(images/menu/menu-item-active-bg.gif);
}
/* line 82, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-item-link {
  line-height: 24px;
  padding: 0 4px 0 27px;
  display: inline-block;
}
/* line 98, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-right-check-item-text {
  padding-right: 22px;
}
/* line 108, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-item-icon {
  width: 16px;
  height: 16px;
  top: 5px;
  left: 3px;
  background-position: center center;
}
/* line 116, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-item-glyph {
  font-size: 16px;
  line-height: 16px;
  color: gray;
  opacity: 0.5;
}
/* line 132, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-ie8m .x-menu-item-glyph {
  color: #bfbfbf;
}
/* line 168, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-item-icon-right {
  width: 16px;
  height: 16px;
  top: 4px;
  right: 3px;
  background-position: center center;
}
/* line 183, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-item-text {
  font-size: 13px;
  color: black;
  cursor: pointer;
  margin-right: 16px;
}
/* line 201, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-item-checked .x-menu-item-icon, .x-menu-item-checked .x-menu-item-icon-right {
  background-image: url(images/menu/checked.png);
}
.x-menu-item-checked .x-menu-group-icon {
  background-image: url(images/menu/group-checked.png);
}
/* line 204, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
/* line 210, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-item-unchecked .x-menu-item-icon, .x-menu-item-unchecked .x-menu-item-icon-right {
  background-image: url(images/menu/unchecked.png);
}
.x-menu-item-unchecked .x-menu-group-icon {
  background-image: none;
}
/* line 213, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
/* line 218, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-item-separator {
  height: 1px;
  border-top: solid 1px #e1e1e1;
  background-color: white;
  margin: 2px 0;
  padding: 0;
}
/* line 226, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-item-arrow {
  width: 12px;
  height: 9px;
  top: 8px;
  right: 0;
  background-image: url(images/menu/menu-parent.png);
}
/* line 264, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-item-disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/* line 270, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-content-box .x-menu-icon-separator {
  width: 0px;
}
.x-content-box .x-menu-item-separator {
  height: 0px;
}
/* line 274, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
/* line 281, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-ie .x-menu-item-disabled .x-menu-item-icon {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.x-ie .x-menu-item-disabled .x-menu-item-text {
  background-color: transparent;
}
/* line 285, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
/* line 294, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-date-item {
  border-color: #99BBE8;
}
/* line 300, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-item .x-form-item-label {
  font-size: 13px;
  color: black;
}
/* line 306, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-scroll-top {
  height: 16px;
  background-image: url(images/menu/scroll-top.png);
}
/* line 310, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-scroll-bottom {
  height: 16px;
  background-image: url(images/menu/scroll-bottom.png);
}
/* line 316, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-scroll-top, .x-menu-scroll-bottom {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  background-color: white;
}
/* line 329, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-scroll-top-hover, .x-menu-scroll-bottom-hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
}
/* line 335, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x-menu-scroll-top-pressed, .x-menu-scroll-bottom-pressed {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-menu-item-link:after {
  display: none;
  content: "x-slicer:bg:url(images/menu/menu-item-active-bg.gif)";
}
/*</if slicer> */
/* /* line 1, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool {
  cursor: pointer;
}
/* line 5, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-img {
  overflow: hidden;
  width: 16px;
  height: 20px;
  background-image: url(images/tools/tool-sprites.png);
  margin: 0;
}
/* line 12, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool .x-tool-img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/* line 17, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-over .x-tool-img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
}
/* line 22, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-pressed .x-tool-img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
/* line 30, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-placeholder {
  visibility: hidden;
}
/* line 34, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-close {
  background-position: 0 0;
}
/* line 38, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-minimize {
  background-position: 0 -16px;
}
/* line 42, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-maximize {
  background-position: 0 -32px;
}
/* line 46, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-restore {
  background-position: 0 -48px;
}
/* line 50, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-toggle {
  background-position: 0 -64px;
}
/* line 53, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-panel-collapsed .x-tool-toggle {
  background-position: 0 -80px;
}
/* line 58, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-gear {
  background-position: 0 -96px;
}
/* line 62, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-prev {
  background-position: 0 -112px;
}
/* line 66, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-next {
  background-position: 0 -128px;
}
/* line 70, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-pin {
  background-position: 0 -144px;
}
/* line 74, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-unpin {
  background-position: 0 -160px;
}
/* line 78, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-right {
  background-position: 0 -176px;
}
/* line 82, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-left {
  background-position: 0 -192px;
}
/* line 86, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-down {
  background-position: 0 -208px;
}
/* line 90, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-up {
  background-position: 0 -224px;
}
/* line 94, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-refresh {
  background-position: 0 -240px;
}
/* line 98, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-plus {
  background-position: 0 -256px;
}
/* line 102, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-minus {
  background-position: 0 -272px;
}
/* line 106, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-search {
  background-position: 0 -288px;
}
/* line 110, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-save {
  background-position: 0 -304px;
}
/* line 114, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-help {
  background-position: 0 -320px;
}
/* line 118, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-print {
  background-position: 0 -336px;
}
/* line 122, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-expand {
  background-position: 0 -352px;
}
/* line 126, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-collapse {
  background-position: 0 -368px;
}
/* line 130, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-resize {
  background-position: 0 -384px;
}
/* line 134, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-move {
  background-position: 0 -400px;
}
/* line 139, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-expand-bottom, .x-tool-collapse-bottom {
  background-position: 0 -208px;
}
/* line 144, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-expand-top, .x-tool-collapse-top {
  background-position: 0 -224px;
}
/* line 149, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-expand-left, .x-tool-collapse-left {
  background-position: 0 -192px;
}
/* line 154, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x-tool-expand-right, .x-tool-collapse-right {
  background-position: 0 -176px;
}
/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-handle {
  position: absolute;
  z-index: 100;
  font-size: 1px;
  line-height: 6px;
  overflow: hidden;
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  background-color: #fff;
  border-radius: 6px;
}
/* line 18, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-collapsed .x-resizable-handle {
  display: none;
}
/* line 23, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-over .x-resizable-handle-north {
  cursor: n-resize;
}
.x-resizable-over .x-resizable-handle-south {
  cursor: s-resize;
}
.x-resizable-over .x-resizable-handle-east {
  cursor: e-resize;
}
.x-resizable-over .x-resizable-handle-west {
  cursor: w-resize;
}
.x-resizable-over .x-resizable-handle-southeast {
  cursor: se-resize;
}
.x-resizable-over .x-resizable-handle-northwest {
  cursor: nw-resize;
}
.x-resizable-over .x-resizable-handle-northeast {
  cursor: ne-resize;
}
.x-resizable-over .x-resizable-handle-southwest {
  cursor: sw-resize;
}
/* line 26, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
/* line 29, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
/* line 32, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
/* line 38, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
/* line 44, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
/* line 49, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-handle-east {
  width: 6px;
  height: 100%;
  right: 0;
  top: 0;
}
/* line 56, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-handle-south {
  width: 100%;
  height: 6px;
  left: 0;
  bottom: 0;
}
/* line 63, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-handle-west {
  width: 6px;
  height: 100%;
  left: 0;
  top: 0;
}
/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-handle-north {
  width: 100%;
  height: 6px;
  left: 0;
  top: 0;
}
/* line 77, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-handle-southeast {
  width: 6px;
  height: 6px;
  right: 0;
  bottom: 0;
  z-index: 101;
}
/* line 85, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-handle-northwest {
  width: 6px;
  height: 6px;
  left: 0;
  top: 0;
  z-index: 101;
}
/* line 93, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-handle-northeast {
  width: 6px;
  height: 6px;
  right: 0;
  top: 0;
  z-index: 101;
}
/* line 101, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-handle-southwest {
  width: 6px;
  height: 6px;
  left: 0;
  bottom: 0;
  z-index: 101;
}
/*IE rounding error */
/* line 111, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-ie .x-resizable-handle-east {
  margin-right: -1px;
  /*IE rounding error */
}
.x-ie .x-resizable-handle-south {
  margin-bottom: -1px;
}
/* line 115, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
/* line 122, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-pinned .x-resizable-handle, .x-resizable-over .x-resizable-handle {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
/* line 127, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-window .x-window-handle {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
/* line 131, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-window-collapsed .x-window-handle {
  display: none;
}
/* line 136, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-proxy {
  border: 1px dashed #3b5a82;
  position: absolute;
  overflow: hidden;
  z-index: 50000;
}
/* line 148, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-over .x-resizable-handle-east, .x-resizable-over .x-resizable-handle-west {
  background-image: url(images/sizer/e-handle.png);
}
.x-resizable-pinned .x-resizable-handle-east, .x-resizable-pinned .x-resizable-handle-west {
  background-image: url(images/sizer/e-handle.png);
}
/* line 154, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-over .x-resizable-handle-south, .x-resizable-over .x-resizable-handle-north {
  background-image: url(images/sizer/s-handle.png);
}
.x-resizable-pinned .x-resizable-handle-south, .x-resizable-pinned .x-resizable-handle-north {
  background-image: url(images/sizer/s-handle.png);
}
/* line 159, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-over .x-resizable-handle-southeast, .x-resizable-pinned .x-resizable-handle-southeast {
  background-position: top left;
  background-image: url(images/sizer/se-handle.png);
}
/* line 164, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-over .x-resizable-handle-northwest, .x-resizable-pinned .x-resizable-handle-northwest {
  background-position: bottom right;
  background-image: url(images/sizer/nw-handle.png);
}
/* line 169, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-over .x-resizable-handle-northeast, .x-resizable-pinned .x-resizable-handle-northeast {
  background-position: bottom left;
  background-image: url(images/sizer/ne-handle.png);
}
/* line 174, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x-resizable-over .x-resizable-handle-southwest, .x-resizable-pinned .x-resizable-handle-southwest {
  background-position: top right;
  background-image: url(images/sizer/sw-handle.png);
}
/* Horizontal styles */
/* line 2, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x-slider-horz {
  padding-left: 7px;
  background: no-repeat 0 -15px;
}
.x-slider-horz .x-slider-end {
  padding-right: 7px;
  background: no-repeat right -30px;
}
.x-slider-horz .x-slider-inner {
  height: 15px;
}
/* line 6, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
/* line 12, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
/* line 20, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x-ie6 .x-form-item .x-slider-horz, .x-ie7 .x-form-item .x-slider-horz, .x-quirks .x-ie .x-form-item .x-slider-horz {
  margin-top: 5px;
}
/* line 26, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x-slider-horz .x-slider-thumb {
  width: 15px;
  height: 15px;
  margin-left: -7px;
  background-image: url(images/slider/slider-thumb.png);
}
.x-slider-horz .x-slider-thumb-over {
  background-position: -15px -15px;
}
.x-slider-horz .x-slider-thumb-drag {
  background-position: -30px -30px;
}
/* line 33, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
/* line 37, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
/* Vertical styles */
/* line 60, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x-slider-vert {
  padding-top: 7px;
  background: no-repeat -30px 0;
}
.x-slider-vert .x-slider-end {
  padding-bottom: 7px;
  background: no-repeat -15px bottom;
  width: 15px;
}
.x-slider-vert .x-slider-inner {
  width: 15px;
}
.x-slider-vert .x-slider-thumb {
  width: 15px;
  height: 15px;
  margin-bottom: -7px;
  background-image: url(images/slider/slider-v-thumb.png);
}
.x-slider-vert .x-slider-thumb-over {
  background-position: -15px -15px;
}
.x-slider-vert .x-slider-thumb-drag {
  background-position: -30px -30px;
}
/* line 65, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
/* line 71, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
/* line 75, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
/* line 82, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
/* line 86, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
/* line 92, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x-slider-horz {
  background-image: url(images/slider/slider-bg.png);
}
.x-slider-horz .x-slider-end, .x-slider-horz .x-slider-inner {
  background-image: url(images/slider/slider-bg.png);
}
/* line 98, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x-slider-vert {
  background-image: url(images/slider/slider-v-bg.png);
}
.x-slider-vert .x-slider-end, .x-slider-vert .x-slider-inner {
  background-image: url(images/slider/slider-v-bg.png);
}
/**
 * * Creates a visual theme for a Tab
 * *
 * * @param {string} $ui
 * * The name of the UI being created. Can not included spaces or special punctuation
 * * (used in CSS class names).
 * *
 * * @param {color} [$ui-background-color=$tab-base-color]
 * * The background-color of Tabs
 * *
 * * @param {color} [$ui-background-color-over=$tab-base-color-over]
 * * The background-color of hovered Tabs
 * *
 * * @param {color} [$ui-background-color-active=$tab-base-color-active]
 * * The background-color of the active Tab
 * *
 * * @param {color} [$ui-background-color-disabled=$tab-base-color-disabled]
 * * The background-color of disabled Tabs
 * *
 * * @param {list} [$ui-border-radius=$tab-border-radius]
 * * The border-radius of Tabs
 * *
 * * @param {number} [$ui-border-width=$tab-border-width]
 * * The border-width of Tabs
 * *
 * * @param {number/list} [$ui-margin=$tab-margin]
 * * The border-width of Tabs
 * *
 * * @param {number/list} [$ui-padding=$tab-padding]
 * * The padding of Tabs
 * *
 * * @param {number/list} [$ui-text-padding=$tab-text-padding]
 * * The padding of the Tab's text element
 * *
 * * @param {color} [$ui-border-color=$tab-border-color]
 * * The border-color of Tabs
 * *
 * * @param {color} [$ui-border-color-over=$tab-border-color-over]
 * * The border-color of hovered Tabs
 * *
 * * @param {color} [$ui-border-color-active=$tab-border-color-active]
 * * The border-color of the active Tab
 * *
 * * @param {color} [$ui-border-color-disabled=$tab-border-color-disabled]
 * * The border-color of disabled Tabs
 * *
 * * @param {string} [$ui-cursor=$tab-cursor]
 * * The Tab cursor
 * *
 * * @param {string} [$ui-cursor-disabled=$tab-cursor-disabled]
 * * The cursor of disabled Tabs
 * *
 * * @param {number} [$ui-font-size=$tab-font-size]
 * * The font-size of Tabs
 * *
 * * @param {number} [$ui-font-size-over=$tab-font-size-over]
 * * The font-size of hovered Tabs
 * *
 * * @param {number} [$ui-font-size-active=$tab-font-size-active]
 * * The font-size of the active Tab
 * *
 * * @param {number} [$ui-font-size-disabled=$tab-font-size-disabled]
 * * The font-size of disabled Tabs
 * *
 * * @param {string} [$ui-font-weight=$tab-font-weight]
 * * The font-weight of Tabs
 * *
 * * @param {string} [$ui-font-weight-over=$tab-font-weight-over]
 * * The font-weight of hovered Tabs
 * *
 * * @param {string} [$ui-font-weight-active=$tab-font-weight-active]
 * * The font-weight of the active Tab
 * *
 * * @param {string} [$ui-font-weight-disabled=$tab-font-weight-disabled]
 * * The font-weight of disabled Tabs
 * *
 * * @param {string} [$ui-font-family=$tab-font-family]
 * * The font-family of Tabs
 * *
 * * @param {string} [$ui-font-family-over=$tab-font-family-over]
 * * The font-family of hovered Tabs
 * *
 * * @param {string} [$ui-font-family-active=$tab-font-family-active]
 * * The font-family of the active Tab
 * *
 * * @param {string} [$ui-font-family-disabled=$tab-font-family-disabled]
 * * The font-family of disabled Tabs
 * *
 * * @param {number} [$ui-line-height=$tab-line-height]
 * * The line-height of Tabs
 * *
 * * @param {color} [$ui-color=$tab-color]
 * * The text color of Tabs
 * *
 * * @param {color} [$ui-color-over=$tab-color-over]
 * * The text color of hovered Tabs
 * *
 * * @param {color} [$ui-color-active=$tab-color-active]
 * * The text color of the active Tab
 * *
 * * @param {color} [$ui-color-disabled=$tab-color-disabled]
 * * The text color of disabled Tabs
 * *
 * * @param {string/list} [$ui-background-gradient=$tab-background-gradient]
 * * The background-gradient for Tabs. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for 
 * * {@link Global_CSS#background-gradient}.
 * *
 * * @param {string/list} [$ui-background-gradient-over=$tab-background-gradient-over]
 * * The background-gradient for hovered Tabs. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for 
 * * {@link Global_CSS#background-gradient}.
 * *
 * * @param {string/list} [$ui-background-gradient-active=$tab-background-gradient-active]
 * * The background-gradient for the active Tab. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for 
 * * {@link Global_CSS#background-gradient}.
 * *
 * * @param {string/list} [$ui-background-gradient-disabled=$tab-background-gradient-disabled]
 * * The background-gradient for disabled Tabs. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for 
 * * {@link Global_CSS#background-gradient}.
 * *
 * * @param {number} [$ui-inner-border-width=$tab-inner-border-width]
 * * The inner border-width of Tabs
 * *
 * * @param {color} [$ui-inner-border-color=$tab-inner-border-color]
 * * The inner border-color of Tabs
 * *
 * * @param {number} [$ui-icon-width=$tab-icon-width]
 * * The width of the Tab close icon
 * *
 * * @param {number} [$ui-icon-height=$tab-icon-height]
 * * The height of the Tab close icon
 * *
 * * @param {number} [$ui-icon-spacing=$tab-icon-spacing]
 * * the space in between the text and the close button
 * *
 * * @param {list} [$ui-icon-background-position=$tab-icon-background-position]
 * * The background-position of Tab icons
 * *
 * * @param {color} [$ui-glyph-color=$tab-glyph-color]
 * * The color of Tab glyph icons
 * *
 * * @param {color} [$ui-glyph-color-over=$tab-glyph-color-over]
 * * The color of a Tab glyph icon when the Tab is hovered
 * *
 * * @param {color} [$ui-glyph-color-active=$tab-glyph-color-active]
 * * The color of a Tab glyph icon when the Tab is active
 * *
 * * @param {color} [$ui-glyph-color-disabled=$tab-glyph-color-disabled]
 * * The color of a Tab glyph icon when the Tab is disabled
 * *
 * * @param {number} [$ui-glyph-opacity=$tab-glyph-opacity]
 * * The opacity of a Tab glyph icon
 * *
 * * @param {number} [$ui-glyph-opacity-disabled=$tab-glyph-opacity-disabled]
 * * The opacity of a Tab glyph icon when the Tab is disabled
 * *
 * * @param {number} [$ui-opacity-disabled=$tab-opacity-disabled]
 * * opacity to apply to the tab's main element when the tab is disabled
 * *
 * * @param {number} [$ui-text-opacity-disabled=$tab-text-opacity-disabled]
 * * opacity to apply to the tab's text element when the tab is disabled
 * *
 * * @param {number} [$ui-icon-opacity-disabled=$tab-icon-opacity-disabled]
 * * opacity to apply to the tab's icon element when the tab is disabled
 * *
 * * @param {number} [$ui-closable-icon-width=$tab-closable-icon-width]
 * * The width of the Tab close icon
 * *
 * * @param {number} [$ui-closable-icon-height=$tab-closable-icon-height]
 * * The height of the Tab close icon
 * *
 * * @param {number} [$ui-closable-icon-top=$tab-closable-icon-top]
 * * The distance to offset the Tab close icon from the top of the tab
 * *
 * * @param {number} [$ui-closable-icon-right=$tab-closable-icon-right]
 * * The distance to offset the Tab close icon from the right of the tab
 * *
 * * @param {number} [$ui-closable-icon-spacing=$tab-closable-icon-spacing]
 * * The space in between the text and the close button
 * *
 * * @param {color} [$ui-border-bottom-color=$tabbar-strip-border-color]
 * * The bottom border color of inactive tabs.
 * *
 * * @member Ext.tab.Tab */
/**
 * * Creates a visual theme for a Tab Bar
 * *
 * * @param {string} $ui
 * * The name of the UI being created. Can not included spaces or special punctuation
 * * (used in CSS class names).
 * *
 * * @param {number} [$ui-strip-height=$tabbar-strip-height]
 * * The height of the Tab Bar strip
 * *
 * * @param {number/list} [$ui-strip-border-width=$tabbar-strip-border-width]
 * * The border-width of the Tab Bar strip
 * *
 * * @param {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width]
 * * The border-width of the {@link Ext.tab.Panel#plain plain} Tab Bar strip
 * *
 * * @param {color} [$ui-strip-border-color=$tabbar-strip-border-color]
 * * The border-color of the Tab Bar strip
 * *
 * * @param {color} [$ui-strip-background-color=$tabbar-strip-background-color]
 * * The background-color of the Tab Bar strip
 * *
 * * @param {number/list} [$ui-border-width=$tabbar-border-width]
 * * The border-width of the Tab Bar
 * *
 * * @param {color} [$ui-border-color=$tabbar-border-color]
 * * The border-color of the Tab Bar
 * *
 * * @param {number/list} [$ui-padding=$tabbar-padding]
 * * The padding of the Tab Bar
 * *
 * * @param {color} [$ui-background-color=$tabbar-background-color]
 * * The background color of the  Tab Bar
 * *
 * * @param {string/list} [$ui-background-gradient=$tabbar-background-gradient]
 * * The background-gradient of the Tab Bar. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for 
 * * {@link Global_CSS#background-gradient}.
 * *
 * * @param {number} [$ui-scroller-width=$tabbar-scroller-width]
 * * The width of the Tab Bar scrollers
 * *
 * * @param {string} [$ui-scroller-cursor=$tabbar-scroller-cursor]
 * * The cursor of the Tab Bar scrollers
 * *
 * * @param {string} [$ui-scroller-cursor-disabled=$tabbar-scroller-cursor-disabled]
 * * The cursor of disabled Tab Bar scrollers
 * *
 * * @param {number} [$ui-scroller-opacity=$tabbar-scroller-opacity]
 * * The opacity of Tab Bar scrollers
 * *
 * * @param {number} [$ui-scroller-opacity-over=$tabbar-scroller-opacity-over]
 * * The opacity of hovered Tab Bar scrollers
 * *
 * * @param {number} [$ui-scroller-opacity-pressed=$tabbar-scroller-opacity-pressed]
 * * The opacity of pressed Tab Bar scrollers
 * *
 * * @param {number} [$ui-scroller-opacity-disabled=$tabbar-scroller-opacity-disabled]
 * * The opacity of disabled Tab Bar scrollers
 * *
 * * @param {number} [$ui-tab-height]
 * * The height of tabs that will be used in this tabbar UI. The tabbar body is given
 * * a fixed height to leave room for the tabs, and so that the tabbar does not collapse
 * * when it does not contain any tabs.
 * *
 * * @member Ext.tab.Bar */
/**
 * * Creates a visual theme for a Tab Panel
 * *
 * * @param {string} $ui
 * * The name of the UI being created. Can not included spaces or special punctuation
 * * (used in CSS class names).
 * *
 * * @param {color} [$ui-tab-background-color=$tab-base-color]
 * * The background-color of Tabs
 * *
 * * @param {color} [$ui-tab-background-color-over=$tab-base-color-over]
 * * The background-color of hovered Tabs
 * *
 * * @param {color} [$ui-tab-background-color-active=$tab-base-color-active]
 * * The background-color of the active Tab
 * *
 * * @param {color} [$ui-tab-background-color-disabled=$tab-base-color-disabled]
 * * The background-color of disabled Tabs
 * *
 * * @param {list} [$ui-tab-border-radius=$tab-border-radius]
 * * The border-radius of Tabs
 * *
 * * @param {number} [$ui-tab-border-width=$tab-border-width]
 * * The border-width of Tabs
 * *
 * * @param {number/list} [$ui-tab-margin=$tab-margin]
 * * The border-width of Tabs
 * *
 * * @param {number/list} [$ui-tab-padding=$tab-padding]
 * * The padding of Tabs
 * *
 * * @param {number/list} [$ui-tab-text-padding=$tab-text-padding]
 * * The padding of the Tab's text element
 * *
 * * @param {color} [$ui-tab-border-color=$tab-border-color]
 * * The border-color of Tabs
 * *
 * * @param {color} [$ui-tab-border-color-over=$tab-border-color-over]
 * * The border-color of hovered Tabs
 * *
 * * @param {color} [$ui-tab-border-color-active=$tab-border-color-active]
 * * The border-color of the active Tab
 * *
 * * @param {color} [$ui-tab-border-color-disabled=$tab-border-color-disabled]
 * * The border-color of disabled Tabs
 * *
 * * @param {string} [$ui-tab-cursor=$tab-cursor]
 * * The Tab cursor
 * *
 * * @param {string} [$ui-tab-cursor-disabled=$tab-cursor-disabled]
 * * The cursor of disabled Tabs
 * *
 * * @param {number} [$ui-tab-font-size=$tab-font-size]
 * * The font-size of Tabs
 * *
 * * @param {number} [$ui-tab-font-size-over=$tab-font-size-over]
 * * The font-size of hovered Tabs
 * *
 * * @param {number} [$ui-tab-font-size-active=$tab-font-size-active]
 * * The font-size of the active Tab
 * *
 * * @param {number} [$ui-tab-font-size-disabled=$tab-font-size-disabled]
 * * The font-size of disabled Tabs
 * *
 * * @param {string} [$ui-tab-font-weight=$tab-font-weight]
 * * The font-weight of Tabs
 * *
 * * @param {string} [$ui-tab-font-weight-over=$tab-font-weight-over]
 * * The font-weight of hovered Tabs
 * *
 * * @param {string} [$ui-tab-font-weight-active=$tab-font-weight-active]
 * * The font-weight of the active Tab
 * *
 * * @param {string} [$ui-tab-font-weight-disabled=$tab-font-weight-disabled]
 * * The font-weight of disabled Tabs
 * *
 * * @param {string} [$ui-tab-font-family=$tab-font-family]
 * * The font-family of Tabs
 * *
 * * @param {string} [$ui-tab-font-family-over=$tab-font-family-over]
 * * The font-family of hovered Tabs
 * *
 * * @param {string} [$ui-tab-font-family-active=$tab-font-family-active]
 * * The font-family of the active Tab
 * *
 * * @param {string} [$ui-tab-font-family-disabled=$tab-font-family-disabled]
 * * The font-family of disabled Tabs
 * *
 * * @param {number} [$ui-tab-line-height=$tab-line-height]
 * * The line-height of Tabs
 * *
 * * @param {color} [$ui-tab-color=$tab-color]
 * * The text color of Tabs
 * *
 * * @param {color} [$ui-tab-color-over=$tab-color-over]
 * * The text color of hovered Tabs
 * *
 * * @param {color} [$ui-tab-color-active=$tab-color-active]
 * * The text color of the active Tab
 * *
 * * @param {color} [$ui-tab-color-disabled=$tab-color-disabled]
 * * The text color of disabled Tabs
 * *
 * * @param {string/list} [$ui-tab-background-gradient=$tab-background-gradient]
 * * The background-gradient for Tabs. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for 
 * * {@link Global_CSS#background-gradient}.
 * *
 * * @param {string/list} [$ui-tab-background-gradient-over=$tab-background-gradient-over]
 * * The background-gradient for hovered Tabs. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for 
 * * {@link Global_CSS#background-gradient}.
 * *
 * * @param {string/list} [$ui-tab-background-gradient-active=$tab-background-gradient-active]
 * * The background-gradient for the active Tab. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for 
 * * {@link Global_CSS#background-gradient}.
 * *
 * * @param {string/list} [$ui-tab-background-gradient-disabled=$tab-background-gradient-disabled]
 * * The background-gradient for disabled Tabs. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for 
 * * {@link Global_CSS#background-gradient}.
 * *
 * * @param {number} [$ui-tab-inner-border-width=$tab-inner-border-width]
 * * The inner border-width of Tabs
 * *
 * * @param {color} [$ui-tab-inner-border-color=$tab-inner-border-color]
 * * The inner border-color of Tabs
 * *
 * * @param {number} [$ui-tab-icon-width=$tab-icon-width]
 * * The width of the Tab close icon
 * *
 * * @param {number} [$ui-tab-icon-height=$tab-icon-height]
 * * The height of the Tab close icon
 * *
 * * @param {number} [$ui-tab-icon-spacing=$tab-icon-spacing]
 * * the space in between the text and the close button
 * *
 * * @param {list} [$ui-tab-icon-background-position=$tab-icon-background-position]
 * * The background-position of Tab icons
 * *
 * * @param {color} [$ui-tab-glyph-color=$tab-glyph-color]
 * * The color of Tab glyph icons
 * *
 * * @param {color} [$ui-tab-glyph-color-over=$tab-glyph-color-over]
 * * The color of a Tab glyph icon when the Tab is hovered
 * *
 * * @param {color} [$ui-tab-glyph-color-active=$tab-glyph-color-active]
 * * The color of a Tab glyph icon when the Tab is active
 * *
 * * @param {color} [$ui-tab-glyph-color-disabled=$tab-glyph-color-disabled]
 * * The color of a Tab glyph icon when the Tab is disabled
 * *
 * * @param {number} [$ui-tab-glyph-opacity=$tab-glyph-opacity]
 * * The opacity of a Tab glyph icon
 * *
 * * @param {number} [$ui-tab-glyph-opacity-disabled=$tab-glyph-opacity-disabled]
 * * The opacity of a Tab glyph icon when the Tab is disabled
 * *
 * * @param {number} [$ui-tab-opacity-disabled=$tab-opacity-disabled]
 * * opacity to apply to the tab's main element when the tab is disabled
 * *
 * * @param {number} [$ui-tab-text-opacity-disabled=$tab-text-opacity-disabled]
 * * opacity to apply to the tab's text element when the tab is disabled
 * *
 * * @param {number} [$ui-tab-icon-opacity-disabled=$tab-icon-opacity-disabled]
 * * opacity to apply to the tab's icon element when the tab is disabled
 * *
 * * @param {number} [$ui-strip-height=$tabbar-strip-height]
 * * The height of the Tab Bar strip
 * *
 * * @param {number/list} [$ui-strip-border-width=$tabbar-strip-border-width]
 * * The border-width of the Tab Bar strip
 * *
 * * @param {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width]
 * * The border-width of the {@link Ext.tab.Panel#plain plain} Tab Bar strip
 * *
 * * @param {color} [$ui-strip-border-color=$tabbar-strip-border-color]
 * * The border-color of the Tab Bar strip
 * *
 * * @param {color} [$ui-strip-background-color=$tabbar-strip-background-color]
 * * The background-color of the Tab Bar strip
 * *
 * * @param {number/list} [$ui-bar-border-width=$tabbar-border-width]
 * * The border-width of the Tab Bar
 * *
 * * @param {color} [$ui-bar-border-color=$tabbar-border-color]
 * * The border-color of the Tab Bar
 * *
 * * @param {number/list} [$ui-bar-padding=$tabbar-padding]
 * * The padding of the Tab Bar
 * *
 * * @param {color} [$ui-bar-background-color=$tabbar-background-color]
 * * The background color of the  Tab Bar
 * *
 * * @param {string/list} [$ui-bar-background-gradient=$tabbar-background-gradient]
 * * The background-gradient of the Tab Bar. Can be either the name of a predefined gradient
 * * or a list of color stops. Used as the `$type` parameter for 
 * * {@link Global_CSS#background-gradient}.
 * *
 * * @param {number} [$ui-bar-scroller-width=$tabbar-scroller-width]
 * * The width of the Tab Bar scrollers
 * *
 * * @param {string} [$ui-bar-scroller-cursor=$tabbar-scroller-cursor]
 * * The cursor of the Tab Bar scrollers
 * *
 * * @param {string} [$ui-bar-scroller-cursor-disabled=$tabbar-scroller-cursor-disabled]
 * * The cursor of disabled Tab Bar scrollers
 * *
 * * @param {number} [$ui-bar-scroller-opacity=$tabbar-scroller-opacity]
 * * The opacity of Tab Bar scrollers
 * *
 * * @param {number} [$ui-bar-scroller-opacity-over=$tabbar-scroller-opacity-over]
 * * The opacity of hovered Tab Bar scrollers
 * *
 * * @param {number} [$ui-bar-scroller-opacity-pressed=$tabbar-scroller-opacity-pressed]
 * * The opacity of pressed Tab Bar scrollers
 * *
 * * @param {number} [$ui-bar-scroller-opacity-disabled=$tabbar-scroller-opacity-disabled]
 * * The opacity of disabled Tab Bar scrollers
 * *
 * * @param {number} [$ui-tab-closable-icon-width=$tab-closable-icon-width]
 * * The width of the Tab close icon
 * *
 * * @param {number} [$ui-tab-closable-icon-height=$tab-closable-icon-height]
 * * The height of the Tab close icon
 * *
 * * @param {number} [$ui-tab-closable-icon-top=$tab-closable-icon-top]
 * * The distance to offset the Tab close icon from the top of the tab
 * *
 * * @param {number} [$ui-tab-closable-icon-right=$tab-closable-icon-right]
 * * The distance to offset the Tab close icon from the right of the tab
 * *
 * * @param {number} [$ui-tab-closable-icon-spacing=$tab-closable-icon-spacing]
 * * the space in between the text and the close button
 * *
 * * @member Ext.tab.Panel */
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding: 8px 12px 7px 12px;
  border-width: 0 0 0 0;
  border-style: solid;
  background-color: #0097BA;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-mc {
  background-color: #4b9cd7;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-tab-default-top {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-tab-default-top-frameInfo {
  font-family: th-3-3-0-0-0-0-0-0-8-12-7-12;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-tr, .x-tab-default-top-br, .x-tab-default-top-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-tl, .x-tab-default-top-bl, .x-tab-default-top-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-tc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-bc {
  height: 0;
}
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-tl, .x-tab-default-top-bl, .x-tab-default-top-tr, .x-tab-default-top-br, .x-tab-default-top-tc, .x-tab-default-top-bc, .x-tab-default-top-ml, .x-tab-default-top-mr {
  zoom: 1;
  background-image: url(images/tab/tab-default-top-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-ml, .x-tab-default-top-mr {
  zoom: 1;
  background-image: url(images/tab/tab-default-top-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-top-mc {
  padding: 5px 9px 7px 9px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-tab-default-top-tl, .x-strict .x-ie7 .x-tab-default-top-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tab-default-top:after {
  display: none;
  content: "x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 8px 12px 7px 12px;
  border-width: 0 0 0 0;
  border-style: solid;
  background-color: #4b9cd7;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-mc {
  background-color: #4b9cd7;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-tab-default-bottom {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-tab-default-bottom-frameInfo {
  font-family: th-0-0-3-3-0-0-0-0-8-12-7-12;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-tr, .x-tab-default-bottom-br, .x-tab-default-bottom-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-tl, .x-tab-default-bottom-bl, .x-tab-default-bottom-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-tc {
  height: 0;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-bc {
  height: 3px;
}
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-tl, .x-tab-default-bottom-bl, .x-tab-default-bottom-tr, .x-tab-default-bottom-br, .x-tab-default-bottom-tc, .x-tab-default-bottom-bc, .x-tab-default-bottom-ml, .x-tab-default-bottom-mr {
  zoom: 1;
  background-image: url(images/tab/tab-default-bottom-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-ml, .x-tab-default-bottom-mr {
  zoom: 1;
  background-image: url(images/tab/tab-default-bottom-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-bottom-mc {
  padding: 8px 9px 4px 9px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-tab-default-bottom-tl, .x-strict .x-ie7 .x-tab-default-bottom-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tab-default-bottom:after {
  display: none;
  content: "x-slicer:corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding: 8px 12px 7px 12px;
  border-width: 0 0 0 0;
  border-style: solid;
  background-color: #4b9cd7;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-mc {
  background-color: #4b9cd7;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-tab-default-left {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-tab-default-left-frameInfo {
  font-family: th-3-3-0-0-0-0-0-0-8-12-7-12;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-tr, .x-tab-default-left-br, .x-tab-default-left-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-tl, .x-tab-default-left-bl, .x-tab-default-left-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-tc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-bc {
  height: 0;
}
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-tl, .x-tab-default-left-bl, .x-tab-default-left-tr, .x-tab-default-left-br, .x-tab-default-left-tc, .x-tab-default-left-bc, .x-tab-default-left-ml, .x-tab-default-left-mr {
  zoom: 1;
  background-image: url(images/tab/tab-default-top-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-ml, .x-tab-default-left-mr {
  zoom: 1;
  background-image: url(images/tab/tab-default-top-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-left-mc {
  padding: 5px 9px 7px 9px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-tab-default-left-tl, .x-strict .x-ie7 .x-tab-default-left-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tab-default-left:after {
  display: none;
  content: "x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding: 8px 12px 7px 12px;
  border-width: 0 0 0 0;
  border-style: solid;
  background-color: #4b9cd7;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-mc {
  background-color: #4b9cd7;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-tab-default-right {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-tab-default-right-frameInfo {
  font-family: th-3-3-0-0-0-0-0-0-8-12-7-12;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-tr, .x-tab-default-right-br, .x-tab-default-right-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-tl, .x-tab-default-right-bl, .x-tab-default-right-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-tc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-bc {
  height: 0;
}
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-tl, .x-tab-default-right-bl, .x-tab-default-right-tr, .x-tab-default-right-br, .x-tab-default-right-tc, .x-tab-default-right-bc, .x-tab-default-right-ml, .x-tab-default-right-mr {
  zoom: 1;
  background-image: url(images/tab/tab-default-top-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-ml, .x-tab-default-right-mr {
  zoom: 1;
  background-image: url(images/tab/tab-default-top-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-tab-default-right-mc {
  padding: 5px 9px 7px 9px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-tab-default-right-tl, .x-strict .x-ie7 .x-tab-default-right-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tab-default-right:after {
  display: none;
  content: "x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)";
}
/*</if slicer> */
/* /* line 307, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default {
  border-color: #0097BA;
  margin: 0 1px 0 0;
  cursor: pointer;
}
.x-tab-default .x-tab-inner {
  font-size: 13px;
  font-weight: bold;
  font-family: helvetica, arial, verdana, sans-serif;
  color: white;
  line-height: 16px;
}
.x-tab-default .x-tab-icon-el {
  width: 16px;
  height: 16px;
  line-height: 16px;
  background-position: center center;
}
.x-tab-default .x-tab-glyph {
  font-size: 16px;
  color: white;
  opacity: 0.5;
}
/* line 312, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 322, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 329, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 343, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-ie8m .x-tab-default .x-tab-glyph {
  color: #a5cdeb;
}
/* line 351, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default {
  padding-left: 0;
}
.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button {
  padding-left: 12px;
}
.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el {
  left: 12px;
}
/* line 354, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 358, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 366, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-icon .x-tab-inner {
  width: 16px;
}
/* line 384, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-left {
  margin: 0 0 0 1px;
}
/* line 396, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-top, .x-tab-default-left, .x-tab-default-right {
  border-bottom: 0 solid #0097BA;
}
/* line 417, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-bottom {
  border-top: 0 solid #0097BA;
}
/* line 438, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-left {
  -webkit-transform: rotate(270deg);
  -webkit-transform-origin: 100% 0;
  -moz-transform: rotate(270deg);
  -moz-transform-origin: 100% 0;
  -o-transform: rotate(270deg);
  -o-transform-origin: 100% 0;
  transform: rotate(270deg);
  transform-origin: 100% 0;
}
/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */
.x-ie9m .x-tab-default-left {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
/* line 454, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-right {
  -webkit-transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  -moz-transform: rotate(90deg);
  -moz-transform-origin: 0 0;
  -o-transform: rotate(90deg);
  -o-transform-origin: 0 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
}
/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */
.x-ie9m .x-tab-default-right {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
/* line 471, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-icon-text-left .x-tab-inner {
  padding-left: 22px;
}
/* line 485, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-over {
  background-color: #87c5d4;
}
.x-tab-default-over .x-tab-glyph {
  color: white;
}
/* line 509, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 516, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-ie8m .x-tab-default-over .x-tab-glyph {
  color: #afd3ed;
}
/* line 545, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-active {
  background-color: #87c5d4;
}
.x-tab-default-active .x-tab-inner, .x-tab-default-active .x-tab-glyph {
  color: #067C99;
}
/* line 551, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 566, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 573, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-ie8m .x-tab-default-active .x-tab-glyph {
  color: #61a8dc;
}
/* line 581, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-top-active, .x-tab-default-left-active, .x-tab-default-right-active {
  border-bottom: 0 solid #87c5d4;
}
/* line 594, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-bottom-active {
  border-top: 0 solid #87c5d4;
}
/* line 607, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-disabled {
  cursor: default;
}
.x-tab-default-disabled .x-tab-inner {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
}
.x-tab-default-disabled .x-tab-icon-el {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.x-tab-default-disabled .x-tab-glyph {
  color: white;
  opacity: 0.3;
  filter: none;
}
/* line 620, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 639, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 644, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 658, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-ie8m .x-tab-default-disabled .x-tab-glyph {
  color: #81b9e3;
}
/* line 667, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-top-disabled, .x-tab-default-left-disabled, .x-tab-default-right-disabled {
  border-color: #0097BA #0097BA #0097BA;
}
/* line 671, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-bottom-disabled {
  border-color: #0097BA #0097BA #0097BA #0097BA;
}
/* line 699, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-nbr .x-tab-default {
  background-image: none;
}
/* line 710, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-top-over .x-frame-tl, .x-tab-default-top-over .x-frame-bl, .x-tab-default-top-over .x-frame-tr, .x-tab-default-top-over .x-frame-br, .x-tab-default-top-over .x-frame-tc, .x-tab-default-top-over .x-frame-bc {
  background-image: url(images/tab/tab-default-top-over-corners.gif);
}
.x-tab-default-left-over .x-frame-tl, .x-tab-default-left-over .x-frame-bl, .x-tab-default-left-over .x-frame-tr, .x-tab-default-left-over .x-frame-br, .x-tab-default-left-over .x-frame-tc, .x-tab-default-left-over .x-frame-bc {
  background-image: url(images/tab/tab-default-top-over-corners.gif);
}
.x-tab-default-right-over .x-frame-tl, .x-tab-default-right-over .x-frame-bl, .x-tab-default-right-over .x-frame-tr, .x-tab-default-right-over .x-frame-br, .x-tab-default-right-over .x-frame-tc, .x-tab-default-right-over .x-frame-bc {
  background-image: url(images/tab/tab-default-top-over-corners.gif);
}
/* line 714, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-top-over .x-frame-ml, .x-tab-default-top-over .x-frame-mr {
  background-image: url(images/tab/tab-default-top-over-sides.gif);
}
.x-tab-default-left-over .x-frame-ml, .x-tab-default-left-over .x-frame-mr {
  background-image: url(images/tab/tab-default-top-over-sides.gif);
}
.x-tab-default-right-over .x-frame-ml, .x-tab-default-right-over .x-frame-mr {
  background-image: url(images/tab/tab-default-top-over-sides.gif);
}
/* line 717, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-top-over .x-frame-mc, .x-tab-default-left-over .x-frame-mc, .x-tab-default-right-over .x-frame-mc {
  background-color: #87c5d4;
}
/* line 732, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-bottom-over .x-frame-tl, .x-tab-default-bottom-over .x-frame-bl, .x-tab-default-bottom-over .x-frame-tr, .x-tab-default-bottom-over .x-frame-br, .x-tab-default-bottom-over .x-frame-tc, .x-tab-default-bottom-over .x-frame-bc {
  background-image: url(images/tab/tab-default-bottom-over-corners.gif);
}
.x-tab-default-bottom-over .x-frame-ml, .x-tab-default-bottom-over .x-frame-mr {
  background-image: url(images/tab/tab-default-bottom-over-sides.gif);
}
.x-tab-default-bottom-over .x-frame-mc {
  background-color: #87c5d4;
}
/* line 736, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 739, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 756, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-top-active .x-frame-tl, .x-tab-default-top-active .x-frame-bl, .x-tab-default-top-active .x-frame-tr, .x-tab-default-top-active .x-frame-br, .x-tab-default-top-active .x-frame-tc, .x-tab-default-top-active .x-frame-bc {
  background-image: url(images/tab/tab-default-top-active-corners.gif);
}
.x-tab-default-left-active .x-frame-tl, .x-tab-default-left-active .x-frame-bl, .x-tab-default-left-active .x-frame-tr, .x-tab-default-left-active .x-frame-br, .x-tab-default-left-active .x-frame-tc, .x-tab-default-left-active .x-frame-bc {
  background-image: url(images/tab/tab-default-top-active-corners.gif);
}
.x-tab-default-right-active .x-frame-tl, .x-tab-default-right-active .x-frame-bl, .x-tab-default-right-active .x-frame-tr, .x-tab-default-right-active .x-frame-br, .x-tab-default-right-active .x-frame-tc, .x-tab-default-right-active .x-frame-bc {
  background-image: url(images/tab/tab-default-top-active-corners.gif);
}
/* line 760, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-top-active .x-frame-ml, .x-tab-default-top-active .x-frame-mr {
  background-image: url(images/tab/tab-default-top-active-sides.gif);
}
.x-tab-default-left-active .x-frame-ml, .x-tab-default-left-active .x-frame-mr {
  background-image: url(images/tab/tab-default-top-active-sides.gif);
}
.x-tab-default-right-active .x-frame-ml, .x-tab-default-right-active .x-frame-mr {
  background-image: url(images/tab/tab-default-top-active-sides.gif);
}
/* line 763, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-top-active .x-frame-mc, .x-tab-default-left-active .x-frame-mc, .x-tab-default-right-active .x-frame-mc {
  background-color: #87c5d4;
}
/* line 778, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-bottom-active .x-frame-tl, .x-tab-default-bottom-active .x-frame-bl, .x-tab-default-bottom-active .x-frame-tr, .x-tab-default-bottom-active .x-frame-br, .x-tab-default-bottom-active .x-frame-tc, .x-tab-default-bottom-active .x-frame-bc {
  background-image: url(images/tab/tab-default-bottom-active-corners.gif);
}
.x-tab-default-bottom-active .x-frame-ml, .x-tab-default-bottom-active .x-frame-mr {
  background-image: url(images/tab/tab-default-bottom-active-sides.gif);
}
.x-tab-default-bottom-active .x-frame-mc {
  background-color: #87c5d4;
}
/* line 782, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 785, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 802, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-top-disabled .x-frame-tl, .x-tab-default-top-disabled .x-frame-bl, .x-tab-default-top-disabled .x-frame-tr, .x-tab-default-top-disabled .x-frame-br, .x-tab-default-top-disabled .x-frame-tc, .x-tab-default-top-disabled .x-frame-bc {
  background-image: url(images/tab/tab-default-top-disabled-corners.gif);
}
.x-tab-default-left-disabled .x-frame-tl, .x-tab-default-left-disabled .x-frame-bl, .x-tab-default-left-disabled .x-frame-tr, .x-tab-default-left-disabled .x-frame-br, .x-tab-default-left-disabled .x-frame-tc, .x-tab-default-left-disabled .x-frame-bc {
  background-image: url(images/tab/tab-default-top-disabled-corners.gif);
}
.x-tab-default-right-disabled .x-frame-tl, .x-tab-default-right-disabled .x-frame-bl, .x-tab-default-right-disabled .x-frame-tr, .x-tab-default-right-disabled .x-frame-br, .x-tab-default-right-disabled .x-frame-tc, .x-tab-default-right-disabled .x-frame-bc {
  background-image: url(images/tab/tab-default-top-disabled-corners.gif);
}
/* line 806, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-top-disabled .x-frame-ml, .x-tab-default-top-disabled .x-frame-mr {
  background-image: url(images/tab/tab-default-top-disabled-sides.gif);
}
.x-tab-default-left-disabled .x-frame-ml, .x-tab-default-left-disabled .x-frame-mr {
  background-image: url(images/tab/tab-default-top-disabled-sides.gif);
}
.x-tab-default-right-disabled .x-frame-ml, .x-tab-default-right-disabled .x-frame-mr {
  background-image: url(images/tab/tab-default-top-disabled-sides.gif);
}
/* line 809, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-top-disabled .x-frame-mc, .x-tab-default-left-disabled .x-frame-mc, .x-tab-default-right-disabled .x-frame-mc {
  background-color: #4b9cd7;
}
/* line 824, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-bottom-disabled .x-frame-tl, .x-tab-default-bottom-disabled .x-frame-bl, .x-tab-default-bottom-disabled .x-frame-tr, .x-tab-default-bottom-disabled .x-frame-br, .x-tab-default-bottom-disabled .x-frame-tc, .x-tab-default-bottom-disabled .x-frame-bc {
  background-image: url(images/tab/tab-default-bottom-disabled-corners.gif);
}
.x-tab-default-bottom-disabled .x-frame-ml, .x-tab-default-bottom-disabled .x-frame-mr {
  background-image: url(images/tab/tab-default-bottom-disabled-sides.gif);
}
.x-tab-default-bottom-disabled .x-frame-mc {
  background-color: #4b9cd7;
}
/* line 828, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 831, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 861, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default .x-tab-close-btn {
  width: 12px;
  height: 12px;
  background-image: url(images/tab/tab-default-close.png);
}
.x-tab-default .x-tab-close-btn-over {
  background-position: -12px 0;
}
.x-tab-default .x-tab-close-btn {
  top: 2px;
  right: 2px;
}
/* line 870, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 880, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
/* line 924, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-disabled .x-tab-close-btn {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
  background-position: 0 0;
}
/* line 934, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-pressed .x-tab-close-btn {
  background-position: -24px 0;
}
/* line 939, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x-tab-default-closable .x-tab-wrap {
  padding-right: 15px;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tab-default-top-over:after {
  display: none;
  content: "x-slicer:corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tab-default-bottom-over:after {
  display: none;
  content: "x-slicer:corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tab-default-top-active:after {
  display: none;
  content: "x-slicer:corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tab-default-bottom-active:after {
  display: none;
  content: "x-slicer:corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tab-default-top-disabled:after {
  display: none;
  content: "x-slicer:corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tab-default-bottom-disabled:after {
  display: none;
  content: "x-slicer:corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif)";
}
/*</if slicer> */
/* /* line 100, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-default-top {
  padding: 0;
}
/* line 107, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-default-bottom, .x-tab-bar-default-left, .x-tab-bar-default-right {
  padding: 0 0 0 0;
}
/* line 114, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 130, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 149, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-default-horizontal, .x-content-box .x-tab-bar-default-horizontal {
  height: 36px;
}
/* line 153, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 161, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-default-vertical, .x-content-box .x-tab-bar-default-vertical {
  width: 36px;
}
/* line 165, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 172, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-body-default-top {
  padding-bottom: 5px;
}
/* line 176, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-body-default-bottom {
  padding-top: 5px;
}
/* line 180, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-body-default-left {
  padding-right: 5px;
}
/* line 191, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-body-default-right {
  padding-left: 5px;
}
/* line 202, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-strip-default {
  border-style: solid;
  border-color: #0097BA;
  background-color: #87c5d4;
}
/* line 210, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-content-box .x-tab-bar-strip-default-horizontal {
  height: 5px;
}
.x-content-box .x-tab-bar-strip-default-vertical {
  width: 5px;
}
/* line 218, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 224, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-strip-default-top {
  border-width: 0 0 0 0;
  height: 5px;
}
/* line 227, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-plain .x-tab-bar-strip-default-top {
  border-width: 0 0 0 0;
}
/* line 232, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-strip-default-bottom {
  border-width: 0 0 0 0;
  height: 5px;
}
/* line 235, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-plain .x-tab-bar-strip-default-bottom {
  border-width: 0 0 0 0;
}
/* line 240, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-strip-default-left {
  border-width: 0 0 0 0;
  width: 5px;
}
/* line 243, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-plain .x-tab-bar-strip-default-left {
  border-width: 0 0 0 0;
}
/* line 257, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-strip-default-right {
  border-width: 0 0 0 0;
  width: 5px;
}
/* line 260, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-plain .x-tab-bar-strip-default-right {
  border-width: 0 0 0 0;
}
/* line 274, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-default {
  background-color: #0097BA;
}
.x-tab-bar-default .x-box-scroller {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  background-color: #0097BA;
}
.x-tab-bar-default .x-box-scroller-plain .x-box-scroller {
  background-color: transparent;
}
/* line 323, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 339, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 341, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-ie8m .x-tab-bar-default .x-box-scroller-plain .x-box-scroller {
  background-color: #fff;
}
/* line 348, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-default .x-box-scroller-hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
}
.x-tab-bar-default .x-box-scroller-pressed {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
.x-tab-bar-default .x-tabbar-scroll-left, .x-tab-bar-default .x-tabbar-scroll-right {
  height: 31px;
  width: 24px;
}
.x-tab-bar-default .x-tabbar-scroll-top, .x-tab-bar-default .x-tabbar-scroll-bottom {
  width: 31px;
  height: 24px;
}
/* line 354, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 363, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 369, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 377, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-default-bottom .x-box-scroller {
  margin-top: 0;
}
/* line 381, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-default-right .x-box-scroller {
  margin-left: 0;
}
/* line 395, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-default .x-tabbar-scroll-left {
  background-image: url(images/tab-bar/default-scroll-left.png);
}
.x-tab-bar-default .x-tabbar-scroll-right {
  background-image: url(images/tab-bar/default-scroll-right.png);
}
.x-tab-bar-default .x-tabbar-scroll-top {
  background-image: url(images/tab-bar/default-scroll-top.png);
}
.x-tab-bar-default .x-tabbar-scroll-bottom {
  background-image: url(images/tab-bar/default-scroll-bottom.png);
}
.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-left {
  background-image: url(images/tab-bar/default-plain-scroll-left.png);
}
.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-right {
  background-image: url(images/tab-bar/default-plain-scroll-right.png);
}
.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-top {
  background-image: url(images/tab-bar/default-plain-scroll-top.png);
}
.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-bottom {
  background-image: url(images/tab-bar/default-plain-scroll-bottom.png);
}
.x-tab-bar-default .x-box-scroller-disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
  opacity: 0.25;
  cursor: default;
}
/* line 399, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 403, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 407, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 425, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 429, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 433, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 437, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/* line 549, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tab-bar-default-top:after {
  display: none;
  content: "x-slicer:stretch:bottom";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tab-bar-default-bottom:after {
  display: none;
  content: "x-slicer:stretch:top";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tab-bar-default-left:after {
  display: none;
  content: "x-slicer:stretch:right";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-tab-bar-default-right:after {
  display: none;
  content: "x-slicer:stretch:left";
}
/*</if slicer> */
/* /* line 998, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x-tab-bar-plain {
  border-width: 0;
  padding: 0;
  height: 36px;
}
/* line 1, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */
.x-column-header-checkbox {
  border-color: #f5f5f5;
}
/* line 6, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */
.x-grid-row-checker {
  height: 15px;
  width: 15px;
  background-image: url(images/form/checkbox.png);
  line-height: 15px;
}
.x-column-header-checkbox .x-column-header-text {
  height: 15px;
  width: 15px;
  background-image: url(images/form/checkbox.png);
  line-height: 15px;
}
.x-column-header-checkbox .x-column-header-inner {
  padding: 7px 4px 7px 4px;
}
/* line 15, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */
/* line 19, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */
.x-grid-cell-row-checker .x-grid-cell-inner {
  padding: 5px 4px 4px 4px;
}
/* line 32, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */
.x-grid-hd-checker-on .x-column-header-text, .x-grid-row-selected .x-grid-row-checker, .x-grid-row-checked .x-grid-row-checker {
  background-position: 0 -15px;
}
/* line 1, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-tree-expander {
  cursor: pointer;
}
/* line 7, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-tree-arrows .x-tree-expander {
  background-image: url(images/tree/arrows.png);
}
.x-tree-arrows .x-tree-expander-over .x-tree-expander {
  background-position: -32px center;
}
.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander {
  background-position: -16px center;
}
.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander {
  background-position: -48px center;
}
/* line 11, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
/* line 15, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
/* line 19, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
/* line 44, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-tree-lines .x-tree-elbow {
  background-image: url(images/tree/elbow.png);
}
.x-tree-lines .x-tree-elbow-end {
  background-image: url(images/tree/elbow-end.png);
}
.x-tree-lines .x-tree-elbow-plus {
  background-image: url(images/tree/elbow-plus.png);
}
.x-tree-lines .x-tree-elbow-end-plus {
  background-image: url(images/tree/elbow-end-plus.png);
}
.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus {
  background-image: url(images/tree/elbow-minus.png);
}
.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  background-image: url(images/tree/elbow-end-minus.png);
}
.x-tree-lines .x-tree-elbow-line {
  background-image: url(images/tree/elbow-line.png);
}
/* line 48, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
/* line 52, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
/* line 56, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
/* line 60, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
/* line 64, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
/* line 68, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
/* line 104, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-tree-no-row-lines .x-tree-expander {
  background-image: url(images/tree/elbow-plus-nl.png);
}
.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander {
  background-image: url(images/tree/elbow-minus-nl.png);
}
/* line 108, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
/* line 123, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-tree-icon {
  width: 16px;
  height: 24px;
}
/* line 128, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-tree-elbow-img {
  width: 18px;
  height: 24px;
  margin-right: 2px;
}
/* line 143, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-tree-icon, .x-tree-elbow-img, .x-tree-checkbox {
  margin-top: -5px;
  margin-bottom: -4px;
}
/* line 151, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-tree-icon-leaf {
  background-image: url(images/tree/leaf.png);
}
/* line 161, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-tree-icon-parent {
  background-image: url(images/tree/folder.png);
}
/* line 171, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-grid-tree-node-expanded .x-tree-icon-parent {
  background-image: url(images/tree/folder-open.png);
}
/* line 181, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-tree-checkbox {
  margin-right: 4px;
  top: 5px;
  width: 15px;
  height: 15px;
  background-image: url(images/form/checkbox.png);
}
/* line 196, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-tree-checkbox-checked {
  background-position: 0 -15px;
}
/* line 200, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-grid-tree-loading .x-tree-icon {
  background-image: url(images/tree/loading.png);
}
/* line 215, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-grid-cell-inner-treecolumn {
  font-size: 1px;
  line-height: 0;
}
/* line 221, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-tree-node-text {
  font-size: 13px;
  line-height: 15px;
  padding-left: 4px;
}
/* line 235, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */
.x-grid-cell-inner-treecolumn {
  padding: 5px 10px 4px 6px;
}
/* line 1, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */
.x-tree-drop-ok-append .x-dd-drop-icon {
  background-image: url(images/tree/drop-append.png);
}
/* line 5, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */
.x-tree-drop-ok-above .x-dd-drop-icon {
  background-image: url(images/tree/drop-above.png);
}
/* line 9, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */
.x-tree-drop-ok-below .x-dd-drop-icon {
  background-image: url(images/tree/drop-below.png);
}
/* line 13, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */
.x-tree-drop-ok-between .x-dd-drop-icon {
  background-image: url(images/tree/drop-between.png);
}
/* line 17, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */
.x-tree-ddindicator {
  height: 1px;
  border-width: 1px 0px 0px;
  border-style: dotted;
  border-color: green;
}
/* including package ext-theme-neptune */
/* line 1, ../../sass/src/Component.scss */
body {
  background-color: #f5f5f5;
}
/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small {
  border-color: transparent;
  border-radius: 3px;
  padding: 3px 3px 3px 3px;
  border-width: 1px;
  border-style: solid;
  background-image: none;
  background-color: transparent;
}
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-small-mc {
  background-image: url(images/btn/btn-plain-toolbar-small-fbg.gif);
  background-position: 0 top;
  background-color: transparent;
}
/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nlg .x-btn-plain-toolbar-small {
  background-image: url(images/btn/btn-plain-toolbar-small-bg.gif);
  background-position: 0 top;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-btn-plain-toolbar-small {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-btn-plain-toolbar-small-frameInfo {
  font-family: th-3-3-3-3-1-1-1-1-3-3-3-3;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-small-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-small-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-small-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-small-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-small-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-small-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-small-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-small-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-small-tr, .x-btn-plain-toolbar-small-br, .x-btn-plain-toolbar-small-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-small-tl, .x-btn-plain-toolbar-small-bl, .x-btn-plain-toolbar-small-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-small-tc, .x-btn-plain-toolbar-small-bc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-small-tl, .x-btn-plain-toolbar-small-bl, .x-btn-plain-toolbar-small-tr, .x-btn-plain-toolbar-small-br, .x-btn-plain-toolbar-small-tc, .x-btn-plain-toolbar-small-bc, .x-btn-plain-toolbar-small-ml, .x-btn-plain-toolbar-small-mr, .x-btn-plain-toolbar-small-ml, .x-btn-plain-toolbar-small-mr {
  zoom: 1;
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-small-mc {
  padding: 1px 1px 1px 1px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-btn-plain-toolbar-small-tl, .x-strict .x-ie7 .x-btn-plain-toolbar-small-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-plain-toolbar-small:after {
  display: none;
  content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-plain-toolbar-small-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-bg.gif)";
}
.x-btn-plain-toolbar-small .x-btn-inner {
  font-size: 12px;
  font-weight: bold;
  font-family: helvetica, arial, verdana, sans-serif;
  color: #666666;
  padding: 0 5px;
}
.x-btn-plain-toolbar-small .x-btn-arrow {
  background-image: url(images/button/plain-toolbar-small-arrow.png);
}
.x-btn-plain-toolbar-small .x-btn-arrow-right {
  padding-right: 21px;
}
.x-btn-plain-toolbar-small .x-btn-arrow-bottom {
  padding-bottom: 18px;
}
.x-btn-plain-toolbar-small .x-btn-glyph {
  font-size: 16px;
  line-height: 16px;
  color: #666666;
  opacity: 0.5;
}
/*</if slicer> */
/* /* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie8m .x-btn-plain-toolbar-small .x-btn-glyph {
  color: #b2b2b2;
}
/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-disabled {
  background-image: none;
  background-color: transparent;
}
/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-icon .x-btn-button, .x-btn-plain-toolbar-small-noicon .x-btn-button {
  height: 16px;
}
/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-icon .x-btn-inner, .x-btn-plain-toolbar-small-noicon .x-btn-inner {
  line-height: 16px;
}
/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-icon .x-btn-arrow-right .x-btn-inner, .x-btn-plain-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner, .x-btn-plain-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner {
  padding-right: 0;
}
/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-icon .x-btn-inner {
  width: 16px;
  padding: 0;
}
.x-btn-plain-toolbar-small-icon .x-btn-icon-el {
  width: 16px;
  height: 16px;
}
/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-icon-text-left .x-btn-button {
  height: 16px;
}
.x-btn-plain-toolbar-small-icon-text-left .x-btn-inner {
  line-height: 16px;
  padding-left: 21px;
}
.x-btn-plain-toolbar-small-icon-text-left .x-btn-icon-el {
  width: 16px;
  right: auto;
}
/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-plain-toolbar-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-plain-toolbar-small-icon-text-left .x-btn-icon-el {
  height: 16px;
}
/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-icon-text-right .x-btn-button {
  height: 16px;
}
.x-btn-plain-toolbar-small-icon-text-right .x-btn-inner {
  line-height: 16px;
  padding-right: 21px;
}
.x-btn-plain-toolbar-small-icon-text-right .x-btn-icon-el {
  width: 16px;
  left: auto;
}
/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-plain-toolbar-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-plain-toolbar-small-icon-text-right .x-btn-icon-el {
  height: 16px;
}
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-icon-text-top .x-btn-inner {
  padding-top: 21px;
}
.x-btn-plain-toolbar-small-icon-text-top .x-btn-icon-el {
  height: 16px;
  bottom: auto;
}
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-plain-toolbar-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-plain-toolbar-small-icon-text-top .x-btn-icon-el {
  width: 100%;
}
/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-icon-text-bottom .x-btn-inner {
  padding-bottom: 21px;
}
.x-btn-plain-toolbar-small-icon-text-bottom .x-btn-icon-el {
  height: 16px;
  top: auto;
}
/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-plain-toolbar-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-plain-toolbar-small-icon-text-bottom .x-btn-icon-el {
  width: 100%;
}
/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-over, .x-btn-plain-toolbar-small-focus {
  border-color: #e1e1e1;
  background-image: none;
  background-color: #ebebeb;
  background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb);
}
/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-menu-active, .x-btn-plain-toolbar-small-pressed {
  border-color: #e1e1e1;
  background-image: none;
  background-color: #e1e1e1;
  background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4);
}
/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-over .x-frame-tl, .x-btn-plain-toolbar-small-over .x-frame-bl, .x-btn-plain-toolbar-small-over .x-frame-tr, .x-btn-plain-toolbar-small-over .x-frame-br, .x-btn-plain-toolbar-small-over .x-frame-tc, .x-btn-plain-toolbar-small-over .x-frame-bc {
  background-image: url(images/btn/btn-plain-toolbar-small-over-corners.gif);
}
.x-btn-plain-toolbar-small-over .x-frame-ml, .x-btn-plain-toolbar-small-over .x-frame-mr {
  background-image: url(images/btn/btn-plain-toolbar-small-over-sides.gif);
}
.x-btn-plain-toolbar-small-over .x-frame-mc {
  background-color: #ebebeb;
  background-image: url(images/btn/btn-plain-toolbar-small-over-fbg.gif);
}
/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-focus .x-frame-tl, .x-btn-plain-toolbar-small-focus .x-frame-bl, .x-btn-plain-toolbar-small-focus .x-frame-tr, .x-btn-plain-toolbar-small-focus .x-frame-br, .x-btn-plain-toolbar-small-focus .x-frame-tc, .x-btn-plain-toolbar-small-focus .x-frame-bc {
  background-image: url(images/btn/btn-plain-toolbar-small-focus-corners.gif);
}
.x-btn-plain-toolbar-small-focus .x-frame-ml, .x-btn-plain-toolbar-small-focus .x-frame-mr {
  background-image: url(images/btn/btn-plain-toolbar-small-focus-sides.gif);
}
.x-btn-plain-toolbar-small-focus .x-frame-mc {
  background-color: #ebebeb;
  background-image: url(images/btn/btn-plain-toolbar-small-focus-fbg.gif);
}
/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-menu-active .x-frame-tl, .x-btn-plain-toolbar-small-menu-active .x-frame-bl, .x-btn-plain-toolbar-small-menu-active .x-frame-tr, .x-btn-plain-toolbar-small-menu-active .x-frame-br, .x-btn-plain-toolbar-small-menu-active .x-frame-tc, .x-btn-plain-toolbar-small-menu-active .x-frame-bc {
  background-image: url(images/btn/btn-plain-toolbar-small-pressed-corners.gif);
}
.x-btn-plain-toolbar-small-pressed .x-frame-tl, .x-btn-plain-toolbar-small-pressed .x-frame-bl, .x-btn-plain-toolbar-small-pressed .x-frame-tr, .x-btn-plain-toolbar-small-pressed .x-frame-br, .x-btn-plain-toolbar-small-pressed .x-frame-tc, .x-btn-plain-toolbar-small-pressed .x-frame-bc {
  background-image: url(images/btn/btn-plain-toolbar-small-pressed-corners.gif);
}
/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-menu-active .x-frame-ml, .x-btn-plain-toolbar-small-menu-active .x-frame-mr {
  background-image: url(images/btn/btn-plain-toolbar-small-pressed-sides.gif);
}
.x-btn-plain-toolbar-small-pressed .x-frame-ml, .x-btn-plain-toolbar-small-pressed .x-frame-mr {
  background-image: url(images/btn/btn-plain-toolbar-small-pressed-sides.gif);
}
/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-menu-active .x-frame-mc, .x-btn-plain-toolbar-small-pressed .x-frame-mc {
  background-color: #e1e1e1;
  background-image: url(images/btn/btn-plain-toolbar-small-pressed-fbg.gif);
}
/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-disabled .x-frame-tl, .x-btn-plain-toolbar-small-disabled .x-frame-bl, .x-btn-plain-toolbar-small-disabled .x-frame-tr, .x-btn-plain-toolbar-small-disabled .x-frame-br, .x-btn-plain-toolbar-small-disabled .x-frame-tc, .x-btn-plain-toolbar-small-disabled .x-frame-bc {
  background-image: url(images/btn/btn-plain-toolbar-small-disabled-corners.gif);
}
.x-btn-plain-toolbar-small-disabled .x-frame-ml, .x-btn-plain-toolbar-small-disabled .x-frame-mr {
  background-image: url(images/btn/btn-plain-toolbar-small-disabled-sides.gif);
}
.x-btn-plain-toolbar-small-disabled .x-frame-mc {
  background-color: transparent;
  background-image: url(images/btn/btn-plain-toolbar-small-disabled-fbg.gif);
}
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nlg .x-btn-plain-toolbar-small-over {
  background-image: url(images/btn/btn-plain-toolbar-small-over-bg.gif);
}
.x-nlg .x-btn-plain-toolbar-small-focus {
  background-image: url(images/btn/btn-plain-toolbar-small-focus-bg.gif);
}
.x-nlg .x-btn-plain-toolbar-small-menu-active, .x-nlg .x-btn-plain-toolbar-small-pressed {
  background-image: url(images/btn/btn-plain-toolbar-small-pressed-bg.gif);
}
.x-nlg .x-btn-plain-toolbar-small-disabled {
  background-image: url(images/btn/btn-plain-toolbar-small-disabled-bg.gif);
}
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nbr .x-btn-plain-toolbar-small {
  background-image: none;
}
/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small .x-btn-split-right {
  background-image: url(images/button/plain-toolbar-small-s-arrow.png);
  padding-right: 23px;
}
.x-btn-plain-toolbar-small .x-btn-split-bottom {
  background-image: url(images/button/plain-toolbar-small-s-arrow-b.png);
  padding-bottom: 20px;
}
/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-plain-toolbar-small-over:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-over-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-over-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-plain-toolbar-small-focus:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-focus-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-plain-toolbar-small-pressed:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-pressed-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-plain-toolbar-small-disabled:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-disabled-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-disabled-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-disabled-bg.gif)";
}
/*</if slicer> */
/* /* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium {
  border-color: transparent;
  border-radius: 3px;
  padding: 3px 3px 3px 3px;
  border-width: 1px;
  border-style: solid;
  background-image: none;
  background-color: transparent;
}
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-medium-mc {
  background-image: url(images/btn/btn-plain-toolbar-medium-fbg.gif);
  background-position: 0 top;
  background-color: transparent;
}
/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nlg .x-btn-plain-toolbar-medium {
  background-image: url(images/btn/btn-plain-toolbar-medium-bg.gif);
  background-position: 0 top;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-btn-plain-toolbar-medium {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-btn-plain-toolbar-medium-frameInfo {
  font-family: th-3-3-3-3-1-1-1-1-3-3-3-3;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-medium-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-medium-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-medium-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-medium-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-medium-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-medium-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-medium-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-medium-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-medium-tr, .x-btn-plain-toolbar-medium-br, .x-btn-plain-toolbar-medium-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-medium-tl, .x-btn-plain-toolbar-medium-bl, .x-btn-plain-toolbar-medium-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-medium-tc, .x-btn-plain-toolbar-medium-bc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-medium-tl, .x-btn-plain-toolbar-medium-bl, .x-btn-plain-toolbar-medium-tr, .x-btn-plain-toolbar-medium-br, .x-btn-plain-toolbar-medium-tc, .x-btn-plain-toolbar-medium-bc, .x-btn-plain-toolbar-medium-ml, .x-btn-plain-toolbar-medium-mr, .x-btn-plain-toolbar-medium-ml, .x-btn-plain-toolbar-medium-mr {
  zoom: 1;
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-medium-mc {
  padding: 1px 1px 1px 1px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-btn-plain-toolbar-medium-tl, .x-strict .x-ie7 .x-btn-plain-toolbar-medium-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-plain-toolbar-medium:after {
  display: none;
  content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-plain-toolbar-medium-fbg.gif), bg:url(images/btn/btn-plain-toolbar-medium-bg.gif)";
}
.x-btn-plain-toolbar-medium .x-btn-inner {
  font-size: 14px;
  font-weight: bold;
  font-family: helvetica, arial, verdana, sans-serif;
  color: #666666;
  padding: 0 8px;
}
.x-btn-plain-toolbar-medium .x-btn-arrow {
  background-image: url(images/button/plain-toolbar-medium-arrow.png);
}
.x-btn-plain-toolbar-medium .x-btn-arrow-right {
  padding-right: 30px;
}
.x-btn-plain-toolbar-medium .x-btn-arrow-bottom {
  padding-bottom: 26px;
}
.x-btn-plain-toolbar-medium .x-btn-glyph {
  font-size: 24px;
  line-height: 24px;
  color: #666666;
  opacity: 0.5;
}
/*</if slicer> */
/* /* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie8m .x-btn-plain-toolbar-medium .x-btn-glyph {
  color: #b2b2b2;
}
/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-disabled {
  background-image: none;
  background-color: transparent;
}
/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-icon .x-btn-button, .x-btn-plain-toolbar-medium-noicon .x-btn-button {
  height: 24px;
}
/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-icon .x-btn-inner, .x-btn-plain-toolbar-medium-noicon .x-btn-inner {
  line-height: 24px;
}
/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner, .x-btn-plain-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner, .x-btn-plain-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner {
  padding-right: 0;
}
/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-icon .x-btn-inner {
  width: 24px;
  padding: 0;
}
.x-btn-plain-toolbar-medium-icon .x-btn-icon-el {
  width: 24px;
  height: 24px;
}
/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-icon-text-left .x-btn-button {
  height: 24px;
}
.x-btn-plain-toolbar-medium-icon-text-left .x-btn-inner {
  line-height: 24px;
  padding-left: 29px;
}
.x-btn-plain-toolbar-medium-icon-text-left .x-btn-icon-el {
  width: 24px;
  right: auto;
}
/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-plain-toolbar-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-plain-toolbar-medium-icon-text-left .x-btn-icon-el {
  height: 24px;
}
/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-icon-text-right .x-btn-button {
  height: 24px;
}
.x-btn-plain-toolbar-medium-icon-text-right .x-btn-inner {
  line-height: 24px;
  padding-right: 29px;
}
.x-btn-plain-toolbar-medium-icon-text-right .x-btn-icon-el {
  width: 24px;
  left: auto;
}
/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-plain-toolbar-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-plain-toolbar-medium-icon-text-right .x-btn-icon-el {
  height: 24px;
}
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-icon-text-top .x-btn-inner {
  padding-top: 29px;
}
.x-btn-plain-toolbar-medium-icon-text-top .x-btn-icon-el {
  height: 24px;
  bottom: auto;
}
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-plain-toolbar-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-plain-toolbar-medium-icon-text-top .x-btn-icon-el {
  width: 100%;
}
/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-icon-text-bottom .x-btn-inner {
  padding-bottom: 29px;
}
.x-btn-plain-toolbar-medium-icon-text-bottom .x-btn-icon-el {
  height: 24px;
  top: auto;
}
/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-plain-toolbar-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-plain-toolbar-medium-icon-text-bottom .x-btn-icon-el {
  width: 100%;
}
/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-over, .x-btn-plain-toolbar-medium-focus {
  border-color: #e1e1e1;
  background-image: none;
  background-color: #ebebeb;
  background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb);
}
/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-menu-active, .x-btn-plain-toolbar-medium-pressed {
  border-color: #e1e1e1;
  background-image: none;
  background-color: #e1e1e1;
  background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4);
}
/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-over .x-frame-tl, .x-btn-plain-toolbar-medium-over .x-frame-bl, .x-btn-plain-toolbar-medium-over .x-frame-tr, .x-btn-plain-toolbar-medium-over .x-frame-br, .x-btn-plain-toolbar-medium-over .x-frame-tc, .x-btn-plain-toolbar-medium-over .x-frame-bc {
  background-image: url(images/btn/btn-plain-toolbar-medium-over-corners.gif);
}
.x-btn-plain-toolbar-medium-over .x-frame-ml, .x-btn-plain-toolbar-medium-over .x-frame-mr {
  background-image: url(images/btn/btn-plain-toolbar-medium-over-sides.gif);
}
.x-btn-plain-toolbar-medium-over .x-frame-mc {
  background-color: #ebebeb;
  background-image: url(images/btn/btn-plain-toolbar-medium-over-fbg.gif);
}
/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-focus .x-frame-tl, .x-btn-plain-toolbar-medium-focus .x-frame-bl, .x-btn-plain-toolbar-medium-focus .x-frame-tr, .x-btn-plain-toolbar-medium-focus .x-frame-br, .x-btn-plain-toolbar-medium-focus .x-frame-tc, .x-btn-plain-toolbar-medium-focus .x-frame-bc {
  background-image: url(images/btn/btn-plain-toolbar-medium-focus-corners.gif);
}
.x-btn-plain-toolbar-medium-focus .x-frame-ml, .x-btn-plain-toolbar-medium-focus .x-frame-mr {
  background-image: url(images/btn/btn-plain-toolbar-medium-focus-sides.gif);
}
.x-btn-plain-toolbar-medium-focus .x-frame-mc {
  background-color: #ebebeb;
  background-image: url(images/btn/btn-plain-toolbar-medium-focus-fbg.gif);
}
/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-menu-active .x-frame-tl, .x-btn-plain-toolbar-medium-menu-active .x-frame-bl, .x-btn-plain-toolbar-medium-menu-active .x-frame-tr, .x-btn-plain-toolbar-medium-menu-active .x-frame-br, .x-btn-plain-toolbar-medium-menu-active .x-frame-tc, .x-btn-plain-toolbar-medium-menu-active .x-frame-bc {
  background-image: url(images/btn/btn-plain-toolbar-medium-pressed-corners.gif);
}
.x-btn-plain-toolbar-medium-pressed .x-frame-tl, .x-btn-plain-toolbar-medium-pressed .x-frame-bl, .x-btn-plain-toolbar-medium-pressed .x-frame-tr, .x-btn-plain-toolbar-medium-pressed .x-frame-br, .x-btn-plain-toolbar-medium-pressed .x-frame-tc, .x-btn-plain-toolbar-medium-pressed .x-frame-bc {
  background-image: url(images/btn/btn-plain-toolbar-medium-pressed-corners.gif);
}
/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-menu-active .x-frame-ml, .x-btn-plain-toolbar-medium-menu-active .x-frame-mr {
  background-image: url(images/btn/btn-plain-toolbar-medium-pressed-sides.gif);
}
.x-btn-plain-toolbar-medium-pressed .x-frame-ml, .x-btn-plain-toolbar-medium-pressed .x-frame-mr {
  background-image: url(images/btn/btn-plain-toolbar-medium-pressed-sides.gif);
}
/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-menu-active .x-frame-mc, .x-btn-plain-toolbar-medium-pressed .x-frame-mc {
  background-color: #e1e1e1;
  background-image: url(images/btn/btn-plain-toolbar-medium-pressed-fbg.gif);
}
/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-disabled .x-frame-tl, .x-btn-plain-toolbar-medium-disabled .x-frame-bl, .x-btn-plain-toolbar-medium-disabled .x-frame-tr, .x-btn-plain-toolbar-medium-disabled .x-frame-br, .x-btn-plain-toolbar-medium-disabled .x-frame-tc, .x-btn-plain-toolbar-medium-disabled .x-frame-bc {
  background-image: url(images/btn/btn-plain-toolbar-medium-disabled-corners.gif);
}
.x-btn-plain-toolbar-medium-disabled .x-frame-ml, .x-btn-plain-toolbar-medium-disabled .x-frame-mr {
  background-image: url(images/btn/btn-plain-toolbar-medium-disabled-sides.gif);
}
.x-btn-plain-toolbar-medium-disabled .x-frame-mc {
  background-color: transparent;
  background-image: url(images/btn/btn-plain-toolbar-medium-disabled-fbg.gif);
}
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nlg .x-btn-plain-toolbar-medium-over {
  background-image: url(images/btn/btn-plain-toolbar-medium-over-bg.gif);
}
.x-nlg .x-btn-plain-toolbar-medium-focus {
  background-image: url(images/btn/btn-plain-toolbar-medium-focus-bg.gif);
}
.x-nlg .x-btn-plain-toolbar-medium-menu-active, .x-nlg .x-btn-plain-toolbar-medium-pressed {
  background-image: url(images/btn/btn-plain-toolbar-medium-pressed-bg.gif);
}
.x-nlg .x-btn-plain-toolbar-medium-disabled {
  background-image: url(images/btn/btn-plain-toolbar-medium-disabled-bg.gif);
}
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nbr .x-btn-plain-toolbar-medium {
  background-image: none;
}
/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium .x-btn-split-right {
  background-image: url(images/button/plain-toolbar-medium-s-arrow.png);
  padding-right: 32px;
}
.x-btn-plain-toolbar-medium .x-btn-split-bottom {
  background-image: url(images/button/plain-toolbar-medium-s-arrow-b.png);
  padding-bottom: 28px;
}
/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-medium-disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-plain-toolbar-medium-over:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-plain-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-plain-toolbar-medium-over-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-plain-toolbar-medium-focus:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-plain-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-plain-toolbar-medium-focus-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-plain-toolbar-medium-pressed:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-plain-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-plain-toolbar-medium-pressed-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-plain-toolbar-medium-disabled:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-plain-toolbar-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-medium-disabled-fbg.gif), bg:url(images/btn/btn-plain-toolbar-medium-disabled-bg.gif)";
}
/*</if slicer> */
/* /* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large {
  border-color: transparent;
  border-radius: 3px;
  padding: 3px 3px 3px 3px;
  border-width: 1px;
  border-style: solid;
  background-image: none;
  background-color: transparent;
}
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-large-mc {
  background-image: url(images/btn/btn-plain-toolbar-large-fbg.gif);
  background-position: 0 top;
  background-color: transparent;
}
/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nlg .x-btn-plain-toolbar-large {
  background-image: url(images/btn/btn-plain-toolbar-large-bg.gif);
  background-position: 0 top;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-btn-plain-toolbar-large {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
  background-image: none;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-btn-plain-toolbar-large-frameInfo {
  font-family: th-3-3-3-3-1-1-1-1-3-3-3-3;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-large-tl {
  background-position: 0 -6px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-large-tr {
  background-position: right -9px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-large-bl {
  background-position: 0 -12px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-large-br {
  background-position: right -15px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-large-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-large-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-large-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-large-bc {
  background-position: 0 -3px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-large-tr, .x-btn-plain-toolbar-large-br, .x-btn-plain-toolbar-large-mr {
  padding-right: 3px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-large-tl, .x-btn-plain-toolbar-large-bl, .x-btn-plain-toolbar-large-ml {
  padding-left: 3px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-large-tc, .x-btn-plain-toolbar-large-bc {
  height: 3px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-large-tl, .x-btn-plain-toolbar-large-bl, .x-btn-plain-toolbar-large-tr, .x-btn-plain-toolbar-large-br, .x-btn-plain-toolbar-large-tc, .x-btn-plain-toolbar-large-bc, .x-btn-plain-toolbar-large-ml, .x-btn-plain-toolbar-large-mr, .x-btn-plain-toolbar-large-ml, .x-btn-plain-toolbar-large-mr {
  zoom: 1;
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-btn-plain-toolbar-large-mc {
  padding: 1px 1px 1px 1px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-btn-plain-toolbar-large-tl, .x-strict .x-ie7 .x-btn-plain-toolbar-large-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-plain-toolbar-large:after {
  display: none;
  content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-plain-toolbar-large-fbg.gif), bg:url(images/btn/btn-plain-toolbar-large-bg.gif)";
}
.x-btn-plain-toolbar-large .x-btn-inner {
  font-size: 16px;
  font-weight: bold;
  font-family: helvetica, arial, verdana, sans-serif;
  color: #666666;
  padding: 0 10px;
}
.x-btn-plain-toolbar-large .x-btn-arrow {
  background-image: url(images/button/plain-toolbar-large-arrow.png);
}
.x-btn-plain-toolbar-large .x-btn-arrow-right {
  padding-right: 36px;
}
.x-btn-plain-toolbar-large .x-btn-arrow-bottom {
  padding-bottom: 32px;
}
.x-btn-plain-toolbar-large .x-btn-glyph {
  font-size: 32px;
  line-height: 32px;
  color: #666666;
  opacity: 0.5;
}
/*</if slicer> */
/* /* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie8m .x-btn-plain-toolbar-large .x-btn-glyph {
  color: #b2b2b2;
}
/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-disabled {
  background-image: none;
  background-color: transparent;
}
/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-icon .x-btn-button, .x-btn-plain-toolbar-large-noicon .x-btn-button {
  height: 32px;
}
/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-icon .x-btn-inner, .x-btn-plain-toolbar-large-noicon .x-btn-inner {
  line-height: 32px;
}
/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-icon .x-btn-arrow-right .x-btn-inner, .x-btn-plain-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner, .x-btn-plain-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner {
  padding-right: 0;
}
/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-icon .x-btn-inner {
  width: 32px;
  padding: 0;
}
.x-btn-plain-toolbar-large-icon .x-btn-icon-el {
  width: 32px;
  height: 32px;
}
/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-icon-text-left .x-btn-button {
  height: 32px;
}
.x-btn-plain-toolbar-large-icon-text-left .x-btn-inner {
  line-height: 32px;
  padding-left: 37px;
}
.x-btn-plain-toolbar-large-icon-text-left .x-btn-icon-el {
  width: 32px;
  right: auto;
}
/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-plain-toolbar-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-plain-toolbar-large-icon-text-left .x-btn-icon-el {
  height: 32px;
}
/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-icon-text-right .x-btn-button {
  height: 32px;
}
.x-btn-plain-toolbar-large-icon-text-right .x-btn-inner {
  line-height: 32px;
  padding-right: 37px;
}
.x-btn-plain-toolbar-large-icon-text-right .x-btn-icon-el {
  width: 32px;
  left: auto;
}
/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-plain-toolbar-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-plain-toolbar-large-icon-text-right .x-btn-icon-el {
  height: 32px;
}
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-icon-text-top .x-btn-inner {
  padding-top: 37px;
}
.x-btn-plain-toolbar-large-icon-text-top .x-btn-icon-el {
  height: 32px;
  bottom: auto;
}
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-plain-toolbar-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-plain-toolbar-large-icon-text-top .x-btn-icon-el {
  width: 100%;
}
/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-icon-text-bottom .x-btn-inner {
  padding-bottom: 37px;
}
.x-btn-plain-toolbar-large-icon-text-bottom .x-btn-icon-el {
  height: 32px;
  top: auto;
}
/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-ie6 .x-btn-plain-toolbar-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-plain-toolbar-large-icon-text-bottom .x-btn-icon-el {
  width: 100%;
}
/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-over, .x-btn-plain-toolbar-large-focus {
  border-color: #e1e1e1;
  background-image: none;
  background-color: #ebebeb;
  background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb);
}
/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-menu-active, .x-btn-plain-toolbar-large-pressed {
  border-color: #e1e1e1;
  background-image: none;
  background-color: #e1e1e1;
  background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4);
}
/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-over .x-frame-tl, .x-btn-plain-toolbar-large-over .x-frame-bl, .x-btn-plain-toolbar-large-over .x-frame-tr, .x-btn-plain-toolbar-large-over .x-frame-br, .x-btn-plain-toolbar-large-over .x-frame-tc, .x-btn-plain-toolbar-large-over .x-frame-bc {
  background-image: url(images/btn/btn-plain-toolbar-large-over-corners.gif);
}
.x-btn-plain-toolbar-large-over .x-frame-ml, .x-btn-plain-toolbar-large-over .x-frame-mr {
  background-image: url(images/btn/btn-plain-toolbar-large-over-sides.gif);
}
.x-btn-plain-toolbar-large-over .x-frame-mc {
  background-color: #ebebeb;
  background-image: url(images/btn/btn-plain-toolbar-large-over-fbg.gif);
}
/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-focus .x-frame-tl, .x-btn-plain-toolbar-large-focus .x-frame-bl, .x-btn-plain-toolbar-large-focus .x-frame-tr, .x-btn-plain-toolbar-large-focus .x-frame-br, .x-btn-plain-toolbar-large-focus .x-frame-tc, .x-btn-plain-toolbar-large-focus .x-frame-bc {
  background-image: url(images/btn/btn-plain-toolbar-large-focus-corners.gif);
}
.x-btn-plain-toolbar-large-focus .x-frame-ml, .x-btn-plain-toolbar-large-focus .x-frame-mr {
  background-image: url(images/btn/btn-plain-toolbar-large-focus-sides.gif);
}
.x-btn-plain-toolbar-large-focus .x-frame-mc {
  background-color: #ebebeb;
  background-image: url(images/btn/btn-plain-toolbar-large-focus-fbg.gif);
}
/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-menu-active .x-frame-tl, .x-btn-plain-toolbar-large-menu-active .x-frame-bl, .x-btn-plain-toolbar-large-menu-active .x-frame-tr, .x-btn-plain-toolbar-large-menu-active .x-frame-br, .x-btn-plain-toolbar-large-menu-active .x-frame-tc, .x-btn-plain-toolbar-large-menu-active .x-frame-bc {
  background-image: url(images/btn/btn-plain-toolbar-large-pressed-corners.gif);
}
.x-btn-plain-toolbar-large-pressed .x-frame-tl, .x-btn-plain-toolbar-large-pressed .x-frame-bl, .x-btn-plain-toolbar-large-pressed .x-frame-tr, .x-btn-plain-toolbar-large-pressed .x-frame-br, .x-btn-plain-toolbar-large-pressed .x-frame-tc, .x-btn-plain-toolbar-large-pressed .x-frame-bc {
  background-image: url(images/btn/btn-plain-toolbar-large-pressed-corners.gif);
}
/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-menu-active .x-frame-ml, .x-btn-plain-toolbar-large-menu-active .x-frame-mr {
  background-image: url(images/btn/btn-plain-toolbar-large-pressed-sides.gif);
}
.x-btn-plain-toolbar-large-pressed .x-frame-ml, .x-btn-plain-toolbar-large-pressed .x-frame-mr {
  background-image: url(images/btn/btn-plain-toolbar-large-pressed-sides.gif);
}
/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-menu-active .x-frame-mc, .x-btn-plain-toolbar-large-pressed .x-frame-mc {
  background-color: #e1e1e1;
  background-image: url(images/btn/btn-plain-toolbar-large-pressed-fbg.gif);
}
/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-disabled .x-frame-tl, .x-btn-plain-toolbar-large-disabled .x-frame-bl, .x-btn-plain-toolbar-large-disabled .x-frame-tr, .x-btn-plain-toolbar-large-disabled .x-frame-br, .x-btn-plain-toolbar-large-disabled .x-frame-tc, .x-btn-plain-toolbar-large-disabled .x-frame-bc {
  background-image: url(images/btn/btn-plain-toolbar-large-disabled-corners.gif);
}
.x-btn-plain-toolbar-large-disabled .x-frame-ml, .x-btn-plain-toolbar-large-disabled .x-frame-mr {
  background-image: url(images/btn/btn-plain-toolbar-large-disabled-sides.gif);
}
.x-btn-plain-toolbar-large-disabled .x-frame-mc {
  background-color: transparent;
  background-image: url(images/btn/btn-plain-toolbar-large-disabled-fbg.gif);
}
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nlg .x-btn-plain-toolbar-large-over {
  background-image: url(images/btn/btn-plain-toolbar-large-over-bg.gif);
}
.x-nlg .x-btn-plain-toolbar-large-focus {
  background-image: url(images/btn/btn-plain-toolbar-large-focus-bg.gif);
}
.x-nlg .x-btn-plain-toolbar-large-menu-active, .x-nlg .x-btn-plain-toolbar-large-pressed {
  background-image: url(images/btn/btn-plain-toolbar-large-pressed-bg.gif);
}
.x-nlg .x-btn-plain-toolbar-large-disabled {
  background-image: url(images/btn/btn-plain-toolbar-large-disabled-bg.gif);
}
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-nbr .x-btn-plain-toolbar-large {
  background-image: none;
}
/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large .x-btn-split-right {
  background-image: url(images/button/plain-toolbar-large-s-arrow.png);
  padding-right: 38px;
}
.x-btn-plain-toolbar-large .x-btn-split-bottom {
  background-image: url(images/button/plain-toolbar-large-s-arrow-b.png);
  padding-bottom: 34px;
}
/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */
/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x-btn-plain-toolbar-large-disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-plain-toolbar-large-over:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-large-over-corners.gif), sides:url(images/btn/btn-plain-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-plain-toolbar-large-over-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-plain-toolbar-large-focus:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-plain-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-plain-toolbar-large-focus-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-plain-toolbar-large-pressed:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-plain-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-plain-toolbar-large-pressed-bg.gif)";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-btn-plain-toolbar-large-disabled:after {
  display: none;
  content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-plain-toolbar-large-disabled-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-large-disabled-fbg.gif), bg:url(images/btn/btn-plain-toolbar-large-disabled-bg.gif)";
}
/*</if slicer> */
/* /* line 210, ../../sass/src/button/Button.scss */
.x-btn-plain-toolbar-small-disabled .x-btn-icon-el, .x-btn-plain-toolbar-medium-disabled .x-btn-icon-el, .x-btn-plain-toolbar-large-disabled .x-btn-icon-el {
  background-color: white;
}
/* line 212, ../../sass/src/button/Button.scss */
.x-strict .x-ie8 .x-btn-plain-toolbar-small-disabled .x-btn-icon-el, .x-strict .x-ie8 .x-btn-plain-toolbar-medium-disabled .x-btn-icon-el, .x-strict .x-ie8 .x-btn-plain-toolbar-large-disabled .x-btn-icon-el {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/* line 3, ../../sass/src/toolbar/Toolbar.scss */
.x-toolbar-default .x-toolbar-scroll-left {
  margin-right: 4px;
}
.x-toolbar-default .x-toolbar-scroll-right {
  margin-left: 4px;
}
.x-toolbar-default .x-toolbar-scroll-left, .x-toolbar-default .x-toolbar-scroll-right {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
}
.x-toolbar-default .x-toolbar-scroll-left-hover, .x-toolbar-default .x-toolbar-scroll-right-hover {
  background-position: 0 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}
.x-toolbar-default .x-toolbar-scroll-left-pressed, .x-toolbar-default .x-toolbar-scroll-right-pressed {
  background-position: 0 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.x-toolbar-default .x-box-scroller-disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
  opacity: 0.25;
}
.x-toolbar-default .x-box-scroller {
  background-color: white;
}
/* line 7, ../../sass/src/toolbar/Toolbar.scss */
/* line 12, ../../sass/src/toolbar/Toolbar.scss */
/* line 17, ../../sass/src/toolbar/Toolbar.scss */
/* line 23, ../../sass/src/toolbar/Toolbar.scss */
/* line 29, ../../sass/src/toolbar/Toolbar.scss */
/* line 33, ../../sass/src/toolbar/Toolbar.scss */
/* line 41, ../../sass/src/toolbar/Toolbar.scss */
.x-toolbar-scroller {
  padding: 6px 4px 6px 4px;
}
/* line 45, ../../sass/src/toolbar/Toolbar.scss */
.x-toolbar-vertical-scroller {
  padding: 3px 8px 3px 8px;
}
/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-light {
  border-color: #0097BA;
  padding: 0;
}
/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light {
  font-size: 13px;
  border: 1px solid #0097BA;
}
.x-panel-header-light .x-tool-img {
  background-image: url(images/tools/tool-sprites-dark.png);
  background-color: #dfeaf2;
}
/* line 219, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-horizontal {
  padding: 9px 9px 10px 9px;
}
/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-horizontal-noborder {
  padding: 10px 10px 10px 10px;
}
/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-vertical {
  padding: 9px 9px 9px 10px;
}
/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-vertical-noborder {
  padding: 10px 10px 10px 10px;
}
/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-text-container-light {
  color: #666666;
  font-size: 13px;
  font-weight: bold;
  font-family: helvetica, arial, verdana, sans-serif;
  line-height: 15px;
  padding: 1px 0 0;
  text-transform: none;
}
/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-body-light {
  background: white;
  border-color: #0097BA;
  color: black;
  font-size: 13px;
  font-size: normal;
  border-width: 1px;
  border-style: solid;
}
/* line 432, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light, .x-panel-header-light-vertical {
  background-image: none;
  background-color: #dfeaf2;
}
/* line 436, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 494, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel .x-panel-header-light-collapsed-border-top {
  border-bottom-width: 1px !important;
}
.x-panel .x-panel-header-light-collapsed-border-right {
  border-left-width: 1px !important;
}
.x-panel .x-panel-header-light-collapsed-border-bottom {
  border-top-width: 1px !important;
}
.x-panel .x-panel-header-light-collapsed-border-left {
  border-right-width: 1px !important;
}
/* line 498, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 502, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 506, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-light-top:after, .x-panel-header-light-bottom:after {
  display: none;
  content: "x-slicer:stretch:bottom";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-light-left:after, .x-panel-header-light-right:after {
  display: none;
  content: "x-slicer:stretch:left";
}
/*</if slicer> */
/* /*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
/*</if slicer> */
/* /* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-vertical .x-panel-header-text-container {
  -webkit-transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  -moz-transform: rotate(90deg);
  -moz-transform-origin: 0 0;
  -o-transform: rotate(90deg);
  -o-transform-origin: 0 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
}
/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */
.x-ie9m .x-panel-header-light-vertical .x-panel-header-text-container {
  background-color: #dfeaf2;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2);
}
/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light .x-panel-header-icon {
  width: 16px;
  height: 16px;
  background-position: center center;
}
.x-panel-header-light .x-panel-header-glyph {
  color: white;
  font-size: 16px;
  line-height: 16px;
  opacity: 0.5;
}
/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-ie8m .x-panel-header-light .x-panel-header-glyph {
  color: #eff4f8;
}
/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-horizontal .x-panel-header-icon-before-title {
  margin: 0 6px 0 0;
}
.x-panel-header-light-horizontal .x-panel-header-icon-after-title {
  margin: 0 0 0 6px;
}
/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-vertical .x-panel-header-icon-before-title {
  margin: 0 0 6px 0;
}
.x-panel-header-light-vertical .x-panel-header-icon-after-title {
  margin: 6px 0 0 0;
}
/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-horizontal .x-tool-after-title {
  margin: 0 0 0 6px;
}
.x-panel-header-light-horizontal .x-tool-before-title {
  margin: 0 6px 0 0;
}
/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-vertical .x-tool-after-title {
  margin: 6px 0 0 0;
}
.x-panel-header-light-vertical .x-tool-before-title {
  margin: 0 0 6px 0;
}
/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 687, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-light-resizable .x-panel-handle {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
/* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-outer-border-l {
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-outer-border-b {
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-outer-border-bl {
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-outer-border-r {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
}
/* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-outer-border-rl {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-outer-border-rb {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-outer-border-rbl {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-outer-border-t {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
}
/* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-outer-border-tl {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-outer-border-tb {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-outer-border-tbl {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-outer-border-tr {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
}
/* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-outer-border-trl {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-outer-border-trb {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-outer-border-trbl {
  border-color: #0097BA !important;
  border-width: 1px !important;
}
/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-light-framed {
  border-color: #dfeaf2;
  padding: 0;
}
/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-framed {
  font-size: 13px;
  border: 5px solid #dfeaf2;
}
.x-panel-header-light-framed .x-tool-img {
  background-image: url(images/tools/tool-sprites-dark.png);
  background-color: #dfeaf2;
}
/* line 219, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-framed-horizontal {
  padding: 5px;
}
/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-framed-horizontal-noborder {
  padding: 10px 10px 5px 10px;
}
/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-framed-vertical {
  padding: 5px 5px 5px 5px;
}
/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-framed-vertical-noborder {
  padding: 10px 10px 10px 5px;
}
/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-text-container-light-framed {
  color: #666666;
  font-size: 13px;
  font-weight: bold;
  font-family: helvetica, arial, verdana, sans-serif;
  line-height: 15px;
  padding: 1px 0 0;
  text-transform: none;
}
/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-body-light-framed {
  background: white;
  border-color: #dfeaf2;
  color: black;
  font-size: 13px;
  font-size: normal;
  border-width: 1px;
  border-style: solid;
}
/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed {
  border-radius: 4px;
  padding: 0px 0px 0px 0px;
  border-width: 5px;
  border-style: solid;
  background-color: white;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed-mc {
  background-color: white;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-light-framed {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-light-framed-frameInfo {
  font-family: dh-4-4-4-4-5-5-5-5-0-0-0-0;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed-tr, .x-panel-light-framed-br, .x-panel-light-framed-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed-tl, .x-panel-light-framed-bl, .x-panel-light-framed-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed-tc, .x-panel-light-framed-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed-tl, .x-panel-light-framed-bl, .x-panel-light-framed-tr, .x-panel-light-framed-br, .x-panel-light-framed-tc, .x-panel-light-framed-bc, .x-panel-light-framed-ml, .x-panel-light-framed-mr {
  zoom: 1;
  background-image: url(images/panel/panel-light-framed-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed-ml, .x-panel-light-framed-mr {
  zoom: 1;
  background-image: url(images/panel/panel-light-framed-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-light-framed-mc {
  padding: 0px 0px 0px 0px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-light-framed-tl, .x-strict .x-ie7 .x-panel-light-framed-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-light-framed:after {
  display: none;
  content: "x-slicer:corners:url(images/panel/panel-light-framed-corners.gif), sides:url(images/panel/panel-light-framed-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding: 5px 5px 5px 5px;
  border-width: 5px 5px 0 5px;
  border-style: solid;
  background-color: #dfeaf2;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-mc {
  background-color: #dfeaf2;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-light-framed-top {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-light-framed-top-frameInfo {
  font-family: dh-4-4-0-0-5-5-0-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-tr, .x-panel-header-light-framed-top-br, .x-panel-header-light-framed-top-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-tl, .x-panel-header-light-framed-top-bl, .x-panel-header-light-framed-top-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-tc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-bc {
  height: 0;
}
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-tl, .x-panel-header-light-framed-top-bl, .x-panel-header-light-framed-top-tr, .x-panel-header-light-framed-top-br, .x-panel-header-light-framed-top-tc, .x-panel-header-light-framed-top-bc, .x-panel-header-light-framed-top-ml, .x-panel-header-light-framed-top-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-top-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-ml, .x-panel-header-light-framed-top-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-top-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-top-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-light-framed-top-tl, .x-strict .x-ie7 .x-panel-header-light-framed-top-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-light-framed-top:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-top-corners.gif), sides:url(images/panel-header/panel-header-light-framed-top-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right {
  border-top-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 0;
  padding: 5px 5px 5px 5px;
  border-width: 5px 5px 5px 0;
  border-style: solid;
  background-color: #dfeaf2;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right-mc {
  background-color: #dfeaf2;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-light-framed-right {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-light-framed-right-frameInfo {
  font-family: dh-0-4-4-0-5-5-5-0-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right-ml {
  background-position: 0 right;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right-mr {
  background-position: right right;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right-tr, .x-panel-header-light-framed-right-br, .x-panel-header-light-framed-right-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right-tl, .x-panel-header-light-framed-right-bl, .x-panel-header-light-framed-right-ml {
  padding-left: 0;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right-tc, .x-panel-header-light-framed-right-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right-tl, .x-panel-header-light-framed-right-bl, .x-panel-header-light-framed-right-tr, .x-panel-header-light-framed-right-br, .x-panel-header-light-framed-right-tc, .x-panel-header-light-framed-right-bc, .x-panel-header-light-framed-right-ml, .x-panel-header-light-framed-right-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-right-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right-ml, .x-panel-header-light-framed-right-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-right-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-right-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-light-framed-right-tl, .x-strict .x-ie7 .x-panel-header-light-framed-right-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-light-framed-right:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-right-corners.gif), sides:url(images/panel-header/panel-header-light-framed-right-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 0 5px 5px 5px;
  border-style: solid;
  background-color: #dfeaf2;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-mc {
  background-color: #dfeaf2;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-light-framed-bottom {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-light-framed-bottom-frameInfo {
  font-family: dh-0-0-4-4-0-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-ml {
  background-position: 0 bottom;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-mr {
  background-position: right bottom;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-tr, .x-panel-header-light-framed-bottom-br, .x-panel-header-light-framed-bottom-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-tl, .x-panel-header-light-framed-bottom-bl, .x-panel-header-light-framed-bottom-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-tc {
  height: 0;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-bc {
  height: 5px;
}
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-tl, .x-panel-header-light-framed-bottom-bl, .x-panel-header-light-framed-bottom-tr, .x-panel-header-light-framed-bottom-br, .x-panel-header-light-framed-bottom-tc, .x-panel-header-light-framed-bottom-bc, .x-panel-header-light-framed-bottom-ml, .x-panel-header-light-framed-bottom-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-bottom-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-ml, .x-panel-header-light-framed-bottom-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-bottom-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-bottom-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-light-framed-bottom-tl, .x-strict .x-ie7 .x-panel-header-light-framed-bottom-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-light-framed-bottom:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-light-framed-bottom-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left {
  border-top-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 5px 0 5px 5px;
  border-style: solid;
  background-color: #dfeaf2;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left-mc {
  background-color: #dfeaf2;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-light-framed-left {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-light-framed-left-frameInfo {
  font-family: dh-4-0-0-4-5-0-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left-ml {
  background-position: 0 left;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left-mr {
  background-position: right left;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left-tr, .x-panel-header-light-framed-left-br, .x-panel-header-light-framed-left-mr {
  padding-right: 0;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left-tl, .x-panel-header-light-framed-left-bl, .x-panel-header-light-framed-left-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left-tc, .x-panel-header-light-framed-left-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left-tl, .x-panel-header-light-framed-left-bl, .x-panel-header-light-framed-left-tr, .x-panel-header-light-framed-left-br, .x-panel-header-light-framed-left-tc, .x-panel-header-light-framed-left-bc, .x-panel-header-light-framed-left-ml, .x-panel-header-light-framed-left-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-left-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left-ml, .x-panel-header-light-framed-left-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-left-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-left-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-light-framed-left-tl, .x-strict .x-ie7 .x-panel-header-light-framed-left-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-light-framed-left:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-left-corners.gif), sides:url(images/panel-header/panel-header-light-framed-left-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 5px;
  border-style: solid;
  background-color: #dfeaf2;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top-mc {
  background-color: #dfeaf2;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-light-framed-collapsed-top {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-light-framed-collapsed-top-frameInfo {
  font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top-ml {
  background-position: 0 top;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top-mr {
  background-position: right top;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top-tr, .x-panel-header-light-framed-collapsed-top-br, .x-panel-header-light-framed-collapsed-top-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top-tl, .x-panel-header-light-framed-collapsed-top-bl, .x-panel-header-light-framed-collapsed-top-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top-tc, .x-panel-header-light-framed-collapsed-top-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top-tl, .x-panel-header-light-framed-collapsed-top-bl, .x-panel-header-light-framed-collapsed-top-tr, .x-panel-header-light-framed-collapsed-top-br, .x-panel-header-light-framed-collapsed-top-tc, .x-panel-header-light-framed-collapsed-top-bc, .x-panel-header-light-framed-collapsed-top-ml, .x-panel-header-light-framed-collapsed-top-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-collapsed-top-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top-ml, .x-panel-header-light-framed-collapsed-top-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-collapsed-top-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-top-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-top-tl, .x-strict .x-ie7 .x-panel-header-light-framed-collapsed-top-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-light-framed-collapsed-top:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-top-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 5px;
  border-style: solid;
  background-color: #dfeaf2;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right-mc {
  background-color: #dfeaf2;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-light-framed-collapsed-right {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-light-framed-collapsed-right-frameInfo {
  font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right-ml {
  background-position: 0 right;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right-mr {
  background-position: right right;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right-tr, .x-panel-header-light-framed-collapsed-right-br, .x-panel-header-light-framed-collapsed-right-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right-tl, .x-panel-header-light-framed-collapsed-right-bl, .x-panel-header-light-framed-collapsed-right-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right-tc, .x-panel-header-light-framed-collapsed-right-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right-tl, .x-panel-header-light-framed-collapsed-right-bl, .x-panel-header-light-framed-collapsed-right-tr, .x-panel-header-light-framed-collapsed-right-br, .x-panel-header-light-framed-collapsed-right-tc, .x-panel-header-light-framed-collapsed-right-bc, .x-panel-header-light-framed-collapsed-right-ml, .x-panel-header-light-framed-collapsed-right-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-collapsed-right-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right-ml, .x-panel-header-light-framed-collapsed-right-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-collapsed-right-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-right-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-right-tl, .x-strict .x-ie7 .x-panel-header-light-framed-collapsed-right-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-light-framed-collapsed-right:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-right-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-right-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 5px;
  border-style: solid;
  background-color: #dfeaf2;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom-mc {
  background-color: #dfeaf2;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-light-framed-collapsed-bottom {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-light-framed-collapsed-bottom-frameInfo {
  font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom-ml {
  background-position: 0 bottom;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom-mr {
  background-position: right bottom;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom-tr, .x-panel-header-light-framed-collapsed-bottom-br, .x-panel-header-light-framed-collapsed-bottom-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom-tl, .x-panel-header-light-framed-collapsed-bottom-bl, .x-panel-header-light-framed-collapsed-bottom-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom-tc, .x-panel-header-light-framed-collapsed-bottom-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom-tl, .x-panel-header-light-framed-collapsed-bottom-bl, .x-panel-header-light-framed-collapsed-bottom-tr, .x-panel-header-light-framed-collapsed-bottom-br, .x-panel-header-light-framed-collapsed-bottom-tc, .x-panel-header-light-framed-collapsed-bottom-bc, .x-panel-header-light-framed-collapsed-bottom-ml, .x-panel-header-light-framed-collapsed-bottom-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-collapsed-bottom-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom-ml, .x-panel-header-light-framed-collapsed-bottom-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-collapsed-bottom-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-bottom-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-bottom-tl, .x-strict .x-ie7 .x-panel-header-light-framed-collapsed-bottom-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-light-framed-collapsed-bottom:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-bottom-sides.gif)";
}
/*</if slicer> */
/* /* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 5px 5px 5px 5px;
  border-width: 5px;
  border-style: solid;
  background-color: #dfeaf2;
}
/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left-mc {
  background-color: #dfeaf2;
}
/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-nbr .x-panel-header-light-framed-collapsed-left {
  padding: 0 !important;
  border-width: 0 !important;
  border-radius: 0px;
  background-color: transparent;
}
/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
body.x-nbr .x-panel-header-light-framed-collapsed-left-frameInfo {
  font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5;
}
/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left-tl {
  background-position: 0 -10px;
}
/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left-tr {
  background-position: right -15px;
}
/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left-bl {
  background-position: 0 -20px;
}
/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left-br {
  background-position: right -25px;
}
/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left-ml {
  background-position: 0 left;
}
/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left-mr {
  background-position: right left;
}
/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left-tc {
  background-position: 0 0;
}
/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left-bc {
  background-position: 0 -5px;
}
/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left-tr, .x-panel-header-light-framed-collapsed-left-br, .x-panel-header-light-framed-collapsed-left-mr {
  padding-right: 5px;
}
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left-tl, .x-panel-header-light-framed-collapsed-left-bl, .x-panel-header-light-framed-collapsed-left-ml {
  padding-left: 5px;
}
/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left-tc, .x-panel-header-light-framed-collapsed-left-bc {
  height: 5px;
}
/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left-tl, .x-panel-header-light-framed-collapsed-left-bl, .x-panel-header-light-framed-collapsed-left-tr, .x-panel-header-light-framed-collapsed-left-br, .x-panel-header-light-framed-collapsed-left-tc, .x-panel-header-light-framed-collapsed-left-bc, .x-panel-header-light-framed-collapsed-left-ml, .x-panel-header-light-framed-collapsed-left-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-collapsed-left-corners.gif);
}
/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left-ml, .x-panel-header-light-framed-collapsed-left-mr {
  zoom: 1;
  background-image: url(images/panel-header/panel-header-light-framed-collapsed-left-sides.gif);
  background-repeat: repeat-y;
}
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-panel-header-light-framed-collapsed-left-mc {
  padding: 5px 5px 5px 5px;
}
/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-left-tl, .x-strict .x-ie7 .x-panel-header-light-framed-collapsed-left-bl {
  position: relative;
  right: 0;
}
/*<if slicer> */
/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-panel-header-light-framed-collapsed-left:after {
  display: none;
  content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-left-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-left-sides.gif)";
}
/*</if slicer> */
/* /* line 396, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel .x-panel-header-light-framed-top {
  border-bottom-width: 5px !important;
}
.x-panel .x-panel-header-light-framed-right {
  border-left-width: 5px !important;
}
.x-panel .x-panel-header-light-framed-bottom {
  border-top-width: 5px !important;
}
.x-panel .x-panel-header-light-framed-left {
  border-right-width: 5px !important;
}
/* line 400, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 404, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 408, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 414, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-nbr .x-panel-header-light-framed-collapsed-top {
  border-bottom-width: 0 !important;
}
.x-nbr .x-panel-header-light-framed-collapsed-right {
  border-left-width: 0 !important;
}
.x-nbr .x-panel-header-light-framed-collapsed-bottom {
  border-top-width: 0 !important;
}
.x-nbr .x-panel-header-light-framed-collapsed-left {
  border-right-width: 0 !important;
}
/* line 418, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 426, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-framed-vertical .x-panel-header-text-container {
  -webkit-transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  -moz-transform: rotate(90deg);
  -moz-transform-origin: 0 0;
  -o-transform: rotate(90deg);
  -o-transform-origin: 0 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
}
/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */
.x-ie9m .x-panel-header-light-framed-vertical .x-panel-header-text-container {
  background-color: #dfeaf2;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2);
}
/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-framed .x-panel-header-icon {
  width: 16px;
  height: 16px;
  background-position: center center;
}
.x-panel-header-light-framed .x-panel-header-glyph {
  color: white;
  font-size: 16px;
  line-height: 16px;
  opacity: 0.5;
}
/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-ie8m .x-panel-header-light-framed .x-panel-header-glyph {
  color: #eff4f8;
}
/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-framed-horizontal .x-panel-header-icon-before-title {
  margin: 0 6px 0 0;
}
.x-panel-header-light-framed-horizontal .x-panel-header-icon-after-title {
  margin: 0 0 0 6px;
}
/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-framed-vertical .x-panel-header-icon-before-title {
  margin: 0 0 6px 0;
}
.x-panel-header-light-framed-vertical .x-panel-header-icon-after-title {
  margin: 6px 0 0 0;
}
/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-framed-horizontal .x-tool-after-title {
  margin: 0 0 0 6px;
}
.x-panel-header-light-framed-horizontal .x-tool-before-title {
  margin: 0 6px 0 0;
}
/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-header-light-framed-vertical .x-tool-after-title {
  margin: 6px 0 0 0;
}
.x-panel-header-light-framed-vertical .x-tool-before-title {
  margin: 0 0 6px 0;
}
/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 684, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x-panel-light-framed-resizable {
  overflow: visible;
}
.x-panel-light-framed-resizable .x-panel-handle {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.x-panel-light-framed-resizable .x-panel-handle-north-br {
  top: -5px;
}
.x-panel-light-framed-resizable .x-panel-handle-south-br {
  bottom: -5px;
}
.x-panel-light-framed-resizable .x-panel-handle-east-br {
  right: -5px;
}
.x-panel-light-framed-resizable .x-panel-handle-west-br {
  left: -5px;
}
.x-panel-light-framed-resizable .x-panel-handle-northwest-br {
  left: -5px;
  top: -5px;
}
.x-panel-light-framed-resizable .x-panel-handle-northeast-br {
  right: -5px;
  top: -5px;
}
.x-panel-light-framed-resizable .x-panel-handle-southeast-br {
  right: -5px;
  bottom: -5px;
}
.x-panel-light-framed-resizable .x-panel-handle-southwest-br {
  left: -5px;
  bottom: -5px;
}
/* line 687, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 696, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 699, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 702, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 705, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 708, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 712, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 716, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 720, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
/* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-framed-outer-border-l {
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-framed-outer-border-b {
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-framed-outer-border-bl {
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-framed-outer-border-r {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
}
/* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-framed-outer-border-rl {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-framed-outer-border-rb {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-framed-outer-border-rbl {
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-framed-outer-border-t {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
}
/* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-framed-outer-border-tl {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-framed-outer-border-tb {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-framed-outer-border-tbl {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-framed-outer-border-tr {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
}
/* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-framed-outer-border-trl {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-left-color: #0097BA !important;
  border-left-width: 1px !important;
}
/* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-framed-outer-border-trb {
  border-top-color: #0097BA !important;
  border-top-width: 1px !important;
  border-right-color: #0097BA !important;
  border-right-width: 1px !important;
  border-bottom-color: #0097BA !important;
  border-bottom-width: 1px !important;
}
/* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */
.x-panel-light-framed-outer-border-trbl {
  border-color: #0097BA !important;
  border-width: 1px !important;
}
/* line 1, ../../sass/src/form/field/Trigger.scss */
.x-form-trigger {
  height: 22px;
}
/* line 9, ../../sass/src/form/field/Trigger.scss */
.x-form-trigger-wrap {
  border: 1px solid;
  border-color: silver #d9d9d9 #d9d9d9;
}
.x-form-trigger-wrap .x-form-text {
  border-width: 0;
  height: 22px;
}
/* line 12, ../../sass/src/form/field/Trigger.scss */
/* line 16, ../../sass/src/form/field/Trigger.scss */
.x-content-box .x-form-trigger-wrap .x-form-text {
  height: 15px;
}
/* line 22, ../../sass/src/form/field/Trigger.scss */
.x-form-trigger-wrap-focus .x-form-trigger-wrap {
  border-color: #0097BA;
}
/* line 26, ../../sass/src/form/field/Trigger.scss */
.x-form-invalid .x-form-trigger-wrap {
  border-color: #cf4c35;
}
/* line 3, ../../sass/src/form/field/File.scss */
.x-form-file-wrap .x-form-trigger-wrap {
  border: 0;
}
.x-form-file-wrap .x-form-trigger-wrap .x-form-text {
  border: 1px solid;
  border-color: silver #d9d9d9 #d9d9d9;
  height: 24px;
}
/* line 7, ../../sass/src/form/field/File.scss */
/* line 13, ../../sass/src/form/field/File.scss */
.x-content-box .x-form-file-wrap .x-form-trigger-wrap .x-form-text {
  height: 15px;
}
/* line 1, ../../sass/src/form/field/HtmlEditor.scss */
.x-html-editor-container {
  border: 1px solid;
  border-color: silver #d9d9d9 #d9d9d9;
}
/* line 1, ../../sass/src/grid/header/Container.scss */
.x-grid-header-ct {
  border: 1px solid silver;
}
/* line 6, ../../sass/src/grid/column/Column.scss */
.x-column-header-trigger {
  background-image: url(images/grid/hd-pop.png);
  border-left: 1px solid silver;
}
/* line 18, ../../sass/src/grid/column/Column.scss */
.x-column-header-last {
  border-right: 0;
  border-right: 0 none;
}
.x-column-header-last .x-column-header-over .x-column-header-trigger {
  border-right: 1px solid silver;
}
/* line 20, ../../sass/src/grid/column/Column.scss */
/* line 25, ../../sass/src/grid/column/Column.scss */
/* line 2, ../../sass/src/layout/container/Accordion.scss */
.x-accordion-hd .x-tool-img {
  background-image: url(images/tools/tool-sprites.png);
}
/* line 6, ../../sass/src/layout/container/Accordion.scss */
.x-accordion-item .x-accordion-hd-over {
  background-color: #0097BA;
}
/* line 1, ../../sass/src/resizer/Resizer.scss */
.x-resizable-handle {
  background-color: #0097BA;
  background-repeat: no-repeat;
}
/* line 10, ../../sass/src/resizer/Resizer.scss */
.x-resizable-over .x-resizable-handle-east, .x-resizable-over .x-resizable-handle-west {
  background-position: center;
}
.x-resizable-pinned .x-resizable-handle-east, .x-resizable-pinned .x-resizable-handle-west {
  background-position: center;
}
/* line 15, ../../sass/src/resizer/Resizer.scss */
.x-resizable-over .x-resizable-handle-south, .x-resizable-over .x-resizable-handle-north {
  background-position: center;
}
.x-resizable-pinned .x-resizable-handle-south, .x-resizable-pinned .x-resizable-handle-north {
  background-position: center;
}
/* line 19, ../../sass/src/resizer/Resizer.scss */
.x-resizable-over .x-resizable-handle-southeast, .x-resizable-pinned .x-resizable-handle-southeast {
  background-position: -2px -2px;
}
/* line 23, ../../sass/src/resizer/Resizer.scss */
.x-resizable-over .x-resizable-handle-northwest, .x-resizable-pinned .x-resizable-handle-northwest {
  background-position: 2px 2px;
}
/* line 27, ../../sass/src/resizer/Resizer.scss */
.x-resizable-over .x-resizable-handle-northeast, .x-resizable-pinned .x-resizable-handle-northeast {
  background-position: -2px 2px;
}
/* line 31, ../../sass/src/resizer/Resizer.scss */
.x-resizable-over .x-resizable-handle-southwest, .x-resizable-pinned .x-resizable-handle-southwest {
  background-position: 2px -2px;
}
.x-panel-header-default-top, .x-window-header-default-top {
  box-shadow: none !important;
}
.x-tool-over .x-tool-close {
  background-position: -16px 0;
}
.x-tool-over .x-tool-maximize {
  background-position: -16px -32px;
}
.x-tip {
  border-color: #067C99 !important;
  background-color: #87c5d4 !important;
  color: #067C99 !important;
}
* {
  box-sizing: border-box;
}
html, body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
  position: static;
  right: 0;
  bottom: 0;
}
input:focus {
  outline: none;
}
section {
  height: 100%;
}
body > section {
  overflow: hidden;
}
body.no-webgl img, body.no-webgl progress, body.no-webgl div {
  display: none !important;
}
#mainMap {
  float: left;
  width: 100%;
  height: 100%;
}
#map {
  width: 100%;
  height: 100%;
  z-index: 0;
}
.webgis-map-composition-label {
  color: #53433b;
}
img {
  border: 0;
}
.panenavi {
  position: fixed;
  right: 0;
  top: 36px;
  transition: all 0.5s ease;
  z-index: 2;
  height: 100%;
  pointer-events: none;
}
.panenavi > * {
  pointer-events: auto;
}
.panenavi #sidebar-button-list.windowMode {
  margin-right: 2vw;
}
.panenavi ul {
  list-style: none;
  margin: 0px 0px;
  padding: 0px 0px;
}
.panenavi ul li {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}
.panenavi ul li a {
  line-height: 36px;
  height: 36px;
  width: 36px;
  font-size: 0px;
  display: block;
  background: #FFF url("images/icon-control.png") no-repeat;
  cursor: pointer;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
}
.panenavi ul li a:hover {
  background-color: #DCDCDC;
  text-decoration: none;
}
.panenavi ul li a:focus {
  text-decoration: none;
}
.panenavi ul li a.mor {
  background-position: -36px -36px;
}
.panenavi ul li a#legend-button {
  overflow: hidden;
  position: relative;
  background: #FFF;
}
.panenavi ul li a#legend-button.active span:hover {
  background-color: #0097BA;
}
.panenavi ul li a#legend-button span {
  position: relative;
  font-size: 26px;
  padding-top: 1px;
}
.panenavi ul li a#legend-button span:hover {
  background-color: #DCDCDC;
}
.panenavi ul li a#legend-button:before {
  content: "";
  width: 36px;
  height: 36px;
  transform: translatex(-100%);
  display: block;
  position: absolute;
  background-color: #0097BA;
}
.panenavi ul li a#legend-button.leg-loading:before {
  animation: legend-animation 1s linear infinite;
}
.panenavi ul li a.mapc {
  background-position: -72px 0px;
}
.panenavi ul li a.mmro {
  background-position: -72px -108px;
}
.panenavi ul li a.meas {
  background-position: 0px -288px;
}
.panenavi ul li a.sett {
  background-position: 0px -108px;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .panenavi ul li a {
    background-image: url("images/icon-controlx2.png");
    background-size: 108px 432px;
  }
}
@keyframes legend-animation {
  0% {
    transform: translatex(-100%);
  }
  100% {
    transform: translatex(100%);
  }
}
.panel-more {
  display: none;
  margin-right: 8px;
  padding: 4px;
  border: none;
  background-color: transparent;
  padding: 0;
  width: 24px;
  align-items: center;
  justify-content: center;
}
.panel-more .webgis-more {
  aspect-ratio: 1;
  opacity: 0.6;
  height: 100%;
}
.panel-more.active {
  background-color: #FFF;
}
.panel-more.active .webgis-more {
  opacity: 1;
  background-color: #348fa8;
}
.panel-more:not(.active):hover .webgis-more, .panel-more:not(.active):focus-visible .webgis-more {
  opacity: 1;
}
.floatingpanel {
  background-color: #0097BA;
  width: 288px;
  height: 100%;
  display: block;
  position: fixed;
  right: -288px;
  transition: right 0.5s ease;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
  top: 0px;
  z-index: 100;
}
.floatingpanel ~ .panenavi .floatingpanelbutton-active,
.floatingpanel ~ .panenavi .active-button {
  background-color: #0097BA;
}
.floatingpanel ~ .panenavi .floatingpanelbutton-active.mapc,
.floatingpanel ~ .panenavi .active-button.mapc {
  background-position: -72px -36px;
}
.floatingpanel:target {
  right: 0px;
}
.floatingpanel:target ~ .panenavi {
  right: 288px;
}
.floatingpanel:target ~ #hexban {
  right: 0px;
}
.floatingpanel:target ~ #swipeban {
  right: -36px;
}
#legend:target ~ .panenavi .leg.floatingpanelbutton {
  background-color: #0097BA;
}
#legend:target ~ .panenavi #sidebar-button-list:not(.windowMode) .icon-legend {
  color: #FFFFFF;
}
#legend:target ~ .panenavi #sidebar-button-list:not(.windowMode) .icon-legend:hover {
  background-color: #0097BA;
}
#measurement:target ~ .panenavi .meas {
  background-position: -36px -288px;
}
#settings:target ~ .panenavi .sett {
  background-position: -36px -324px;
}
#mMapRenderOptions:target ~ .panenavi .mmro {
  background-position: -72px -144px;
}
.ixi {
  touch-action-delay: none;
  position: absolute;
  top: 6px;
  right: 6px;
  display: block;
  display: flex;
}
.ixi a {
  width: 24px;
  height: 24px;
  background: url(images/right-back.png) no-repeat left top;
  line-height: 24px;
  display: block;
  font-size: 0px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
}
.ixi a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
#insideInfo {
  margin: 12px;
  color: #FFF;
  font-size: 12px;
  line-height: 150%;
}
#insideInfo h1,
#insideInfo h2,
#insideInfo h3,
#insideInfo h4,
#insideInfo h5,
#insideInfo h6 {
  font-size: 15px;
  margin: 6px 0px;
}
#insideInfo img {
  float: none !important;
  margin: 8px 0px 12px 0px;
  background: #FFF;
}
#right {
  width: 288px;
  height: 100%;
}
.pane_title {
  background-color: #067C99;
  font-size: 15px;
  font-weight: bold;
  line-height: 36px;
  color: #FFF;
  padding-left: 12px;
}
.webgis-search-panel:hover .webgis-search-advanced, .webgis-search-panel:hover .webgis-search-combo {
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
}
.webgis-search-combo {
  background: url("images/icons.png") no-repeat 0px 0px;
  background-origin: border-box;
  background-color: #0097BA;
  position: absolute;
  right: 0px;
  top: 0px;
  height: 36px !important;
  width: 36px !important;
  cursor: pointer;
  z-index: 30001;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .webgis-search-combo {
    background-image: url("images/iconsx2.png");
    background-size: 36px 36px;
  }
}
.webgis-search-panel {
  transition: 0.3s;
  width: 36px !important;
  height: 36px !important;
  overflow: visible !important;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
}
.webgis-search-panel table.x-field {
  width: 100% !important;
}
.webgis-search-panel span > div {
  height: 30px !important;
  display: block !important;
}
.webgis-search-panel .x-form-text, .webgis-search-panel .x-panel-body-default {
  border: 0 !important;
  background: white !important;
}
.webgis-search-panel:hover, .webgis-search-panel-combo-focused, .webgis-search-panel-combo-not-empty {
  width: 288px !important;
  max-width: 100% !important;
  max-width: calc(100vw - 107px) !important;
}
.webgis-search-panel:hover .x-panel-body, .webgis-search-panel-combo-focused .x-panel-body, .webgis-search-panel-combo-not-empty .x-panel-body {
  width: 288px !important;
  max-width: 100% !important;
  max-width: calc(100vw - 107px) !important;
}
.webgis-search-panel:hover .x-panel-body span:first-of-type, .webgis-search-panel-combo-focused .x-panel-body span:first-of-type, .webgis-search-panel-combo-not-empty .x-panel-body span:first-of-type {
  overflow: hidden;
}
.webgis-search-panel:hover .x-panel-body span:first-of-type input, .webgis-search-panel-combo-focused .x-panel-body span:first-of-type input, .webgis-search-panel-combo-not-empty .x-panel-body span:first-of-type input {
  padding-right: 67px;
}
.webgis-search-panel-combo-focused .webgis-search-combo-clear, .webgis-search-panel-combo-not-empty .webgis-search-combo-clear {
  visibility: visible;
}
.webgis-search-combo-clear {
  visibility: hidden;
  position: relative;
  right: -224px;
  top: -36px;
  z-index: 30000;
  cursor: pointer;
  border-radius: 15px;
  padding-left: 5px;
  display: block;
}
.webgis-search-combo-clear:before {
  content: "×";
  font-size: 20px;
  color: gray;
  background-color: white;
}
.webgis-search-no-matching-item-found {
  font-size: 12px;
  color: #777;
  line-height: 28px;
  width: 100%;
  padding: 0;
  margin: 6px;
}
.webgis-search-results-panel {
  outline: none;
  z-index: 1 !important;
  background-color: #FFF;
  max-height: calc(100vh - 108px);
  overflow: hidden !important;
  border: 0 !important;
  box-shadow: 2px 2px 9px 0px rgba(50, 50, 50, 0.87);
  width: 288px !important;
}
@media (max-height: 220px) {
  .webgis-search-results-panel {
    max-height: calc(100vh - 108px);
  }
}
.webgis-search-results-panel .x-boundlist-item {
  line-height: normal;
  border-width: 0px;
  padding: 0 !important;
  border: 0 !important;
  background-color: #E7E7E7;
  display: flex;
  align-items: stretch;
}
.webgis-search-results-panel .x-boundlist-item-over {
  background-color: white !important;
}
.webgis-search-results-panel .x-panel-body-default {
  background-color: transparent !important;
}
.webgis-search-results-panel .x-boundlist-list-ct {
  max-height: calc(100vh - 108px);
}
@media (max-height: 220px) {
  .webgis-search-results-panel .x-boundlist-list-ct {
    max-height: calc(100vh - 108px);
  }
}
.webgis-search-item {
  white-space: normal;
  text-decoration: none;
  display: block;
  overflow: hidden;
  margin-bottom: 1px;
  margin-top: 1px;
  vertical-align: middle;
  padding-bottom: 8px;
  width: 100%;
}
.webgis-search-item-title, .webgis-search-item-description {
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.webgis-search-item-title {
  font-size: 14px;
  font-weight: normal;
  color: #0097BA;
  margin: 6px 0 0 0;
  padding: 0;
  padding-right: 2px;
  -webkit-line-clamp: 2;
}
.webgis-search-item-description {
  font-weight: normal;
  margin: 3px 6px 0 0;
  color: #777;
  font-size: 12px;
  clear: none;
  -webkit-line-clamp: 5;
}
.webgis-search-item-icon {
  vertical-align: middle;
  width: 48px;
  min-width: 48px;
  float: left;
  margin-right: 6px;
  background-position: center;
  background-repeat: no-repeat;
}
.webgis-search-header-font input {
  font-size: 15px;
  font-weight: normal;
  padding: 6px;
  color: #53433b;
  background-color: rgba(255, 255, 255, 0.9);
}
.webgis-search-match {
  font-weight: bold;
  color: #0097BA;
}
.webgis-search-results-map .leaflet-popup-content-wrapper, .webgis-search-results-map .leaflet-popup-tip {
  background-color: #FFF;
}
.webgis-search-results-map .leaflet-popup-content {
  margin: 7px 7px;
}
.webgis-search-results-map .popup-on-hover {
  bottom: 47px !important;
}
.webgis-search-results-map .popup-on-hover .webgis-search-result-marker-tooltip-item-coordinates, .webgis-search-results-map .popup-on-hover .webgis-search-result-marker-tooltip-item-more-info {
  visibility: hidden !important;
}
.webgis-search-results-map .popup-on-hover .leaflet-popup-tip-container {
  display: none;
}
.webgis-search-result-marker-tooltip {
  display: flex;
  min-height: 49px;
}
.webgis-search-result-marker-tooltip-item {
  flex-grow: 1;
  margin-right: 8px;
}
.webgis-search-result-marker-tooltip-item-type {
  font-size: 12px;
  margin-bottom: 0px;
  color: #777;
}
.webgis-search-result-marker-tooltip-item-description {
  color: #0097BA;
  font-size: 15px;
  margin: 6px 6px 6px 0px;
}
.webgis-search-result-marker-tooltip-item-coordinates {
  font-size: 11px;
  color: #777;
  line-height: 150%;
}
.webgis-search-result-marker-tooltip-item-more-info {
  text-decoration: none;
  text-align: right;
  display: none;
  width: 100%;
}
.popup-on-click .webgis-search-result-marker-tooltip-item-more-info {
  display: inline-block;
}
.hidden {
  visibility: hidden;
}
.visible {
  visibility: visible !important;
}
#webgis-search-indicator-bowlG {
  position: relative;
  top: 18px;
  left: 5px;
}
#webgis-search-indicator-bowl_ringG {
  position: relative;
  width: 28px;
  height: 28px;
}
.webgis-search-indicator-ball_holderG {
  position: relative;
  height: 0px;
  left: 0px;
  top: 0px;
  animation-name: ball_moveG;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.webgis-search-indicator-ballG {
  position: absolute;
  left: 0px;
  top: px;
  width: 3px;
  height: 3px;
  background: #FFF;
  border-radius: 3px;
}
@keyframes ball_moveG {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.webgis-search-panel:hover .webgis-search-advanced {
  right: -34px !important;
  transition: 0.3s !important;
}
.webgis-search-panel-combo-focused .webgis-search-advanced {
  right: -34px !important;
  transition: 0.3s !important;
}
.webgis-search-advanced {
  position: absolute;
  top: 0px;
  right: 0px;
  color: #f4ede3;
  font-size: 1.1em;
  border-radius: 0px;
  background-color: #A5D867;
  text-align: right;
  padding: 18px 10px;
  cursor: pointer;
  transition: 0.3s;
}
.webgis-search-advanced span {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.webgis-search-advanced:hover {
  color: #FFF !important;
  background-color: #067C99 !important;
}
.webgis-search-advanced-window {
  background-color: white !important;
  border-width: 0px !important;
  box-shadow: 2px 2px 9px 0px rgba(50, 50, 50, 0.87);
}
.webgis-search-advanced-window div {
  background-color: white !important;
  border-width: 0px !important;
}
.webgis-map-composition-draggable {
  cursor: move;
}
.webgis-map-composition-component {
  width: 22px;
  display: inline-block;
  height: 20px;
}
.webgis-map-composition-component-legend {
  background: url("images/legend_icon.png") no-repeat center center;
}
.webgis-map-composition-component-position {
  background: url("images/position_icon.png") no-repeat center center;
}
.webgis-map-compositions-wrap {
  display: grid;
}
.webgis-map-compositions-wrap:hover .webgis-map-compositions-hideable {
  visibility: visible;
  background-color: rgba(6, 124, 153, 0.5);
  color: white;
  transition: linear, background-color 0.2s;
}
.webgis-map-compositions-thumbnail, .webgis-map-compositions-wrap {
  width: 252px;
  height: 144px;
}
.webgis-map-compositions-wrap {
  margin-left: 12px;
  margin-top: 12px;
}
.webgis-map-compositions-thumbnail img, .webgis-map-compositions-wrap img {
  width: 252px;
  height: 144px;
}
.webgis-map-composition-label {
  position: relative;
  top: -144px;
  left: 0;
  color: #FFF;
  z-index: 2;
  background: rgba(5, 93, 115, 0.75);
  height: 36px;
  font-size: 14px;
  padding-top: 9px;
  padding-left: 12px;
}
.webgis-map-compositions-components {
  position: relative;
  top: -95px;
  right: -178px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  height: 45px;
  width: 22px;
}
.webgis-map-compositions-hideable {
  visibility: visible;
}
.webgis-map-compositions-hideable:hover {
  visibility: visible;
}
#webgis-map-compositions-dataview-drag-status-proxy-ghost .webgis-map-compositions-hideable {
  visibility: visible !important;
}
.webgis-legend-panel {
  border-radius: 0px !important;
}
.webgis-legend-panel .x-header, .webgis-legend-panel .webgis-legend-entry-hidden, .webgis-legend-panel .webgis-legend-entry-visible, .webgis-legend-panel .x-legend-itempanel {
  border-radius: 0px !important;
}
.webgis-legend-panel {
  box-shadow: initial !important;
}
.webgis-legend-panel .webgis-legend-entry-visibility-message {
  color: white;
  padding: 0px 12px;
  width: 100%;
  margin: 0px;
  height: 36px !important;
  line-height: 36px;
  background-color: #808080;
}
.webgis-legend-panel .webgis-legend-entry-hidden .webgis-legend-entry-visibility-message {
  display: table;
}
.webgis-legend-panel .webgis-legend-entry-hidden .webgis-legend-entry-property {
  display: none;
}
.webgis-legend-panel .webgis-legend-entry-visible .webgis-legend-entry-visibility-message {
  display: none;
}
.webgis-legend-panel .webgis-legend-entry-visible .webgis-legend-entry-property {
  display: table;
}
.webgis-legend-panel .webgis-legend-entry-loading {
  background: url("images/loadinglayers8.gif") 0px 0px no-repeat !important;
}
.webgis-legend-panel .x-header-text-container {
  color: #53433b;
}
.webgis-legend-panel .x-panel-header-text {
  font-weight: normal;
  color: white;
  line-height: 36px;
}
.webgis-legend-panel .webgis-legend-moved-item .webgis-legend-move-up-tool, .webgis-legend-panel .webgis-legend-moved-item .webgis-legend-move-down-tool {
  display: block;
}
.webgis-legend-panel .webgis-legend-moved .webgis-legend-moved-item .webgis-legend-move-apply-tool, .webgis-legend-panel .webgis-legend-moved .webgis-legend-moved-item .webgis-legend-move-cancel-tool {
  display: block;
}
.webgis-legend-panel .webgis-legend-move-up-tool {
  display: none;
  background-image: url("images/up_icon.png") !important;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .webgis-legend-panel .webgis-legend-move-up-tool {
    background-image: url("images/up_iconx2.png") !important;
    background-size: 24px 24px;
  }
}
.webgis-legend-panel .webgis-legend-move-down-tool {
  display: none;
  background-image: url("images/down_icon.png") !important;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .webgis-legend-panel .webgis-legend-move-down-tool {
    background-image: url("images/down_iconx2.png") !important;
    background-size: 24px 24px;
  }
}
.webgis-legend-panel .webgis-legend-move-apply-tool {
  display: none;
  background-image: url("images/apply_icon.png") !important;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .webgis-legend-panel .webgis-legend-move-apply-tool {
    background-image: url("images/apply_iconx2.png") !important;
    background-size: 24px 24px;
  }
}
.webgis-legend-panel .webgis-legend-move-cancel-tool {
  display: none;
  background-image: url("images/cancel_icon.png") !important;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .webgis-legend-panel .webgis-legend-move-cancel-tool {
    background-image: url("images/cancel_iconx2.png") !important;
    background-size: 24px 24px;
  }
}
.webgis-legend-panel .webgis-legend-entry-hidden .x-panel-header {
  background: gray;
  border: 0px !important;
}
.webgis-legend-panel .webgis-legend-entry-hidden:hover {
  border-top: none;
  border-bottom: 1px solid #f4ede3;
  border-right: none;
  border-left: none;
}
.webgis-legend-panel .webgis-legend-entry-hidden .webgis-legend-visibility-tool {
  background-image: url("images/eye_closed_icon.png") !important;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .webgis-legend-panel .webgis-legend-entry-hidden .webgis-legend-visibility-tool {
    background-image: url("images/eye_closed_iconx2.png") !important;
    background-size: 24px 24px;
  }
}
.webgis-legend-panel .webgis-legend-entry-visible .x-panel-header {
  background: transparent;
  border: 0px !important;
}
.webgis-legend-panel .webgis-legend-entry-visible:hover {
  background: #0097BA;
}
.webgis-legend-panel .webgis-legend-entry-visible .webgis-legend-visibility-tool {
  background-image: url("images/eye_icon.png") !important;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .webgis-legend-panel .webgis-legend-entry-visible .webgis-legend-visibility-tool {
    background-image: url("images/eye_iconx2.png") !important;
    background-size: 24px 24px;
  }
}
.webgis-legend-panel .x-window-header {
  background-color: white;
}
.webgis-legend-panel .x-panel-dd-spacer {
  border: 1px dashed #A5D867;
  background-color: #067C99;
}
.webgis-legend-panel .webgis-legend-entry-hidden, .webgis-legend-panel .webgis-legend-entry-visible, .webgis-legend-panel .x-legend-itempanel {
  border-top: none;
  border-bottom: 1px solid #f4ede3;
  border-right: none;
  border-left: none;
}
.webgis-legend-panel .x-legend-itempanel .x-tool {
  background-image: url("images/expand_icon.png");
}
.webgis-legend-panel .webgis-legend-entry-visible .x-tool, .webgis-legend-panel .webgis-legend-entry-hidden .x-tool {
  background-image: url("images/expand_icon_up.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .webgis-legend-panel .webgis-legend-entry-visible .x-tool, .webgis-legend-panel .webgis-legend-entry-hidden .x-tool {
    background-image: url("images/expand_icon_upx2.png");
    background-size: 24px 24px;
  }
}
.webgis-legend-panel .x-panel-default-framed-collapsed .x-tool {
  background-image: url("images/expand_icon_down.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .webgis-legend-panel .x-panel-default-framed-collapsed .x-tool {
    background-image: url("images/expand_icon_downx2.png");
    background-size: 24px 24px;
  }
}
.webgis-legend-panel .webgis-legend-entry-hidden .x-tool img, .webgis-legend-panel .webgis-legend-entry-visible .x-tool img, .webgis-legend-panel .x-legend-itempanel .x-tool img {
  display: none;
}
.webgis-legend-panel .webgis-legend-entry-visible .x-panel-body, .webgis-legend-panel .x-legend-itempanel .x-panel-body {
  background-color: #067C99 !important;
  padding: 4px 0px;
}
.webgis-legend-panel .webgis-legend-entry-hidden .x-panel-body {
  background-color: #777;
}
.webgis-legend-panel .webgis-legend-entry-hidden .x-slider-thumb, .webgis-legend-panel .webgis-legend-entry-visible .x-slider-thumb, .webgis-legend-panel .x-legend-itempanel .x-slider-thumb {
  background: #FFF !important;
  border-radius: 8px;
}
#webgis-legend-control-body {
  border: 0;
}
#webgis-legend-control,
#webgis-legend-control-body {
  height: 100% !important;
  width: 100% !important;
}
#webgis-legend-control .x-panel-body {
  background-color: #0097BA;
}
#webgis-legend-control .x-panel-default-framed {
  background-color: #0097BA;
}
#webgis-legend-control-body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}
#webgis-legend-control {
  height: calc(100% - 36px) !important;
}
#hexban {
  background-color: #0097BA;
  width: 288px;
  height: 100%;
  display: block;
  position: fixed;
  right: -288px;
  transition: right 0.5s ease;
  top: 0px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
  z-index: 3;
}
#swipeban {
  background-color: transparent;
  width: 36px;
  height: 100%;
  display: block;
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 2;
}
.webgis-search-advanced-window {
  font-family: Arial, Helvetica, sans-serif;
  color: #777;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
  border-radius: 0px;
  border: 0px;
}
.webgis-search-advanced-window .x-form-item-label-left {
  width: 128px !important;
  margin-top: 6px;
  color: #0097BA;
}
.webgis-search-advanced-window .x-autocontainer-form-item {
  margin-left: 6px;
}
.webgis-search-advanced-window table td.x-form-item-body {
  width: 237px !important;
}
.toolss {
  display: none;
}
#branding {
  position: absolute;
  pointer-events: none;
  bottom: 24px;
  left: calc(50% - 88px);
  display: block;
  opacity: 0.65;
  width: 226px;
  height: 80px;
  background-size: 242px;
  background-image: url("images/hex-logox2.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1) and (max-width: 900px) {
  #branding {
    transform: scale(0.6);
  }
}
#map-toolbars {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: 36px;
  width: 0;
  overflow: visible;
}
#map-toolbars .btn-group {
  margin-top: 5px;
}
#map-toolbars .color-box {
  height: 20px;
  display: inline-block;
  margin-bottom: -5px;
}
#map-toolbars .color-name {
  margin-bottom: -2px;
}
#map-toolbars .color-line {
  height: 10px;
  overflow: hidden;
}
#toolbars-left-bottom {
  position: fixed;
  left: 2%;
  bottom: 36px;
}
#toolbars-left-bottom .feature-info-toolbar > div {
  max-width: 36px;
}
#toolbars-left-bottom .feature-info-toolbar #measurement-button {
  max-width: none;
}
#toolbars-left-bottom .toolbar {
  margin-top: 5px;
  width: 36px;
  display: grid;
  background: #FFF;
  z-index: 99;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
}
#toolbars-left-bottom .toolbar.locate-me-toolbar {
  left: 0px;
  bottom: 84px;
}
#toolbars-left-bottom .toolbar.zoom-toolbar {
  left: 0px;
  bottom: 0px;
}
#toolbars-left-bottom .toolbar.custom-toolbar {
  left: 0px;
  bottom: 104px;
}
#toolbars-left-bottom .toolbar .toolspanelbutton {
  width: 36px;
  height: 36px;
  display: block;
  cursor: pointer;
  background-color: #FFF;
  background-image: url("images/icon-control.png");
  background-repeat: no-repeat;
}
#toolbars-left-bottom .toolbar .toolspanelbutton:hover {
  background-color: #DCDCDC;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  #toolbars-left-bottom .toolbar .toolspanelbutton {
    background-image: url("images/icon-controlx2.png");
    background-size: 108px 432px;
  }
}
#toolbars-left-bottom .toolbar .windowMode {
  display: none;
}
#toolbars-left-bottom .toolbar .panelMode {
  margin-left: 0;
}
#toolbars-left-bottom .toolbar #locate_me {
  background-position: 0px -252px;
}
#toolbars-left-bottom .toolbar #locate_me.in-progress {
  animation: control-blinking-animation 0.9s infinite;
  animation-timing-function: ease-out;
}
@keyframes control-blinking-animation {
  from {
    background-color: #FFCC00;
  }
  to {
    background-color: #FFF;
  }
}
#toolbars-left-bottom .toolbar #locate_me.enabled {
  background-color: #FFCC00;
}
#toolbars-left-bottom .toolbar #zum_minus {
  background-position: -36px 0px;
}
#toolbars-left-bottom .toolbar #zum_plus {
  background-position: 0px 0px;
}
#toolbars-left-bottom .toolbar #info_button {
  background-position: -72px -72px;
}
#toolbars-left-bottom .toolbar #tool-docs {
  background-position: -36px -108px;
}
#toolbars-left-bottom .toolbar #tool-ext2 {
  background-position: 0px -108px;
}
#toolbars-left-bottom .toolbar #tool-ext {
  background-position: -72px -108px;
}
#webgis-map-compositions-dataview-container {
  height: calc(100% - 36px);
  scrollbar-face-color: #aaa;
  scrollbar-arrow-color: #eaeaea;
  scrollbar-track-color: #eaeaea;
  scrollbar-shadow-color: #eaeaea;
  scrollbar-highlight-color: #000000;
  scrollbar-3dlight-color: #eaeaea;
  scrollbar-darkshadow-Color: #eaeaea;
}
#webgis-map-compositions-dataview-container #webgis-map-compositions-dataview {
  height: 100%;
  outline: none;
}
#webgis-map-compositions-dataview-container #webgis-map-compositions-dataview-container-outerCt {
  height: 100%;
}
#webgis-map-compositions-dataview-container ::-webkit-scrollbar {
  width: 12px;
}
#webgis-map-compositions-dataview-container ::-webkit-scrollbar-track {
  background-color: #eaeaea;
  border-left: 1px solid #ccc;
}
#webgis-map-compositions-dataview-container ::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
#webgis-map-compositions-dataview-container ::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .webgis-map-compositions-hideable {
    visibility: visible;
  }
  .webgis-map-compositions-hideable:hover {
    visibility: visible;
  }
}
.mmap-objects-pane .webgis-search-result-marker-placeholder.webgis-clickable {
  margin-bottom: -41px;
}
.mmap-objects-pane .leaflet-popup-pane {
  opacity: 0;
  z-index: -1;
  transition: opacity 0.2s ease;
  position: absolute;
  margin-top: 30px;
}
.mmap-objects-pane .popup-on-hover {
  bottom: inherit !important;
}
.webgis-search-result-marker-placeholder {
  position: fixed;
  z-index: 1;
  display: block;
}
.webgis-clickable {
  cursor: pointer;
}
.floatingpanelbutton {
  touch-action-delay: none;
}
.mapContainer .grabbing-map-container {
  cursor: -moz-grabbing;
}
.mapContainer canvas {
  cursor: -moz-grab;
}
.mapContainer.cross-hair {
  cursor: crosshair;
}
.mapContainer.pointer {
  cursor: pointer;
}
.mapContainer.disable-svg-pointer-events svg, .mapContainer.disable-svg-pointer-events svg path {
  pointer-events: none;
}
#licencenotice, #configurationerror {
  position: absolute;
  left: calc(50vw - 345px + 26px);
  top: calc(50vh - 200px + 345px);
  width: 400px;
  color: rgb(0, 0, 0);
  text-align: justify;
  font-size: 9pt;
  font-weight: bold;
  line-height: 1;
}
#configurationerror {
  color: #FF6666;
  display: none;
}
#versioninfo {
  display: none;
  position: absolute;
  left: calc(50vw - 345px + 26px);
  top: calc(50vh - 200px + 292px);
  width: 400px;
  color: rgb(0, 0, 0);
  font-size: 8pt;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
}
#copyrightnotice {
  display: none;
  position: absolute;
  left: calc(50vw - 345px + 26px);
  top: calc(50vh - 200px + 344px);
  width: 525px;
  color: rgb(0, 0, 0);
  font-size: 6pt;
  font-weight: bold;
  line-height: 1;
}
#nonproductionbutton {
  display: none;
  position: absolute;
  left: calc(50vw - 345px + 446px);
  top: calc(50vh - 200px + 345px);
  min-width: 80px;
}
#nonproductionbutton[disabled] {
  color: graytext;
}
.nonproduction {
  color: red !important;
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
  .webgis-search-advanced-window {
    top: 92px !important;
  }
  .webgis-search-results-panel {
    top: 92px !important;
  }
}
@media all and (max-height: 215px) {
  .toolbar,
  #attributions,
  #branding {
    display: none !important;
  }
}
#attributions {
  bottom: 0;
  font-size: 11px;
  left: 2%;
  position: fixed;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  padding: 3px;
  z-index: 1;
}
#attributions a {
  color: #A5D867 !important;
  text-decoration: none;
}
#attributions a:hover {
  color: #7CA24D !important;
  text-decoration: underline;
}
.webgis-legend-control-innerCt .x-legend-column {
  height: 100%;
}
.webgis-touch .toolspanelbutton:hover {
  background-color: white !important;
}
.webgis-touch .floatingpanelbutton.active-button {
  background-color: #0097BA;
}
.webgis-legend-entry .x-header-text-container {
  width: 196px !important;
}
.webgis-legend-entry.webgis-legend-moved-item .x-header-text-container {
  width: 146px !important;
}
.webgis-legend-moved .webgis-legend-entry.webgis-legend-moved-item .x-header-text-container {
  width: 96px !important;
}
.x-panel-ghost {
  background-color: #0097BA !important;
}
.x-panel-ghost .x-panel-header {
  background: #0097BA !important;
}
.hulig {
  width: 256px;
  height: 256px;
  position: absolute;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAP8AAAD/CAMAAAAJ1vD4AAADAFBMVEUAAAAAAAARDQ0DAgIAAAAFBAQMCQoDAgMAAAAIBQWVgXcAAADdya4BAAAFBAQxIiIPCwsAAADXwKegcWx7Z2JcUkojHxwTDQ0nHh0+M0Gfj4F9bmRuYFU2IyYFBAQCAQFEOjUAAADNt6ARDA3axaquf3R3Y2BkUk2+lYnUwKeYYWBePkJJPzkcGBllREigeG8qHB4hGxqEZWBvSUmNYFxuR0eGdXBUQDxOPjpXTUU2KisKBg89MS9COjMIBQobFRURDQwLCQgEAwOjSV4NDAtdSkZJNzQgFxgPCgwgGS5YSkxKLDJqVExtXFZjRkp0YVvInZCZamd/amJYPUFONzqReWqAXk9FLTJJNDNJP0yxXG63mpKpa3awioK5cX+ROE6XiYOBa2SNd2qSYly8mZURDSCynoxuS0xgT1Ouhnx/VFWKQ1N+V1WGVVZtPkR5LUOVhXZhQUKOamF2UE83LDVoLz4pGSKBYFiGZV2Cd29QNTNTJTBeQD1JQD4xISMTCxIyLC83MSxwT1HaxauDWlt2UlKCWVi1nYd5UVJoREp/VlhwS050UFTOuJ6Aa2bLtJt7VVa/qJJrSExtS1AQChp+VlZ4UlW7o43Bq5Z9V1jSu6PWwKl/Wlh4V1dzTlB9aGabhXm3g3ejbmoRDiSulYHjtaamjXyNd26te3J9U1iIc2vIsp+fiHrHr5XUmImWcGySXV2vmIbOn5LCkIaRe3Gmk4ayhHmeX0+mjoG/iXnUo5OdYmMXDyCne3G0fnK+hXyaf3SaZmKMW1fJjn+6pZLAi3+qkH3IsJm5iX2CVE/LtaOebmkVESm0nYysl4WBXlvVvafGlYeijHy7fXWmdWyJXFfQuqC3oIqVfXR9UFK5a07Nl4XbrJ6zmoetZ1GoZVCSWU6JbWe4e3O0d3DGiH2ud22xfXfer6CVYleiaFaPYmIpGy6ujX2vTWWiY1CkmZW1oo6NaGSuPV5cU1qdZliFWFiUXVTOe1O8clKwbFLLd0+UI0hdPEVRN0N7J0OJH0PWVe49AAAAgnRSTlMAAWcmFz5bMQVJ/g3+HTqaVwj+/f6ze26K/ejXxbc3Ip4Q/nX5/vvf/vn58qSD9e6fcfr59+DeycSxsa+jmYt+VEUr/U+4rZB+/NzW0eL77/379Oze9ePKt/78+/v6+fb19fT08/Px8e/t7e3p6OXl5OLf39/d2tjVz7+9t7KtpaGOa5QpwwAACj9JREFUeAHt23dUVHfex/EZOtjFYvKYolFRMZree2J6QU3Js7333nthGCkgDCAFYRA1IWCMBo0GQsBBAQvB7pqsMW40YjRley+73zfMXgaZAWY5B+be3+/1PTH5930/95KcE7UNQDjGwqYk3a/7dT/UTP8krsYI6H7dr/t1vwp+hK9gDGKh+3W/7tf9FmfHNzAXX8ZF0P26X/frfhV8DwfxTaiQrPt1v+7X/SPwecxEJBTt75BTuV/yVe6XeuX69fc/Fi/hbtigXL/uf53+J5Xt1/sr2G/HQmxEFHS/CnS/7tf90UjChxEBG+yIxSWIhB2q9ev+yXKjLdiv99f9d+NpPAgbYnAjlvd0C+ywWv9pZfvnGftP1fsr2k++ev3hmI2ncRNsuBfL8bLc8pcNyxEJJfppp17RfvKlX+X9OVX3B9GW7Z+C1w2Xw47v4B9oQwfO4h3cAqv1n1a6n3y//fFt8fHW78fpAPvLE1BtfwXefzu+i87/9N+ISNhwAQ5ivaER/8RPYZ1+9NGv+3X/Rov16/3DsRFPYwFiYMOtWI2tiEcjMjAXYZiMewyTcSHGwZL91dUB+qeYsn99kP3VGX77yTdj/3pj/8cG039Z5xNQ4f2n3wrffxRewmk04EmEYzKex1acwHY0YTWS/cjDw1iCS2CH2fs7TjQOvD/PTP3r++8/yP4d3v76uU313v5MuW75ct795RFYbX8/738++b378/3vb/bv33j/6wO9/8b+vAAh3z8KC7C/02y5TYjHZ3ESJ7Aeb+H5bXJNqEYKSuCC05nmLMwqzIJIxr2wI0T7k/YnJXU+gMH3p4FyM/Xvl/ok8md7+xcE6N8u/dvOyvntLygI0H+pXIjvfzRpU//7y9ff1/4FcubcH8w/kPeffL/7k2+afmA0voSd2GTYgG2ox0mcwmuowh+RgaVIwVKUwF3idrmqkYzLMBrjYL7+xpONp6pOVnn7G+UC97vlXDBpf8vslnP6yZf4YPY3bz/898sTCHZ/l/Tnm23/wN+/lfYHwnE1qrAFDYfk0vH823Kd8nAYO9GdXoDuf3IxfyHcXeTvWcjHoxiNkO5HOijnAdCfPrB+GP3UF5qlv0Gu1/5zJR9Snx5cv8vtdlGv7v4u077/h6QfxufP/sH2C1do7w9EYAyuwmFUI91QsEvuEFIMS5GCDBQgC04UwgU3SpCChxEGM/WDnwuD6S/r6p8fcv2j5Pru31XQuX8D+5dI+gD73efsf3jvWfrnW3//wix3lv/9yQ+5/SP63Z9+pBgvQL/7u7N8+hGS7z+ASCQiDclwpXFwIaNEWsvg7QcykIZ8ZKEEZdiCurqWuro2PI7bEfr98OlHcP0pRj9U62f/FG9/i5xy/XslX+n9YYL9gYsQhvkoRyH+hAwUoAx/wBmUIQv5yEMJNuAlHMVbOIUrEIkQ7I9SvJ8HEGT/0oK++jca/XUm6Gf+IPsLgtr/kG+/at9/XejuDyAWicjE+3gDf8E2vI0/YymcSDbkwwkPtmA/jqKpqa2p6QaEdv+SxCWD72+QW9XZv12uq79N7gZYf/8Gj/RvAfnbjx6VRyD5i0zRv+R/7s+Uc8LDA/C+/8b+i9TZ32PsL/WyP0+gLaS/f2A05mMXfml4A3/F33AchUhGOZJRhlyk4l20oA5fhx2h3Z+Y2G//mR79Tjl+m5w1+hPn++k/fu7+Z7r7nfIEki20f+9+qfftP9Nr/2SndfYP+vt3WuL7B27DlfiV4UUcx4uGNDhRKJxurhI5yEURZmI7DiEWFuuHb/+OHv0Ncibu3yYX7P47fPrJbzD9/u/3v7/L7awE8/d8/xtUeP/R1Q+T7g+E4UqUJ5cLpGEXvOnAXhThOUN3fyVmog4/gB0m6QeC7C+WKypq/m9/o5xK/cW58ggU2/+I7/5Qev9i0+4PROMCZBqcKEcyMrEOuehKRxFSUYk3sQqrEQ2L9RfJ+U5v9B+Q89evyP7kK7b/c4rvn2uB7x8Yh58gD+l+1GIHlmEHjmAPXsXncC1W4TKYs984a/fr/fX+en9gGp5AJvKQjzeRixwsQy5qsA4rEYf7UYWrMAqm78+W/ma5/vorpD9Bzlr9Uh+of0+P/gor75/bXNzc7/tfIf0JlusPuL/YY439gQg8gEy40YxfYBly0I4DeAYVOIZa/BarMAam7S/337+jR/9aOaO/xhr9jz7xqHf/WX3uX+uzv96/xtT76+8fiMAFiEMOVhiKsRlxqEBql/bU9j14AauwCLEwab8niH5YoZ8/P+ftXxBo/1q5c/vb6bfW/sLTqz834P7tFtm/v+8/17rvP3AhipCD7p//v0EFyPek4ghSUYNaVGErvoAIWKvfA3/9rbWt9HdUVbXs3Npi2X75lwP96L1/60yZv4N8Bfff7N2f93+nev216Nq/xazv/yQUY5mhGJtxK65DK44hFe2QR3CsJh4tWI1LMMIQA5sfdtyOSxEO0/Wjq39Td/8ks/dPH0g/59PfsnOTSvvr/UG+2b//mzEeDqxAMybBjhiE4TE81dMG1BuuwMexGI8gAdfhBozBFHwMv8bPMIz9M8bPGGR/U339IvnFpP1zxs9xOGYE01/DL+9KPyS+06Ig+u8JnX7mD+b9bw2wfxDv/z0htb8Y3PsP9jfd+z8RczASDpwPO2w9ReNBtOIpHMBevIYXEIdnsBbZmICVyMYs3Iff437YoftDvT9Bzrd/nZ9+z0D731F5f/LN3r+uclD7D3f/zzEHM+DAZxABmx8jMAWfQCXW4RlUIA4v4JyHsNKQjfOwBp9GBMze71G3f4O0Sr5H+isC9mfLWXb/DX29/2tDb3/9/YdjOmZgJPbhNtj6dCEeggevYtYjctciAROQDfnhP2HlrAlya9Hdfx/W4EbYYbr+OLmufsn37V8sx+zSLyzZ/3gf+y+eIP3yAtAPHoAV9+cF8NdP/WLq+9j/FSv0G/vD//dPP0Jq/xicj5GGUlwMW/9GIQp3YBpssCMCkbgLYYYoXIr/xytYg2hYpV/3T5MbUD+svX+sfv9DbH9gKkbCgX24HkPxe9Efwnl4BWMxPP0O8oejP+GR4e6fKP2OId+fn47TpD4hFPanfljefx5ACPSzv2OI9w+R7/9idP7/P0ep/DUeE2EbAtH4FtYgCsPT730CKvbP89m/tFTl/UvVff+V3X8SxqMUQ7g/MA5hGAXdP0R0v+7X/WMxHaVYgamwqWEsdH+Oiv16f91/B4rhwG78H3S/7tf9ut/iYvA1OPAsFO0vlVOlX++v99f7A9eD/ZXu5wEo26/31/sr+/NvHkrxLBYunLhwocr90Pvr/XW/Gm7GCuzGxVCuX/fvU6xf76/77ZiKHEzHPKjX/6zc7um7Fe3X++fo/ZXa/y58Hx/EbGzGTdD9ul/3635LCsP5+BQ+gr/jX7gGlu7X/Zcr1q/31/0X4Ye4Ex/A7/Ae/o0P4RrYYcV+3a/7df97CvZH4Yu4Ex/FV/FtPIAf43Loft2v+3X/8PkPapVOcP3UxpMAAAAASUVORK5CYII=);
}
.humane, .humane-flatty {
  position: fixed;
  transition: all 0.4s ease-in-out;
  z-index: 100000;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.humane, .humane-flatty {
  font-family: Helvetica Neue, Helvetica, san-serif;
  font-size: 16px;
  top: 0;
  left: 30%;
  opacity: 0;
  width: 40%;
  color: #444;
  padding: 12px 12px 12px 60px;
  text-align: left;
  background-color: #fff;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  transform: translateY(-100px);
}
.humane p, .humane-flatty p, .humane ul, .humane-flatty ul {
  margin: 0;
  padding: 0;
}
.humane ul, .humane-flatty ul {
  list-style: none;
}
.humane.humane-flatty-info, .humane-flatty.humane-flatty-info {
  background-color: #049ABD;
  background-image: url("images/humane/info.svg");
  background-size: 48px 48px;
  background-position: 6px 0px;
  background-repeat: no-repeat;
  color: #FFF;
}
.humane.humane-flatty-success, .humane-flatty.humane-flatty-success {
  background-color: #4C9C46;
  color: #FFF;
  background-image: url("images/humane/sucess.svg");
  background-size: 48px 48px;
  background-position: 6px 0px;
  background-repeat: no-repeat;
}
.humane.humane-flatty-error, .humane-flatty.humane-flatty-error {
  background-color: #E06A2B;
  color: #FFF;
  background-image: url("images/humane/error.svg");
  background-size: 48px 48px;
  background-position: 6px 0px;
  background-repeat: no-repeat;
}
.humane.humane-flatty-ewarning, .humane-flatty.humane-flatty-warning {
  background-color: #F1C222;
  color: #FFF;
  background-image: url("images/humane/warning.svg");
  background-size: 48px 48px;
  background-position: 6px 0px;
  background-repeat: no-repeat;
}
.humane-animate, .humane-flatty.humane-flatty-animate {
  opacity: 1;
  transform: translateY(0);
}
.humane-animate:hover, .humane-flatty.humane-flatty-animate:hover {
  opacity: 0.7;
}
.humane-js-animate, .humane-flatty.humane-flatty-js-animate {
  opacity: 1;
  transform: translateY(0);
}
.humane-js-animate:hover, .humane-flatty.humane-flatty-js-animate:hover {
  opacity: 0.7;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
}
.webgis-search-panel input.x-form-text {
  height: 36px !important;
}
.floatingpanel .floatingpanel-body {
  height: calc(100% - 36px) !important;
  overflow: auto;
}
.floatingpanel .floatingpanel-body::-webkit-scrollbar {
  width: 5px;
  background: none;
}
.floatingpanel .floatingpanel-body::-webkit-scrollbar-track {
  background-color: #87c5d4;
  border-radius: 10px;
}
.floatingpanel .floatingpanel-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #067C99;
}
.floatingpanel .floatingpanel-body ::-webkit-scrollbar-corner {
  background: none;
}
.floatingpanel .floatingpanel-body .x-tree-view {
  height: 100% !important;
}
.floatingpanel .floatingpanel-body .checkbox {
  padding: 15px 0;
  margin: 0;
}
.floatingpanel .floatingpanel-body .checkbox label {
  display: flex;
  padding: 0 20px 0 20px;
  align-items: center;
  justify-content: space-between;
}
.floatingpanel .floatingpanel-body .checkbox label span {
  margin: 0;
}
.floatingpanel.mapCompositionsInfoShown .floatingpanel-body {
  height: calc(100% - 36px - 25px) !important;
}
@media (max-width: 900px) {
  .floatingpanel.mapCompositionsInfoShown .floatingpanel-body {
    height: calc(100% - 36px - 40px) !important;
  }
}
@media (max-width: 600px) {
  .floatingpanel.mapCompositionsInfoShown .floatingpanel-body {
    height: calc(100% - 36px - 70px) !important;
  }
}
.location-indicator-visible-label, .scale-visible-label, .map-compositions-info-visible-label {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0;
  color: white;
}
.legend-panel-empty .alert-warning {
  color: white;
  background-color: initial;
  border: initial;
}
.layers-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 4px 0;
}
.layers-list:not(.layer-list-item-group) > .layer-list-item.panel {
  padding: 0 6px !important;
}
.layers-list .legend-entry-loading {
  background: url("images/loadinglayers8.gif") 0px 0px no-repeat !important;
}
.layers-list .layers-list {
  padding: 0;
  margin: 0;
}
.layers-list .panel {
  border: hidden;
  border-left: 1px solid transparent;
  background: none;
}
.layers-list .panel.layer-list-item {
  border-radius: 4px;
  margin: -1px 0px 0px 0px !important;
  padding: 0;
  background-color: #3da7c5 !important;
  width: calc(100% - 16px);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4666666667);
}
.layers-list .panel.layer-list-item .layer-list-item-content {
  margin: 4px;
  padding: 4px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4666666667);
  border-radius: 4px;
}
.layers-list .panel.layer-list-item .layer-list-item-content .layer-dropdown_options-list {
  gap: 4px;
}
.layers-list .panel.layer-list-item.layer-list-item-ghost {
  border: 1px dashed #A5D867;
  background-color: #067C99;
  color: #067C99;
}
.layers-list .panel.layer-list-item.not-visible {
  color: white;
  background-color: #a6a6a6 !important;
}
.layers-list .panel.layer-list-item.not-visible .layer-list-item-content {
  background-color: #a6a6a6;
}
.layers-list .panel.layer-list-item.not-visible .layer-list-item-content .layer-list-item-info {
  padding: 20px;
}
.layers-list .panel .layer-list-item-group {
  margin-left: 21px;
  margin-right: 2px;
  border: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.layers-list .panel .layer-list-item-group .legend-item-group-pictogram {
  width: 44px !important;
}
.layers-list .panel .layer-list-item-group .legend-item-group-pictogram.clickable {
  cursor: pointer;
}
.layers-list .panel .layer-list-item-group > * {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4666666667);
  width: 100%;
  margin: auto;
  border-radius: 4px;
  background-color: #0097BA !important;
}
.layers-list .panel .layer-list-item-group > *.not-visible {
  background-color: #a6a6a6 !important;
}
.layers-list .panel .legend-item-group {
  color: white;
}
.layers-list .panel .legend-item-group .legend-item-group-titlebox {
  padding: 0 6px;
  position: relative;
  display: flex;
  align-items: center;
}
.layers-list .panel .legend-item-group .legend-item-group-pictogram {
  background-image: url("images/down_iconx2.png");
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  transition: transform 0.2s;
}
.layers-list .panel .legend-item-group .legend-item-group-pictogram.clickable {
  cursor: pointer;
}
.layers-list .panel .legend-item-group .legend-item-group-pictogram.contracted {
  transform: rotate(-90deg);
}
.layers-list .panel .legend-item-group .legend-item-group-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: auto;
  margin-left: 12px;
}
.layers-list .panel .legend-item-group .legend-item-group-title.expanded {
  overflow: visible;
  height: auto;
  white-space: unset;
  text-wrap: wrap;
  word-break: break-word;
}
.layers-list .panel .legend-item-group .legend-item-group-icon:hover {
  cursor: pointer;
}
.layers-list .layer-dropdown_options-list {
  font-size: 12px;
}
.layers-list .layer-list-item-row {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 6px;
  width: 100%;
  min-height: 36px;
}
.layers-list .layer-list-item-row .layer-list-item-name {
  line-height: 18px;
  font-size: 12px;
  overflow: hidden;
  color: white;
  font-family: arial, helvetica, verdana, sans-serif;
  margin-right: auto;
  margin-left: 12px;
  word-break: break-word;
}
.layers-list .layer-list-item-row .layer-list-item-name.draggable {
  cursor: grab;
}
.layers-list .layer-list-item-row.collapsed .layer-list-item-name {
  word-break: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 95%;
}
.layers-list .webgis-Icon {
  width: 24px;
  height: 24px;
  display: block;
  margin: 6px;
}
.layers-list .webgis-Eye {
  z-index: 1;
  background-color: white;
  mask-image: url("images/visibility_on.svg");
  -webkit-mask-image: url("images/visibility_on.svg");
}
.layers-list .webgis-Eye_Blocked {
  z-index: 1;
  background-color: white;
  mask-image: url("images/visibility_off.svg");
  -webkit-mask-image: url("images/visibility_off.svg");
}
.layers-list .webgis-Minus {
  z-index: 1;
  background-image: url("images/expand_icon_up.png");
}
.layers-list .webgis-Plus {
  z-index: 1;
  background-image: url("images/expand_icon_down.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .layers-list .webgis-Eye {
    background-size: 24px 24px;
  }
  .layers-list .webgis-Eye_Blocked {
    background-size: 24px 24px;
  }
  .layers-list .webgis-Minus {
    background-size: 24px 24px;
  }
  .layers-list .webgis-Plus {
    background-size: 24px 24px;
  }
}
.layers-list .layer-list-item-icon {
  padding: 0;
  text-align: center;
  cursor: default;
}
.layers-list .layer-list-item-icon.clickable {
  cursor: pointer;
}
.layers-list .layer-list-item-icon:nth-of-type(2) {
  right: 45px;
}
.layers-list .layer-list-item-icon:nth-of-type(4) {
  left: 5px;
}
.layers-list .layer-list-item-icon .legend-icon {
  width: auto;
  width: 32px;
  height: 24px;
}
.layers-list .layer-list-item-content {
  padding: 0 0 0 12px;
}
.layers-list .layer-list-item-content .layer-list-item-slider {
  position: relative;
}
.layers-list .layer-list-item-content.collapsed {
  height: 0;
}
.layers-list .layer-list-item-content .panel .form-group {
  margin-bottom: initial;
}
.layers-list .layer-list-item-content .panel .tooltip {
  display: none;
}
.layers-list .layer-list-item-content .panel .tooltip.tooltip-main .tooltip-arrow {
  display: none;
}
.layers-list .layer-list-item-content .panel .tooltip.tooltip-main .tooltip-inner {
  background-color: white;
  border: 1px solid black;
  color: black;
}
.layers-list .layer-list-item-content .panel .slider:hover .tooltip {
  display: block;
}
.layers-list .layer-list-item-content .panel .slider-track {
  height: 3px;
  background-image: initial;
  background-color: white;
}
.layers-list .layer-list-item-content .panel .slider-handle {
  background-image: initial;
  background-color: white;
  margin-top: -6px;
  width: 15px;
  height: 15px;
}
.layers-list .btn-wfs-style {
  margin-bottom: 10px;
}
.layers-list .layer-list-item-legend {
  position: fixed;
  z-index: 101;
}
.layers-list .layer-list-item-legend.legend-hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 150ms, opacity 100ms linear 50ms;
}
.layers-list .layer-list-item-legend.legend-hidden .legend-image {
  max-height: 0;
  max-width: 0;
  border-width: 0;
  transition-delay: 150ms;
}
.layers-list .layer-list-item-legend.legend-visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 250ms;
}
.layers-list .layer-list-item-legend.legend-visible .legend-image {
  transition-delay: 0s;
}
.layers-list .layer-list-item-legend .legend-image {
  background-color: #FFF;
  border-bottom-width: 5px;
  border-top-width: 5px;
  border-left-width: 5px;
  border-right-width: 5px;
  border-color: #067C99;
  border-style: solid;
  left: -5px;
  position: absolute;
  overflow-y: auto;
  max-height: 40vh;
  max-width: 50vw;
}
.panel-group {
  margin: 0;
}
.panel-group .collapsible-content {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  padding: 0;
}
.panel-group .collapsible-content.expanded {
  max-height: 100vh;
  padding: 8px 0;
}
.panel-heading {
  padding: 10px 1px 0px 0px;
}
.panel-heading .panel-title, .panel-heading label {
  color: white;
  font-size: 12px;
}
.text-scale-bigger .layers-list .layer-list-item-row .layer-list-item-name {
  font-size: 15px;
}
.text-scale-bigger .layers-list .layer-dropdown_options-list {
  font-size: 15px;
}
.text-scale-bigger .layers-list .layer-list-item-info {
  font-size: 15px;
}
.text-scale-bigger .layers-list .panel .legend-item-group .legend-item-group-title {
  font-size: 15px;
}
.text-scale-bigger .panel-heading .panel-title, .text-scale-bigger .panel-heading label {
  font-size: 15px;
}
.text-scale-biggest .layers-list .layer-list-item-row .layer-list-item-name {
  font-size: 18px;
}
.text-scale-biggest .layers-list .layer-dropdown_options-list {
  font-size: 18px;
}
.text-scale-biggest .layers-list .layer-list-item-info {
  font-size: 18px;
}
.text-scale-biggest .panel .legend-item-group .legend-item-group-title {
  font-size: 18px;
}
.text-scale-biggest .panel-heading .panel-title, .text-scale-biggest .panel-heading label {
  font-size: 18px;
}
.layer-dropdown {
  z-index: 999;
  position: absolute;
  right: 12px;
  width: 290px;
  border-radius: 4px;
  background-color: #10819f;
  border: 1px solid rgba(4, 77, 97, 0.6274509804);
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.42) 0px 0px 9px 3px;
  transform-origin: top;
  text-shadow: none;
  visibility: hidden;
  transform: translatey(calc(-1 * var(--scroll-pos)));
}
.layer-dropdown.visible {
  visibility: visible;
}
.layer-dropdown_options-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.layer-dropdown_options-list li {
  border: none !important;
  border-radius: 4px;
  display: list-item;
  margin-bottom: 0;
  padding: 5px 10px;
  transition: background-color 0.125s, color 0.125s;
  width: unset !important;
  height: unset !important;
  margin-block: unset !important;
}
.layer-dropdown_options-list li:hover, .layer-dropdown_options-list li:focus-visible {
  background-color: white;
}
.layer-dropdown_options-list li span {
  text-align: left;
  margin-left: 15px;
}
.layer-dropdown_options-list li.button {
  padding: 0;
  border: 0;
}
.layer-dropdown_options-list li.button button {
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid transparent;
  width: 100%;
  padding: 5px 10px;
  transition: background-color 0.125s, color 0.125s;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
}
.layer-dropdown_options-list li.button button:hover, .layer-dropdown_options-list li.button button:focus-visible {
  color: #348fa8;
}
.layer-dropdown_options-list li.zoom-to-scale .icon {
  width: 30px;
  height: 30px;
  background-color: white;
  mask-image: url("images/zoom-to-scale/zoom.svg");
  -webkit-mask-image: url("images/zoom-to-scale/zoom.svg");
  mask-size: 30px;
  -webkit-mask-size: 30px;
  transition: background-color 0.125s;
}
.layer-dropdown_options-list li.zoom-to-scale:hover .icon, .layer-dropdown_options-list li.zoom-to-scale:focus-visible .icon {
  background-color: #348fa8;
}
.layer-dropdown_options-list li.zoom-in .icon {
  width: 30px;
  height: 30px;
  background-color: white;
  mask-image: url("images/zoom-to-scale/zoom-in.svg");
  -webkit-mask-image: url("images/zoom-to-scale/zoom-in.svg");
  mask-size: 30px;
  -webkit-mask-size: 30px;
  transition: background-color 0.125s;
}
.layer-dropdown_options-list li.zoom-in:hover .icon, .layer-dropdown_options-list li.zoom-in:focus-visible .icon {
  background-color: #348fa8;
}
.layer-dropdown_options-list li.zoom-out .icon {
  width: 30px;
  height: 30px;
  background-color: white;
  mask-image: url("images/zoom-to-scale/zoom-out.svg");
  -webkit-mask-image: url("images/zoom-to-scale/zoom-out.svg");
  mask-size: 30px;
  -webkit-mask-size: 30px;
  transition: background-color 0.125s;
}
.layer-dropdown_options-list li.zoom-out:hover .icon, .layer-dropdown_options-list li.zoom-out:focus-visible .icon {
  background-color: #348fa8;
}
.layer-dropdown_options-list li.unavailable .icon {
  width: 30px;
  height: 30px;
  background-color: white;
  mask-image: url("images/zoom-to-scale/zoom-disabled.svg");
  -webkit-mask-image: url("images/zoom-to-scale/zoom-disabled.svg");
  mask-size: 30px;
  -webkit-mask-size: 30px;
  transition: background-color 0.125s;
}
.layer-dropdown_options-list li.unavailable:hover .icon, .layer-dropdown_options-list li.unavailable:focus-visible .icon {
  background-color: #348fa8;
}
.layer-dropdown_options-list li.remove-layer .icon {
  width: 30px;
  height: 30px;
  background-color: white;
  mask-image: url("images/remove-layer.svg");
  -webkit-mask-image: url("images/remove-layer.svg");
  mask-size: 30px;
  -webkit-mask-size: 30px;
  transition: background-color 0.125s;
}
.layer-dropdown_options-list li.remove-layer:hover .icon, .layer-dropdown_options-list li.remove-layer:focus-visible .icon {
  background-color: #348fa8;
}
.layer-dropdown_options-list li.already-in-bands {
  background-color: transparent;
}
.layer-dropdown_options-list li.already-in-bands:hover, .layer-dropdown_options-list li.already-in-bands:focus-visible {
  background-color: transparent;
  color: white;
}
.layer-dropdown_options-list li.already-in-bands:hover .icon, .layer-dropdown_options-list li.already-in-bands:focus-visible .icon {
  background-color: white;
}
.layer-dropdown_options-list li.already-in-bands button {
  cursor: default;
}
.layer-dropdown_options-list li.already-in-bands button:hover {
  color: white;
}
.layer-dropdown_options-list li.layer-unavailable {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  background-color: #aaa;
}
.layer-dropdown_options-list li.layer-unavailable .icon {
  width: 30px;
  height: 30px;
  background-color: white;
  mask-image: url("images/visibility_off.svg");
  -webkit-mask-image: url("images/visibility_off.svg");
  mask-size: 30px;
  -webkit-mask-size: 30px;
  transition: background-color 0.125s;
}
.layer-dropdown_options-list li.layer-unavailable:hover .icon, .layer-dropdown_options-list li.layer-unavailable:focus-visible .icon {
  background-color: #348fa8;
}
.layer-dropdown_options-list li.layer-unavailable:hover, .layer-dropdown_options-list li.layer-unavailable:focus-visible {
  background-color: #aaa;
  color: white;
}
.layer-dropdown_options-list li.layer-unavailable:hover .icon, .layer-dropdown_options-list li.layer-unavailable:focus-visible .icon {
  background-color: white;
}
.layer-dropdown_options-list li.google-maps_type {
  padding: 0;
  border: 0;
}
.layer-dropdown_options-list li.google-maps_type .icon {
  width: 30px;
  height: 30px;
  background-color: white;
  mask-image: url("images/google-map-type.svg");
  -webkit-mask-image: url("images/google-map-type.svg");
  mask-size: 30px;
  -webkit-mask-size: 30px;
  transition: background-color 0.125s;
}
.layer-dropdown_options-list li.google-maps_type:hover .icon, .layer-dropdown_options-list li.google-maps_type:focus-visible .icon {
  background-color: #348fa8;
}
.layer-dropdown_options-list li.google-maps_type label {
  padding: 5px 10px;
  border: 1px solid transparent;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  margin: 0;
}
.layer-dropdown_options-list li.google-maps_type select {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  border-color: #348fa8;
}
.layer-dropdown_options-list li.opacity {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
}
.layer-dropdown_options-list li.opacity .icon {
  width: 30px;
  height: 30px;
  background-color: white;
  mask-image: url("images/opacity-v2.svg");
  -webkit-mask-image: url("images/opacity-v2.svg");
  mask-size: 30px;
  -webkit-mask-size: 30px;
  transition: background-color 0.125s;
}
.layer-dropdown_options-list li.opacity:hover .icon, .layer-dropdown_options-list li.opacity:focus-visible .icon {
  background-color: #348fa8;
}
.layer-dropdown_options-list li.opacity .react_range-slider {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
.layer-dropdown_options-list li.opacity:hover .slider .tooltip, .layer-dropdown_options-list li.opacity:focus-visible .slider .tooltip {
  opacity: 1;
  visibility: visible;
}
.layer-dropdown_options-list li.opacity:hover .slider-selection, .layer-dropdown_options-list li.opacity:focus-visible .slider-selection {
  background-image: linear-gradient(180deg, rgb(63, 170, 197) 0%, rgb(46, 123, 145) 100%);
}
.layer-dropdown_options-list li.opacity:hover .slider-handle.min-slider-handle, .layer-dropdown_options-list li.opacity:focus-visible .slider-handle.min-slider-handle {
  background-image: linear-gradient(180deg, rgb(222, 249, 255) 0%, rgb(213, 213, 213) 100%);
}
.webgis-more {
  background-color: white;
  mask-image: url("images/more.svg");
  -webkit-mask-image: url("images/more.svg");
  transform: rotatez(90deg);
}
.webgis-more-opened {
  content: "";
  width: 20px;
  height: 20px;
  background-color: white;
  position: relative;
}
.webgis-more-opened:after {
  content: "";
  inset: 0;
  background-color: #348fa8;
  mask-image: url("images/more.svg");
  -webkit-mask-image: url("images/more.svg");
  transform: rotatez(90deg);
  position: absolute;
}
.layer-list-item-icon.visibility-off {
  width: 24px;
  height: 24px;
  background-color: white;
  mask-position: center;
  -webkit-mask-position: center;
  mask-image: url(images/visibility_off.svg);
  -webkit-mask-image: url(images/visibility_off.svg);
  mask-size: 24px;
  -webkit-mask-size: 24px;
  margin: 6px;
  transition: background-color 0.125s;
}
.layer-list-item-content .layer-dropdown_options-list li .icon {
  -webkit-mask-size: 24px;
  mask-size: 24px;
  -webkit-mask-repeat: no-repeat;
  background-size: 24px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
.layer-list-item-content .layer-dropdown_options-list li.layer-unavailable {
  background-color: #ccc !important;
  color: #888;
}
.layer-list-item-content .layer-dropdown_options-list li.layer-unavailable .icon {
  -webkit-mask-size: 24px;
  mask-size: 24px;
  -webkit-mask-repeat: no-repeat;
  background-size: 24px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
.layer-list-item-content .layer-dropdown_options-list li.layer-unavailable .icon {
  background-color: #888;
}
.HighContrast .layer-dropdown {
  background-color: #a6a6a6;
  box-shadow: none;
  border: 2px solid black;
}
.HighContrast .layer-dropdown_options-list li {
  transition: all 0s;
}
.HighContrast .layer-dropdown_options-list li .icon {
  background-color: black !important;
}
.HighContrast .layer-dropdown_options-list li span {
  color: black;
}
.HighContrast .layer-dropdown_options-list li .slider .slider-handle.min-slider-handle {
  background-image: radial-gradient(#FF0 0%, #FF0 50%, #000 50%, #000 100%);
}
.HighContrast .layer-dropdown_options-list li .slider .tooltip {
  transition: all 0s;
}
.HighContrast .layer-dropdown_options-list li .slider .tooltip-inner {
  background-color: #000000;
  color: #FF0;
}
.HighContrast .layer-dropdown_options-list li.layer-unavailable {
  background-color: #888 !important;
}
.HighContrast .layer-dropdown_options-list li:hover .slider .slider-selection, .HighContrast .layer-dropdown_options-list li:focus-visible .slider .slider-selection {
  background-image: linear-gradient(180deg, #FF0 0%, #EE0 100%);
}
.HighContrast .layer-dropdown_options-list li:hover .slider .slider-handle.min-slider-handle, .HighContrast .layer-dropdown_options-list li:focus-visible .slider .slider-handle.min-slider-handle {
  background-image: radial-gradient(#FF0 0%, #FF0 50%, #000 50%, #000 100%);
}
.HighContrast .layer-list-item-icon.visibility-off {
  background-color: black;
}
.HighContrast .webgis-more {
  background-color: black;
}
.HighContrast .webgis-more-opened {
  background-color: black;
}
.HighContrast .webgis-more-opened:after {
  background-color: #FF0;
}
.HighContrast .layers-list .panel.layer-list-item .layer-list-item-content {
  box-shadow: none;
  border: 2px solid #000;
}
.map-compositions-list {
  padding: 0;
  list-style: none;
}
.map-compositions-list .map-compositions-item {
  list-style-type: none;
}
#map-info {
  z-index: 200;
  display: flex;
  justify-content: flex-end;
  background-color: #FFF;
}
@media (max-width: 600px) {
  #map-compositions-info-panel-body {
    display: flex;
    flex-flow: row-reverse;
  }
  #map-info {
    flex-flow: column-reverse;
    background-color: transparent;
  }
}
.HighContrast #map-info, .HighContrast .map-compositions-info, .HighContrast .scale-bar, .HighContrast .nominal-scale {
  background-color: #FF0;
}
.HighContrast .scale-bar-ruler {
  border-color: black;
}
#toolbars-left-bottom .toolbar #share-map-button {
  background-image: none;
}
#toolbars-left-bottom .toolbar #share-map-button:before {
  font-family: "hehe";
  width: 100%;
  height: 100%;
  display: flex;
  font-size: 26px;
  justify-content: center;
  align-items: center;
}
#toolbars-left-bottom .toolbar #share-map-button.active {
  background-color: #0097BA;
  color: #FFF;
}
#shareMapModal .main-content {
  overflow: visible;
}
.share-map-wrapper {
  display: flex;
  width: 100%;
  margin: auto;
  padding: 15px;
}
.share-map-wrapper input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  border-bottom: 1px solid #0097BA;
}
.share-map-wrapper button {
  font-family: "hehe";
  line-height: 20px;
  font-size: 20px;
  width: 24px;
  padding: 0;
  margin: 0 0 0 10px;
  border: none;
  outline: none;
  color: #0097BA;
}
.share-map-wrapper button:hover {
  color: #00c0ed;
}
.share-map-wrapper button:active {
  color: #006e87;
  font-size: 22px;
}
.HighContrast #toolbars-left-bottom .toolbar #share-map-button.active {
  background-color: #000 !important;
  color: #FF0 !important;
}
.text-scale-bigger .share-map-wrapper {
  padding: 10px;
}
.text-scale-bigger .share-map-wrapper input {
  font-size: 16px;
}
.text-scale-bigger .share-map-wrapper button {
  line-height: 25px;
  font-size: 25px;
  width: 29px;
}
.text-scale-bigger .share-map-wrapper button:active {
  font-size: 27px;
}
.text-scale-biggest .share-map-wrapper {
  padding: 5px;
}
.text-scale-biggest .share-map-wrapper input {
  font-size: 19px;
}
.text-scale-biggest .share-map-wrapper button {
  line-height: 30px;
  font-size: 30px;
  width: 34px;
}
.text-scale-biggest .share-map-wrapper button:active {
  font-size: 32px;
}
.searchBar {
  position: absolute;
  top: 0px;
  height: auto;
  width: inherit;
  display: block;
  line-height: 0px;
}
.searchBarInactive {
  display: none;
}
.searchBarTemplateContainer {
  position: relative;
}
.searchInputItem {
  display: inline-block;
  height: 50px;
  width: 100%;
  position: relative;
  background: #FFFFFF;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.searchInputItem-container {
  background-color: #FFFFFF;
  color: #000000;
  top: 54px;
}
.searchInputItem .bar {
  width: unset;
  position: unset;
}
.searchInputItemClearSearchIcon {
  display: none;
  float: right;
  padding-right: 20px;
}
.searchInputItemClearSearchIcon.active {
  display: inline-block;
}
.searchInputItemClearSearchIcon .icon-reject {
  color: #666666;
  font-size: 25px;
  line-height: 45px;
  position: absolute;
}
.searchInputItemText {
  height: 100%;
  position: absolute;
  left: 20px;
  right: 20px;
  display: inline-block;
}
.searchInputItemText input {
  height: 20px;
  line-height: 20px;
  position: absolute;
  left: 0px;
  top: 15px;
  border: none;
  outline-color: transparent;
  background: none;
  display: inline-block;
  padding-right: 30px;
  width: 100%;
}
.searchInputItemText input::-webkit-input-placeholder,
.searchInputItemText input::placeholder {
  color: #B9B9B9;
}
.searchLoaderContainer {
  position: absolute;
  top: 40px;
  width: 100%;
  height: 1px;
  background-color: #CCCCCC;
  -webkit-animation-play-state: paused;
}
.searchLoaderContainer .searchLoaderItem {
  display: none;
}
.searchLoaderContainer.animate {
  -webkit-animation-play-state: running;
}
.searchLoaderContainer.animate .searchLoaderItem {
  display: block;
}
.searchLoaderItem {
  content: "";
  display: inline;
  position: absolute;
  width: 0;
  height: 100%;
  left: 50%;
  text-align: center;
}
.searchLoaderItem:nth-child(1) {
  background-color: #FF6600;
  -webkit-animation: loading 3s linear infinite;
  -webkit-animation-play-state: inherit;
}
.searchLoaderItem:nth-child(2) {
  display: none;
  background-color: #FFFFFF;
  -webkit-animation: loading 3s linear 1s infinite;
  -webkit-animation-play-state: inherit;
}
.searchInputIcon {
  display: none;
  float: right;
  height: 54px;
  width: 54px;
}
.searchInputIcon.active {
  display: inline-block;
}
.searchInputIcon .icon {
  color: #666666;
  font-size: 25px;
  position: relative;
  top: calc(50% - 5px);
}
.autocompleteListItem {
  width: auto;
  height: 50px;
  line-height: 50px;
  margin: 0 20px;
  color: #303030;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  box-sizing: content-box;
  border-bottom: 1px solid #CCCCCC;
}
.autocompleteListItem:last-child {
  border: none;
}
.webgis-search-match {
  font-weight: 700;
}
.searchSourcesList {
  height: auto;
  width: 100%;
  display: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-left: 20px;
  white-space: nowrap;
  background: white;
  border-bottom: 2px solid hsl(191, 100%, 36%);
}
.searchSourcesList.active {
  display: inline-block;
}
.searchSourcesList.active + .searchResultList {
  top: 90px;
}
.searchSourcesList.active + .searchInputItem-container .searchResultList.active {
  top: 152px;
}
.searchSourceItem {
  height: auto;
  line-height: initial;
  display: inline-block;
  color: white;
  padding: 6px 10px;
  border-radius: 99px;
  background-color: hsl(191, 100%, 36%);
}
.searchSourceItemContainer {
  height: 44px;
  line-height: 44px;
  margin-right: 15px;
  display: inline-block;
  color: #FFFFFF;
}
.searchSourceItemContainer.inactive .searchSourceItem {
  color: white !important;
  background-color: hsl(191, 35%, 75%);
}
.searchResultList {
  width: 100%;
  top: 59px;
  background: #FFFFFF;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  box-sizing: content-box;
}
.searchResultList.active {
  position: relative;
  border-bottom: 1px solid #CCCCCC;
  max-height: 50vh;
  padding-top: 10px;
}
.mobile_searchResultListItem {
  width: auto;
  height: 66px;
  line-height: 16px;
  margin: 0 20px 8px 20px;
  color: #303030;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  box-sizing: content-box;
  border-bottom: 1px solid #CCCCCC;
  display: grid;
  grid-template-columns: 70px 1fr;
  border-radius: 8px;
  box-shadow: 0px 2px 3px 0px #ccc;
}
.mobile_searchResultListItem:last-child {
  border: none;
}
.mobile_searchResultListItem .mobile_search-result__img-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile_searchResultListItem img {
  width: 48px;
}
.mobile_searchResultListItem .mobile_search-result__details-container {
  display: grid;
  grid-template-rows: 1.3fr 1fr;
  background-color: rgba(238, 238, 238, 0.6);
  padding: 8px 20px;
}
.mobile_searchResultListItem .mobile_search-result__details-container .title {
  align-self: end;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile_searchResultListItem .mobile_search-result__details-container .description {
  color: #888;
  font-size: smaller;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  align-self: start;
}
.topBarButton {
  height: 50px;
  width: 50px;
}
.topBarButton .icon-map {
  line-height: 50px;
}
.topBarButton .icon-arrow-back {
  line-height: 50px;
}
.topBarLeftButton {
  float: left;
}
.topBarRightButton {
  float: right;
}
.webgis-search-results-panel {
  position: relative !important;
}
.webgis-search-panel {
  z-index: 3;
}
.webgis-search-results-panel .search-result-item:hover {
  background-color: #FFFFFF;
}
.webgis-searchable-item-checkbox {
  background-position: 0 0px !important;
}
.webgis-searchable-item-checkbox-enabled {
  background-position: 0 -15px !important;
}
.text-scale-bigger .webgis-searchable-item {
  font-size: 16px;
}
.text-scale-biggest .webgis-searchable-item {
  font-size: 19px;
}
.attributions-container {
  max-width: 60vw;
  overflow-x: auto;
  white-space: nowrap;
}
.attribution {
  display: inline-block;
}
.attribution:not(:first-child):not(.floating-attribution):before {
  content: " | ";
}
@media screen and (max-width: 250px) {
  .here-watermark-attribution {
    display: none;
  }
}
.here-watermark-attribution svg {
  transform: scale(0.04);
  position: fixed;
  bottom: 16px;
  left: 16px;
  margin-left: -480px;
  margin-bottom: -383px;
}
.here-watermark-attribution-bright svg {
  fill: #000;
  fill-opacity: 0.3;
}
.here-watermark-attribution-dark svg {
  fill: #FFF;
  fill-opacity: 0.35;
}
.floating-attribution {
  display: inline;
}
.lighting-control-panel {
  padding: 15px 20px;
  color: white;
}
.lighting-control-panel .checkbox {
  margin-top: initial;
  margin-bottom: initial;
}
.lighting-control-panel .slider-horizontal {
  width: 100%;
  margin-top: 10px;
}
.lighting-control-panel .react_range-slider {
  margin-top: 10px;
}
.lighting-control-panel label.silder-label {
  text-align: center;
  width: 100%;
  padding-top: 5px;
}
.lighting-control-panel .slider-handle {
  background: initial !important;
}
.lighting-control-panel .slider-handle.custom:before {
  content: "";
  background: url(images/lighting-slider.png) 0px 0px no-repeat !important;
  display: block;
  width: 32px;
  height: 32px;
  margin: -6px;
}
.lighting-control-panel .slider-disabled .slider-handle.custom:before {
  opacity: 0.6;
}
.lighting-control-panel .timezone-selector {
  display: inline-block;
  width: initial;
  margin-left: 10px;
  margin-bottom: 10px;
}
.transparency-control-panel {
  padding: 15px 20px;
  color: white;
}
.transparency-control-panel .slider-horizontal {
  width: 100%;
  margin-top: 10px;
}
.transparency-control-panel label.silder-label {
  text-align: center;
  width: 100%;
  padding-top: 5px;
}
.transparency-control-panel .slider-handle {
  background: initial !important;
}
.transparency-control-panel .slider-handle.custom:before {
  content: "";
  background: url(images/lighting-slider.png) 0px 0px no-repeat !important;
  display: block;
  width: 32px;
  height: 32px;
  margin: -6px;
}
.transparency-control-panel .slider-disabled .slider-handle.custom:before {
  opacity: 0.6;
}
#mmap-control-panel-body-button.active {
  background-color: #0097BA;
}
#mmap-control-panel-body-button.active a {
  background-position: -72px -144px;
  background-color: #0097BA;
  color: #fff;
}
#mMapRenderOptionsWindow .main-content {
  background-color: #3da7c5;
}
.locate-me-button {
  background-color: #FFF;
  background-image: url(images/icon-control.png);
  background-position: 0px -252px;
  background-repeat: no-repeat;
  cursor: pointer;
  display: block;
  height: 36px;
  width: 36px;
}
.locate-me-button.active {
  background-color: #FFCC00;
}
.locate-me-button.active:hover {
  background-color: #FF8700;
}
.locate-me-button.inactive {
  background-color: #FFF;
}
.locate-me-button.inactive:hover {
  background-color: #DCDCDC;
}
.locate-me-button.inProgress {
  animation: control-blinking-animation 0.9s infinite;
  animation-timing-function: ease-out;
}
.locate-me-button.disabled {
  background-color: #C2C0C0;
}
.locate-me-button.disabled:hover {
  background-color: #C2C0C0;
}
@keyframes control-blinking-animation {
  from {
    background-color: #FFCC00;
  }
  to {
    background-color: #FFF;
  }
}
.feature-info-button {
  background-color: #FFF;
  background-image: url(images/icon-control.png);
  background-position: -35px -144px;
  background-repeat: no-repeat;
  cursor: pointer;
  display: block;
  height: 36px;
  width: 36px;
}
.feature-info-button.active {
  background-color: #FFCC00;
}
.feature-info-button.active:hover {
  background-color: #FF8700;
}
.feature-info-button.inactive {
  background-color: #FFF;
}
.feature-info-button.inactive:hover {
  background-color: #DCDCDC;
}
.feature-info-button.window-active.inactive {
  background-color: #0097BA;
  background-position-y: -180px;
}
.feature-info-button.inProgress {
  animation: control-blinking-animation 0.9s infinite;
  animation-timing-function: ease-out;
}
@keyframes control-blinking-animation {
  from {
    background-color: #FFCC00;
  }
  to {
    background-color: #FFF;
  }
}
.feature-info-panel-button {
  background-image: url(images/icon-control.png);
  background-position: -36px -144px !important;
}
#featureInfo:target ~ .panenavi .feature-info-panel-button {
  background-position: -36px -180px !important;
}
.editable-attributes-list-item-row {
  border-bottom: 1px solid #087b98;
  margin: 0px 24px 0px 12px;
  padding: 6px 0px;
}
.editable-attributes-list-item-row .editable-attributes-list-item-name {
  color: white;
  font-weight: bold;
  padding-right: 12px;
}
.editable-attributes-list-item-row .readonly-attributes-list-item-value {
  display: block;
  color: white;
  font-weight: normal;
}
.editable-attributes-list-item-row .editable-attributes-list-item-name, .editable-attributes-list-item-row .readonly-attributes-list-item-value {
  min-height: 1em;
  margin-bottom: 0;
}
.features-panel-empty-view {
  margin: 10px;
  border: 1px solid;
}
.features-panel-view {
  height: 100%;
}
.attributes-panel {
  overflow: auto;
  height: calc(100% - 30px);
}
.attributes-panel::-webkit-scrollbar {
  width: 5px;
  background: none;
}
.attributes-panel::-webkit-scrollbar-track {
  background-color: #87c5d4;
  border-radius: 10px;
}
.attributes-panel::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #067C99;
}
.attributes-panel ::-webkit-scrollbar-corner {
  background: none;
}
.attributes-panel .service-info {
  background-color: white;
  color: #087b98;
  padding: 3px 12px;
}
.attributes-panel .service-info label {
  margin: 0;
}
.features-panel-counter-bar {
  height: 30px;
  text-align: center;
  color: white;
  font-size: larger;
  padding-top: 3px;
}
.features-panel-counter-bar .current-page {
  font-weight: bold;
}
.features-panel-counter-bar .arrow, .features-panel-counter-bar .page-selector {
  display: inline-block;
  color: white;
}
.features-panel-counter-bar .arrow {
  text-decoration: none;
}
.features-panel-counter-bar .arrow:hover {
  color: #087b98;
  background-color: white;
}
.col-resize-cursor {
  cursor: col-resize;
}
.col-resize-cursor * {
  cursor: col-resize !important;
}
.featureInfoModal .no-features-panel {
  margin-left: 10px;
}
.featureInfoModal .no-features-panel h3 {
  font-size: 18px;
  margin-top: 30px;
}
.featureInfoModal .features-panel {
  width: 100%;
  height: 100%;
  display: block;
}
.featureInfoModal .feature-info-list-panel {
  float: left;
  margin-right: 15px;
  background-color: #f2f2f2;
}
.featureInfoModal .feature-info-list-panel .feature-info-list {
  overflow: hidden;
  max-height: 30px;
  min-height: 30px;
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0px;
  padding-left: 0px;
}
.featureInfoModal .feature-info-list-panel .feature-info-list .scrollable-list-ul {
  margin: 10px 0px 0px 0px;
  padding: 0px;
  overflow: hidden;
  max-height: 30px;
}
.featureInfoModal .feature-info-list-panel .feature-info-list .scrollable-list-foreach {
  float: left;
}
.featureInfoModal .feature-info-list-panel .feature-info-list .list-element {
  list-style-type: none;
}
.featureInfoModal .feature-info-list-panel .feature-info-list .feature-list-element {
  display: block;
  float: left;
  cursor: pointer;
  padding: 6px 10px;
  background-color: white;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-right: 4px;
  transition: color 0.2s, background-color 0.2s;
  max-width: 190px;
  white-space: nowrap;
  font-size: 13px;
}
.featureInfoModal .feature-info-list-panel .feature-info-list .feature-list-element:hover {
  background-color: lightgray;
  transition: background-color 0.2s;
}
.featureInfoModal .feature-info-list-panel .feature-info-list .feature-list-element.selected {
  color: white;
  background-color: #0097BA;
  transition: color 0.2s, background-color 0.2s;
}
.featureInfoModal .feature-info-list-panel .feature-info-list-buttons {
  float: right;
  font-size: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  right: 10px;
  margin-top: 10px;
}
.featureInfoModal .feature-info-list-panel .feature-info-list-buttons .feature-info-list-button {
  cursor: pointer;
  background-color: white;
  transition: color 0.2s, background-color 0.2s;
}
.featureInfoModal .feature-info-list-panel .feature-info-list-buttons .feature-info-list-button:hover {
  background-color: lightgray;
  transition: background-color 0.2s;
}
.featureInfoModal .feature-info-list-panel .feature-info-list-buttons .feature-info-list-button.feature-info-list-end {
  background-color: lightgray;
  transition: background-color 0.2s;
}
.featureInfoModal .feature-info-details-panel {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 100%;
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  background-color: #f2f2f2;
}
.featureInfoModal .feature-info-details-panel .feature-info-slider {
  width: 6px;
  height: 100%;
  position: relative;
  border-right: 2px solid #3DAEC8;
  position: absolute;
  top: 0;
  right: 0;
  cursor: col-resize;
}
.featureInfoModal .feature-info-details-panel .editable-attributes-list-item-row {
  display: flex;
}
.featureInfoModal .feature-info-details-panel label {
  color: black;
  display: table-cell;
  vertical-align: middle;
  float: left;
  box-sizing: border-box;
  margin-bottom: 0px;
  word-break: break-word;
  display: flex;
  flex-shrink: 0;
  min-width: 70px;
}
.featureInfoModal .feature-info-details-panel label:last-child {
  flex-grow: 1;
  width: 0px;
}
.featureInfoModal .feature-info-details-panel table {
  width: 100%;
  box-shadow: 2px 3px 7px 0px rgba(0, 0, 0, 0.4);
}
.featureInfoModal .feature-info-details-panel table th, .featureInfoModal .feature-info-details-panel table td {
  border: 1px solid #d8d8d8;
  width: 50%;
  padding: 5px 5px 5px 10px;
  font-weight: normal;
  background-color: white;
}
.featureInfoModal .feature-info-details-panel table th:first-child {
  font-weight: bold;
}
.featureInfoModal .feature-info-details-panel.full-width {
  width: 100%;
}
.featureInfoModal .feature-info-details-panel .feature-info-rendered-content {
  height: 100%;
  overflow-y: auto;
}
.featureInfoModal .feature-info-details-panel .feature-info-details-panel-heading {
  background-color: #0097BA;
}
.featureInfoModal .feature-info-details-panel .feature-info-details-panel-heading .editable-attributes-list-item-row {
  padding: 0px;
}
.featureInfoModal .feature-info-details-panel .feature-info-details-panel-heading .editable-attributes-list-item-name-heading {
  color: white;
  margin-bottom: 0px;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0px;
}
.featureInfoModal .feature-info-details-panel .feature-info-details-panel-heading .editable-attributes-list-item-name-heading p {
  margin: 0;
}
.featureInfoModal .feature-info-details-panel .feature-info-details-panel-heading .editable-attributes-list-item-name-heading:last-child {
  padding-left: 3px;
}
.featureInfoModal .feature-info-list-title, .featureInfoModal .feature-info-details-title, .featureInfoModal .feature-info-source-name {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: bold;
  background-color: #067C9A;
  color: white;
  margin-top: 20px;
}
.featureInfoModal.loading .panel-split-line {
  opacity: 0;
}
.featureInfoModal ::-webkit-scrollbar {
  width: 5px;
  background: none;
}
.featureInfoModal ::-webkit-scrollbar-track {
  background-color: #87c5d4;
  border-radius: 10px;
}
.featureInfoModal ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #067C99;
}
.featureInfoModal ::-webkit-scrollbar-corner {
  background: none;
}
.featureInfoModal .feature-info-source-name {
  padding: 15px;
  font-size: 12px;
  font-weight: bold;
  background-color: #0097BA;
  color: white;
}
.featureInfoModal .feature-info-iframe {
  border: none;
  width: 100%;
  height: 100%;
}
.featureInfoModal .feature-info-iframe-container {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 100%;
}
.featureInfoModal .feature-info-iframe-overlay {
  position: absolute;
  display: none;
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0;
}
.featureInfoModal .readonly-attributes-list-item-value {
  word-wrap: break-word;
}
.featureInfoModal .feature-info-details-fieldset {
  border: none;
  position: relative;
}
.alert.alert-dismissable.alert-warning.features-panel-empty-view {
  background-color: #067C9A;
  color: white;
  border: none;
  margin: 0;
  border-radius: 0px;
  font-size: 14px;
  text-shadow: 0 0 20px rgb(0, 0, 0);
}
.leaflet-popup-content {
  width: initial;
  font-size: 1.5rem;
}
.attributes-list-fieldset {
  padding-left: 0px;
  padding-right: 0px;
}
.text-scale-bigger .leaflet-popup-content {
  font-size: 1.7rem;
}
.text-scale-bigger .alert.alert-dismissable.alert-warning.features-panel-empty-view {
  font-size: 18px;
}
.text-scale-bigger .featureInfoModal .no-features-panel h3 {
  font-size: 18px;
}
.text-scale-bigger .featureInfoModal .feature-info-list-panel .feature-info-list .feature-list-element {
  font-size: 16px;
}
.text-scale-bigger .featureInfoModal .feature-info-list-panel .feature-info-list-buttons {
  font-size: 12px;
}
.text-scale-bigger .featureInfoModal .feature-info-list-title, .text-scale-bigger .featureInfoModal .feature-info-details-title, .text-scale-bigger .featureInfoModal .feature-info-source-name {
  font-size: 15px;
}
.text-scale-bigger .featureInfoModal .feature-info-source-name {
  font-size: 15px;
}
.text-scale-biggest .leaflet-popup-content {
  font-size: 1.9rem;
}
.text-scale-biggest .alert.alert-dismissable.alert-warning.features-panel-empty-view {
  font-size: 21px;
}
.text-scale-biggest .featureInfoModal .no-features-panel h3 {
  font-size: 21px;
}
.text-scale-biggest .featureInfoModal .feature-info-list-panel .feature-info-list .feature-list-element {
  font-size: 19px;
}
.text-scale-biggest .featureInfoModal .feature-info-list-panel .feature-info-list-buttons {
  font-size: 15px;
}
.text-scale-biggest .featureInfoModal .feature-info-list-title, .text-scale-biggest .featureInfoModal .feature-info-details-title, .text-scale-biggest .featureInfoModal .feature-info-source-name {
  font-size: 18px;
}
.text-scale-biggest .featureInfoModal .feature-info-source-name {
  font-size: 18px;
}
.leaflet-popup.webgis-feature-info-popup {
  width: 300px;
  left: -150px !important;
}
.leaflet-popup.webgis-feature-info-popup .leaflet-popup-content {
  width: initial;
}
.leaflet-popup.webgis-feature-info-popup .leaflet-popup-content .feature-info-popup-content {
  max-height: 400px;
  overflow: hidden;
  overflow-y: auto;
}
.leaflet-popup.webgis-feature-info-popup .leaflet-popup-content > div > div:not(:first-child) {
  border-top: 1px solid #087b98;
}
.leaflet-popup.webgis-feature-info-popup .leaflet-popup-content-wrapper, .leaflet-popup.webgis-feature-info-popup .leaflet-popup-tip {
  background: #0097BA;
}
.leaflet-popup.webgis-feature-info-popup .leaflet-popup-close-button {
  display: none;
}
.leaflet-popup.webgis-feature-info-popup .webgis-feature-info-popup-entry {
  cursor: pointer;
  color: white;
  font-weight: bold;
  padding: 6px;
}
.leaflet-popup.webgis-feature-info-popup .webgis-feature-info-popup-entry:hover {
  color: white;
  background: #087b98;
}
.leaflet-popup.webgis-feature-info-popup .webgis-feature-info-popup-entry:hover:after {
  content: ">";
  float: right;
}
.leaflet-popup.webgis-feature-info-popup ::-webkit-scrollbar {
  width: 5px;
  background: none;
}
.leaflet-popup.webgis-feature-info-popup ::-webkit-scrollbar-track {
  background-color: #87c5d4;
  border-radius: 10px;
}
.leaflet-popup.webgis-feature-info-popup ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #067C99;
}
.leaflet-popup.webgis-feature-info-popup ::-webkit-scrollbar-corner {
  background: none;
}
.webgis-feature-info-popup-entry-source-name {
  display: inline-block;
  width: 235px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.webgis-feature-info-popup-entry-index {
  vertical-align: top;
}
window {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  font-family: open-sans, Helvetica, Roboto, Arial, sans-serif;
  pointer-events: none;
  overflow: hidden;
}
window .window-resize {
  width: 10px;
  height: 10px;
  position: absolute;
  z-index: 102;
  touch-action: none;
}
window .window-resize.offscreen {
  width: 15px;
  height: 15px;
}
window .window-resize.resize-handle-top {
  width: 100%;
  top: -10px;
}
window .window-resize.resize-handle-top-right {
  top: -10px;
  right: -10px;
}
window .window-resize.resize-handle-right {
  height: 100%;
  right: -10px;
  opacity: 0;
}
window .window-resize.resize-handle-bottom-right {
  bottom: -10px;
  right: -10px;
}
window .window-resize.resize-handle-bottom {
  width: 100%;
  bottom: -10px;
}
window .window-resize.resize-handle-bottom-left {
  bottom: -10px;
  left: -10px;
}
window .window-resize.resize-handle-left {
  height: 100%;
  left: -10px;
  opacity: 0;
}
window .window-resize.resize-handle-top-left {
  top: -10px;
  left: -10px;
}
window .content {
  background-color: #f2f2f2;
  box-shadow: rgba(0, 0, 0, 0.42) 0px 0px 9px 3px;
  pointer-events: all;
  width: -moz-fit-content;
  width: fit-content;
}
window .window-top-panel {
  height: 39px;
  font-size: 15px;
  background-color: #0097BA;
  position: relative;
  z-index: 101;
  display: flex;
  border-bottom: 8px solid #10819F;
  justify-content: space-between;
  padding-top: 1px;
  touch-action: none;
  -ms-touch-action: none;
}
window .window-top-panel .window-draggable-area {
  width: 100%;
}
window .window-top-panel .window-draggable-area .window-title {
  padding-left: 10px;
  color: white;
  padding-top: 2px;
  margin-top: 2px;
  font-weight: bold;
}
window .window-top-panel button.window-more {
  display: none;
  margin-right: 8px;
  padding: 4px;
}
window .window-top-panel button.window-more .webgis-more {
  aspect-ratio: 1;
  height: 100%;
}
window .window-top-panel button.window-more.active {
  background-color: #FFF;
}
window .window-top-panel button.window-more.active .webgis-more {
  background-color: #348fa8;
}
window .window-top-panel button.window-more:not(.active):hover .webgis-more, window .window-top-panel button.window-more:not(.active):focus-visible .webgis-more {
  background-color: #baf2ff;
}
window .window-top-panel button.window-exit {
  display: flex;
  padding: 0px 2px 0px 0px;
  margin-right: 4px;
}
window .window-top-panel button.window-exit,
window .window-top-panel button.window-more {
  background-color: transparent;
  cursor: pointer;
  transition: color 0.2s;
  border: 0;
  color: white;
  font-size: 25px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: 100%;
  text-align: center;
  text-decoration: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  align-items: center;
  justify-content: center;
}
window .window-top-panel button.window-exit:not(.active):hover,
window .window-top-panel button.window-more:not(.active):hover {
  color: #baf2ff;
  transition: color 0.2s;
}
window .main-content {
  height: calc(100% - 38px);
  width: 100%;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  overflow-x: hidden;
}
.text-scale-bigger window .window-top-panel {
  font-size: 19px;
  height: 43px;
}
.text-scale-bigger window .window-top-panel button.window-more .webgis-more {
  -webkit-mask-size: 1.1em;
          mask-size: 1.1em;
}
.text-scale-bigger window .window-top-panel button.window-exit {
  font-size: 31px;
}
.text-scale-bigger window .main-content {
  height: calc(100% - 42px);
}
.text-scale-biggest window .window-top-panel {
  font-size: 22px;
  height: 46px;
}
.text-scale-biggest window .window-top-panel button.window-more .webgis-more {
  -webkit-mask-size: 1.2em;
          mask-size: 1.2em;
}
.text-scale-biggest window .window-top-panel button.window-exit {
  font-size: 37px;
}
.text-scale-biggest window .main-content {
  height: calc(100% - 45px);
}
.google-street-view-button {
  background-color: #FFF;
  background-image: url(images/street-view/pegman.png);
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  display: block;
  height: 36px;
  width: 36px;
}
.google-street-view-button[hidden] {
  display: none;
}
.google-street-view-button.disabled {
  background-color: #C2C0C0;
}
.google-street-view-button.disabled:hover {
  background-color: #C2C0C0;
}
.google-street-view-button.active {
  background-color: #FFCC00;
}
.google-street-view-button.active:hover {
  background-color: #FF8700;
}
.google-street-view-button.inactive {
  background-color: #FFF;
}
.google-street-view-button.inactive:hover {
  background-color: #DCDCDC;
}
.google-street-view-button.window-active.inactive {
  background-image: url(images/street-view/pegman_white.png);
  background-color: #0097BA;
}
.google-street-view-button.inProgress {
  animation: control-blinking-animation 0.9s infinite;
  animation-timing-function: ease-out;
}
@keyframes control-blinking-animation {
  from {
    background-color: #FFCC00;
  }
  to {
    background-color: #FFF;
  }
}
.google-street-view-modal-container .main-content .no-street-view-panel {
  margin-left: 10px;
}
.google-street-view-modal-container .main-content .no-street-view-panel h3 {
  font-size: 18px;
  margin-top: 30px;
}
.google-street-view-modal-container .main-content .street-view-panel {
  height: 100%;
  display: block;
}
.google-street-view-modal-container .main-content .street-view-panel.hidden {
  display: none;
}
.google-street-view-modal-container .main-content .google-street-view-details-panel {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 100%;
  float: left;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  background-color: #f2f2f2;
}
.google-street-view-modal-container .main-content .google-street-view-details-panel #google-street-view-panorama {
  height: 100%;
}
.google-street-view-modal-container .main-content .loading .panel-split-line {
  opacity: 0;
}
.leaflet-popup.webgis-google-street-view-popup {
  width: 300px;
  left: -150px !important;
}
.leaflet-popup.webgis-google-street-view-popup .leaflet-popup-content {
  width: initial;
}
.leaflet-popup.webgis-google-street-view-popup .leaflet-popup-content .google-street-view-popup-content {
  max-height: 400px;
  overflow: hidden;
  overflow-y: auto;
}
.leaflet-popup.webgis-google-street-view-popup .leaflet-popup-content > div > div:not(:first-child) {
  border-top: 1px solid #087b98;
}
.leaflet-popup.webgis-google-street-view-popup .leaflet-popup-content-wrapper, .leaflet-popup.webgis-google-street-view-popup .leaflet-popup-tip {
  background: #0097BA;
}
.leaflet-popup.webgis-google-street-view-popup .leaflet-popup-close-button {
  display: none;
}
.leaflet-popup.webgis-google-street-view-popup .webgis-google-street-view-popup-entry {
  cursor: pointer;
  color: white;
  font-weight: bold;
  padding: 6px;
}
.leaflet-popup.webgis-google-street-view-popup .webgis-google-street-view-popup-entry:hover {
  color: white;
  background: #087b98;
}
.leaflet-popup.webgis-google-street-view-popup .webgis-google-street-view-popup-entry:hover:after {
  content: ">";
  float: right;
}
.leaflet-popup.webgis-google-street-view-popup ::-webkit-scrollbar {
  width: 5px;
  background: none;
}
.leaflet-popup.webgis-google-street-view-popup ::-webkit-scrollbar-track {
  background-color: #87c5d4;
  border-radius: 10px;
}
.leaflet-popup.webgis-google-street-view-popup ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #067C99;
}
.leaflet-popup.webgis-google-street-view-popup ::-webkit-scrollbar-corner {
  background: none;
}
.alert.alert-dismissable.alert-warning.no-street-view-available-popup {
  background-color: #067C9A;
  color: white;
  border: none;
  margin: 0;
  border-radius: 0px;
  font-size: 14px;
  text-shadow: 0 0 20px rgb(0, 0, 0);
}
on-off-switch {
  width: 7em;
  height: 2em;
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 1em;
}
on-off-switch .switch .blue {
  background-color: #0097ba;
  border: solid 1px #13697d;
  color: white;
}
on-off-switch .switch .gray {
  background-color: #ababab;
  border: solid 1px #6f6f6f;
  color: white;
}
on-off-switch .switch .on, on-off-switch .switch .off {
  position: absolute;
  transition: right ease-in-out 0.5s;
  width: 100%;
  float: left;
  display: inline-block;
  border: 1px solid #6f6f6f;
  border-radius: 4px;
}
on-off-switch .switch .on > span, on-off-switch .switch .off > span {
  float: left;
  text-align: center;
  width: 50%;
  display: inline-block;
  height: 100%;
  padding: 0.1em;
}
on-off-switch .switch .on {
  left: -100%;
}
on-off-switch .switch .off {
  left: 0;
}
on-off-switch .switch.on .on {
  left: 0;
}
on-off-switch .switch.on .off {
  left: 100%;
}
.map-compositions-info {
  background: #fff;
  color: #000;
  font-size: 11px;
  padding: 3px 6px 3px 3px;
}
.map-compositions-info-text {
  display: inline-block;
}
.map-compositions-info-text div {
  display: inline-block;
}
.map-compositions-info-text:last-child div:last-child:before {
  content: " | ";
}
.map-compositions-info-text-coords:after {
  content: "| ";
}
@media (max-width: 600px) {
  .map-compositions-info {
    border-bottom: 1px solid #D3D3D3;
  }
  .map-compositions-info-text-coords {
    display: block;
  }
  .map-compositions-info-text-coords:after {
    content: "";
  }
  .map-compositions-info-text div {
    display: block;
  }
  .map-compositions-info-text:last-child div {
    display: block;
  }
  .map-compositions-info-text:last-child div:last-child:before {
    content: "";
  }
}
.text-scale-bigger .map-compositions-info {
  font-size: 14px;
  height: 100%;
}
.text-scale-biggest .map-compositions-info {
  font-size: 16px;
  height: 100%;
}
.scale-bar {
  display: inline-block;
  background: #fff;
  color: #000;
  font-size: 11px;
  float: right;
  min-width: 100%;
}
.scale-bar-text {
  display: inline-block;
}
.scale-bar-text div {
  display: inline-block;
}
.scale-bar-content {
  float: right;
}
.scale-bar-ruler {
  display: inline-block;
  height: 8px;
  border: 2px solid gray;
  border-top: none;
  margin-right: 5px;
  margin-left: 5px;
  padding-bottom: 10px;
}
.scale-bar-info {
  text-align: center;
  font-size: 11px;
  margin-bottom: -10px;
}
.text-scale-bigger .scale-bar {
  font-size: 14px;
}
.text-scale-bigger .scale-bar-info {
  font-size: 14px;
  margin-bottom: -14px;
}
.text-scale-bigger .scale-bar-ruler {
  margin-left: 8px;
  margin-right: 8px;
}
.text-scale-biggest .scale-bar {
  font-size: 16px;
}
.text-scale-biggest .scale-bar-info {
  font-size: 16px;
  margin-bottom: -16.5px;
}
.text-scale-biggest .scale-bar-ruler {
  margin-left: 13px;
  margin-right: 13px;
}
.nominal-scale {
  display: inline-block;
  background: #fff;
  color: #000;
  font-size: 11px;
  float: right;
  min-width: 100%;
}
.nominal-scale-text {
  display: inline-block;
}
.nominal-scale-text div {
  display: inline-block;
}
.nominal-scale-content {
  float: right;
}
.nominal-scale-info {
  text-align: center;
  margin: 3px 10px 3px 10px;
}
.text-scale-bigger .nominal-scale-info {
  font-size: 14px;
}
.text-scale-biggest .nominal-scale-info {
  font-size: 16px;
}
#base-map-and-map-info, #map-info {
  pointer-events: none;
}
#base-map-and-map-info #base-map-selector-panel-body, #map-info #base-map-selector-panel-body {
  pointer-events: none;
}
#base-map-and-map-info #google-map-logo .gm-logo, #map-info #google-map-logo .gm-logo {
  pointer-events: auto;
}
#base-map-and-map-info #google-map-info, #map-info #google-map-info {
  pointer-events: auto;
}
#base-map-and-map-info #map-info, #map-info #map-info {
  pointer-events: auto;
}
#base-map-and-map-info #gpsAccuracyControl .gps-accuracy, #map-info #gpsAccuracyControl .gps-accuracy {
  pointer-events: auto;
}
.base-map-selector {
  padding: 5px;
  transition: padding-right 0.5s ease;
  pointer-events: auto;
}
.base-map-selector .map-variant-list {
  overflow: hidden;
  background-color: #FFF;
  padding: 5px 5px;
  transition: background 0.2s;
  display: flex;
}
.base-map-selector .map-variant-list li {
  position: relative;
  margin-bottom: 0;
  margin-right: 0;
  width: 0;
  height: 6.5em;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
}
.base-map-selector .map-variant-list li .base-map-ico {
  height: 6.5em;
}
.base-map-selector .map-variant-list li .map-variant-name {
  position: absolute;
  bottom: 0;
  background-color: #0097BA;
  color: white;
  font-size: 0.6em;
  width: 100%;
}
.base-map-selector .map-variant-list li.selected {
  height: 6.5em;
  width: 6.5em;
  display: inline-block;
}
.base-map-selector .map-variant-list li.selected .map-variant-name {
  background-color: black;
}
.base-map-selector .map-variant-list li.selected .base-map-indicator {
  width: 24px;
  height: 24px;
  top: 0px;
  right: 0px;
  position: absolute;
  font-size: 24px;
}
.base-map-selector.animated li {
  transition: width 0.5s, margin-right 0.5s;
}
.base-map-selector.expanded .map-variant-list {
  background-color: rgba(255, 255, 255, 0.6);
}
.base-map-selector.expanded .map-variant-list li {
  display: inline-block;
  width: 6.5em;
  margin-right: 20px;
  box-shadow: 0 0 0 1px #0097BA;
}
.base-map-selector.expanded .map-variant-list li.selected {
  box-shadow: 0 0 0 1px black;
  margin-right: 0;
  margin-bottom: 0;
}
.text-scale-bigger .base-map-selector .map-variant-list li .map-variant-name {
  font-size: 0.7em;
}
.text-scale-biggest .base-map-selector .map-variant-list li .map-variant-name {
  font-size: 0.8em;
}
@media screen and (min-width: 601px) {
  .floatingpanel:target ~ .panenavi .base-map-selector {
    padding-right: 293px;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .floatingpanel:target ~ .panenavi .base-map-selector .map-variant-list {
    flex-direction: column;
  }
  .floatingpanel:target ~ .panenavi .base-map-selector .map-variant-list li {
    width: calc(6.5em * 0.75);
    height: 0;
    margin-bottom: 0;
  }
  .floatingpanel:target ~ .panenavi .base-map-selector .map-variant-list li.selected {
    height: calc(6.5em * 0.75);
    width: calc(6.5em * 0.75);
    display: inline-block;
  }
  .floatingpanel:target ~ .panenavi .base-map-selector.animated li {
    transition: width 0s, height 0.5s, margin-bottom 0.5s;
  }
  .floatingpanel:target ~ .panenavi .base-map-selector.expanded .map-variant-list li {
    margin-right: 0;
    margin-bottom: 20px;
    height: calc(6.5em * 0.75);
    width: calc(6.5em * 0.75);
  }
  .floatingpanel:target ~ .panenavi .base-map-selector.expanded .map-variant-list li.selected {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .floatingpanel:target ~ .panenavi .base-map-selector {
    padding-right: 5px;
  }
  .base-map-selector .map-variant-list {
    flex-direction: column;
  }
  .base-map-selector .map-variant-list li {
    width: calc(6.5em * 0.75);
    height: 0;
    margin-bottom: 0;
  }
  .base-map-selector .map-variant-list li.selected {
    height: calc(6.5em * 0.75);
    width: calc(6.5em * 0.75);
    display: inline-block;
  }
  .base-map-selector.animated li {
    transition: width 0s, height 0.5s, margin-bottom 0.5s;
  }
  .base-map-selector.expanded .map-variant-list li {
    margin-right: 0;
    margin-bottom: 20px;
    height: calc(6.5em * 0.75);
    width: calc(6.5em * 0.75);
  }
}
.bounceLoader {
  width: 100%;
  position: absolute;
  top: 50%;
  text-align: center;
  animation-play-state: paused;
  display: none;
}
.bounceLoader > div {
  width: 18px;
  height: 18px;
  background-color: #FFFFFF;
  border-radius: 100%;
  display: inline-block;
  animation-play-state: inherit;
  animation: bouncesAnimation 1.4s infinite ease-in-out both;
}
.bounceLoader.animate {
  display: block;
  animation-play-state: running;
}
.bounceLoader .bounceFirst {
  animation-delay: -0.32s;
}
.bounceLoader .bounceSecond {
  animation-delay: -0.16s;
}
@keyframes bouncesAnimation {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.measurement-button-main {
  background-image: url(images/icon-control.png);
  background-position: 0px -288px;
}
.measurement-button-main:hover {
  background-color: #DCDCDC;
}
.measurement-button-main.active {
  background-color: #0097BA;
  background-position: -36px -288px;
}
.measurement-button {
  background-color: #FFF;
  background-repeat: no-repeat;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: block;
  height: 36px;
  width: 36px;
  border: none;
}
.measurement-button > button {
  border: none;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 36px;
  background-color: #FFF;
}
.measurement-button > button:hover {
  background-color: #DCDCDC;
}
.measurement-button > button.active {
  background-color: #FFCC00;
}
.measurement-button > button.active:hover {
  background-color: #FF8700;
}
.measurement-button > button .icon {
  color: black;
  font-size: 24px;
}
.measurement-button > button .icon:before {
  line-height: 36px;
}
.measurement-button > button:before {
  line-height: 40px;
  font-size: 24px;
}
#measurement-button {
  display: flex;
}
.measurement-icon {
  margin-left: 5px;
}
.measurement-icons {
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 0;
  transition: max-width 0.5s;
  box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.5);
}
.measurement-plugin-icons {
  display: flex;
}
.measurementsAreExpanded {
  max-width: 200px;
}
#legend-button.active {
  background-color: #0097BA;
}
#legend-button.active span {
  background-color: #0097BA;
  color: #fff;
}
#legendModal .main-content {
  background-color: #1b98bb;
}
#legendModal .slider-horizontal {
  width: 95%;
  left: 4px;
}
#legendModal .not-visible {
  background-color: #a6a6a6 !important;
}
#legendModal .layers-list .panel {
  border-left: 0;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 1px 0px 10px #696969;
}
#legendModal .layers-list .layer-dropdown_options-list {
  font-size: 14px;
}
#legendModal .layers-list .layer-list-item-row {
  border-bottom: none;
  border-left: none;
  border-top: none;
}
#legendModal .layers-list .layer-list-item-row .layer-list-item-name {
  font-size: 14px;
  line-height: 46px;
  height: 46px;
  padding: 0px;
  padding-right: 12px;
  color: inherit;
}
#legendModal .layers-list .layer-list-item-content {
  padding: 0px;
  background-color: inherit;
}
#legendModal .layers-list .legend-item-group-titlebox {
  border-left: none;
  border-bottom: none;
}
#legendModal .layers-list .legend-item-group-title {
  height: 46px;
  line-height: 46px;
  padding-right: 12px;
}
#legendModal .layers-list .legend-item-group {
  border-top: none;
  color: inherit;
}
#legendModal .layers-list .legend-item-group-pictogram {
  top: 10px;
}
#legendModal .layers-list .legend-item-group-icon {
  top: 4px;
}
#legendModal .layers-list .layer-list-item-icon {
  top: 4px;
}
#legendModal .layers-list .collapse.in .panel.layer-list-item {
  border-top: 1px;
}
#legendModal .panel-group {
  color: #fff;
}
#legendModal .panel-group .panel-group {
  border-left: 1px solid #cbddf3;
  border-top: 1px solid #cbddf3;
  border-bottom: 1px solid #cbddf3;
}
#legendModal .panel-group .layer-list-item-content .panel {
  border-top: 1px solid #cbddf3;
  border-radius: 0;
  margin-top: 0px;
  background-color: inherit;
}
#legendModal .panel-group .panel-heading .panel-title {
  padding-left: 11px;
  padding-top: 4px;
  font-size: 14px;
  font-weight: bold;
}
#legendModal .legend-item-group-title.expanded {
  overflow: hidden;
}
#legendModal .legend-item-group-title.expanded span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#legendModal .layer-list-item-info {
  border-top: 1px solid #cbddf3;
}
#legendModal .legend-panel-empty {
  background-color: #3da7c5;
  font-weight: bold;
}
#legendModal .legend-panel-empty .alert-warning {
  margin-bottom: 0;
}
window .pictogram-in-window-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.text-scale-bigger #legendModal .layers-list .panel .legend-item-group-title {
  font-size: 18px;
}
.text-scale-bigger #legendModal .layers-list .layer-list-item-row .layer-list-item-name {
  font-size: 18px;
}
.text-scale-bigger #legendModal .layers-list .layer-dropdown_options-list {
  font-size: 18px;
}
.text-scale-bigger #legendModal .layers-list .layer-list-item-info {
  font-size: 18px;
}
.text-scale-bigger #legendModal .panel-group .panel-heading .panel-title {
  font-size: 18px;
}
.text-scale-bigger #legendModal .legend-panel-empty {
  font-size: 16px;
}
.text-scale-biggest #legendModal .layers-list .panel .legend-item-group-title {
  font-size: 21px;
}
.text-scale-biggest #legendModal .layers-list .layer-list-item-row .layer-list-item-name {
  font-size: 21px;
}
.text-scale-biggest #legendModal .layers-list .layer-dropdown_options-list {
  font-size: 21px;
}
.text-scale-biggest #legendModal .layers-list .layer-list-item-info {
  font-size: 21px;
}
.text-scale-biggest #legendModal .panel-group .panel-heading .panel-title {
  font-size: 21px;
}
.text-scale-biggest #legendModal .legend-panel-empty {
  font-size: 19px;
}
.high-contrast-button {
  width: 36px;
  height: 36px;
  display: block;
  cursor: pointer;
  background-color: #FFF;
  background-position: center;
  background-size: contain;
  background-image: url("images/high-contrast.png");
  background-repeat: no-repeat;
  border-width: 0px;
}
.high-contrast-button:hover {
  background-color: #DCDCDC;
}
.HighContrast .high-contrast-button {
  background-color: #FF0;
}
.HighContrast .high-contrast-button:hover {
  background-color: #DCDCDC;
}
#more_info_button {
  display: flex;
}
.more_info_button {
  background-image: url(images/icon-control.png);
  background-position: -71px -180px;
  background-repeat: no-repeat;
  background-color: #FFF;
  cursor: pointer;
  padding: 0;
  height: 36px;
  width: 36px;
  border: none;
}
.more_info_button:hover {
  background-color: #DCDCDC;
}
.more_info_button.active {
  background-color: #0097BA;
  background-position: -71px -215px;
}
.more-button-icons {
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 0;
  transition: max-width 0.5s;
  box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.5);
}
.moreInfoIsExpanded {
  max-width: 150px;
}
#info_button {
  margin-left: 5px;
}
#settings-button {
  display: block;
  height: 36px;
  width: 36px;
  cursor: pointer;
  margin-left: 5px;
  background-image: url(images/icon-control.png);
  background-position: 0px -108px;
  background-repeat: no-repeat;
  background-color: #FFF;
}
#settings-button.panelMode {
  margin-left: 0;
}
#settings-button.windowMode {
  display: none;
}
#settings-button:hover {
  background-color: #DCDCDC;
}
#settings-button.active {
  background-color: #0097BA;
  background-position: -36px -324px;
}
.HighContrast #settings-button {
  background-color: #FFO;
}
.toolspanelbutton {
  bacgkround-color: #FF0 !important;
}
#settingsModal .main-content {
  overflow: visible;
}
#settingsModal .content {
  height: auto !important;
}
.settings-wrapper {
  display: grid;
  background-color: #33CCFF;
}
.settings-wrapper .checkbox {
  padding: 15px 0;
  margin: 0;
}
.settings-wrapper .checkbox label {
  display: flex;
  padding: 0 20px 0 20px;
  align-items: center;
  justify-content: space-between;
}
.settings-wrapper .checkbox label span {
  margin: 0;
}
.settings-wrapper on-off-switch + span {
  line-height: 26px;
  text-shadow: 1px 0px 10px #696969;
}
.settings-wrapper > div:nth-child(even) {
  background-color: #1b98bb;
}
.settings-wrapper > div:nth-child(odd) {
  background-color: #3da7c5;
}
.details-wrapper {
  margin: 12px;
}
.details-wrapper .webgis-search-result-moreinfo-item-description {
  font-size: 15px;
  margin-bottom: 8px;
}
.details-wrapper .webgis-search-result-moreinfo-item-type {
  font-size: 12px;
  margin-bottom: 4px;
}
.text-scale-bigger .details-wrapper {
  margin: 12px;
}
.text-scale-bigger .details-wrapper .webgis-search-result-moreinfo-item-description {
  font-size: 20px;
  margin-bottom: 8px;
}
.text-scale-bigger .details-wrapper .webgis-search-result-moreinfo-item-type {
  font-size: 15px;
  margin-bottom: 4px;
}
.text-scale-biggest .details-wrapper {
  margin: 12px;
}
.text-scale-biggest .details-wrapper .webgis-search-result-moreinfo-item-description {
  font-size: 23px;
  margin-bottom: 8px;
}
.text-scale-biggest .details-wrapper .webgis-search-result-moreinfo-item-type {
  font-size: 19px;
  margin-bottom: 4px;
}
#font-size-change-button {
  display: flex;
}
.font-size-change-button {
  background-image: url(images/font-size/A4.png);
  background-color: #FFF;
  cursor: pointer;
  padding: 0;
  height: 36px;
  width: 36px;
  border: none;
}
.font-size-change-button:hover {
  background-color: #DCDCDC;
  filter: contrast(73%);
}
.font-size-change-button:active {
  background-color: #0097BA;
  background-position: -71px -215px;
}
.font-size-change-button.text-scale-bigger {
  background-image: url(images/font-size/A5.png);
}
.font-size-change-button.text-scale-biggest {
  background-image: url(images/font-size/A6.png);
}
.HighContrast .font-size-change-button {
  background-image: url(images/font-size/A1.png);
}
.HighContrast .font-size-change-button:hover {
  filter: grayscale(1);
}
.HighContrast .font-size-change-button.text-scale-bigger {
  background-image: url(images/font-size/A2.png);
}
.HighContrast .font-size-change-button.text-scale-biggest {
  background-image: url(images/font-size/A3.png);
}
@font-face {
  font-family: "icomoon";
  src: url("fonts/icomoon/icomoon.eot?koz1w");
  src: url("fonts/icomoon/icomoon.eot?#koz1w") format("embedded-opentype"), url("fonts/icomoon/icomoon.ttf?koz1w") format("truetype"), url("fonts/icomoon/icomoon.woff?koz1w") format("woff"), url("fonts/icomoon/icomoon.svg?koz1w#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon {
  font-size: 24px;
  color: #000000;
  font-weight: 100;
  text-align: center;
  display: block;
}
.icon.active {
  color: #0097BA;
}
.icon-locateme:before {
  content: "\e903";
}
.icon-trackme:before {
  content: "\e90e";
}
.icon-recenter:before {
  content: "\e90d";
}
.icon-configuration:before {
  content: "\e910";
}
.icon-search:before {
  content: "\e600";
}
.icon-settings:before {
  content: "\e91b";
}
.icon-arrow:before {
  content: "\e601";
}
.icon-arrow-up:before {
  content: "\e905";
}
.icon-legend:before {
  content: "\e602";
}
.icon-map:before {
  content: "\e603";
}
.icon-more-info:before {
  content: "\e604";
}
.icon-edit:before {
  content: "\e605";
}
.icon-edit-geometry:before {
  content: "\e909";
}
.icon-delete:before {
  content: "\e608";
}
.icon-logo:before {
  content: "\e900";
}
.icon-menu:before {
  content: "\e3c7";
}
.icon-accept {
  color: #FFFFFF;
}
.icon-accept:before {
  content: "\e902";
}
.icon-reject:before {
  content: "\e904";
}
.icon-reject-after:after {
  content: "\e904";
}
.icon-plus:before {
  content: "\e906";
}
.icon-primary-locateme:before {
  content: "\e908";
}
.icon-edit-attributes:before {
  content: "\e90a";
}
.icon-camera:before {
  content: "\e90b";
}
.icon-gallery:before {
  content: "\e90c";
}
.icon-trash:before {
  content: "\e608";
}
.icon-upload:before {
  content: "\e911";
}
.icon-download:before {
  content: "\e912";
}
.icon-measure-length:before {
  content: "\e916";
}
.icon-measure-area:before {
  content: "\e917";
}
.icon-play-video:before {
  content: "\e918";
}
.icon-video-gallery:before {
  content: "\e919";
}
.icon-record-video:before {
  content: "\e91a";
}
.icon-undo:before {
  content: "\e91c";
}
.icon-add-video-attr:before {
  content: "\e926";
}
.icon-play-video-attr:before {
  content: "\e927";
}
.icon-add-photo-attr:before {
  content: "\e91d";
}
.icon-select-audio-attr:before {
  content: "\e929";
}
.icon-play-audio-attr:before {
  content: "\e92a";
}
.icon-record-audio-attr:before {
  content: "\e92b";
}
.icon-add-attachment-attr:before {
  content: "\e92c";
}
.icon-open-attachment-attr:before {
  content: "\e92d";
}
.icon-signature:before {
  content: "\e92f";
}
.icon-home:before {
  content: "\e932";
}
.icon-directions:before {
  content: "\e907";
}
.icon-filter:before {
  content: "\e90f";
}
.icon-suitcase:before {
  content: "\e900";
}
.icon-map-compositions:before {
  content: "\e913";
}
.icon-map-composition-black:before {
  content: "\e914";
}
.icon-map-composition-white:before {
  content: "\e915";
  color: #fff;
}
.icon-copy-to-clipboard:before {
  content: "\e925";
}
.icon-pictogram-unknown:before {
  content: "\e928";
}
.icon-pictogram-raster:before {
  content: "\e930";
}
.icon-pictogram-vector:before {
  content: "\e931";
}
.icon-qr-code:before {
  content: "\e933";
}
.icon-warning:before {
  content: "\ea07";
}
.icon-snap:before {
  content: "\e931";
}
.icon-measure-line:before {
  content: "\e91e";
}
.icon-triangle-arrow-right:before {
  content: "\e91f";
}
.icon-triangle-arrow-down:before {
  content: "\e920";
}
.icon-spinner:before {
  content: "\e97f";
}
.icon-add-video-attr,
.icon-play-video-attr,
.icon-add-photo-attr,
.icon-select-audio-attr,
.icon-play-audio-attr,
.icon-record-audio-attr,
.icon-add-attachment-attr,
.icon-open-attachment-attr,
.icon-signature {
  font-size: 3.5em;
  color: #000000;
  font-weight: 100;
}
#legend-panel-body {
  display: flex;
  flex-direction: column;
}
#legend-panel-body .layers-list:not(.layer-list-item-group) {
  margin-bottom: 0;
  overflow-y: auto;
}
.map-composition-item .webgis-map-compositions-wrap {
  outline: 5px solid transparent;
}
.map-composition-item .webgis-map-compositions-wrap:hover {
  outline: 5px solid #067C99;
}
.map-composition-item .webgis-map-compositions-wrap:hover .webgis-map-composition-preserve-bbox-button {
  display: block;
}
.map-composition-item .selected-composition-item {
  outline: 5px solid #87c5d4;
}
.map-composition-item .selected-composition-item .webgis-map-composition-label {
  background-color: rgba(135, 197, 212, 0.6);
  color: rgba(0, 0, 0, 0.8);
  font-weight: bold;
}
.map-composition-item .selected-composition-item:hover {
  outline: 5px solid rgba(135, 197, 212, 0.4);
}
.webgis-map-composition-preserve-bbox-button {
  position: absolute;
  z-index: 99;
  display: none;
  width: 20px;
  height: 20px;
  top: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.5019607843) url("images/icon-control.png") -8px -44px no-repeat;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.webgis-map-composition-preserve-bbox-button:hover {
  background-color: #ffffff;
}
rect[hidden] {
  display: unset;
}
.x-window-header-default {
  font-size: 11px;
}
#base-map-and-map-info {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  right: 0;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 2;
}
#base-map-and-map-info .map-compositions-info-text-coords > div {
  width: 93px;
}
#base-map-and-map-info #base-map-selector-panel-body {
  margin-left: auto;
  margin-bottom: 10px;
  margin-right: 2vw;
}
#base-map-and-map-info #map-info {
  align-items: flex-end;
}
#base-map-and-map-info #google-map-logo {
  display: flex;
  justify-content: flex-end;
}
#base-map-and-map-info #google-map-logo div, #base-map-and-map-info #google-map-logo img {
  position: initial !important;
}
#base-map-and-map-info #google-map-logo > div {
  padding: 5px;
  padding-right: 73px;
}
#base-map-and-map-info #google-map-info {
  display: flex;
  justify-content: flex-end;
  z-index: 100;
}
#base-map-and-map-info #google-map-info .gm-style-cc {
  position: relative !important;
  z-index: 100 !important;
  right: 0 !important;
}
.leaflet-google-mutant div[class*=copyright-dialog-view] {
  pointer-events: auto;
}
#legendPrint {
  display: none;
}
.media-container.media-available {
  float: right;
  flex-grow: 1;
  position: relative;
}
.media-container.media-available .embed-pdf object {
  overflow-y: auto;
}
.media-container.media-available .embed-audio audio {
  width: 100%;
}
.media-container.media-available .bounceLoader {
  top: calc(50% - 18px);
  z-index: 1;
}
.media-container.media-available .bounceLoader > div {
  background-color: #0097BA;
}
.media-container.media-available div[class*=media-container-] {
  position: relative;
  z-index: 2;
}
.media-container.media-available .media-container-image .img-wrapper {
  display: flex;
  align-items: center;
  min-height: 200px;
}
.media-container.media-available .media-container-image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.media-container.media-available .media-container-pdf {
  display: flex;
  flex-direction: column;
}
.media-container.media-available .bounceLoader.animate,
.media-container.media-available .media-container-image.loaded {
  background: transparent center center no-repeat;
  background-size: contain;
  cursor: pointer;
}
.media-container.media-available .media-container-image.loaded {
  height: 200px;
}
.media-container.media-available .bounceLoader.animate {
  height: 20px;
  pointer-events: none;
}
#map-compositions-windows {
  position: absolute;
  right: calc(2vw + 46px);
  top: 0px;
}
#map-compositions-windows #legendModal > window {
  overflow: visible;
}
#map-compositions-windows #legendModal > window > div {
  position: absolute;
  right: calc(100% + 10px);
}
.map-compositions-window-container {
  max-width: 0px;
  padding: 0;
  margin: 0;
  display: block;
  max-height: calc(100% - 100px);
  min-height: 85px;
  overflow: auto;
  resize: vertical;
  background: rgba(255, 255, 255, 0.6);
  margin-top: -11px;
  transition: max-width 0.7s ease-in-out;
}
.map-compositions-window-container.active {
  max-width: 330px;
}
.map-compositions-window-container #map-compositions-window-body {
  position: relative;
}
.map-compositions-window-container #map-compositions-window-body .map-compositions-list {
  display: grid;
  grid-template-columns: 33.33% 33.33% 33.33%;
  direction: rtl;
}
.map-compositions-window-container #map-compositions-window-body .map-compositions-list.two-columns {
  grid-template-columns: 50% 50%;
}
.map-compositions-window-container #map-compositions-window-body .map-compositions-list .map-composition-item {
  width: 84px;
  height: 84px;
  margin: 10px;
  overflow: hidden;
  border: 1px solid #0097BA;
}
.map-compositions-window-container #map-compositions-window-body .map-compositions-list .map-composition-item.active {
  border-color: black;
}
.map-compositions-window-container #map-compositions-window-body .map-compositions-list .map-composition-item .webgis-map-compositions-wrap {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  outline: none;
  margin: 0;
  cursor: pointer;
}
.map-compositions-window-container #map-compositions-window-body .map-compositions-list .map-composition-item .webgis-map-compositions-wrap .webgis-map-compositions-thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.map-compositions-window-container #map-compositions-window-body .map-compositions-list .map-composition-item .webgis-map-compositions-wrap .webgis-map-compositions-thumbnail .webgis-map-composition-icon {
  position: absolute;
  bottom: 0;
  top: auto;
  font-size: 0.6em;
  height: auto;
  padding: 0;
  text-align: center;
}
.map-compositions-window-container #map-compositions-window-body .map-compositions-list .map-composition-item .webgis-map-compositions-wrap .webgis-map-composition-label {
  background-color: #0097BA;
  position: absolute;
  bottom: 0;
  top: auto;
  font-size: 0.6em;
  height: auto;
  padding: 0;
  text-align: center;
  width: 100%;
}
.map-compositions-window-container #map-compositions-window-body .map-compositions-list .map-composition-item .webgis-map-compositions-wrap.selected-composition-item .webgis-map-composition-label {
  background-color: black;
  color: white;
}
@media screen and (max-width: 600px) {
  .map-compositions-window-container.active {
    max-width: 300px;
  }
  .map-compositions-window-container #map-compositions-window-body .map-compositions-list .map-composition-item {
    width: calc(84px * 0.75);
    height: calc(84px * 0.75);
  }
}
.mdc-switch .mdc-switch__thumb {
  background-color: #ACACAC !important;
  border-color: #ACACAC !important;
}
.mdc-switch .mdc-switch__track {
  background-color: #ACACAC !important;
  border-color: #ACACAC !important;
}
.mdc-switch--checked .mdc-switch__thumb {
  background-color: #FFF !important;
  border-color: #FFF !important;
}
.mdc-switch--checked .mdc-switch__track {
  background-color: #FFF !important;
  border-color: #FFF !important;
}
[id*=legend-item-legend-window-] .window-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 21px;
}
[id*=legend-item-legend-window-] .content .main-content {
  max-width: calc(100vh - 38px);
  max-height: calc(100vh - 38px);
  overflow-x: auto;
}
[id*=legend-item-legend-window-].layer-hidden .window-top-panel {
  background-color: #a6a6a6;
  border-color: #a0a0a0;
}
[id*=legend-item-legend-window-].map-composition-changed .content {
  visibility: hidden !important;
}
.HighContrast #hexban {
  background-color: #FF0;
}
.HighContrast #customization-tools .customization-icon {
  background-image: url("images/icon-control-high-contrast.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .HighContrast #customization-tools .customization-icon {
    background-image: url(images/icon-controlx2-high-contrast.png);
  }
}
.HighContrast .legend-entry-loading {
  background-image: url("images/loadinglayers8-high-contrast.gif") !important;
}
.HighContrast .toolspanelbutton {
  background-color: #FF0 !important;
}
.HighContrast .toolspanelbutton:hover {
  background-color: #DCDCDC !important;
}
.HighContrast .feature-info-button {
  background-image: url(images/icon-control-high-contrast.png);
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .HighContrast .feature-info-button {
    background-image: url(images/icon-controlx2-high-contrast.png);
  }
}
.HighContrast .feature-info-button.inactive {
  background-color: #FF0;
}
.HighContrast .feature-info-button.inactive.window-active {
  background-color: #000;
  background-position-y: -180px;
}
.HighContrast .feature-info-button.active {
  background-color: #FFF;
}
.HighContrast .feature-info-button:hover {
  background-color: #DCDCDC;
}
.HighContrast .floatingpanelbutton {
  background-color: #FF0;
}
.HighContrast .floatingpanelbutton:hover {
  background-color: #DCDCDC;
}
.HighContrast .active-button {
  background-color: #000;
}
.HighContrast .measurement-button {
  background-color: #FF0;
}
.HighContrast .measurement-button:hover {
  background-color: #DCDCDC;
}
.HighContrast .measurement-button > button {
  background-color: #FF0;
}
.HighContrast .measurement-button > button.active {
  background-color: #FFF;
}
.HighContrast .measurement-button > button:hover {
  background-color: #DCDCDC;
}
.HighContrast .measurement-button-main.active {
  background-image: url(images/icon-control-high-contrast.png);
  background-color: #000;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .HighContrast .measurement-button-main.active {
    background-image: url(images/icon-controlx2-high-contrast.png);
  }
}
.HighContrast .more_info_button {
  background-color: #FF0;
}
.HighContrast .more_info_button:hover {
  background-color: #DCDCDC;
}
.HighContrast #settings-button {
  background-color: #FF0;
}
.HighContrast #settings-button:hover {
  background-color: #DCDCDC;
}
.HighContrast #settings-button.active {
  background-image: url(images/icon-control-high-contrast.png);
  background-color: #000;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .HighContrast #settings-button.active {
    background-image: url(images/icon-controlx2-high-contrast.png);
  }
}
.HighContrast #legend-button span {
  background-color: #FF0;
}
.HighContrast #legend-button:hover {
  background-color: #DCDCDC;
}
.HighContrast #legend-button.active span {
  background-color: #000;
  color: #FF0 !important;
}
.HighContrast #legend-button.active span:hover {
  background-color: #000 !important;
}
.HighContrast #legend-button.floatingpanelbutton-active span {
  background-color: #000000;
  color: #FF0 !important;
}
.HighContrast #legend-button.floatingpanelbutton-active span:hover {
  background-color: #000000 !important;
  text-decoration: none;
}
.HighContrast #settings.floatingpanel .checkbox > label > span {
  color: #000;
}
.HighContrast #settings.floatingpanel > .floatingpanel-body > div:nth-child(even) {
  background-color: #FF0;
}
.HighContrast #settings.floatingpanel > .floatingpanel-body > div:nth-child(odd) {
  background-color: #FFF;
}
.HighContrast .map-compositions-list {
  background-color: #FF0;
}
.HighContrast .webgis-map-composition-label {
  background-color: #FF0;
  color: #000;
}
.HighContrast .map-composition-item {
  background-color: #FF0;
}
.HighContrast .panel {
  color: #000;
  text-shadow: none !important;
}
.HighContrast .map-compositions-window-container {
  background-color: #FF0;
}
.HighContrast .webgis-search-advanced {
  background-color: #FF0;
  color: #000;
}
.HighContrast .webgis-search-advanced:hover {
  background-color: #000 !important;
  color: #FF0 !important;
}
.HighContrast .window-exit {
  color: #FF0 !important;
}
.HighContrast .panel-more .webgis-more,
.HighContrast .window-more .webgis-more {
  background-color: yellow;
}
.HighContrast .panel-more.active .webgis-more,
.HighContrast .window-more.active .webgis-more {
  background-color: black !important;
}
.HighContrast .panel-more:not(.active):hover .webgis-more, .HighContrast .panel-more:not(.active):focus-visible .webgis-more,
.HighContrast .window-more:not(.active):hover .webgis-more,
.HighContrast .window-more:not(.active):focus-visible .webgis-more {
  background-color: white !important;
}
.HighContrast .window-top-panel {
  color: #FF0;
  background-color: #000;
  box-shadow: none;
  border-bottom: 8px solid #000;
}
.HighContrast .window-title {
  color: #FF0 !important;
}
.HighContrast .panel-title {
  color: #000;
}
.HighContrast .panel-heading .panel-title, .HighContrast .panel-heading label {
  color: #000;
}
.HighContrast .map-compositions-info-visible-label {
  color: #000;
  text-shadow: none;
}
.HighContrast .scale-visible-label {
  color: #000;
  text-shadow: none;
}
.HighContrast .slider-handle {
  background-color: #000 !important;
}
.HighContrast .slider-track-high {
  background-color: #000;
}
.HighContrast .webgis-search-combo {
  background: url("images/icons_high_contrast.png") no-repeat 0px 0px;
}
.HighContrast .webgis-search-combo-clear:before {
  color: #FF0;
  background-color: #000;
}
.HighContrast .webgis-search-header-font input {
  color: #FF0;
  background-color: #000 !important;
  border-color: #FF0 !important;
}
.HighContrast .slider-selection {
  background-image: linear-gradient(to bottom, #333 0, #333 100%);
}
.HighContrast .more_info_button:hover {
  background-color: #DCDCDC;
}
.HighContrast .more_info_button.active {
  background-image: url(images/icon-control-high-contrast.png);
  background-color: #000;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .HighContrast .more_info_button.active {
    background-image: url(images/icon-controlx2-high-contrast.png);
  }
}
.HighContrast .map-composition-item .webgis-map-compositions-wrap.selected-composition-item {
  background-color: #FF0;
}
.HighContrast .main-content {
  background-color: #FF0 !important;
}
.HighContrast .share-map-wrapper button {
  color: #000;
  background-color: #FF0;
}
.HighContrast .share-map-wrapper button:hover {
  background-color: #DCDCDC;
}
.HighContrast .share-map-wrapper input {
  border-bottom: 1px solid #000;
}
.HighContrast .pane_title {
  background-color: #000;
  color: #FF0;
}
.HighContrast .layer-list {
  text-shadow: none !important;
}
.HighContrast .layer-list-item-name {
  color: #000 !important;
}
.HighContrast .floatingpanel-body {
  background-color: #FF0;
}
.HighContrast .floatingpanel {
  background-color: #FF0;
}
.HighContrast .floatingpanel ~ .panenavi .floatingpanelbutton-active,
.HighContrast .floatingpanel ~ .panenavi .active-button {
  background-color: #000;
  background-image: url(images/icon-control-high-contrast.png);
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .HighContrast .floatingpanel ~ .panenavi .floatingpanelbutton-active,
  .HighContrast .floatingpanel ~ .panenavi .active-button {
    background-image: url(images/icon-controlx2-high-contrast.png);
  }
}
.HighContrast .floatingpanel ~ .panenavi ul li a#legend-button.leg-loading {
  overflow: hidden;
  position: relative;
}
.HighContrast .floatingpanel ~ .panenavi ul li a#legend-button.leg-loading span {
  color: #000;
  position: static;
}
.HighContrast .floatingpanel ~ .panenavi ul li a#legend-button.leg-loading:before {
  content: "";
  width: 36px;
  height: 36px;
  transform: translatex(-100%);
  display: block;
  position: absolute;
  background-color: #000;
}
.HighContrast .floatingpanel ~ .panenavi ul li a#legend-button.leg-loading.leg-loading:before {
  animation: legend-animation 1s linear infinite;
}
.HighContrast .ixi a {
  background: url(images/right-back-high-contrast.png) no-repeat left top;
}
.HighContrast .webgis-Plus {
  background-image: url(images/expand_icon_down_high_contrast.png);
}
.HighContrast .webgis-Minus {
  background-image: url(images/expand_icon_up_high_contrast.png);
}
.HighContrast .legend-item-group-title {
  color: #000;
}
.HighContrast .webgis-Eye,
.HighContrast .webgis-Eye_Blocked {
  background-color: #000;
}
.HighContrast .legend-item-group-pictogram {
  background-image: url(images/down_iconx2_high_contrast.png) !important;
}
.HighContrast .layer-list-item-info {
  color: #000;
  border-top: none !important;
}
.HighContrast .webgis-search-advanced-window div {
  background-color: #FF0 !important;
}
.HighContrast .webgis-search-advanced-window .x-form-item-label-left {
  color: #000;
}
.HighContrast window .content {
  box-shadow: none !important;
}
.HighContrast #map-compositions-window-body .map-compositions-list .map-composition-item {
  border: 1px solid #000;
}
.HighContrast #map-compositions-window-body .map-compositions-list .map-composition-item .webgis-map-compositions-wrap .webgis-map-composition-label {
  background-color: #FF0;
  color: #000;
}
.HighContrast #map-compositions-window-body .map-compositions-list .map-composition-item .webgis-map-compositions-wrap.selected-composition-item .webgis-map-composition-label {
  background-color: #000;
  color: #FF0;
}
.HighContrast .google-street-view-button {
  background-color: #FF0;
}
.HighContrast .google-street-view-button:hover {
  background-color: #DCDCDC;
}
.HighContrast .google-street-view-button.active {
  background-color: #FFF;
}
.HighContrast .google-street-view-button.inactive.window-active {
  background-color: #000;
  background-image: url(images/street-view/pegman_high_contrast.png);
}
.HighContrast .google-street-view-button.disabled {
  background-color: #BB0;
}
.HighContrast .base-map-selector .map-variant-list {
  background-color: #000;
}
.HighContrast .base-map-selector .map-variant-list li .map-variant-name {
  background-color: #000;
  color: #FF0;
}
.HighContrast .base-map-selector.expanded .map-variant-list {
  background-color: #000;
}
.HighContrast .base-map-selector.expanded .map-variant-list li {
  box-shadow: 0 0 0 1px #BB0;
}
.HighContrast .base-map-selector.expanded .map-variant-list li.selected {
  box-shadow: 0 0 0 2px #FF0;
}
.HighContrast .base-map-selector.expanded .map-variant-list li.selected .map-variant-name {
  background-color: #FF0;
  color: #000;
}
.HighContrast .features-panel-empty-view {
  background-color: #000 !important;
  color: #FF0 !important;
}
.HighContrast .leaflet-popup.webgis-feature-info-popup .leaflet-popup-content-wrapper {
  background-color: #000 !important;
  box-shadow: none !important;
}
.HighContrast .leaflet-popup.webgis-feature-info-popup .leaflet-popup-tip {
  background-color: #000 !important;
  box-shadow: none !important;
}
.HighContrast .locate-me-button {
  background-color: #FF0;
}
.HighContrast .locate-me-button:hover {
  background-color: #DCDCDC;
}
.HighContrast .locate-me-button.active {
  background-color: #FFF;
}
.HighContrast .locate-me-button.disabled {
  background-color: #C2C0C0;
}
.HighContrast .humane.flatty.humane-flatty-info {
  background-color: #000;
  color: #FF0;
}
.HighContrast .feature-info-details-panel {
  background-color: #FF0;
}
.HighContrast .feature-info-list-panel {
  background-color: #FF0;
}
.HighContrast .featureInfoModal ::-webkit-scrollbar-track {
  background-color: #BB0;
}
.HighContrast .featureInfoModal ::-webkit-scrollbar-thumb {
  background-color: #000;
}
.HighContrast .featureInfoModal .feature-info-list-panel .feature-info-list .feature-list-element {
  background-color: #FF0;
  color: #000;
  text-decoration: underline;
}
.HighContrast .featureInfoModal .feature-info-list-panel .feature-info-list .feature-list-element:hover {
  background-color: #DCDCDC;
}
.HighContrast .featureInfoModal .feature-info-list-panel .feature-info-list .feature-list-element.selected {
  background-color: #000;
  color: #FF0;
  text-decoration: none;
}
.HighContrast .featureInfoModal .feature-info-details-panel-heading {
  background-color: #000;
}
.HighContrast .featureInfoModal .feature-info-details-panel-heading .editable-attributes-list-item-name-heading {
  color: #FF0;
}
.HighContrast .featureInfoModal .feature-info-details-panel .feature-info-slider {
  border-color: #FF0;
}
.HighContrast .featureInfoModal .feature-info-details-panel .editable-attributes-list-item-row {
  border-color: #000;
}
.HighContrast .feature-info-modal.content {
  box-shadow: none;
}
.HighContrast .feature-info-source-name {
  background-color: #FF0;
  color: #000;
}
.HighContrast .layers-list > .panel.layer-list-item {
  background-color: #FFF !important;
}
.HighContrast .layers-list > .panel.layer-list-item .layer-list-item-group .panel.layer-list-item {
  background-color: #FF0 !important;
}
.HighContrast .layers-list > .panel.layer-list-item.not-visible {
  background-color: #a6a6a6 !important;
}
.HighContrast #legendModal .panel-group .panel-group {
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.HighContrast #legendModal .layer-list-item-content .panel {
  border-top: 1px solid #000;
}
.HighContrast #legendModal .legend-panel-empty {
  background-color: #FF0;
}
.HighContrast #legendModal .legend-panel-empty .alert-warning {
  color: #000;
}
.HighContrast #customization-tools-handle {
  background-color: #FF0;
  color: #000;
}
.HighContrast #legend-icon[src*="defaultHoverPictogram.svg"] {
  padding: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/defaultHoverPictogramHighContrast.svg);
}
.HighContrast #legend-icon[src*="pinnedHoverPictogram.svg"] {
  padding: 12px;
  background-image: url(images/pinnedHoverPictogramHighContrast.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  background-repeat: no-repeat;
}
.HighContrast #legend-icon[src*="bingLayerPictogram.svg"] {
  padding: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/bingLayerPictogramHighContrast.svg);
}
.HighContrast #legend-icon[src*="googleMapsLayerPictogram.svg"] {
  padding: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/googleMapsLayerPictogramHighContrast.svg);
}
.HighContrast #legend-icon[src*="osmLayerPictogram.svg"] {
  padding: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/osmLayerPictogramHighContrast.svg);
}
.HighContrast #legend-icon[src*="wmsLayerPictogram.svg"] {
  padding: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/wmsLayerPictogramHighContrast.svg);
}
.HighContrast #legend-icon[src*="defaultPictogram.svg"] {
  padding: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/defaultPictogramHighContrast.svg);
}
.HighContrast #legend-icon[src*="hereLayerPictogram.svg"] {
  padding: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/hereLayerPictogramHighContrast.svg);
}
.HighContrast #legend-icon[src*="vectorPictogram.svg"] {
  padding: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/vectorPictogramHighContrast.svg);
}
.HighContrast #legend-icon[src*="wmpsLayerPictogram.svg"] {
  padding: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/wmpsLayerPictogramHighContrast.svg);
}
.HighContrast #legend-icon[src*="wmtsLayerPictogram.svg"] {
  padding: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/wmtsLayerPictogramHighContrast.svg);
}
.HighContrast [id*=legend-item-legend-window-].layer-hidden .window-title, .HighContrast [id*=legend-item-legend-window-].layer-hidden .window-exit {
  color: #000 !important;
}
.HighContrast .mdc-switch--checked .mdc-switch__thumb {
  background-color: #000 !important;
  border-color: #000 !important;
}
.HighContrast .mdc-switch--checked .mdc-switch__track {
  background-color: #000 !important;
  border-color: #000 !important;
}
.HighContrast [class*=webgis-search-result-marker-tooltip-],
.HighContrast [class*=webgis-search-item-icon-] {
  background-color: #FF0;
  color: #000;
}
.HighContrast .leaflet-popup-close-button {
  color: #000 !important;
}
.HighContrast .webgis-search-results-panel .x-boundlist-item {
  background-color: #FF0;
}
.HighContrast .webgis-search-results-panel .x-boundlist-list-ct {
  background-color: #FF0;
}
.HighContrast .webgis-search-results-panel .x-boundlist-list-ct .webgis-search-no-matching-item-found {
  color: #000;
}
.HighContrast .webgis-search-match, .HighContrast .webgis-search-item-title,
.HighContrast .webgis-search-item-description {
  color: #000;
}
.HighContrast .leaflet-popup-content-wrapper, .HighContrast .leaflet-popup-tip {
  background-color: #FF0;
}
.HighContrast .webgis-search-results-panel .search-result-item:hover {
  background-color: #DCDCDC;
}
.HighContrast .webgis-search-results-panel .search-result-item:hover [class*=webgis-search-result-marker-tooltip-],
.HighContrast .webgis-search-results-panel .search-result-item:hover [class*=webgis-search-item-icon-] {
  background-color: #DCDCDC;
}
.HighContrast .lighting-control-panel .slider-handle::before, .HighContrast .transparency-control-panel .slider-handle::before {
  filter: drop-shadow(1px 1px 0 #000) drop-shadow(-1px -1px 0 #000);
  background-color: none !important;
}
.HighContrast .lighting-control-panel .checkbox, .HighContrast .lighting-control-panel label, .HighContrast .lighting-control-panel .form-control.timezone-selector, .HighContrast .transparency-control-panel .checkbox, .HighContrast .transparency-control-panel label, .HighContrast .transparency-control-panel .form-control.timezone-selector {
  color: #000;
}
.HighContrast .lighting-control-panel .form-control.timezone-selector, .HighContrast .transparency-control-panel .form-control.timezone-selector {
  border-color: #000;
}
.HighContrast .lighting-control-panel .checkbox input[type=checkbox], .HighContrast .transparency-control-panel .checkbox input[type=checkbox] {
  accent-color: #000;
}
.HighContrast #mmap-control-panel-body-button.active a {
  background-color: #000;
  background-image: url(images/icon-control-high-contrast.png);
}
.HighContrast .webgis-search-result-marker-tooltip-item-more-info {
  color: #000 !important;
  text-decoration: underline;
}
.text-scale-bigger .location-indicator-visible-label, .text-scale-bigger .scale-visible-label, .text-scale-bigger .map-compositions-info-visible-label {
  font-size: 18px;
}
.text-scale-bigger .pane_title {
  font-size: 19px;
}
.text-scale-bigger #base-map-and-map-info .map-compositions-info-text-coords > div {
  width: auto;
}
.text-scale-bigger .map-compositions-window-container #map-compositions-window-body .map-compositions-list .map-composition-item .webgis-map-compositions-wrap .webgis-map-composition-label {
  font-size: 0.7em;
}
.text-scale-bigger #versioninfo {
  font-size: 9pt;
}
.text-scale-bigger #licencenotice, .text-scale-bigger #configurationerror {
  font-size: 9pt;
}
.text-scale-bigger #copyrightnotice {
  font-size: 6.75pt;
}
.text-scale-bigger #attributions {
  font-size: 14px;
}
.text-scale-bigger .webgis-search-header-font input {
  font-size: 19px;
}
.text-scale-bigger .webgis-search-no-matching-item-found {
  font-size: 15px;
}
.text-scale-bigger .webgis-search-item .webgis-search-item-title {
  font-size: 18px;
}
.text-scale-bigger .webgis-search-item .webgis-search-item-description {
  font-size: 15px;
}
.text-scale-bigger .webgis-search-advanced-window .x-form-item-label-left {
  font-size: 16px;
}
.text-scale-bigger .webgis-search-advanced-window table td.x-form-item-body label {
  font-size: 19px;
}
.text-scale-bigger .webgis-search-result-marker-tooltip-item-type,
.text-scale-bigger .webgis-search-result-moreinfo-item-coordinates,
.text-scale-bigger .webgis-search-result-marker-tooltip-item-more-info {
  font-size: 15px;
}
.text-scale-bigger .webgis-search-result-marker-tooltip-item-description {
  font-size: 19px;
  word-break: break-all;
}
.text-scale-bigger .leaflet-tooltip {
  font-size: 15px;
}
.text-scale-bigger .featureInfoModal .feature-info-details-panel {
  font-size: 15px;
}
.text-scale-bigger .lighting-control-panel .checkbox, .text-scale-bigger .lighting-control-panel label, .text-scale-bigger .lighting-control-panel .form-control.timezone-selector, .text-scale-bigger .transparency-control-panel .checkbox, .text-scale-bigger .transparency-control-panel label, .text-scale-bigger .transparency-control-panel .form-control.timezone-selector {
  font-size: 15px;
}
.text-scale-biggest .location-indicator-visible-label, .text-scale-biggest .scale-visible-label, .text-scale-biggest .map-compositions-info-visible-label {
  font-size: 21px;
}
.text-scale-biggest .pane_title {
  font-size: 22px;
}
.text-scale-biggest #base-map-and-map-info .map-compositions-info-text-coords > div {
  width: unset;
}
.text-scale-biggest .map-compositions-window-container #map-compositions-window-body .map-compositions-list .map-composition-item .webgis-map-compositions-wrap .webgis-map-composition-label {
  font-size: 0.8em;
}
.text-scale-biggest #versioninfo {
  font-size: 10pt;
}
.text-scale-biggest #licencenotice, .text-scale-biggest #configurationerror {
  font-size: 10pt;
}
.text-scale-biggest #copyrightnotice {
  font-size: 7.5pt;
}
.text-scale-biggest #attributions {
  font-size: 16px;
}
.text-scale-biggest .webgis-search-header-font input {
  font-size: 22px;
}
.text-scale-biggest .webgis-search-no-matching-item-found {
  font-size: 18px;
}
.text-scale-biggest .webgis-search-item .webgis-search-item-title {
  font-size: 21px;
}
.text-scale-biggest .webgis-search-item .webgis-search-item-description {
  font-size: 18px;
}
.text-scale-biggest .webgis-search-advanced-window .x-form-item-label-left {
  font-size: 19px;
}
.text-scale-biggest .webgis-search-advanced-window table td.x-form-item-body label {
  font-size: 19px;
}
.text-scale-biggest .webgis-search-result-marker-tooltip-item-type,
.text-scale-biggest .webgis-search-result-moreinfo-item-coordinates,
.text-scale-biggest .webgis-search-result-marker-tooltip-item-more-info {
  font-size: 18px;
}
.text-scale-biggest .webgis-search-result-marker-tooltip-item-description {
  font-size: 22px;
  word-break: break-all;
}
.text-scale-biggest .leaflet-tooltip {
  font-size: 18px;
}
.text-scale-biggest .featureInfoModal .feature-info-details-panel {
  font-size: 18px;
}
.text-scale-biggest .lighting-control-panel .checkbox, .text-scale-biggest .lighting-control-panel label, .text-scale-biggest .lighting-control-panel .form-control.timezone-selector, .text-scale-biggest .transparency-control-panel .checkbox, .text-scale-biggest .transparency-control-panel label, .text-scale-biggest .transparency-control-panel .form-control.timezone-selector {
  font-size: 18px;
}
/*# sourceMappingURL=style.css.map */