1/*
2This file is part of Ext JS 4.1
3
4Copyright (c) 2011-2012 Sencha Inc
5
6Contact:  http://www.sencha.com/contact
7
8GNU General Public License Usage
9This file may be used under the terms of the GNU General Public License version 3.0 as
10published by the Free Software Foundation and appearing in the file LICENSE included in the
11packaging of this file.
12
13Please review the following information to ensure the GNU General Public License version 3.0
14requirements will be met: http://www.gnu.org/copyleft/gpl.html.
15
16If you are unsure which license is appropriate for your use, please contact the sales department
17at http://www.sencha.com/contact.
18
19Build date: 2012-07-04 21:11:01 (65ff594cd80b9bad45df640c22cc0adb52c95a7b)
20*/
21/**
22 * @class Global_CSS
23 *
24 * Global CSS variables and mixins of Sencha Touch.
25 */
26/**
27 * @var {string} $prefix
28 * The prefix to be applied to all CSS selectors. If this is changed, it must also be changed in your
29 * JavaScript application.
30 */
31/**
32 * @var {string} $theme-name
33 * The name of the theme. This must match the the output directory of the images.
34 * (defaults to 'default')
35 */
36/**
37 * @var {boolean/string} $relative-image-path-for-uis
38 * True to use a relative image path for all new UIs. If true, the path will be "../images/".
39 * It can also be a string of the path value.
40 * It defaults to false, which means it will look for the images in the ExtJS SDK folder.
41 */
42/**
43 * @var {string} $font-family
44 * The default font-family to be used throughout the theme.
45 */
46/**
47 * @var {string} $base-gradient
48 * The base gradient to be used throughout the theme.
49 */
50/**
51 * @var {color} $base-color
52 * The base color to be used throughout the theme.
53 */
54/**
55 * @var {boolean} $include-not-found-images
56 * True to include files which are not found when compiling your SASS
57 */
58/**
59 * @var {boolean} $include-ie
60 * True to include Internet Explorer specific rules
61 */
62/**
63 * @var {boolean} $include-ff
64 * True to include Firefox specific rules
65 */
66/**
67 * @var {boolean} $include-chrome
68 * True to include Chrome specific rules
69 */
70/**
71 * @var {boolean} $include-safari
72 * True to include Safari specific rules
73 */
74/**
75 * @var {boolean} $include-opera
76 * True to include Opera specific rules
77 */
78/**
79 * @var {boolean} $include-webkit
80 * True to include Webkit specific rules
81 */
82/**
83 * @var {boolean} $compile-all
84 * True to copile all CSS, even if above include rules are false
85 */
86/**
87 * @var {boolean} $scope-reset-css
88 * True to scope the reset CSS within the $prefix variable.
89 */
90/**
91 * @var {color} $css-shadow-background-color
92 * The base color for CSS shadows
93 */
94/**
95 * @var {color} $include-shadow-images
96 * True to include all shadow images.
97 */
98/**
99 * @class Ext.form.field.Base
100 */
101/**
102 * @var {measurement} $form-field-height
103 * Height for form fields.
104 */
105/**
106 * @var {measurement} $form-toolbar-field-height
107 * Height for form fields in toolbar.
108 */
109/**
110 * @var {measurement} $form-error-icon-width
111 * Width for form error icons.
112 */
113/**
114 * @var {measurement} $form-field-padding
115 * Padding around form fields.
116 */
117/**
118 * @var {measurement} $form-field-font-size
119 * Font size for form fields.
120 */
121/**
122 * @var {font-family} $form-field-font-family
123 * Font family for form fields.
124 */
125/**
126 * @var {font-weight} $form-field-font-weight
127 * Font weight for form fields.
128 */
129/**
130 * @var {font} $form-field-font
131 * Font for form fields.
132 */
133/**
134 * @var {color} $form-field-color
135 * Text color for form fields.
136 */
137/**
138 * @var {color} $form-field-empty-color
139 * Text color for empty form fields.
140 */
141/**
142 * @var {color} $form-field-border-color
143 * Border color for form fields.
144 */
145/**
146 * @var {measurement} $form-field-border-width
147 * Border width for form fields.
148 */
149/**
150 * @var {color} $form-field-focus-border-color
151 * Border color for focused form fields.
152 */
153/**
154 * @var {color} $form-field-invalid-border-color
155 * Border color for invalid form fields.
156 */
157/**
158 * @var {color} $form-field-background-color
159 * Background color for form fields.
160 */
161/**
162 * @var {string} $form-field-background-image
163 * Background image for form fields.
164 */
165/**
166 * @var {color} $form-field-invalid-background-color
167 * Background color for invalid form fields.
168 */
169/**
170 * @var {string} $form-field-invalid-background-image
171 * Background image for invalid form fields.
172 */
173/**
174 * @var {background-repeat} $form-field-invalid-background-repeat
175 * Background repeat for invalid form fields.
176 */
177/**
178 * @var {background-position} $form-field-invalid-background-position
179 * Background position for invalid form fields.
180 */
181/**
182 * @class Ext.form.field.TextArea
183 */
184/**
185 * @class Ext.form.Label
186 */
187/**
188 * @class Ext.form.field.Checkbox
189 */
190/**
191 * @class Ext.form.field.Radio
192 */
193/* Error messages */
194/**
195 * @class Ext.form.field.Trigger
196 */
197/**
198 * @class Ext.form.FieldSet
199 */
200/**
201 * @class Ext.slider.Multi
202 */
203/**
204 * Creates a background gradient.
205 *
206 * @param {Color} $bg-color The background color of the gradient
207 * @param {String/List} [$type] The type of gradient to be used. Can either
208 * be a String which is a predefined gradient, or it can can be a list of
209 * color_stops. If none is set, it will still set the `background-color`
210 * to the $background-color.
211 * @param {String} [$direction=top] The direction of the gradient. Can either be
212 * `top` or `left`.
213 * @member Global_CSS
214 */
215/*
216 * Method which inserts a full background-image property for a theme image.
217 * It checks if the file exists and if it doesn't, it'll throw an error.
218 * By default it will not include the background-image property if it is not found,
219 * but this can be changed by changing the default value of $include-missing-images to
220 * be true.
221 */
222/* line 3, ../themes/stylesheets/ext4/default/core/_reset.scss */
223.x-border-box .x-reset,
224.x-border-box .x-reset * {
225  box-sizing: border-box;
226  -moz-box-sizing: border-box;
227  -ms-box-sizing: border-box;
228  -webkit-box-sizing: border-box; }
229
230/* line 13, ../themes/stylesheets/ext4/default/core/_reset.scss */
231.x-reset html, .x-reset body, .x-reset div, .x-reset dl, .x-reset dt, .x-reset dd, .x-reset ul, .x-reset ol, .x-reset li, .x-reset h1, .x-reset h2, .x-reset h3, .x-reset h4, .x-reset h5, .x-reset h6, .x-reset pre, .x-reset code, .x-reset form, .x-reset fieldset, .x-reset legend, .x-reset input, .x-reset textarea, .x-reset p, .x-reset blockquote, .x-reset th, .x-reset td {
232  margin: 0;
233  padding: 0; }
234/* line 18, ../themes/stylesheets/ext4/default/core/_reset.scss */
235.x-reset table {
236  border-collapse: collapse;
237  border-spacing: 0; }
238/* line 23, ../themes/stylesheets/ext4/default/core/_reset.scss */
239.x-reset fieldset, .x-reset img {
240  border: 0; }
241/* line 28, ../themes/stylesheets/ext4/default/core/_reset.scss */
242.x-reset address, .x-reset caption, .x-reset cite, .x-reset code, .x-reset dfn, .x-reset em, .x-reset strong, .x-reset th, .x-reset var {
243  font-style: normal;
244  font-weight: normal; }
245/* line 33, ../themes/stylesheets/ext4/default/core/_reset.scss */
246.x-reset li {
247  list-style: none; }
248/* line 37, ../themes/stylesheets/ext4/default/core/_reset.scss */
249.x-reset caption, .x-reset th {
250  text-align: left; }
251/* line 41, ../themes/stylesheets/ext4/default/core/_reset.scss */
252.x-reset h1, .x-reset h2, .x-reset h3, .x-reset h4, .x-reset h5, .x-reset h6 {
253  font-size: 100%; }
254/* line 46, ../themes/stylesheets/ext4/default/core/_reset.scss */
255.x-reset q:before, .x-reset q:after {
256  content: ""; }
257/* line 50, ../themes/stylesheets/ext4/default/core/_reset.scss */
258.x-reset abbr, .x-reset acronym {
259  border: 0;
260  font-variant: normal; }
261/* line 55, ../themes/stylesheets/ext4/default/core/_reset.scss */
262.x-reset sup {
263  vertical-align: text-top; }
264/* line 59, ../themes/stylesheets/ext4/default/core/_reset.scss */
265.x-reset sub {
266  vertical-align: text-bottom; }
267/* line 63, ../themes/stylesheets/ext4/default/core/_reset.scss */
268.x-reset input, .x-reset textarea, .x-reset select {
269  font-family: inherit;
270  font-size: inherit;
271  font-weight: inherit; }
272/* line 69, ../themes/stylesheets/ext4/default/core/_reset.scss */
273.x-reset *:focus {
274  outline: none; }
275
276/* line 1, ../themes/stylesheets/ext4/default/core/_core.scss */
277.x-body {
278  color: black;
279  font-size: 12px;
280  font-family: tahoma, arial, verdana, sans-serif; }
281
282/* line 7, ../themes/stylesheets/ext4/default/core/_core.scss */
283.x-rtl {
284  direction: rtl; }
285
286/* line 11, ../themes/stylesheets/ext4/default/core/_core.scss */
287.x-ltr {
288  direction: ltr; }
289
290/* line 15, ../themes/stylesheets/ext4/default/core/_core.scss */
291.x-clear {
292  overflow: hidden;
293  clear: both;
294  font-size: 0;
295  line-height: 0;
296  display: table; }
297
298/* line 23, ../themes/stylesheets/ext4/default/core/_core.scss */
299.x-strict .x-ie7 .x-clear {
300  height: 0;
301  width: 0; }
302
303/* line 31, ../themes/stylesheets/ext4/default/core/_core.scss */
304.x-layer {
305  position: absolute !important;
306  overflow: hidden;
307  zoom: 1; }
308
309/* line 37, ../themes/stylesheets/ext4/default/core/_core.scss */
310.x-shim {
311  position: absolute;
312  left: 0;
313  top: 0;
314  overflow: hidden;
315  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
316  opacity: 0; }
317
318/* line 45, ../themes/stylesheets/ext4/default/core/_core.scss */
319.x-hide-display {
320  display: none !important; }
321
322/* line 49, ../themes/stylesheets/ext4/default/core/_core.scss */
323.x-hide-visibility {
324  visibility: hidden !important; }
325
326/* line 56, ../themes/stylesheets/ext4/default/core/_core.scss */
327.x-item-disabled .x-form-item-label,
328.x-item-disabled .x-form-field,
329.x-item-disabled .x-form-cb-label,
330.x-item-disabled .x-form-trigger {
331  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
332  opacity: 0.3; }
333
334/* line 60, ../themes/stylesheets/ext4/default/core/_core.scss */
335.x-ie6 .x-item-disabled {
336  filter: none; }
337
338/* line 65, ../themes/stylesheets/ext4/default/core/_core.scss */
339.x-hidden,
340.x-hide-offsets {
341  display: block !important;
342  visibility: hidden !important;
343  position: absolute!important;
344  left: -10000px !important;
345  top: -10000px !important; }
346
347/* line 75, ../themes/stylesheets/ext4/default/core/_core.scss */
348.x-hide-nosize {
349  height: 0!important;
350  width: 0!important; }
351
352/* line 80, ../themes/stylesheets/ext4/default/core/_core.scss */
353.x-masked-relative {
354  position: relative; }
355
356/* line 86, ../themes/stylesheets/ext4/default/core/_core.scss */
357.x-ie6 .x-masked select,
358.x-ie6.x-body-masked select {
359  visibility: hidden !important; }
360
361/* line 92, ../themes/stylesheets/ext4/default/core/_core.scss */
362.x-css-shadow {
363  position: absolute;
364  -moz-border-radius: 5px 5px;
365  -webkit-border-radius: 5px 5px;
366  -o-border-radius: 5px 5px;
367  -ms-border-radius: 5px 5px;
368  -khtml-border-radius: 5px 5px;
369  border-radius: 5px 5px; }
370
371/* line 98, ../themes/stylesheets/ext4/default/core/_core.scss */
372.x-ie-shadow {
373  background-color: #777;
374  display: none;
375  position: absolute;
376  overflow: hidden;
377  zoom: 1; }
378
379/* line 107, ../themes/stylesheets/ext4/default/core/_core.scss */
380.x-box-tl {
381  background: transparent no-repeat 0 0;
382  zoom: 1; }
383
384/* line 112, ../themes/stylesheets/ext4/default/core/_core.scss */
385.x-box-tc {
386  height: 8px;
387  background: transparent repeat-x 0 0;
388  overflow: hidden; }
389
390/* line 118, ../themes/stylesheets/ext4/default/core/_core.scss */
391.x-box-tr {
392  background: transparent no-repeat right -8px; }
393
394/* line 122, ../themes/stylesheets/ext4/default/core/_core.scss */
395.x-box-ml {
396  background: transparent repeat-y 0;
397  padding-left: 4px;
398  overflow: hidden;
399  zoom: 1; }
400
401/* line 129, ../themes/stylesheets/ext4/default/core/_core.scss */
402.x-box-mc {
403  background: repeat-x 0 -16px;
404  padding: 4px 10px; }
405
406/* line 134, ../themes/stylesheets/ext4/default/core/_core.scss */
407.x-box-mc h3 {
408  margin: 0 0 4px 0;
409  zoom: 1; }
410
411/* line 139, ../themes/stylesheets/ext4/default/core/_core.scss */
412.x-box-mr {
413  background: transparent repeat-y right;
414  padding-right: 4px;
415  overflow: hidden; }
416
417/* line 145, ../themes/stylesheets/ext4/default/core/_core.scss */
418.x-box-bl {
419  background: transparent no-repeat 0 -16px;
420  zoom: 1; }
421
422/* line 150, ../themes/stylesheets/ext4/default/core/_core.scss */
423.x-box-bc {
424  background: transparent repeat-x 0 -8px;
425  height: 8px;
426  overflow: hidden; }
427
428/* line 156, ../themes/stylesheets/ext4/default/core/_core.scss */
429.x-box-br {
430  background: transparent no-repeat right -24px; }
431
432/* line 160, ../themes/stylesheets/ext4/default/core/_core.scss */
433.x-box-tl, .x-box-bl {
434  padding-left: 8px;
435  overflow: hidden; }
436
437/* line 165, ../themes/stylesheets/ext4/default/core/_core.scss */
438.x-box-tr, .x-box-br {
439  padding-right: 8px;
440  overflow: hidden; }
441
442/* line 170, ../themes/stylesheets/ext4/default/core/_core.scss */
443.x-box-tl {
444  background-image: url('../../resources/themes/images/default/box/corners.gif'); }
445
446/* line 174, ../themes/stylesheets/ext4/default/core/_core.scss */
447.x-box-tc {
448  background-image: url('../../resources/themes/images/default/box/tb.gif'); }
449
450/* line 178, ../themes/stylesheets/ext4/default/core/_core.scss */
451.x-box-tr {
452  background-image: url('../../resources/themes/images/default/box/corners.gif'); }
453
454/* line 182, ../themes/stylesheets/ext4/default/core/_core.scss */
455.x-box-ml {
456  background-image: url('../../resources/themes/images/default/box/l.gif'); }
457
458/* line 186, ../themes/stylesheets/ext4/default/core/_core.scss */
459.x-box-mc {
460  background-color: #eee;
461  background-image: url('../../resources/themes/images/default/box/tb.gif');
462  font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
463  color: #393939;
464  font-size: 15px; }
465
466/* line 194, ../themes/stylesheets/ext4/default/core/_core.scss */
467.x-box-mc h3 {
468  font-size: 18px;
469  font-weight: bold; }
470
471/* line 199, ../themes/stylesheets/ext4/default/core/_core.scss */
472.x-box-mr {
473  background-image: url('../../resources/themes/images/default/box/r.gif'); }
474
475/* line 203, ../themes/stylesheets/ext4/default/core/_core.scss */
476.x-box-bl {
477  background-image: url('../../resources/themes/images/default/box/corners.gif'); }
478
479/* line 207, ../themes/stylesheets/ext4/default/core/_core.scss */
480.x-box-bc {
481  background-image: url('../../resources/themes/images/default/box/tb.gif'); }
482
483/* line 211, ../themes/stylesheets/ext4/default/core/_core.scss */
484.x-box-br {
485  background-image: url('../../resources/themes/images/default/box/corners.gif'); }
486
487/* line 215, ../themes/stylesheets/ext4/default/core/_core.scss */
488.x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr {
489  background-image: url('../../resources/themes/images/default/box/corners-blue.gif'); }
490
491/* line 219, ../themes/stylesheets/ext4/default/core/_core.scss */
492.x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc {
493  background-image: url('../../resources/themes/images/default/box/tb-blue.gif'); }
494
495/* line 223, ../themes/stylesheets/ext4/default/core/_core.scss */
496.x-box-blue .x-box-mc {
497  background-color: #c3daf9; }
498
499/* line 227, ../themes/stylesheets/ext4/default/core/_core.scss */
500.x-box-blue .x-box-mc h3 {
501  color: #17385b; }
502
503/* line 231, ../themes/stylesheets/ext4/default/core/_core.scss */
504.x-box-blue .x-box-ml {
505  background-image: url('../../resources/themes/images/default/box/l-blue.gif'); }
506
507/* line 235, ../themes/stylesheets/ext4/default/core/_core.scss */
508.x-box-blue .x-box-mr {
509  background-image: url('../../resources/themes/images/default/box/r-blue.gif'); }
510
511/* line 239, ../themes/stylesheets/ext4/default/core/_core.scss */
512.x-container {
513  zoom: 1; }
514  /* line 244, ../themes/stylesheets/ext4/default/core/_core.scss */
515  .x-container:before {
516    content: "";
517    clear: both;
518    display: table; }
519
520/* line 254, ../themes/stylesheets/ext4/default/core/_core.scss */
521table.x-container:before,
522tbody.x-container:before,
523tr.x-container:before {
524  display: none; }
525
526/* line 1, ../themes/stylesheets/ext4/default/util/_focus.scss */
527.x-focus-element {
528  position: absolute;
529  top: -10px;
530  left: -10px;
531  width: 0px;
532  height: 0px; }
533
534/* line 9, ../themes/stylesheets/ext4/default/util/_focus.scss */
535.x-focus-frame {
536  position: absolute;
537  left: 0px;
538  top: 0px;
539  z-index: 100000000;
540  width: 0px;
541  height: 0px; }
542
543/* line 21, ../themes/stylesheets/ext4/default/util/_focus.scss */
544.x-focus-frame-top,
545.x-focus-frame-bottom,
546.x-focus-frame-left,
547.x-focus-frame-right {
548  position: absolute;
549  top: 0px;
550  left: 0px; }
551
552/* line 28, ../themes/stylesheets/ext4/default/util/_focus.scss */
553.x-focus-frame-top,
554.x-focus-frame-bottom {
555  border-top: solid 2px #15428b;
556  height: 2px; }
557
558/* line 34, ../themes/stylesheets/ext4/default/util/_focus.scss */
559.x-focus-frame-left,
560.x-focus-frame-right {
561  border-left: solid 2px #15428b;
562  width: 2px; }
563
564/**
565 * Creates the base structure of a BoundList.
566 * @member Ext.view.BoundList
567 */
568/**
569 * Creates the base structure of an Ext.Button
570 * @member Ext.button.Button
571 */
572/**
573 * Creates a visual theme of an Ext.Button
574 * @member Ext.button.Button
575 */
576/**
577 * Creates the base structure of a button group.
578 * @member Ext.container.ButtonGroup
579 */
580/**
581 * Creates a visual theme of a button group.
582 * @member Ext.container.ButtonGroup
583 */
584/**
585 * Creates the base structure of a date picker.
586 * @member Ext.picker.Date
587 */
588/**
589 * Creates base structure for Ext.picker.Color
590 * @member Ext.picker.Color
591 */
592/**
593 * Creates the base structure of a Menu
594 * @member Ext.menu.Menu
595 */
596/**
597 * Create the base structure of an Ext.Panel
598 * @member Ext.panel.Panel
599 */
600/**
601 * Creates a visual theme for an Ext.Panel
602 * @member Ext.panel.Panel
603 */
604/**
605 * Creates base structure for Toolbar
606 * @member Ext.toolbar.Toolbar
607 */
608/**
609 * Creates a visual theme for an Toolbar.
610 * @param {String} $ui The name of the UI
611 * @param {Color} $background-color The background color of the toolbar (defaults to transparent)
612 * @param {Gradient/color-stops} $background-gradient The background gradient of the toolbar (defaults to null)
613 * @param {Color} $border-color The border color of the toolbar (defaults to null)
614 * @member Ext.toolbar.Toolbar
615 */
616/**
617 * Creates the base structure of Ext.form.Panel.
618 * @member Ext.form.Panel
619 */
620/**
621 * Creates the base structure of form field.
622 * @member Ext.form.field.Base
623 */
624/**
625 * Creates the base structure of FieldSet.
626 * @member Ext.form.FieldSet
627 */
628/**
629 * Creates the base structure of file field.
630 * @member Ext.form.field.File
631 */
632/**
633 * Creates the base structure of checkbox field.
634 * @member Ext.form.field.Checkbox
635 */
636/**
637 * Creates the base structure of CheckboxGroup.
638 * @member Ext.form.CheckboxGroup
639 */
640/**
641 * Creates the base structure of trigger field.
642 * @member Ext.form.field.Trigger
643 */
644/**
645 * Creates the base structure of HtmlEditor field.
646 * @member Ext.form.field.HtmlEditor
647 */
648/**
649 * Creates the base structure of QuickTip.
650 * @member Ext.tip.QuickTip
651 */
652/**
653 * Creates the base structure of an Ext.Window
654 * @member Ext.window.Window
655 */
656/**
657 * Creates a visual theme for an Ext.Panel
658 * @member Ext.window.Window
659 */
660/**
661 * Creates a visual theme for TabBar
662 * @member Ext.tab.Bar
663 */
664/**
665 * Creates the base structure of a Tab.
666 * @member Ext.tab.Tab
667 */
668/**
669 * Creates the base structure of slider.
670 * @member Ext.slider.Multi
671 */
672/**
673 * Creates base structure for a Grid.
674 * @member Ext.grid.Panel
675 */
676/**
677 * Creates the base structure of Tree.
678 * @member Ext.tree.Panel
679 */
680/* Styles for Ext.LoadMask */
681/* line 3, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
682.x-mask {
683  z-index: 100;
684  position: absolute;
685  top: 0;
686  left: 0;
687  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
688  opacity: 0.5;
689  width: 100%;
690  height: 100%;
691  zoom: 1;
692  background: #cccccc; }
693
694/* line 19, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
695.x-mask-msg {
696  z-index: 20001;
697  position: absolute;
698  top: 0;
699  left: 0;
700  padding: 2px;
701  border: 1px solid;
702  border-color: #99bce8; }
703  /* line 38, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
704  .x-mask-msg div {
705    padding: 5px 10px 5px 25px;
706    background-image: url('../../resources/themes/images/default/grid/loading.gif');
707    background-repeat: no-repeat;
708    background-position: 5px center;
709    cursor: wait;
710    border: 1px solid #a3bad9;
711    background-color: #eeeeee;
712    color: #222222;
713    font: normal 11px tahoma, arial, verdana, sans-serif; }
714
715/**
716 * Creates the base structure of an Ext.ProgressBar
717 * @member Ext.ProgressBar
718 */
719/**
720 * Creates a visual theme for an Ext.ProgressBar
721 * @member Ext.ProgressBar
722 */
723/**
724 * Creates base structure for a Draw Component.
725 * @member Ext.draw.Component
726 */
727/**
728 * Creates the base structure of Viewport.
729 * @member Ext.container.Viewport
730 */
731/**
732 * W3C suggested default style sheet for HTML 4:
733 * [http://www.w3.org/TR/CSS21/sample.html](http://www.w3.org/TR/CSS21/sample.html)
734 *
735 * @member Global_CSS
736 */
737/* line 30, ../themes/stylesheets/ext4/default/_all.scss */
738.x-reset {
739  /* IE9 shows scrollbars in a button unless this is set  */
740  /* Keep the selector simple ".x-btn .x-frame-mc" is enough to target the center frame of the button table */
741  /* Only center when all there is is text. Otherwise solo icons get centered. */
742  /*
743  IE6-8 have issues with shrinking the TR to 0px (even w/line-height=0), so we
744  use an IE-specific trick to make the row disappear. We cannot do this on any
745  other browser, because it is not a non-standard thing to do and those other
746  browsers will do whacky things with it.
747  */
748  /* IE6, IE7, and all IE Quirks mode need line-height to be the same as checkbox height or the header/row height will be too tall */
749  /*misc*/
750        /*
751        In oldIE, text inputs get a mysterious extra pixel of spacing above and below.
752        This is targeted at IE6-IE7 (all modes) and IE9+ Quirks mode.
753
754        IE8 quirks on Windows 7 requires this fix, but on
755        IE8 quirks on Windows XP, this is breaks the layout.
756        TODO: Check field input heights in IE8 quirks on Windows Vista.
757
758        Since we can't specifically target a specific version of Windows via CSS, we default to fixing it the XP way, for now.
759        */
760  /* IE legend positioning bug */
761  /* Hack for IE; causes alignment problem in IE9 standards mode so exclude that */
762  /* Focused */
763  /* Radios */
764  /* boxLabel */
765  /* Horizontal styles */
766  /* Vertical styles */
767  /* Top Tabs */
768  /* Bottom Tabs */
769  /* In IE a disabled icon needs to be hidden or the opacity effect covers some of the text */
770  /* Include the element name otherwise Internet Explorer 7 & 8 take a performance hit */
771  /* Include the element name to raise the specificity to equal the :hover */
772  /*IE rounding error*/
773  /*
774   * Dock Layouts
775   * @todo move this somewhere else?
776   */ }
777  /* line 6, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
778  .x-reset .x-boundlist {
779    border-width: 1px;
780    border-style: solid;
781    border-color: #98c0f4;
782    background: white; }
783    /* line 12, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
784    .x-reset .x-boundlist .x-toolbar {
785      border-width: 1px 0 0 0; }
786  /* line 22, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
787  .x-reset .x-strict .x-ie6 .x-boundlist-list-ct,
788  .x-reset .x-strict .x-ie7 .x-boundlist-list-ct {
789    position: relative; }
790  /* line 29, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
791  .x-reset .x-boundlist-item {
792    padding: 2px;
793    user-select: none;
794    -o-user-select: none;
795    -ms-user-select: none;
796    -moz-user-select: -moz-none;
797    -webkit-user-select: none;
798    cursor: default;
799    cursor: pointer;
800    cursor: hand;
801    position: relative;
802    /*allow hover in IE on empty items*/
803    border-width: 1px;
804    border-style: dotted;
805    border-color: white; }
806  /* line 43, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
807  .x-reset .x-boundlist-selected {
808    background: #cbdaf0;
809    border-color: #8eabe4; }
810  /* line 48, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
811  .x-reset .x-boundlist-item-over {
812    background: #dfe8f6;
813    border-color: #a3bae9; }
814  /* line 53, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
815  .x-reset .x-boundlist-floating {
816    border-top-width: 0; }
817  /* line 57, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
818  .x-reset .x-boundlist-above {
819    border-top-width: 1px;
820    border-bottom-width: 1px; }
821  /* line 6, ../themes/stylesheets/ext4/default/widgets/_button.scss */
822  .x-reset .x-btn {
823    display: inline-block;
824    zoom: 1;
825    *display: inline;
826    position: relative;
827    cursor: pointer;
828    cursor: hand;
829    white-space: nowrap;
830    vertical-align: middle;
831    background-repeat: no-repeat; }
832    /* line 19, ../themes/stylesheets/ext4/default/widgets/_button.scss */
833    .x-reset .x-btn * {
834      cursor: pointer;
835      cursor: hand; }
836    /* line 26, ../themes/stylesheets/ext4/default/widgets/_button.scss */
837    .x-reset .x-btn em {
838      background-repeat: no-repeat; }
839      /* line 30, ../themes/stylesheets/ext4/default/widgets/_button.scss */
840      .x-reset .x-btn em a {
841        text-decoration: none;
842        display: block;
843        color: inherit;
844        width: 100%;
845        zoom: 1; }
846    /* line 45, ../themes/stylesheets/ext4/default/widgets/_button.scss */
847    .x-reset .x-btn button {
848      width: 100%;
849      display: block;
850      margin: 0;
851      padding: 0;
852      border: 0;
853      background: none;
854      outline: 0 none;
855      overflow: hidden;
856      vertical-align: bottom;
857      -webkit-appearance: none; }
858      /* line 59, ../themes/stylesheets/ext4/default/widgets/_button.scss */
859      .x-reset .x-btn button::-moz-focus-inner {
860        border: 0;
861        padding: 0; }
862    /* line 65, ../themes/stylesheets/ext4/default/widgets/_button.scss */
863    .x-reset .x-btn .x-btn-inner {
864      display: block;
865      white-space: nowrap;
866      background-color: transparent;
867      background-repeat: no-repeat;
868      background-position: left center;
869      overflow: hidden; }
870    /* line 74, ../themes/stylesheets/ext4/default/widgets/_button.scss */
871    .x-reset .x-btn .x-btn-left .x-btn-inner {
872      text-align: left; }
873    /* line 78, ../themes/stylesheets/ext4/default/widgets/_button.scss */
874    .x-reset .x-btn .x-btn-center .x-btn-inner {
875      text-align: center; }
876    /* line 82, ../themes/stylesheets/ext4/default/widgets/_button.scss */
877    .x-reset .x-btn .x-btn-right .x-btn-inner {
878      text-align: right; }
879  /* line 87, ../themes/stylesheets/ext4/default/widgets/_button.scss */
880  .x-reset .x-btn-disabled span {
881    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
882    opacity: 0.5; }
883    /* line 91, ../themes/stylesheets/ext4/default/widgets/_button.scss */
884    .x-ie6 .x-reset .x-btn-disabled span, .x-ie7 .x-reset .x-btn-disabled span {
885      filter: none; }
886  /* line 98, ../themes/stylesheets/ext4/default/widgets/_button.scss */
887  .x-reset .x-ie7 .x-btn-disabled,
888  .x-reset .x-ie8 .x-btn-disabled {
889    filter: none; }
890  /* line 105, ../themes/stylesheets/ext4/default/widgets/_button.scss */
891  .x-reset .x-ie6 .x-btn-disabled .x-btn-icon,
892  .x-reset .x-ie7 .x-btn-disabled .x-btn-icon,
893  .x-reset .x-ie8 .x-btn-disabled .x-btn-icon {
894    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
895    opacity: 0.6; }
896  /* line 112, ../themes/stylesheets/ext4/default/widgets/_button.scss */
897  .x-reset .x-ie9 .x-btn button {
898    overflow: visible!important; }
899  /* line 117, ../themes/stylesheets/ext4/default/widgets/_button.scss */
900  .x-reset * html .x-ie .x-btn button {
901    width: 1px; }
902  /* line 122, ../themes/stylesheets/ext4/default/widgets/_button.scss */
903  .x-reset .x-ie .x-btn button {
904    overflow-x: visible;
905    /*prevents extra horiz space in IE*/
906    vertical-align: baseline;
907    /*IE doesn't like bottom*/ }
908  /* line 129, ../themes/stylesheets/ext4/default/widgets/_button.scss */
909  .x-reset .x-strict .x-ie6 .x-btn .x-frame-mc,
910  .x-reset .x-strict .x-ie7 .x-btn .x-frame-mc {
911    height: 100%; }
912  /* line 138, ../themes/stylesheets/ext4/default/widgets/_button.scss */
913  .x-reset .x-btn .x-frame-mc {
914    vertical-align: middle;
915    white-space: nowrap;
916    cursor: pointer; }
917  /* line 147, ../themes/stylesheets/ext4/default/widgets/_button.scss */
918  .x-reset .x-btn-noicon .x-frame-mc {
919    text-align: center; }
920  /* line 153, ../themes/stylesheets/ext4/default/widgets/_button.scss */
921  .x-reset .x-btn-icon-text-left .x-btn-icon {
922    background-position: left center; }
923  /* line 157, ../themes/stylesheets/ext4/default/widgets/_button.scss */
924  .x-reset .x-btn-icon-text-right .x-btn-icon {
925    background-position: right center; }
926  /* line 161, ../themes/stylesheets/ext4/default/widgets/_button.scss */
927  .x-reset .x-btn-icon-text-top .x-btn-icon {
928    background-position: center top; }
929  /* line 165, ../themes/stylesheets/ext4/default/widgets/_button.scss */
930  .x-reset .x-btn-icon-text-bottom .x-btn-icon {
931    background-position: center bottom; }
932  /* line 170, ../themes/stylesheets/ext4/default/widgets/_button.scss */
933  .x-reset .x-btn button, .x-reset .x-btn a {
934    position: relative; }
935    /* line 173, ../themes/stylesheets/ext4/default/widgets/_button.scss */
936    .x-reset .x-btn button .x-btn-icon, .x-reset .x-btn a .x-btn-icon {
937      position: absolute;
938      background-repeat: no-repeat; }
939  /* line 180, ../themes/stylesheets/ext4/default/widgets/_button.scss */
940  .x-reset .x-btn-arrow-right {
941    background: transparent no-repeat right center;
942    padding-right: 12px; }
943    /* line 184, ../themes/stylesheets/ext4/default/widgets/_button.scss */
944    .x-reset .x-btn-arrow-right .x-btn-inner {
945      padding-right: 0 !important; }
946  /* line 189, ../themes/stylesheets/ext4/default/widgets/_button.scss */
947  .x-reset .x-toolbar .x-btn-arrow-right {
948    padding-right: 12px; }
949  /* line 193, ../themes/stylesheets/ext4/default/widgets/_button.scss */
950  .x-reset .x-btn-arrow-bottom {
951    background: transparent no-repeat center bottom;
952    padding-bottom: 12px; }
953  /* line 198, ../themes/stylesheets/ext4/default/widgets/_button.scss */
954  .x-reset .x-btn-arrow {
955    background-image: url('../../resources/themes/images/default/button/arrow.gif');
956    display: block; }
957  /* line 206, ../themes/stylesheets/ext4/default/widgets/_button.scss */
958  .x-reset .x-btn-split-right,
959  .x-reset .x-btn-over .x-btn-split-right {
960    background: transparent no-repeat right center;
961    background-image: url('../../resources/themes/images/default/button/s-arrow.gif');
962    padding-right: 14px !important; }
963  /* line 213, ../themes/stylesheets/ext4/default/widgets/_button.scss */
964  .x-reset .x-btn-split-bottom,
965  .x-reset .x-btn-over .x-btn-split-bottom {
966    background: transparent no-repeat center bottom;
967    background-image: url('../../resources/themes/images/default/button/s-arrow-b.gif');
968    padding-bottom: 14px; }
969  /* line 219, ../themes/stylesheets/ext4/default/widgets/_button.scss */
970  .x-reset .x-toolbar .x-btn-split-right {
971    background-image: url('../../resources/themes/images/default/button/s-arrow-noline.gif');
972    padding-right: 12px !important; }
973  /* line 224, ../themes/stylesheets/ext4/default/widgets/_button.scss */
974  .x-reset .x-toolbar .x-btn-split-bottom {
975    background-image: url('../../resources/themes/images/default/button/s-arrow-b-noline.gif'); }
976  /* line 228, ../themes/stylesheets/ext4/default/widgets/_button.scss */
977  .x-reset .x-btn-split {
978    display: block; }
979  /* line 233, ../themes/stylesheets/ext4/default/widgets/_button.scss */
980  .x-reset .x-item-disabled,
981  .x-reset .x-item-disabled * {
982    cursor: default; }
983  /* line 237, ../themes/stylesheets/ext4/default/widgets/_button.scss */
984  .x-reset .x-cycle-fixed-width .x-btn-inner {
985    text-align: inherit; }
986  /* line 241, ../themes/stylesheets/ext4/default/widgets/_button.scss */
987  .x-reset .x-btn-over .x-btn-split-right {
988    background-image: url('../../resources/themes/images/default/button/s-arrow-o.gif'); }
989  /* line 242, ../themes/stylesheets/ext4/default/widgets/_button.scss */
990  .x-reset .x-btn-over .x-btn-split-bottom {
991    background-image: url('../../resources/themes/images/default/button/s-arrow-bo.gif'); }
992  /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
993  .x-reset .x-btn-default-small {
994    border-color: #d1d1d1; }
995  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
996  .x-reset .x-btn-default-small {
997    padding: 2px 2px 2px 2px;
998    border-width: 1px;
999    border-style: solid;
1000    background-color: white; }
1001  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1002  .x-reset .x-nlg .x-btn-default-small-mc {
1003    background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif');
1004    background-color: white; }
1005  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1006  .x-reset .x-nbr .x-btn-default-small {
1007    padding: 0 !important;
1008    border-width: 0 !important;
1009    -moz-border-radius: 0px;
1010    -webkit-border-radius: 0px;
1011    -o-border-radius: 0px;
1012    -ms-border-radius: 0px;
1013    -khtml-border-radius: 0px;
1014    border-radius: 0px;
1015    background-color: transparent;
1016    background-position: 1100303px 1000303px; }
1017  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1018  .x-reset .x-nbr .x-btn-default-small-tl,
1019  .x-reset .x-nbr .x-btn-default-small-bl,
1020  .x-reset .x-nbr .x-btn-default-small-tr,
1021  .x-reset .x-nbr .x-btn-default-small-br,
1022  .x-reset .x-nbr .x-btn-default-small-tc,
1023  .x-reset .x-nbr .x-btn-default-small-bc,
1024  .x-reset .x-nbr .x-btn-default-small-ml,
1025  .x-reset .x-nbr .x-btn-default-small-mr {
1026    zoom: 1;
1027    background-image: url('../../resources/themes/images/default/btn/btn-default-small-corners.gif'); }
1028  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1029  .x-reset .x-nbr .x-btn-default-small-ml,
1030  .x-reset .x-nbr .x-btn-default-small-mr {
1031    zoom: 1;
1032    background-image: url('../../resources/themes/images/default/btn/btn-default-small-sides.gif');
1033    background-position: 0 0; }
1034  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1035  .x-reset .x-nbr .x-btn-default-small-mc {
1036    padding: 0px 0px 0px 0px; }
1037  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1038  .x-reset .x-strict .x-ie7 .x-btn-default-small-tl,
1039  .x-reset .x-strict .x-ie7 .x-btn-default-small-bl {
1040    position: relative;
1041    right: 0; }
1042  /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1043  .x-reset .x-btn-default-small .x-btn-inner {
1044    font-size: 11px;
1045    font-weight: normal;
1046    font-family: tahoma, arial, verdana, sans-serif;
1047    color: #333333;
1048    background-repeat: no-repeat;
1049    padding: 0 4px; }
1050  /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1051  .x-reset .x-btn-default-small-icon button,
1052  .x-reset .x-btn-default-small-icon a,
1053  .x-reset .x-btn-default-small-icon .x-btn-inner,
1054  .x-reset .x-btn-default-small-noicon button,
1055  .x-reset .x-btn-default-small-noicon a,
1056  .x-reset .x-btn-default-small-noicon .x-btn-inner {
1057    height: 16px;
1058    line-height: 16px; }
1059  /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1060  .x-reset .x-btn-default-small-icon button, .x-reset .x-btn-default-small-icon a {
1061    padding: 0; }
1062  /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1063  .x-reset .x-btn-default-small-icon .x-btn-inner {
1064    /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
1065    width: 16px;
1066    padding: 0; }
1067  /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1068  .x-reset .x-btn-default-small-icon .x-btn-icon {
1069    width: 16px;
1070    height: 16px;
1071    top: 0;
1072    left: 0;
1073    bottom: 0;
1074    right: 0; }
1075  /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1076  .x-reset .x-btn-default-small-icon-text-left button, .x-reset .x-btn-default-small-icon-text-left a {
1077    height: 16px; }
1078  /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1079  .x-reset .x-btn-default-small-icon-text-left .x-btn-inner {
1080    height: 16px;
1081    line-height: 16px;
1082    padding-left: 20px; }
1083  /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1084  .x-reset .x-btn-default-small-icon-text-left .x-btn-icon {
1085    width: 16px;
1086    height: auto;
1087    top: 0;
1088    left: 0;
1089    bottom: 0;
1090    right: auto; }
1091    /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1092    .x-ie6 .x-reset .x-btn-default-small-icon-text-left .x-btn-icon, .x-quirks .x-reset .x-btn-default-small-icon-text-left .x-btn-icon {
1093      height: 16px; }
1094  /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1095  .x-reset .x-btn-default-small-icon-text-right button, .x-reset .x-btn-default-small-icon-text-right a {
1096    height: 16px; }
1097  /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1098  .x-reset .x-btn-default-small-icon-text-right .x-btn-inner {
1099    height: 16px;
1100    line-height: 16px;
1101    padding-right: 20px !important; }
1102  /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1103  .x-reset .x-btn-default-small-icon-text-right .x-btn-icon {
1104    width: 16px;
1105    height: auto;
1106    top: 0;
1107    left: auto;
1108    bottom: 0;
1109    right: 0; }
1110    /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1111    .x-ie6 .x-reset .x-btn-default-small-icon-text-right .x-btn-icon, .x-quirks .x-reset .x-btn-default-small-icon-text-right .x-btn-icon {
1112      height: 16px; }
1113  /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1114  .x-reset .x-btn-default-small-icon-text-top .x-btn-inner {
1115    padding-top: 20px; }
1116  /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1117  .x-reset .x-btn-default-small-icon-text-top .x-btn-icon {
1118    width: auto;
1119    height: 16px;
1120    top: 0;
1121    left: 0;
1122    bottom: auto;
1123    right: 0; }
1124    /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1125    .x-ie6 .x-reset .x-btn-default-small-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-reset .x-btn-default-small-icon-text-top .x-btn-icon {
1126      width: 16px; }
1127  /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1128  .x-reset .x-btn-default-small-icon-text-bottom .x-btn-inner {
1129    padding-bottom: 20px; }
1130  /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1131  .x-reset .x-btn-default-small-icon-text-bottom .x-btn-icon {
1132    width: auto;
1133    height: 16px;
1134    top: auto;
1135    left: 0;
1136    bottom: 0;
1137    right: 0; }
1138    /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1139    .x-ie6 .x-reset .x-btn-default-small-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-reset .x-btn-default-small-icon-text-bottom .x-btn-icon {
1140      width: 16px; }
1141  /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1142  .x-reset .x-btn-default-small-over {
1143    border-color: #b0ccf2;
1144    background-image: none;
1145    background-color: #e4f3ff;
1146    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
1147    background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1148    background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1149    background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1150    background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1151    background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
1152  /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1153  .x-reset .x-btn-default-small-focus {
1154    border-color: #b0ccf2;
1155    background-image: none;
1156    background-color: #e4f3ff;
1157    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
1158    background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1159    background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1160    background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1161    background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1162    background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
1163  /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1164  .x-reset .x-btn-default-small-menu-active,
1165  .x-reset .x-btn-default-small-pressed {
1166    border-color: #9ebae1;
1167    background-image: none;
1168    background-color: #b6cbe4;
1169    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5));
1170    background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1171    background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1172    background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1173    background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1174    background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
1175  /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1176  .x-reset .x-btn-default-small-disabled {
1177    border-color: #e1e1e1;
1178    background-image: none;
1179    background-color: #f7f7f7;
1180    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf));
1181    background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1182    background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1183    background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1184    background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1185    background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
1186    /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1187    .x-reset .x-btn-default-small-disabled .x-btn-inner {
1188      color: #333333 !important; }
1189  /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1190  .x-reset .x-ie .x-btn-default-small-disabled .x-btn-inner {
1191    color: #595959 !important; }
1192  /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1193  .x-reset .x-ie6 .x-btn-default-small-disabled .x-btn-inner {
1194    color: #8c8c8c !important; }
1195  /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1196  .x-reset .x-nbr .x-btn-default-small-over .x-frame-tl,
1197  .x-reset .x-nbr .x-btn-default-small-over .x-frame-bl,
1198  .x-reset .x-nbr .x-btn-default-small-over .x-frame-tr,
1199  .x-reset .x-nbr .x-btn-default-small-over .x-frame-br,
1200  .x-reset .x-nbr .x-btn-default-small-over .x-frame-tc,
1201  .x-reset .x-nbr .x-btn-default-small-over .x-frame-bc {
1202    background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-corners.gif'); }
1203  /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1204  .x-reset .x-nbr .x-btn-default-small-over .x-frame-ml,
1205  .x-reset .x-nbr .x-btn-default-small-over .x-frame-mr {
1206    background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-sides.gif'); }
1207  /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1208  .x-reset .x-nbr .x-btn-default-small-over .x-frame-mc {
1209    background-color: #e4f3ff;
1210    background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-bg.gif'); }
1211  /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1212  .x-reset .x-nbr .x-btn-default-small-focus .x-frame-tl,
1213  .x-reset .x-nbr .x-btn-default-small-focus .x-frame-bl,
1214  .x-reset .x-nbr .x-btn-default-small-focus .x-frame-tr,
1215  .x-reset .x-nbr .x-btn-default-small-focus .x-frame-br,
1216  .x-reset .x-nbr .x-btn-default-small-focus .x-frame-tc,
1217  .x-reset .x-nbr .x-btn-default-small-focus .x-frame-bc {
1218    background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-corners.gif'); }
1219  /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1220  .x-reset .x-nbr .x-btn-default-small-focus .x-frame-ml,
1221  .x-reset .x-nbr .x-btn-default-small-focus .x-frame-mr {
1222    background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-sides.gif'); }
1223  /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1224  .x-reset .x-nbr .x-btn-default-small-focus .x-frame-mc {
1225    background-color: #e4f3ff;
1226    background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-bg.gif'); }
1227  /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1228  .x-reset .x-nbr .x-btn-default-small-menu-active .x-frame-tl,
1229  .x-reset .x-nbr .x-btn-default-small-menu-active .x-frame-bl,
1230  .x-reset .x-nbr .x-btn-default-small-menu-active .x-frame-tr,
1231  .x-reset .x-nbr .x-btn-default-small-menu-active .x-frame-br,
1232  .x-reset .x-nbr .x-btn-default-small-menu-active .x-frame-tc,
1233  .x-reset .x-nbr .x-btn-default-small-menu-active .x-frame-bc,
1234  .x-reset .x-nbr .x-btn-default-small-pressed .x-frame-tl,
1235  .x-reset .x-nbr .x-btn-default-small-pressed .x-frame-bl,
1236  .x-reset .x-nbr .x-btn-default-small-pressed .x-frame-tr,
1237  .x-reset .x-nbr .x-btn-default-small-pressed .x-frame-br,
1238  .x-reset .x-nbr .x-btn-default-small-pressed .x-frame-tc,
1239  .x-reset .x-nbr .x-btn-default-small-pressed .x-frame-bc {
1240    background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-corners.gif'); }
1241  /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1242  .x-reset .x-nbr .x-btn-default-small-menu-active .x-frame-ml,
1243  .x-reset .x-nbr .x-btn-default-small-menu-active .x-frame-mr,
1244  .x-reset .x-nbr .x-btn-default-small-pressed .x-frame-ml,
1245  .x-reset .x-nbr .x-btn-default-small-pressed .x-frame-mr {
1246    background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-sides.gif'); }
1247  /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1248  .x-reset .x-nbr .x-btn-default-small-menu-active .x-frame-mc,
1249  .x-reset .x-nbr .x-btn-default-small-pressed .x-frame-mc {
1250    background-color: #b6cbe4;
1251    background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-bg.gif'); }
1252  /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1253  .x-reset .x-nbr .x-btn-default-small-disabled .x-frame-tl,
1254  .x-reset .x-nbr .x-btn-default-small-disabled .x-frame-bl,
1255  .x-reset .x-nbr .x-btn-default-small-disabled .x-frame-tr,
1256  .x-reset .x-nbr .x-btn-default-small-disabled .x-frame-br,
1257  .x-reset .x-nbr .x-btn-default-small-disabled .x-frame-tc,
1258  .x-reset .x-nbr .x-btn-default-small-disabled .x-frame-bc {
1259    background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-corners.gif'); }
1260  /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1261  .x-reset .x-nbr .x-btn-default-small-disabled .x-frame-ml,
1262  .x-reset .x-nbr .x-btn-default-small-disabled .x-frame-mr {
1263    background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-sides.gif'); }
1264  /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1265  .x-reset .x-nbr .x-btn-default-small-disabled .x-frame-mc {
1266    background-color: #f7f7f7;
1267    background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-bg.gif'); }
1268  /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1269  .x-reset .x-nlg .x-btn-default-small {
1270    background-repeat: repeat-x;
1271    background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif'); }
1272  /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1273  .x-reset .x-nlg .x-btn-default-small-over {
1274    background-repeat: repeat-x;
1275    background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-bg.gif'); }
1276  /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1277  .x-reset .x-nlg .x-btn-default-small-focus {
1278    background-repeat: repeat-x;
1279    background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-bg.gif'); }
1280  /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1281  .x-reset .x-nlg .x-btn-default-small-menu-active,
1282  .x-reset .x-nlg .x-btn-default-small-pressed {
1283    background-repeat: repeat-x;
1284    background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-bg.gif'); }
1285  /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1286  .x-reset .x-nlg .x-btn-default-small-disabled {
1287    background-repeat: repeat-x;
1288    background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-bg.gif'); }
1289  /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1290  .x-reset .x-btn-default-medium {
1291    border-color: #d1d1d1; }
1292  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1293  .x-reset .x-btn-default-medium {
1294    padding: 3px 3px 3px 3px;
1295    border-width: 1px;
1296    border-style: solid;
1297    background-color: white; }
1298  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1299  .x-reset .x-nlg .x-btn-default-medium-mc {
1300    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif');
1301    background-color: white; }
1302  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1303  .x-reset .x-nbr .x-btn-default-medium {
1304    padding: 0 !important;
1305    border-width: 0 !important;
1306    -moz-border-radius: 0px;
1307    -webkit-border-radius: 0px;
1308    -o-border-radius: 0px;
1309    -ms-border-radius: 0px;
1310    -khtml-border-radius: 0px;
1311    border-radius: 0px;
1312    background-color: transparent;
1313    background-position: 1100303px 1000303px; }
1314  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1315  .x-reset .x-nbr .x-btn-default-medium-tl,
1316  .x-reset .x-nbr .x-btn-default-medium-bl,
1317  .x-reset .x-nbr .x-btn-default-medium-tr,
1318  .x-reset .x-nbr .x-btn-default-medium-br,
1319  .x-reset .x-nbr .x-btn-default-medium-tc,
1320  .x-reset .x-nbr .x-btn-default-medium-bc,
1321  .x-reset .x-nbr .x-btn-default-medium-ml,
1322  .x-reset .x-nbr .x-btn-default-medium-mr {
1323    zoom: 1;
1324    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-corners.gif'); }
1325  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1326  .x-reset .x-nbr .x-btn-default-medium-ml,
1327  .x-reset .x-nbr .x-btn-default-medium-mr {
1328    zoom: 1;
1329    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-sides.gif');
1330    background-position: 0 0; }
1331  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1332  .x-reset .x-nbr .x-btn-default-medium-mc {
1333    padding: 1px 1px 1px 1px; }
1334  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1335  .x-reset .x-strict .x-ie7 .x-btn-default-medium-tl,
1336  .x-reset .x-strict .x-ie7 .x-btn-default-medium-bl {
1337    position: relative;
1338    right: 0; }
1339  /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1340  .x-reset .x-btn-default-medium .x-btn-inner {
1341    font-size: 11px;
1342    font-weight: normal;
1343    font-family: tahoma, arial, verdana, sans-serif;
1344    color: #333333;
1345    background-repeat: no-repeat;
1346    padding: 0 3px; }
1347  /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1348  .x-reset .x-btn-default-medium-icon button,
1349  .x-reset .x-btn-default-medium-icon a,
1350  .x-reset .x-btn-default-medium-icon .x-btn-inner,
1351  .x-reset .x-btn-default-medium-noicon button,
1352  .x-reset .x-btn-default-medium-noicon a,
1353  .x-reset .x-btn-default-medium-noicon .x-btn-inner {
1354    height: 24px;
1355    line-height: 24px; }
1356  /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1357  .x-reset .x-btn-default-medium-icon button, .x-reset .x-btn-default-medium-icon a {
1358    padding: 0; }
1359  /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1360  .x-reset .x-btn-default-medium-icon .x-btn-inner {
1361    /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
1362    width: 24px;
1363    padding: 0; }
1364  /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1365  .x-reset .x-btn-default-medium-icon .x-btn-icon {
1366    width: 24px;
1367    height: 24px;
1368    top: 0;
1369    left: 0;
1370    bottom: 0;
1371    right: 0; }
1372  /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1373  .x-reset .x-btn-default-medium-icon-text-left button, .x-reset .x-btn-default-medium-icon-text-left a {
1374    height: 24px; }
1375  /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1376  .x-reset .x-btn-default-medium-icon-text-left .x-btn-inner {
1377    height: 24px;
1378    line-height: 24px;
1379    padding-left: 28px; }
1380  /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1381  .x-reset .x-btn-default-medium-icon-text-left .x-btn-icon {
1382    width: 24px;
1383    height: auto;
1384    top: 0;
1385    left: 0;
1386    bottom: 0;
1387    right: auto; }
1388    /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1389    .x-ie6 .x-reset .x-btn-default-medium-icon-text-left .x-btn-icon, .x-quirks .x-reset .x-btn-default-medium-icon-text-left .x-btn-icon {
1390      height: 24px; }
1391  /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1392  .x-reset .x-btn-default-medium-icon-text-right button, .x-reset .x-btn-default-medium-icon-text-right a {
1393    height: 24px; }
1394  /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1395  .x-reset .x-btn-default-medium-icon-text-right .x-btn-inner {
1396    height: 24px;
1397    line-height: 24px;
1398    padding-right: 28px !important; }
1399  /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1400  .x-reset .x-btn-default-medium-icon-text-right .x-btn-icon {
1401    width: 24px;
1402    height: auto;
1403    top: 0;
1404    left: auto;
1405    bottom: 0;
1406    right: 0; }
1407    /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1408    .x-ie6 .x-reset .x-btn-default-medium-icon-text-right .x-btn-icon, .x-quirks .x-reset .x-btn-default-medium-icon-text-right .x-btn-icon {
1409      height: 24px; }
1410  /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1411  .x-reset .x-btn-default-medium-icon-text-top .x-btn-inner {
1412    padding-top: 28px; }
1413  /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1414  .x-reset .x-btn-default-medium-icon-text-top .x-btn-icon {
1415    width: auto;
1416    height: 24px;
1417    top: 0;
1418    left: 0;
1419    bottom: auto;
1420    right: 0; }
1421    /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1422    .x-ie6 .x-reset .x-btn-default-medium-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-reset .x-btn-default-medium-icon-text-top .x-btn-icon {
1423      width: 24px; }
1424  /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1425  .x-reset .x-btn-default-medium-icon-text-bottom .x-btn-inner {
1426    padding-bottom: 28px; }
1427  /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1428  .x-reset .x-btn-default-medium-icon-text-bottom .x-btn-icon {
1429    width: auto;
1430    height: 24px;
1431    top: auto;
1432    left: 0;
1433    bottom: 0;
1434    right: 0; }
1435    /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1436    .x-ie6 .x-reset .x-btn-default-medium-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-reset .x-btn-default-medium-icon-text-bottom .x-btn-icon {
1437      width: 24px; }
1438  /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1439  .x-reset .x-btn-default-medium-over {
1440    border-color: #b0ccf2;
1441    background-image: none;
1442    background-color: #e4f3ff;
1443    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
1444    background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1445    background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1446    background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1447    background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1448    background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
1449  /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1450  .x-reset .x-btn-default-medium-focus {
1451    border-color: #b0ccf2;
1452    background-image: none;
1453    background-color: #e4f3ff;
1454    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
1455    background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1456    background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1457    background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1458    background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1459    background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
1460  /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1461  .x-reset .x-btn-default-medium-menu-active,
1462  .x-reset .x-btn-default-medium-pressed {
1463    border-color: #9ebae1;
1464    background-image: none;
1465    background-color: #b6cbe4;
1466    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5));
1467    background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1468    background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1469    background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1470    background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1471    background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
1472  /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1473  .x-reset .x-btn-default-medium-disabled {
1474    border-color: #e1e1e1;
1475    background-image: none;
1476    background-color: #f7f7f7;
1477    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf));
1478    background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1479    background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1480    background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1481    background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1482    background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
1483    /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1484    .x-reset .x-btn-default-medium-disabled .x-btn-inner {
1485      color: #333333 !important; }
1486  /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1487  .x-reset .x-ie .x-btn-default-medium-disabled .x-btn-inner {
1488    color: #595959 !important; }
1489  /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1490  .x-reset .x-ie6 .x-btn-default-medium-disabled .x-btn-inner {
1491    color: #8c8c8c !important; }
1492  /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1493  .x-reset .x-nbr .x-btn-default-medium-over .x-frame-tl,
1494  .x-reset .x-nbr .x-btn-default-medium-over .x-frame-bl,
1495  .x-reset .x-nbr .x-btn-default-medium-over .x-frame-tr,
1496  .x-reset .x-nbr .x-btn-default-medium-over .x-frame-br,
1497  .x-reset .x-nbr .x-btn-default-medium-over .x-frame-tc,
1498  .x-reset .x-nbr .x-btn-default-medium-over .x-frame-bc {
1499    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-corners.gif'); }
1500  /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1501  .x-reset .x-nbr .x-btn-default-medium-over .x-frame-ml,
1502  .x-reset .x-nbr .x-btn-default-medium-over .x-frame-mr {
1503    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-sides.gif'); }
1504  /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1505  .x-reset .x-nbr .x-btn-default-medium-over .x-frame-mc {
1506    background-color: #e4f3ff;
1507    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-bg.gif'); }
1508  /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1509  .x-reset .x-nbr .x-btn-default-medium-focus .x-frame-tl,
1510  .x-reset .x-nbr .x-btn-default-medium-focus .x-frame-bl,
1511  .x-reset .x-nbr .x-btn-default-medium-focus .x-frame-tr,
1512  .x-reset .x-nbr .x-btn-default-medium-focus .x-frame-br,
1513  .x-reset .x-nbr .x-btn-default-medium-focus .x-frame-tc,
1514  .x-reset .x-nbr .x-btn-default-medium-focus .x-frame-bc {
1515    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-corners.gif'); }
1516  /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1517  .x-reset .x-nbr .x-btn-default-medium-focus .x-frame-ml,
1518  .x-reset .x-nbr .x-btn-default-medium-focus .x-frame-mr {
1519    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-sides.gif'); }
1520  /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1521  .x-reset .x-nbr .x-btn-default-medium-focus .x-frame-mc {
1522    background-color: #e4f3ff;
1523    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-bg.gif'); }
1524  /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1525  .x-reset .x-nbr .x-btn-default-medium-menu-active .x-frame-tl,
1526  .x-reset .x-nbr .x-btn-default-medium-menu-active .x-frame-bl,
1527  .x-reset .x-nbr .x-btn-default-medium-menu-active .x-frame-tr,
1528  .x-reset .x-nbr .x-btn-default-medium-menu-active .x-frame-br,
1529  .x-reset .x-nbr .x-btn-default-medium-menu-active .x-frame-tc,
1530  .x-reset .x-nbr .x-btn-default-medium-menu-active .x-frame-bc,
1531  .x-reset .x-nbr .x-btn-default-medium-pressed .x-frame-tl,
1532  .x-reset .x-nbr .x-btn-default-medium-pressed .x-frame-bl,
1533  .x-reset .x-nbr .x-btn-default-medium-pressed .x-frame-tr,
1534  .x-reset .x-nbr .x-btn-default-medium-pressed .x-frame-br,
1535  .x-reset .x-nbr .x-btn-default-medium-pressed .x-frame-tc,
1536  .x-reset .x-nbr .x-btn-default-medium-pressed .x-frame-bc {
1537    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-corners.gif'); }
1538  /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1539  .x-reset .x-nbr .x-btn-default-medium-menu-active .x-frame-ml,
1540  .x-reset .x-nbr .x-btn-default-medium-menu-active .x-frame-mr,
1541  .x-reset .x-nbr .x-btn-default-medium-pressed .x-frame-ml,
1542  .x-reset .x-nbr .x-btn-default-medium-pressed .x-frame-mr {
1543    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-sides.gif'); }
1544  /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1545  .x-reset .x-nbr .x-btn-default-medium-menu-active .x-frame-mc,
1546  .x-reset .x-nbr .x-btn-default-medium-pressed .x-frame-mc {
1547    background-color: #b6cbe4;
1548    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-bg.gif'); }
1549  /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1550  .x-reset .x-nbr .x-btn-default-medium-disabled .x-frame-tl,
1551  .x-reset .x-nbr .x-btn-default-medium-disabled .x-frame-bl,
1552  .x-reset .x-nbr .x-btn-default-medium-disabled .x-frame-tr,
1553  .x-reset .x-nbr .x-btn-default-medium-disabled .x-frame-br,
1554  .x-reset .x-nbr .x-btn-default-medium-disabled .x-frame-tc,
1555  .x-reset .x-nbr .x-btn-default-medium-disabled .x-frame-bc {
1556    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-corners.gif'); }
1557  /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1558  .x-reset .x-nbr .x-btn-default-medium-disabled .x-frame-ml,
1559  .x-reset .x-nbr .x-btn-default-medium-disabled .x-frame-mr {
1560    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-sides.gif'); }
1561  /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1562  .x-reset .x-nbr .x-btn-default-medium-disabled .x-frame-mc {
1563    background-color: #f7f7f7;
1564    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-bg.gif'); }
1565  /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1566  .x-reset .x-nlg .x-btn-default-medium {
1567    background-repeat: repeat-x;
1568    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif'); }
1569  /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1570  .x-reset .x-nlg .x-btn-default-medium-over {
1571    background-repeat: repeat-x;
1572    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-bg.gif'); }
1573  /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1574  .x-reset .x-nlg .x-btn-default-medium-focus {
1575    background-repeat: repeat-x;
1576    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-bg.gif'); }
1577  /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1578  .x-reset .x-nlg .x-btn-default-medium-menu-active,
1579  .x-reset .x-nlg .x-btn-default-medium-pressed {
1580    background-repeat: repeat-x;
1581    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-bg.gif'); }
1582  /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1583  .x-reset .x-nlg .x-btn-default-medium-disabled {
1584    background-repeat: repeat-x;
1585    background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-bg.gif'); }
1586  /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1587  .x-reset .x-btn-default-large {
1588    border-color: #d1d1d1; }
1589  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1590  .x-reset .x-btn-default-large {
1591    padding: 3px 3px 3px 3px;
1592    border-width: 1px;
1593    border-style: solid;
1594    background-color: white; }
1595  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1596  .x-reset .x-nlg .x-btn-default-large-mc {
1597    background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif');
1598    background-color: white; }
1599  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1600  .x-reset .x-nbr .x-btn-default-large {
1601    padding: 0 !important;
1602    border-width: 0 !important;
1603    -moz-border-radius: 0px;
1604    -webkit-border-radius: 0px;
1605    -o-border-radius: 0px;
1606    -ms-border-radius: 0px;
1607    -khtml-border-radius: 0px;
1608    border-radius: 0px;
1609    background-color: transparent;
1610    background-position: 1100303px 1000303px; }
1611  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1612  .x-reset .x-nbr .x-btn-default-large-tl,
1613  .x-reset .x-nbr .x-btn-default-large-bl,
1614  .x-reset .x-nbr .x-btn-default-large-tr,
1615  .x-reset .x-nbr .x-btn-default-large-br,
1616  .x-reset .x-nbr .x-btn-default-large-tc,
1617  .x-reset .x-nbr .x-btn-default-large-bc,
1618  .x-reset .x-nbr .x-btn-default-large-ml,
1619  .x-reset .x-nbr .x-btn-default-large-mr {
1620    zoom: 1;
1621    background-image: url('../../resources/themes/images/default/btn/btn-default-large-corners.gif'); }
1622  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1623  .x-reset .x-nbr .x-btn-default-large-ml,
1624  .x-reset .x-nbr .x-btn-default-large-mr {
1625    zoom: 1;
1626    background-image: url('../../resources/themes/images/default/btn/btn-default-large-sides.gif');
1627    background-position: 0 0; }
1628  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1629  .x-reset .x-nbr .x-btn-default-large-mc {
1630    padding: 1px 1px 1px 1px; }
1631  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1632  .x-reset .x-strict .x-ie7 .x-btn-default-large-tl,
1633  .x-reset .x-strict .x-ie7 .x-btn-default-large-bl {
1634    position: relative;
1635    right: 0; }
1636  /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1637  .x-reset .x-btn-default-large .x-btn-inner {
1638    font-size: 11px;
1639    font-weight: normal;
1640    font-family: tahoma, arial, verdana, sans-serif;
1641    color: #333333;
1642    background-repeat: no-repeat;
1643    padding: 0 3px; }
1644  /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1645  .x-reset .x-btn-default-large-icon button,
1646  .x-reset .x-btn-default-large-icon a,
1647  .x-reset .x-btn-default-large-icon .x-btn-inner,
1648  .x-reset .x-btn-default-large-noicon button,
1649  .x-reset .x-btn-default-large-noicon a,
1650  .x-reset .x-btn-default-large-noicon .x-btn-inner {
1651    height: 32px;
1652    line-height: 32px; }
1653  /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1654  .x-reset .x-btn-default-large-icon button, .x-reset .x-btn-default-large-icon a {
1655    padding: 0; }
1656  /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1657  .x-reset .x-btn-default-large-icon .x-btn-inner {
1658    /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
1659    width: 32px;
1660    padding: 0; }
1661  /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1662  .x-reset .x-btn-default-large-icon .x-btn-icon {
1663    width: 32px;
1664    height: 32px;
1665    top: 0;
1666    left: 0;
1667    bottom: 0;
1668    right: 0; }
1669  /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1670  .x-reset .x-btn-default-large-icon-text-left button, .x-reset .x-btn-default-large-icon-text-left a {
1671    height: 32px; }
1672  /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1673  .x-reset .x-btn-default-large-icon-text-left .x-btn-inner {
1674    height: 32px;
1675    line-height: 32px;
1676    padding-left: 36px; }
1677  /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1678  .x-reset .x-btn-default-large-icon-text-left .x-btn-icon {
1679    width: 32px;
1680    height: auto;
1681    top: 0;
1682    left: 0;
1683    bottom: 0;
1684    right: auto; }
1685    /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1686    .x-ie6 .x-reset .x-btn-default-large-icon-text-left .x-btn-icon, .x-quirks .x-reset .x-btn-default-large-icon-text-left .x-btn-icon {
1687      height: 32px; }
1688  /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1689  .x-reset .x-btn-default-large-icon-text-right button, .x-reset .x-btn-default-large-icon-text-right a {
1690    height: 32px; }
1691  /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1692  .x-reset .x-btn-default-large-icon-text-right .x-btn-inner {
1693    height: 32px;
1694    line-height: 32px;
1695    padding-right: 36px !important; }
1696  /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1697  .x-reset .x-btn-default-large-icon-text-right .x-btn-icon {
1698    width: 32px;
1699    height: auto;
1700    top: 0;
1701    left: auto;
1702    bottom: 0;
1703    right: 0; }
1704    /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1705    .x-ie6 .x-reset .x-btn-default-large-icon-text-right .x-btn-icon, .x-quirks .x-reset .x-btn-default-large-icon-text-right .x-btn-icon {
1706      height: 32px; }
1707  /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1708  .x-reset .x-btn-default-large-icon-text-top .x-btn-inner {
1709    padding-top: 36px; }
1710  /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1711  .x-reset .x-btn-default-large-icon-text-top .x-btn-icon {
1712    width: auto;
1713    height: 32px;
1714    top: 0;
1715    left: 0;
1716    bottom: auto;
1717    right: 0; }
1718    /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1719    .x-ie6 .x-reset .x-btn-default-large-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-reset .x-btn-default-large-icon-text-top .x-btn-icon {
1720      width: 32px; }
1721  /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1722  .x-reset .x-btn-default-large-icon-text-bottom .x-btn-inner {
1723    padding-bottom: 36px; }
1724  /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1725  .x-reset .x-btn-default-large-icon-text-bottom .x-btn-icon {
1726    width: auto;
1727    height: 32px;
1728    top: auto;
1729    left: 0;
1730    bottom: 0;
1731    right: 0; }
1732    /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1733    .x-ie6 .x-reset .x-btn-default-large-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-reset .x-btn-default-large-icon-text-bottom .x-btn-icon {
1734      width: 32px; }
1735  /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1736  .x-reset .x-btn-default-large-over {
1737    border-color: #b0ccf2;
1738    background-image: none;
1739    background-color: #e4f3ff;
1740    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
1741    background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1742    background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1743    background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1744    background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1745    background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
1746  /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1747  .x-reset .x-btn-default-large-focus {
1748    border-color: #b0ccf2;
1749    background-image: none;
1750    background-color: #e4f3ff;
1751    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
1752    background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1753    background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1754    background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1755    background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1756    background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
1757  /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1758  .x-reset .x-btn-default-large-menu-active,
1759  .x-reset .x-btn-default-large-pressed {
1760    border-color: #9ebae1;
1761    background-image: none;
1762    background-color: #b6cbe4;
1763    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5));
1764    background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1765    background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1766    background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1767    background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1768    background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
1769  /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1770  .x-reset .x-btn-default-large-disabled {
1771    border-color: #e1e1e1;
1772    background-image: none;
1773    background-color: #f7f7f7;
1774    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf));
1775    background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1776    background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1777    background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1778    background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1779    background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
1780    /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1781    .x-reset .x-btn-default-large-disabled .x-btn-inner {
1782      color: #333333 !important; }
1783  /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1784  .x-reset .x-ie .x-btn-default-large-disabled .x-btn-inner {
1785    color: #595959 !important; }
1786  /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1787  .x-reset .x-ie6 .x-btn-default-large-disabled .x-btn-inner {
1788    color: #8c8c8c !important; }
1789  /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1790  .x-reset .x-nbr .x-btn-default-large-over .x-frame-tl,
1791  .x-reset .x-nbr .x-btn-default-large-over .x-frame-bl,
1792  .x-reset .x-nbr .x-btn-default-large-over .x-frame-tr,
1793  .x-reset .x-nbr .x-btn-default-large-over .x-frame-br,
1794  .x-reset .x-nbr .x-btn-default-large-over .x-frame-tc,
1795  .x-reset .x-nbr .x-btn-default-large-over .x-frame-bc {
1796    background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-corners.gif'); }
1797  /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1798  .x-reset .x-nbr .x-btn-default-large-over .x-frame-ml,
1799  .x-reset .x-nbr .x-btn-default-large-over .x-frame-mr {
1800    background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-sides.gif'); }
1801  /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1802  .x-reset .x-nbr .x-btn-default-large-over .x-frame-mc {
1803    background-color: #e4f3ff;
1804    background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-bg.gif'); }
1805  /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1806  .x-reset .x-nbr .x-btn-default-large-focus .x-frame-tl,
1807  .x-reset .x-nbr .x-btn-default-large-focus .x-frame-bl,
1808  .x-reset .x-nbr .x-btn-default-large-focus .x-frame-tr,
1809  .x-reset .x-nbr .x-btn-default-large-focus .x-frame-br,
1810  .x-reset .x-nbr .x-btn-default-large-focus .x-frame-tc,
1811  .x-reset .x-nbr .x-btn-default-large-focus .x-frame-bc {
1812    background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-corners.gif'); }
1813  /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1814  .x-reset .x-nbr .x-btn-default-large-focus .x-frame-ml,
1815  .x-reset .x-nbr .x-btn-default-large-focus .x-frame-mr {
1816    background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-sides.gif'); }
1817  /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1818  .x-reset .x-nbr .x-btn-default-large-focus .x-frame-mc {
1819    background-color: #e4f3ff;
1820    background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-bg.gif'); }
1821  /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1822  .x-reset .x-nbr .x-btn-default-large-menu-active .x-frame-tl,
1823  .x-reset .x-nbr .x-btn-default-large-menu-active .x-frame-bl,
1824  .x-reset .x-nbr .x-btn-default-large-menu-active .x-frame-tr,
1825  .x-reset .x-nbr .x-btn-default-large-menu-active .x-frame-br,
1826  .x-reset .x-nbr .x-btn-default-large-menu-active .x-frame-tc,
1827  .x-reset .x-nbr .x-btn-default-large-menu-active .x-frame-bc,
1828  .x-reset .x-nbr .x-btn-default-large-pressed .x-frame-tl,
1829  .x-reset .x-nbr .x-btn-default-large-pressed .x-frame-bl,
1830  .x-reset .x-nbr .x-btn-default-large-pressed .x-frame-tr,
1831  .x-reset .x-nbr .x-btn-default-large-pressed .x-frame-br,
1832  .x-reset .x-nbr .x-btn-default-large-pressed .x-frame-tc,
1833  .x-reset .x-nbr .x-btn-default-large-pressed .x-frame-bc {
1834    background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-corners.gif'); }
1835  /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1836  .x-reset .x-nbr .x-btn-default-large-menu-active .x-frame-ml,
1837  .x-reset .x-nbr .x-btn-default-large-menu-active .x-frame-mr,
1838  .x-reset .x-nbr .x-btn-default-large-pressed .x-frame-ml,
1839  .x-reset .x-nbr .x-btn-default-large-pressed .x-frame-mr {
1840    background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-sides.gif'); }
1841  /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1842  .x-reset .x-nbr .x-btn-default-large-menu-active .x-frame-mc,
1843  .x-reset .x-nbr .x-btn-default-large-pressed .x-frame-mc {
1844    background-color: #b6cbe4;
1845    background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-bg.gif'); }
1846  /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1847  .x-reset .x-nbr .x-btn-default-large-disabled .x-frame-tl,
1848  .x-reset .x-nbr .x-btn-default-large-disabled .x-frame-bl,
1849  .x-reset .x-nbr .x-btn-default-large-disabled .x-frame-tr,
1850  .x-reset .x-nbr .x-btn-default-large-disabled .x-frame-br,
1851  .x-reset .x-nbr .x-btn-default-large-disabled .x-frame-tc,
1852  .x-reset .x-nbr .x-btn-default-large-disabled .x-frame-bc {
1853    background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-corners.gif'); }
1854  /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1855  .x-reset .x-nbr .x-btn-default-large-disabled .x-frame-ml,
1856  .x-reset .x-nbr .x-btn-default-large-disabled .x-frame-mr {
1857    background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-sides.gif'); }
1858  /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1859  .x-reset .x-nbr .x-btn-default-large-disabled .x-frame-mc {
1860    background-color: #f7f7f7;
1861    background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-bg.gif'); }
1862  /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1863  .x-reset .x-nlg .x-btn-default-large {
1864    background-repeat: repeat-x;
1865    background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif'); }
1866  /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1867  .x-reset .x-nlg .x-btn-default-large-over {
1868    background-repeat: repeat-x;
1869    background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-bg.gif'); }
1870  /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1871  .x-reset .x-nlg .x-btn-default-large-focus {
1872    background-repeat: repeat-x;
1873    background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-bg.gif'); }
1874  /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1875  .x-reset .x-nlg .x-btn-default-large-menu-active,
1876  .x-reset .x-nlg .x-btn-default-large-pressed {
1877    background-repeat: repeat-x;
1878    background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-bg.gif'); }
1879  /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1880  .x-reset .x-nlg .x-btn-default-large-disabled {
1881    background-repeat: repeat-x;
1882    background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-bg.gif'); }
1883  /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1884  .x-reset .x-btn-default-toolbar-small {
1885    border-color: transparent; }
1886  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1887  .x-reset .x-btn-default-toolbar-small {
1888    padding: 2px 2px 2px 2px;
1889    border-width: 1px;
1890    border-style: solid;
1891    background-color: transparent; }
1892  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1893  .x-reset .x-nlg .x-btn-default-toolbar-small-mc {
1894    background-color: transparent; }
1895  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1896  .x-reset .x-nbr .x-btn-default-toolbar-small {
1897    padding: 0 !important;
1898    border-width: 0 !important;
1899    -moz-border-radius: 0px;
1900    -webkit-border-radius: 0px;
1901    -o-border-radius: 0px;
1902    -ms-border-radius: 0px;
1903    -khtml-border-radius: 0px;
1904    border-radius: 0px;
1905    background-color: transparent;
1906    background-position: 1100303px 1000303px; }
1907  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1908  .x-reset .x-nbr .x-btn-default-toolbar-small-tl,
1909  .x-reset .x-nbr .x-btn-default-toolbar-small-bl,
1910  .x-reset .x-nbr .x-btn-default-toolbar-small-tr,
1911  .x-reset .x-nbr .x-btn-default-toolbar-small-br,
1912  .x-reset .x-nbr .x-btn-default-toolbar-small-tc,
1913  .x-reset .x-nbr .x-btn-default-toolbar-small-bc,
1914  .x-reset .x-nbr .x-btn-default-toolbar-small-ml,
1915  .x-reset .x-nbr .x-btn-default-toolbar-small-mr {
1916    zoom: 1; }
1917  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1918  .x-reset .x-nbr .x-btn-default-toolbar-small-ml,
1919  .x-reset .x-nbr .x-btn-default-toolbar-small-mr {
1920    zoom: 1; }
1921  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1922  .x-reset .x-nbr .x-btn-default-toolbar-small-mc {
1923    padding: 0px 0px 0px 0px; }
1924  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1925  .x-reset .x-strict .x-ie7 .x-btn-default-toolbar-small-tl,
1926  .x-reset .x-strict .x-ie7 .x-btn-default-toolbar-small-bl {
1927    position: relative;
1928    right: 0; }
1929  /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1930  .x-reset .x-btn-default-toolbar-small .x-btn-inner {
1931    font-size: 11px;
1932    font-weight: normal;
1933    font-family: tahoma, arial, verdana, sans-serif;
1934    color: #333333;
1935    background-repeat: no-repeat;
1936    padding: 0 4px; }
1937  /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1938  .x-reset .x-btn-default-toolbar-small-icon button,
1939  .x-reset .x-btn-default-toolbar-small-icon a,
1940  .x-reset .x-btn-default-toolbar-small-icon .x-btn-inner,
1941  .x-reset .x-btn-default-toolbar-small-noicon button,
1942  .x-reset .x-btn-default-toolbar-small-noicon a,
1943  .x-reset .x-btn-default-toolbar-small-noicon .x-btn-inner {
1944    height: 16px;
1945    line-height: 16px; }
1946  /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1947  .x-reset .x-btn-default-toolbar-small-icon button, .x-reset .x-btn-default-toolbar-small-icon a {
1948    padding: 0; }
1949  /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1950  .x-reset .x-btn-default-toolbar-small-icon .x-btn-inner {
1951    /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
1952    width: 16px;
1953    padding: 0; }
1954  /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1955  .x-reset .x-btn-default-toolbar-small-icon .x-btn-icon {
1956    width: 16px;
1957    height: 16px;
1958    top: 0;
1959    left: 0;
1960    bottom: 0;
1961    right: 0; }
1962  /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1963  .x-reset .x-btn-default-toolbar-small-icon-text-left button, .x-reset .x-btn-default-toolbar-small-icon-text-left a {
1964    height: 16px; }
1965  /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1966  .x-reset .x-btn-default-toolbar-small-icon-text-left .x-btn-inner {
1967    height: 16px;
1968    line-height: 16px;
1969    padding-left: 20px; }
1970  /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1971  .x-reset .x-btn-default-toolbar-small-icon-text-left .x-btn-icon {
1972    width: 16px;
1973    height: auto;
1974    top: 0;
1975    left: 0;
1976    bottom: 0;
1977    right: auto; }
1978    /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1979    .x-ie6 .x-reset .x-btn-default-toolbar-small-icon-text-left .x-btn-icon, .x-quirks .x-reset .x-btn-default-toolbar-small-icon-text-left .x-btn-icon {
1980      height: 16px; }
1981  /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1982  .x-reset .x-btn-default-toolbar-small-icon-text-right button, .x-reset .x-btn-default-toolbar-small-icon-text-right a {
1983    height: 16px; }
1984  /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1985  .x-reset .x-btn-default-toolbar-small-icon-text-right .x-btn-inner {
1986    height: 16px;
1987    line-height: 16px;
1988    padding-right: 20px !important; }
1989  /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1990  .x-reset .x-btn-default-toolbar-small-icon-text-right .x-btn-icon {
1991    width: 16px;
1992    height: auto;
1993    top: 0;
1994    left: auto;
1995    bottom: 0;
1996    right: 0; }
1997    /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1998    .x-ie6 .x-reset .x-btn-default-toolbar-small-icon-text-right .x-btn-icon, .x-quirks .x-reset .x-btn-default-toolbar-small-icon-text-right .x-btn-icon {
1999      height: 16px; }
2000  /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2001  .x-reset .x-btn-default-toolbar-small-icon-text-top .x-btn-inner {
2002    padding-top: 20px; }
2003  /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2004  .x-reset .x-btn-default-toolbar-small-icon-text-top .x-btn-icon {
2005    width: auto;
2006    height: 16px;
2007    top: 0;
2008    left: 0;
2009    bottom: auto;
2010    right: 0; }
2011    /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2012    .x-ie6 .x-reset .x-btn-default-toolbar-small-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-reset .x-btn-default-toolbar-small-icon-text-top .x-btn-icon {
2013      width: 16px; }
2014  /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2015  .x-reset .x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner {
2016    padding-bottom: 20px; }
2017  /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2018  .x-reset .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon {
2019    width: auto;
2020    height: 16px;
2021    top: auto;
2022    left: 0;
2023    bottom: 0;
2024    right: 0; }
2025    /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2026    .x-ie6 .x-reset .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-reset .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon {
2027      width: 16px; }
2028  /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2029  .x-reset .x-btn-default-toolbar-small-over {
2030    border-color: #81a4d0;
2031    background-image: none;
2032    background-color: #dbeeff;
2033    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
2034    background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2035    background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2036    background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2037    background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2038    background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
2039  /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2040  .x-reset .x-btn-default-toolbar-small-focus {
2041    border-color: #81a4d0;
2042    background-image: none;
2043    background-color: #dbeeff;
2044    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
2045    background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2046    background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2047    background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2048    background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2049    background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
2050  /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2051  .x-reset .x-btn-default-toolbar-small-menu-active,
2052  .x-reset .x-btn-default-toolbar-small-pressed {
2053    border-color: #7a9ac4;
2054    background-image: none;
2055    background-color: #bccfe5;
2056    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5));
2057    background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2058    background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2059    background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2060    background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2061    background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
2062  /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2063  .x-reset .x-btn-default-toolbar-small-disabled {
2064    background-image: none;
2065    background-color: transparent; }
2066    /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2067    .x-reset .x-btn-default-toolbar-small-disabled .x-btn-inner {
2068      color: #333333 !important; }
2069  /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2070  .x-reset .x-ie .x-btn-default-toolbar-small-disabled .x-btn-inner {
2071    color: #595959 !important; }
2072  /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2073  .x-reset .x-ie6 .x-btn-default-toolbar-small-disabled .x-btn-inner {
2074    color: #8c8c8c !important; }
2075  /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2076  .x-reset .x-nbr .x-btn-default-toolbar-small-over .x-frame-tl,
2077  .x-reset .x-nbr .x-btn-default-toolbar-small-over .x-frame-bl,
2078  .x-reset .x-nbr .x-btn-default-toolbar-small-over .x-frame-tr,
2079  .x-reset .x-nbr .x-btn-default-toolbar-small-over .x-frame-br,
2080  .x-reset .x-nbr .x-btn-default-toolbar-small-over .x-frame-tc,
2081  .x-reset .x-nbr .x-btn-default-toolbar-small-over .x-frame-bc {
2082    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-corners.gif'); }
2083  /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2084  .x-reset .x-nbr .x-btn-default-toolbar-small-over .x-frame-ml,
2085  .x-reset .x-nbr .x-btn-default-toolbar-small-over .x-frame-mr {
2086    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-sides.gif'); }
2087  /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2088  .x-reset .x-nbr .x-btn-default-toolbar-small-over .x-frame-mc {
2089    background-color: #dbeeff;
2090    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-bg.gif'); }
2091  /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2092  .x-reset .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tl,
2093  .x-reset .x-nbr .x-btn-default-toolbar-small-focus .x-frame-bl,
2094  .x-reset .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tr,
2095  .x-reset .x-nbr .x-btn-default-toolbar-small-focus .x-frame-br,
2096  .x-reset .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tc,
2097  .x-reset .x-nbr .x-btn-default-toolbar-small-focus .x-frame-bc {
2098    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-corners.gif'); }
2099  /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2100  .x-reset .x-nbr .x-btn-default-toolbar-small-focus .x-frame-ml,
2101  .x-reset .x-nbr .x-btn-default-toolbar-small-focus .x-frame-mr {
2102    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-sides.gif'); }
2103  /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2104  .x-reset .x-nbr .x-btn-default-toolbar-small-focus .x-frame-mc {
2105    background-color: #dbeeff;
2106    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-bg.gif'); }
2107  /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2108  .x-reset .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tl,
2109  .x-reset .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bl,
2110  .x-reset .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tr,
2111  .x-reset .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-br,
2112  .x-reset .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tc,
2113  .x-reset .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bc,
2114  .x-reset .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tl,
2115  .x-reset .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bl,
2116  .x-reset .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tr,
2117  .x-reset .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-br,
2118  .x-reset .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tc,
2119  .x-reset .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bc {
2120    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-corners.gif'); }
2121  /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2122  .x-reset .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-ml,
2123  .x-reset .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mr,
2124  .x-reset .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-ml,
2125  .x-reset .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mr {
2126    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-sides.gif'); }
2127  /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2128  .x-reset .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mc,
2129  .x-reset .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mc {
2130    background-color: #bccfe5;
2131    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-bg.gif'); }
2132  /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2133  .x-reset .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tl,
2134  .x-reset .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bl,
2135  .x-reset .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tr,
2136  .x-reset .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-br,
2137  .x-reset .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tc,
2138  .x-reset .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bc {
2139    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-disabled-corners.gif'); }
2140  /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2141  .x-reset .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-ml,
2142  .x-reset .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mr {
2143    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-disabled-sides.gif'); }
2144  /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2145  .x-reset .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mc {
2146    background-color: transparent; }
2147  /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2148  .x-reset .x-nlg .x-btn-default-toolbar-small-over {
2149    background-repeat: repeat-x;
2150    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-bg.gif'); }
2151  /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2152  .x-reset .x-nlg .x-btn-default-toolbar-small-focus {
2153    background-repeat: repeat-x;
2154    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-bg.gif'); }
2155  /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2156  .x-reset .x-nlg .x-btn-default-toolbar-small-menu-active,
2157  .x-reset .x-nlg .x-btn-default-toolbar-small-pressed {
2158    background-repeat: repeat-x;
2159    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-bg.gif'); }
2160  /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2161  .x-reset .x-btn-default-toolbar-medium {
2162    border-color: transparent; }
2163  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2164  .x-reset .x-btn-default-toolbar-medium {
2165    padding: 3px 3px 3px 3px;
2166    border-width: 1px;
2167    border-style: solid;
2168    background-color: transparent; }
2169  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2170  .x-reset .x-nlg .x-btn-default-toolbar-medium-mc {
2171    background-color: transparent; }
2172  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2173  .x-reset .x-nbr .x-btn-default-toolbar-medium {
2174    padding: 0 !important;
2175    border-width: 0 !important;
2176    -moz-border-radius: 0px;
2177    -webkit-border-radius: 0px;
2178    -o-border-radius: 0px;
2179    -ms-border-radius: 0px;
2180    -khtml-border-radius: 0px;
2181    border-radius: 0px;
2182    background-color: transparent;
2183    background-position: 1100303px 1000303px; }
2184  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2185  .x-reset .x-nbr .x-btn-default-toolbar-medium-tl,
2186  .x-reset .x-nbr .x-btn-default-toolbar-medium-bl,
2187  .x-reset .x-nbr .x-btn-default-toolbar-medium-tr,
2188  .x-reset .x-nbr .x-btn-default-toolbar-medium-br,
2189  .x-reset .x-nbr .x-btn-default-toolbar-medium-tc,
2190  .x-reset .x-nbr .x-btn-default-toolbar-medium-bc,
2191  .x-reset .x-nbr .x-btn-default-toolbar-medium-ml,
2192  .x-reset .x-nbr .x-btn-default-toolbar-medium-mr {
2193    zoom: 1; }
2194  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2195  .x-reset .x-nbr .x-btn-default-toolbar-medium-ml,
2196  .x-reset .x-nbr .x-btn-default-toolbar-medium-mr {
2197    zoom: 1; }
2198  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2199  .x-reset .x-nbr .x-btn-default-toolbar-medium-mc {
2200    padding: 1px 1px 1px 1px; }
2201  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2202  .x-reset .x-strict .x-ie7 .x-btn-default-toolbar-medium-tl,
2203  .x-reset .x-strict .x-ie7 .x-btn-default-toolbar-medium-bl {
2204    position: relative;
2205    right: 0; }
2206  /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2207  .x-reset .x-btn-default-toolbar-medium .x-btn-inner {
2208    font-size: 11px;
2209    font-weight: normal;
2210    font-family: tahoma, arial, verdana, sans-serif;
2211    color: #333333;
2212    background-repeat: no-repeat;
2213    padding: 0 3px; }
2214  /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2215  .x-reset .x-btn-default-toolbar-medium-icon button,
2216  .x-reset .x-btn-default-toolbar-medium-icon a,
2217  .x-reset .x-btn-default-toolbar-medium-icon .x-btn-inner,
2218  .x-reset .x-btn-default-toolbar-medium-noicon button,
2219  .x-reset .x-btn-default-toolbar-medium-noicon a,
2220  .x-reset .x-btn-default-toolbar-medium-noicon .x-btn-inner {
2221    height: 24px;
2222    line-height: 24px; }
2223  /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2224  .x-reset .x-btn-default-toolbar-medium-icon button, .x-reset .x-btn-default-toolbar-medium-icon a {
2225    padding: 0; }
2226  /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2227  .x-reset .x-btn-default-toolbar-medium-icon .x-btn-inner {
2228    /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
2229    width: 24px;
2230    padding: 0; }
2231  /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2232  .x-reset .x-btn-default-toolbar-medium-icon .x-btn-icon {
2233    width: 24px;
2234    height: 24px;
2235    top: 0;
2236    left: 0;
2237    bottom: 0;
2238    right: 0; }
2239  /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2240  .x-reset .x-btn-default-toolbar-medium-icon-text-left button, .x-reset .x-btn-default-toolbar-medium-icon-text-left a {
2241    height: 24px; }
2242  /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2243  .x-reset .x-btn-default-toolbar-medium-icon-text-left .x-btn-inner {
2244    height: 24px;
2245    line-height: 24px;
2246    padding-left: 28px; }
2247  /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2248  .x-reset .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon {
2249    width: 24px;
2250    height: auto;
2251    top: 0;
2252    left: 0;
2253    bottom: 0;
2254    right: auto; }
2255    /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2256    .x-ie6 .x-reset .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon, .x-quirks .x-reset .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon {
2257      height: 24px; }
2258  /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2259  .x-reset .x-btn-default-toolbar-medium-icon-text-right button, .x-reset .x-btn-default-toolbar-medium-icon-text-right a {
2260    height: 24px; }
2261  /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2262  .x-reset .x-btn-default-toolbar-medium-icon-text-right .x-btn-inner {
2263    height: 24px;
2264    line-height: 24px;
2265    padding-right: 28px !important; }
2266  /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2267  .x-reset .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon {
2268    width: 24px;
2269    height: auto;
2270    top: 0;
2271    left: auto;
2272    bottom: 0;
2273    right: 0; }
2274    /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2275    .x-ie6 .x-reset .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon, .x-quirks .x-reset .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon {
2276      height: 24px; }
2277  /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2278  .x-reset .x-btn-default-toolbar-medium-icon-text-top .x-btn-inner {
2279    padding-top: 28px; }
2280  /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2281  .x-reset .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon {
2282    width: auto;
2283    height: 24px;
2284    top: 0;
2285    left: 0;
2286    bottom: auto;
2287    right: 0; }
2288    /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2289    .x-ie6 .x-reset .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-reset .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon {
2290      width: 24px; }
2291  /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2292  .x-reset .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner {
2293    padding-bottom: 28px; }
2294  /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2295  .x-reset .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon {
2296    width: auto;
2297    height: 24px;
2298    top: auto;
2299    left: 0;
2300    bottom: 0;
2301    right: 0; }
2302    /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2303    .x-ie6 .x-reset .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-reset .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon {
2304      width: 24px; }
2305  /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2306  .x-reset .x-btn-default-toolbar-medium-over {
2307    border-color: #81a4d0;
2308    background-image: none;
2309    background-color: #dbeeff;
2310    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
2311    background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2312    background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2313    background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2314    background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2315    background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
2316  /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2317  .x-reset .x-btn-default-toolbar-medium-focus {
2318    border-color: #81a4d0;
2319    background-image: none;
2320    background-color: #dbeeff;
2321    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
2322    background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2323    background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2324    background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2325    background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2326    background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
2327  /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2328  .x-reset .x-btn-default-toolbar-medium-menu-active,
2329  .x-reset .x-btn-default-toolbar-medium-pressed {
2330    border-color: #7a9ac4;
2331    background-image: none;
2332    background-color: #bccfe5;
2333    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5));
2334    background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2335    background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2336    background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2337    background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2338    background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
2339  /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2340  .x-reset .x-btn-default-toolbar-medium-disabled {
2341    background-image: none;
2342    background-color: transparent; }
2343    /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2344    .x-reset .x-btn-default-toolbar-medium-disabled .x-btn-inner {
2345      color: #333333 !important; }
2346  /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2347  .x-reset .x-ie .x-btn-default-toolbar-medium-disabled .x-btn-inner {
2348    color: #595959 !important; }
2349  /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2350  .x-reset .x-ie6 .x-btn-default-toolbar-medium-disabled .x-btn-inner {
2351    color: #8c8c8c !important; }
2352  /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2353  .x-reset .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tl,
2354  .x-reset .x-nbr .x-btn-default-toolbar-medium-over .x-frame-bl,
2355  .x-reset .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tr,
2356  .x-reset .x-nbr .x-btn-default-toolbar-medium-over .x-frame-br,
2357  .x-reset .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tc,
2358  .x-reset .x-nbr .x-btn-default-toolbar-medium-over .x-frame-bc {
2359    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-corners.gif'); }
2360  /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2361  .x-reset .x-nbr .x-btn-default-toolbar-medium-over .x-frame-ml,
2362  .x-reset .x-nbr .x-btn-default-toolbar-medium-over .x-frame-mr {
2363    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-sides.gif'); }
2364  /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2365  .x-reset .x-nbr .x-btn-default-toolbar-medium-over .x-frame-mc {
2366    background-color: #dbeeff;
2367    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-bg.gif'); }
2368  /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2369  .x-reset .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tl,
2370  .x-reset .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bl,
2371  .x-reset .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tr,
2372  .x-reset .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-br,
2373  .x-reset .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tc,
2374  .x-reset .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bc {
2375    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-corners.gif'); }
2376  /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2377  .x-reset .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-ml,
2378  .x-reset .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mr {
2379    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-sides.gif'); }
2380  /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2381  .x-reset .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mc {
2382    background-color: #dbeeff;
2383    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-bg.gif'); }
2384  /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2385  .x-reset .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tl,
2386  .x-reset .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bl,
2387  .x-reset .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tr,
2388  .x-reset .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-br,
2389  .x-reset .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tc,
2390  .x-reset .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bc,
2391  .x-reset .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tl,
2392  .x-reset .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bl,
2393  .x-reset .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tr,
2394  .x-reset .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-br,
2395  .x-reset .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tc,
2396  .x-reset .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bc {
2397    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-corners.gif'); }
2398  /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2399  .x-reset .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-ml,
2400  .x-reset .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mr,
2401  .x-reset .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-ml,
2402  .x-reset .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mr {
2403    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-sides.gif'); }
2404  /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2405  .x-reset .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mc,
2406  .x-reset .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mc {
2407    background-color: #bccfe5;
2408    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
2409  /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2410  .x-reset .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tl,
2411  .x-reset .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bl,
2412  .x-reset .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tr,
2413  .x-reset .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-br,
2414  .x-reset .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tc,
2415  .x-reset .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bc {
2416    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-disabled-corners.gif'); }
2417  /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2418  .x-reset .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-ml,
2419  .x-reset .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mr {
2420    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-disabled-sides.gif'); }
2421  /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2422  .x-reset .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mc {
2423    background-color: transparent; }
2424  /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2425  .x-reset .x-nlg .x-btn-default-toolbar-medium-over {
2426    background-repeat: repeat-x;
2427    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-bg.gif'); }
2428  /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2429  .x-reset .x-nlg .x-btn-default-toolbar-medium-focus {
2430    background-repeat: repeat-x;
2431    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-bg.gif'); }
2432  /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2433  .x-reset .x-nlg .x-btn-default-toolbar-medium-menu-active,
2434  .x-reset .x-nlg .x-btn-default-toolbar-medium-pressed {
2435    background-repeat: repeat-x;
2436    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
2437  /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2438  .x-reset .x-btn-default-toolbar-large {
2439    border-color: transparent; }
2440  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2441  .x-reset .x-btn-default-toolbar-large {
2442    padding: 3px 3px 3px 3px;
2443    border-width: 1px;
2444    border-style: solid;
2445    background-color: transparent; }
2446  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2447  .x-reset .x-nlg .x-btn-default-toolbar-large-mc {
2448    background-color: transparent; }
2449  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2450  .x-reset .x-nbr .x-btn-default-toolbar-large {
2451    padding: 0 !important;
2452    border-width: 0 !important;
2453    -moz-border-radius: 0px;
2454    -webkit-border-radius: 0px;
2455    -o-border-radius: 0px;
2456    -ms-border-radius: 0px;
2457    -khtml-border-radius: 0px;
2458    border-radius: 0px;
2459    background-color: transparent;
2460    background-position: 1100303px 1000303px; }
2461  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2462  .x-reset .x-nbr .x-btn-default-toolbar-large-tl,
2463  .x-reset .x-nbr .x-btn-default-toolbar-large-bl,
2464  .x-reset .x-nbr .x-btn-default-toolbar-large-tr,
2465  .x-reset .x-nbr .x-btn-default-toolbar-large-br,
2466  .x-reset .x-nbr .x-btn-default-toolbar-large-tc,
2467  .x-reset .x-nbr .x-btn-default-toolbar-large-bc,
2468  .x-reset .x-nbr .x-btn-default-toolbar-large-ml,
2469  .x-reset .x-nbr .x-btn-default-toolbar-large-mr {
2470    zoom: 1; }
2471  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2472  .x-reset .x-nbr .x-btn-default-toolbar-large-ml,
2473  .x-reset .x-nbr .x-btn-default-toolbar-large-mr {
2474    zoom: 1; }
2475  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2476  .x-reset .x-nbr .x-btn-default-toolbar-large-mc {
2477    padding: 1px 1px 1px 1px; }
2478  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2479  .x-reset .x-strict .x-ie7 .x-btn-default-toolbar-large-tl,
2480  .x-reset .x-strict .x-ie7 .x-btn-default-toolbar-large-bl {
2481    position: relative;
2482    right: 0; }
2483  /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2484  .x-reset .x-btn-default-toolbar-large .x-btn-inner {
2485    font-size: 11px;
2486    font-weight: normal;
2487    font-family: tahoma, arial, verdana, sans-serif;
2488    color: #333333;
2489    background-repeat: no-repeat;
2490    padding: 0 3px; }
2491  /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2492  .x-reset .x-btn-default-toolbar-large-icon button,
2493  .x-reset .x-btn-default-toolbar-large-icon a,
2494  .x-reset .x-btn-default-toolbar-large-icon .x-btn-inner,
2495  .x-reset .x-btn-default-toolbar-large-noicon button,
2496  .x-reset .x-btn-default-toolbar-large-noicon a,
2497  .x-reset .x-btn-default-toolbar-large-noicon .x-btn-inner {
2498    height: 32px;
2499    line-height: 32px; }
2500  /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2501  .x-reset .x-btn-default-toolbar-large-icon button, .x-reset .x-btn-default-toolbar-large-icon a {
2502    padding: 0; }
2503  /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2504  .x-reset .x-btn-default-toolbar-large-icon .x-btn-inner {
2505    /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
2506    width: 32px;
2507    padding: 0; }
2508  /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2509  .x-reset .x-btn-default-toolbar-large-icon .x-btn-icon {
2510    width: 32px;
2511    height: 32px;
2512    top: 0;
2513    left: 0;
2514    bottom: 0;
2515    right: 0; }
2516  /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2517  .x-reset .x-btn-default-toolbar-large-icon-text-left button, .x-reset .x-btn-default-toolbar-large-icon-text-left a {
2518    height: 32px; }
2519  /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2520  .x-reset .x-btn-default-toolbar-large-icon-text-left .x-btn-inner {
2521    height: 32px;
2522    line-height: 32px;
2523    padding-left: 36px; }
2524  /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2525  .x-reset .x-btn-default-toolbar-large-icon-text-left .x-btn-icon {
2526    width: 32px;
2527    height: auto;
2528    top: 0;
2529    left: 0;
2530    bottom: 0;
2531    right: auto; }
2532    /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2533    .x-ie6 .x-reset .x-btn-default-toolbar-large-icon-text-left .x-btn-icon, .x-quirks .x-reset .x-btn-default-toolbar-large-icon-text-left .x-btn-icon {
2534      height: 32px; }
2535  /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2536  .x-reset .x-btn-default-toolbar-large-icon-text-right button, .x-reset .x-btn-default-toolbar-large-icon-text-right a {
2537    height: 32px; }
2538  /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2539  .x-reset .x-btn-default-toolbar-large-icon-text-right .x-btn-inner {
2540    height: 32px;
2541    line-height: 32px;
2542    padding-right: 36px !important; }
2543  /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2544  .x-reset .x-btn-default-toolbar-large-icon-text-right .x-btn-icon {
2545    width: 32px;
2546    height: auto;
2547    top: 0;
2548    left: auto;
2549    bottom: 0;
2550    right: 0; }
2551    /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2552    .x-ie6 .x-reset .x-btn-default-toolbar-large-icon-text-right .x-btn-icon, .x-quirks .x-reset .x-btn-default-toolbar-large-icon-text-right .x-btn-icon {
2553      height: 32px; }
2554  /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2555  .x-reset .x-btn-default-toolbar-large-icon-text-top .x-btn-inner {
2556    padding-top: 36px; }
2557  /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2558  .x-reset .x-btn-default-toolbar-large-icon-text-top .x-btn-icon {
2559    width: auto;
2560    height: 32px;
2561    top: 0;
2562    left: 0;
2563    bottom: auto;
2564    right: 0; }
2565    /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2566    .x-ie6 .x-reset .x-btn-default-toolbar-large-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-reset .x-btn-default-toolbar-large-icon-text-top .x-btn-icon {
2567      width: 32px; }
2568  /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2569  .x-reset .x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner {
2570    padding-bottom: 36px; }
2571  /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2572  .x-reset .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon {
2573    width: auto;
2574    height: 32px;
2575    top: auto;
2576    left: 0;
2577    bottom: 0;
2578    right: 0; }
2579    /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2580    .x-ie6 .x-reset .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-reset .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon {
2581      width: 32px; }
2582  /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2583  .x-reset .x-btn-default-toolbar-large-over {
2584    border-color: #81a4d0;
2585    background-image: none;
2586    background-color: #dbeeff;
2587    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
2588    background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2589    background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2590    background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2591    background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2592    background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
2593  /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2594  .x-reset .x-btn-default-toolbar-large-focus {
2595    border-color: #81a4d0;
2596    background-image: none;
2597    background-color: #dbeeff;
2598    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
2599    background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2600    background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2601    background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2602    background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2603    background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
2604  /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2605  .x-reset .x-btn-default-toolbar-large-menu-active,
2606  .x-reset .x-btn-default-toolbar-large-pressed {
2607    border-color: #7a9ac4;
2608    background-image: none;
2609    background-color: #bccfe5;
2610    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5));
2611    background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2612    background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2613    background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2614    background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2615    background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
2616  /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2617  .x-reset .x-btn-default-toolbar-large-disabled {
2618    background-image: none;
2619    background-color: transparent; }
2620    /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2621    .x-reset .x-btn-default-toolbar-large-disabled .x-btn-inner {
2622      color: #333333 !important; }
2623  /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2624  .x-reset .x-ie .x-btn-default-toolbar-large-disabled .x-btn-inner {
2625    color: #595959 !important; }
2626  /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2627  .x-reset .x-ie6 .x-btn-default-toolbar-large-disabled .x-btn-inner {
2628    color: #8c8c8c !important; }
2629  /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2630  .x-reset .x-nbr .x-btn-default-toolbar-large-over .x-frame-tl,
2631  .x-reset .x-nbr .x-btn-default-toolbar-large-over .x-frame-bl,
2632  .x-reset .x-nbr .x-btn-default-toolbar-large-over .x-frame-tr,
2633  .x-reset .x-nbr .x-btn-default-toolbar-large-over .x-frame-br,
2634  .x-reset .x-nbr .x-btn-default-toolbar-large-over .x-frame-tc,
2635  .x-reset .x-nbr .x-btn-default-toolbar-large-over .x-frame-bc {
2636    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-corners.gif'); }
2637  /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2638  .x-reset .x-nbr .x-btn-default-toolbar-large-over .x-frame-ml,
2639  .x-reset .x-nbr .x-btn-default-toolbar-large-over .x-frame-mr {
2640    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-sides.gif'); }
2641  /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2642  .x-reset .x-nbr .x-btn-default-toolbar-large-over .x-frame-mc {
2643    background-color: #dbeeff;
2644    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-bg.gif'); }
2645  /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2646  .x-reset .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tl,
2647  .x-reset .x-nbr .x-btn-default-toolbar-large-focus .x-frame-bl,
2648  .x-reset .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tr,
2649  .x-reset .x-nbr .x-btn-default-toolbar-large-focus .x-frame-br,
2650  .x-reset .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tc,
2651  .x-reset .x-nbr .x-btn-default-toolbar-large-focus .x-frame-bc {
2652    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-corners.gif'); }
2653  /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2654  .x-reset .x-nbr .x-btn-default-toolbar-large-focus .x-frame-ml,
2655  .x-reset .x-nbr .x-btn-default-toolbar-large-focus .x-frame-mr {
2656    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-sides.gif'); }
2657  /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2658  .x-reset .x-nbr .x-btn-default-toolbar-large-focus .x-frame-mc {
2659    background-color: #dbeeff;
2660    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-bg.gif'); }
2661  /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2662  .x-reset .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tl,
2663  .x-reset .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bl,
2664  .x-reset .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tr,
2665  .x-reset .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-br,
2666  .x-reset .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tc,
2667  .x-reset .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bc,
2668  .x-reset .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tl,
2669  .x-reset .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bl,
2670  .x-reset .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tr,
2671  .x-reset .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-br,
2672  .x-reset .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tc,
2673  .x-reset .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bc {
2674    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-corners.gif'); }
2675  /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2676  .x-reset .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-ml,
2677  .x-reset .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mr,
2678  .x-reset .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-ml,
2679  .x-reset .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mr {
2680    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-sides.gif'); }
2681  /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2682  .x-reset .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mc,
2683  .x-reset .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mc {
2684    background-color: #bccfe5;
2685    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-bg.gif'); }
2686  /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2687  .x-reset .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tl,
2688  .x-reset .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bl,
2689  .x-reset .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tr,
2690  .x-reset .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-br,
2691  .x-reset .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tc,
2692  .x-reset .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bc {
2693    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-disabled-corners.gif'); }
2694  /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2695  .x-reset .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-ml,
2696  .x-reset .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mr {
2697    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-disabled-sides.gif'); }
2698  /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2699  .x-reset .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mc {
2700    background-color: transparent; }
2701  /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2702  .x-reset .x-nlg .x-btn-default-toolbar-large-over {
2703    background-repeat: repeat-x;
2704    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-bg.gif'); }
2705  /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2706  .x-reset .x-nlg .x-btn-default-toolbar-large-focus {
2707    background-repeat: repeat-x;
2708    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-bg.gif'); }
2709  /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2710  .x-reset .x-nlg .x-btn-default-toolbar-large-menu-active,
2711  .x-reset .x-nlg .x-btn-default-toolbar-large-pressed {
2712    background-repeat: repeat-x;
2713    background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-bg.gif'); }
2714  /* line 571, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2715  .x-reset .x-btn-default-toolbar-small-disabled,
2716  .x-reset .x-btn-default-toolbar-medium-disabled,
2717  .x-reset .x-btn-default-toolbar-large-disabled {
2718    border-color: transparent;
2719    background-image: none;
2720    background: transparent; }
2721  /* line 6, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
2722  .x-reset .x-btn-group {
2723    position: relative;
2724    overflow: hidden; }
2725  /* line 11, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
2726  .x-reset .x-btn-group-body {
2727    position: relative;
2728    zoom: 1;
2729    padding: 0 1px; }
2730    /* line 15, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
2731    .x-reset .x-btn-group-body .x-table-layout-cell {
2732      vertical-align: top; }
2733  /* line 20, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
2734  .x-reset .x-btn-group-header-text {
2735    white-space: nowrap; }
2736  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2737  .x-reset .x-btn-group-default-framed {
2738    padding: 1px 1px 1px 1px;
2739    border-width: 1px;
2740    border-style: solid;
2741    background-color: #d0def0; }
2742  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2743  .x-reset .x-nlg .x-btn-group-default-framed-mc {
2744    background-color: #d0def0; }
2745  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2746  .x-reset .x-nbr .x-btn-group-default-framed {
2747    padding: 0 !important;
2748    border-width: 0 !important;
2749    -moz-border-radius: 0px;
2750    -webkit-border-radius: 0px;
2751    -o-border-radius: 0px;
2752    -ms-border-radius: 0px;
2753    -khtml-border-radius: 0px;
2754    border-radius: 0px;
2755    background-color: transparent;
2756    background-position: 1000202px 1000202px; }
2757  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2758  .x-reset .x-nbr .x-btn-group-default-framed-tl,
2759  .x-reset .x-nbr .x-btn-group-default-framed-bl,
2760  .x-reset .x-nbr .x-btn-group-default-framed-tr,
2761  .x-reset .x-nbr .x-btn-group-default-framed-br,
2762  .x-reset .x-nbr .x-btn-group-default-framed-tc,
2763  .x-reset .x-nbr .x-btn-group-default-framed-bc,
2764  .x-reset .x-nbr .x-btn-group-default-framed-ml,
2765  .x-reset .x-nbr .x-btn-group-default-framed-mr {
2766    zoom: 1;
2767    background-image: url('../../resources/themes/images/default/btn-group/btn-group-default-framed-corners.gif'); }
2768  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2769  .x-reset .x-nbr .x-btn-group-default-framed-ml,
2770  .x-reset .x-nbr .x-btn-group-default-framed-mr {
2771    zoom: 1;
2772    background-image: url('../../resources/themes/images/default/btn-group/btn-group-default-framed-sides.gif');
2773    background-position: 0 0;
2774    background-repeat: repeat-y; }
2775  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2776  .x-reset .x-nbr .x-btn-group-default-framed-mc {
2777    padding: 0px 0px 0px 0px; }
2778  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2779  .x-reset .x-strict .x-ie7 .x-btn-group-default-framed-tl,
2780  .x-reset .x-strict .x-ie7 .x-btn-group-default-framed-bl {
2781    position: relative;
2782    right: 0; }
2783  /* line 60, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
2784  .x-reset .x-btn-group-default-framed {
2785    border-color: #b7c8d7;
2786    -moz-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
2787    -webkit-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
2788    -o-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
2789    box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; }
2790  /* line 68, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
2791  .x-reset .x-btn-group-header-default-framed {
2792    margin: 2px 2px 0 2px; }
2793  /* line 72, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
2794  .x-reset .x-btn-group-header-body-default-framed {
2795    padding: 1px 0;
2796    background: #c2d8f0;
2797    -moz-border-radius-topleft: 2px;
2798    -webkit-border-top-left-radius: 2px;
2799    -o-border-top-left-radius: 2px;
2800    -ms-border-top-left-radius: 2px;
2801    -khtml-border-top-left-radius: 2px;
2802    border-top-left-radius: 2px;
2803    -moz-border-radius-topright: 2px;
2804    -webkit-border-top-right-radius: 2px;
2805    -o-border-top-right-radius: 2px;
2806    -ms-border-top-right-radius: 2px;
2807    -khtml-border-top-right-radius: 2px;
2808    border-top-right-radius: 2px; }
2809  /* line 80, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
2810  .x-reset .x-btn-group-header-text-default-framed {
2811    font: normal 11px tahoma, arial, verdana, sans-serif;
2812    color: #3e6aaa; }
2813  /* line 6, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2814  .x-reset .x-datepicker {
2815    border: 1px solid #1b376c;
2816    background-color: white;
2817    position: relative; }
2818    /* line 12, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2819    .x-reset .x-datepicker a {
2820      -moz-outline: 0 none;
2821      outline: 0 none;
2822      color: #15428b;
2823      text-decoration: none;
2824      border-width: 0; }
2825  /* line 25, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2826  .x-reset .x-datepicker-inner,
2827  .x-reset .x-datepicker-inner td,
2828  .x-reset .x-datepicker-inner th {
2829    border-collapse: separate; }
2830  /* line 29, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2831  .x-reset .x-datepicker-header {
2832    position: relative;
2833    height: 26px;
2834    background-image: none;
2835    background-color: #23427c;
2836    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #264888), color-stop(100%, #1f3a6c));
2837    background-image: -webkit-linear-gradient(top, #264888, #1f3a6c);
2838    background-image: -moz-linear-gradient(top, #264888, #1f3a6c);
2839    background-image: -o-linear-gradient(top, #264888, #1f3a6c);
2840    background-image: -ms-linear-gradient(top, #264888, #1f3a6c);
2841    background-image: linear-gradient(top, #264888, #1f3a6c); }
2842  /* line 42, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2843  .x-reset .x-datepicker-prev,
2844  .x-reset .x-datepicker-next {
2845    position: absolute;
2846    top: 5px;
2847    width: 18px; }
2848    /* line 48, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2849    .x-reset .x-datepicker-prev a,
2850    .x-reset .x-datepicker-next a {
2851      display: block;
2852      width: 16px;
2853      height: 16px;
2854      background-position: top;
2855      background-repeat: no-repeat;
2856      cursor: pointer;
2857      text-decoration: none !important;
2858      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
2859      opacity: 0.7; }
2860      /* line 63, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2861      .x-reset .x-datepicker-prev a:hover,
2862      .x-reset .x-datepicker-next a:hover {
2863        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
2864        opacity: 1; }
2865  /* line 69, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2866  .x-reset .x-datepicker-next {
2867    right: 5px; }
2868    /* line 72, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2869    .x-reset .x-datepicker-next a {
2870      background-image: url('../../resources/themes/images/default/shared/right-btn.gif'); }
2871  /* line 77, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2872  .x-reset .x-datepicker-prev {
2873    left: 5px; }
2874    /* line 80, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2875    .x-reset .x-datepicker-prev a {
2876      background-image: url('../../resources/themes/images/default/shared/left-btn.gif'); }
2877  /* line 86, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2878  .x-reset .x-item-disabled .x-datepicker-prev a:hover,
2879  .x-reset .x-item-disabled .x-datepicker-next a:hover {
2880    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
2881    opacity: 0.6; }
2882  /* line 90, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2883  .x-reset .x-datepicker-month {
2884    padding-top: 3px; }
2885    /* line 103, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2886    .x-reset .x-datepicker-month .x-btn,
2887    .x-reset .x-datepicker-month button,
2888    .x-reset .x-datepicker-month .x-btn-tc,
2889    .x-reset .x-datepicker-month .x-btn-tl,
2890    .x-reset .x-datepicker-month .x-btn-tr,
2891    .x-reset .x-datepicker-month .x-btn-mc,
2892    .x-reset .x-datepicker-month .x-btn-ml,
2893    .x-reset .x-datepicker-month .x-btn-mr,
2894    .x-reset .x-datepicker-month .x-btn-bc,
2895    .x-reset .x-datepicker-month .x-btn-bl,
2896    .x-reset .x-datepicker-month .x-btn-br {
2897      background: transparent !important;
2898      border-width: 0 !important; }
2899    /* line 108, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2900    .x-reset .x-datepicker-month span {
2901      color: #fff !important; }
2902    /* line 112, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2903    .x-reset .x-datepicker-month .x-btn-split-right {
2904      background-image: url('../../resources/themes/images/default/button/s-arrow-light.gif');
2905      padding-right: 12px; }
2906  /* line 118, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2907  .x-reset .x-datepicker-next {
2908    text-align: right; }
2909  /* line 122, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2910  .x-reset .x-datepicker-month {
2911    text-align: center; }
2912    /* line 126, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2913    .x-reset .x-datepicker-month button {
2914      color: white !important; }
2915  /* line 132, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2916  .x-reset table.x-datepicker-inner {
2917    width: 100%;
2918    table-layout: fixed; }
2919    /* line 136, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2920    .x-reset table.x-datepicker-inner th {
2921      width: 25px;
2922      height: 19px;
2923      padding: 0;
2924      color: #233d6d;
2925      font: normal 10px tahoma, arial, verdana, sans-serif;
2926      text-align: right;
2927      border-bottom: 1px solid #b2d1f5;
2928      border-collapse: separate;
2929      background-image: none;
2930      background-color: #dfecfb;
2931      background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #edf4fd), color-stop(100%, #cde1f9));
2932      background-image: -webkit-linear-gradient(top, #edf4fd, #cde1f9);
2933      background-image: -moz-linear-gradient(top, #edf4fd, #cde1f9);
2934      background-image: -o-linear-gradient(top, #edf4fd, #cde1f9);
2935      background-image: -ms-linear-gradient(top, #edf4fd, #cde1f9);
2936      background-image: linear-gradient(top, #edf4fd, #cde1f9);
2937      cursor: default; }
2938      /* line 157, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2939      .x-reset table.x-datepicker-inner th span {
2940        display: block;
2941        padding-right: 7px; }
2942    /* line 163, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2943    .x-reset table.x-datepicker-inner tr {
2944      height: 20px; }
2945    /* line 167, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2946    .x-reset table.x-datepicker-inner td {
2947      border: 1px solid;
2948      height: 17px;
2949      border-color: white;
2950      text-align: right;
2951      padding: 0; }
2952    /* line 175, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2953    .x-reset table.x-datepicker-inner a {
2954      padding-right: 4px;
2955      display: block;
2956      zoom: 1;
2957      font: normal 11px tahoma, arial, verdana, sans-serif;
2958      color: black;
2959      text-decoration: none;
2960      text-align: right; }
2961    /* line 188, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2962    .x-reset table.x-datepicker-inner .x-datepicker-active {
2963      cursor: pointer;
2964      color: black; }
2965    /* line 194, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2966    .x-reset table.x-datepicker-inner .x-datepicker-selected a {
2967      background: repeat-x left top;
2968      background-color: #dae5f3;
2969      border: 1px solid #8db2e3; }
2970    /* line 200, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2971    .x-reset table.x-datepicker-inner .x-datepicker-selected span {
2972      font-weight: bold; }
2973    /* line 206, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2974    .x-reset table.x-datepicker-inner .x-datepicker-today a {
2975      border: 1px solid;
2976      border-color: darkred; }
2977    /* line 214, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2978    .x-reset table.x-datepicker-inner .x-datepicker-prevday a,
2979    .x-reset table.x-datepicker-inner .x-datepicker-nextday a {
2980      text-decoration: none !important;
2981      color: #aaa; }
2982    /* line 221, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2983    .x-reset table.x-datepicker-inner a:hover,
2984    .x-reset table.x-datepicker-inner .x-datepicker-disabled a:hover {
2985      text-decoration: none !important;
2986      color: #000;
2987      background-color: #ddecfe; }
2988    /* line 229, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2989    .x-reset table.x-datepicker-inner .x-datepicker-disabled a {
2990      cursor: default;
2991      background-color: #eee;
2992      color: #bbb; }
2993  /* line 237, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
2994  .x-reset .x-datepicker-footer,
2995  .x-reset .x-monthpicker-buttons {
2996    position: relative;
2997    border-top: 1px solid #b2d1f5;
2998    background-image: none;
2999    background-color: #dfecfb;
3000    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dee8f5), color-stop(49%, #d1dff0), color-stop(51%, #c7d8ed), color-stop(100%, #cbdaee));
3001    background-image: -webkit-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
3002    background-image: -moz-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
3003    background-image: -o-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
3004    background-image: -ms-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
3005    background-image: linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
3006    text-align: center; }
3007    /* line 250, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3008    .x-reset .x-datepicker-footer .x-btn,
3009    .x-reset .x-monthpicker-buttons .x-btn {
3010      position: relative;
3011      margin: 4px; }
3012  /* line 256, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3013  .x-reset .x-item-disabled .x-datepicker-inner a:hover {
3014    background: none; }
3015  /* line 261, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3016  .x-reset .x-datepicker .x-monthpicker {
3017    position: absolute;
3018    left: 0;
3019    top: 0; }
3020  /* line 268, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3021  .x-reset .x-monthpicker {
3022    border: 1px solid #1b376c;
3023    background-color: white; }
3024  /* line 274, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3025  .x-reset .x-monthpicker-months,
3026  .x-reset .x-monthpicker-years {
3027    float: left;
3028    height: 167px;
3029    width: 88px; }
3030  /* line 281, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3031  .x-reset .x-monthpicker-item {
3032    float: left;
3033    margin: 4px 0 5px 0;
3034    font: normal 11px tahoma, arial, verdana, sans-serif;
3035    text-align: center;
3036    vertical-align: middle;
3037    height: 18px;
3038    width: 43px;
3039    border: 0 none; }
3040    /* line 295, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3041    .x-reset .x-monthpicker-item a {
3042      display: block;
3043      margin: 0 5px;
3044      text-decoration: none;
3045      color: #15428b;
3046      border: 1px solid white;
3047      line-height: 17px; }
3048      /* line 308, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3049      .x-reset .x-monthpicker-item a:hover {
3050        background-color: #ddecfe; }
3051      /* line 312, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3052      .x-reset .x-monthpicker-item a.x-monthpicker-selected {
3053        background-color: #dfecfb;
3054        border: 1px solid #8db2e3; }
3055  /* line 319, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3056  .x-reset .x-monthpicker-months {
3057    border-right: 1px solid #1b376c;
3058    width: 87px; }
3059  /* line 324, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3060  .x-reset .x-monthpicker-years .x-monthpicker-item {
3061    width: 44px; }
3062  /* line 328, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3063  .x-reset .x-monthpicker-yearnav {
3064    height: 28px; }
3065    /* line 331, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3066    .x-reset .x-monthpicker-yearnav button {
3067      background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
3068      height: 15px;
3069      width: 15px;
3070      padding: 0;
3071      margin: 6px 12px 5px 15px;
3072      border: 0;
3073      outline: 0 none; }
3074      /* line 339, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3075      .x-reset .x-monthpicker-yearnav button::-moz-focus-inner {
3076        border: 0;
3077        padding: 0; }
3078  /* line 346, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3079  .x-reset .x-monthpicker-yearnav-next {
3080    background-position: 0 -120px; }
3081  /* line 350, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3082  .x-reset .x-monthpicker-yearnav-next-over {
3083    cursor: pointer;
3084    cursor: hand;
3085    background-position: -15px -120px; }
3086  /* line 356, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3087  .x-reset .x-monthpicker-yearnav-prev {
3088    background-position: 0 -105px; }
3089  /* line 360, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3090  .x-reset .x-monthpicker-yearnav-prev-over {
3091    cursor: pointer;
3092    cursor: hand;
3093    background-position: -15px -105px; }
3094  /* line 367, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3095  .x-reset .x-monthpicker-small .x-monthpicker-item {
3096    margin: 2px 0 2px 0; }
3097  /* line 371, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3098  .x-reset .x-monthpicker-small .x-monthpicker-yearnav {
3099    height: 23px; }
3100  /* line 375, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3101  .x-reset .x-monthpicker-small .x-monthpicker-months, .x-reset .x-monthpicker-small .x-monthpicker-years {
3102    height: 136px; }
3103  /* line 385, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3104  .x-reset .x-quirks .x-ie7 .x-monthpicker-buttons .x-btn,
3105  .x-reset .x-quirks .x-ie8 .x-monthpicker-buttons .x-btn {
3106    margin-top: 2px; }
3107  /* line 391, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3108  .x-reset .x-quirks .x-monthpicker-small .x-monthpicker-yearnav button {
3109    margin-top: 3px;
3110    margin-bottom: 3px; }
3111  /* line 397, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3112  .x-reset .x-ie6 .x-monthpicker-small .x-monthpicker-yearnav button {
3113    margin-top: 3px;
3114    margin-bottom: 3px; }
3115  /* line 407, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3116  .x-reset .x-nlg .x-datepicker-header {
3117    background-image: url('../../resources/themes/images/default/datepicker/datepicker-header-bg.gif');
3118    background-repeat: repeat-x;
3119    background-position: top left; }
3120  /* line 416, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3121  .x-reset .x-nlg .x-datepicker-footer,
3122  .x-reset .x-nlg .x-monthpicker-buttons {
3123    background-image: url('../../resources/themes/images/default/datepicker/datepicker-footer-bg.gif');
3124    background-repeat: repeat-x;
3125    background-position: top left; }
3126  /* line 6, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
3127  .x-reset .x-color-picker {
3128    width: 144px;
3129    height: 90px;
3130    cursor: pointer; }
3131  /* line 12, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
3132  .x-reset .x-color-picker a {
3133    border: 1px solid #fff;
3134    float: left;
3135    padding: 2px;
3136    text-decoration: none;
3137    -moz-outline: 0 none;
3138    outline: 0 none;
3139    cursor: pointer; }
3140  /* line 28, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
3141  .x-reset .x-color-picker a:hover,
3142  .x-reset .x-color-picker a.x-color-picker-selected {
3143    border-color: #8bb8f3;
3144    background-color: #deecfd; }
3145  /* line 33, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
3146  .x-reset .x-color-picker em {
3147    display: block;
3148    border: 1px solid #aca899; }
3149  /* line 39, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
3150  .x-reset .x-color-picker em span {
3151    cursor: pointer;
3152    display: block;
3153    height: 10px;
3154    width: 10px;
3155    line-height: 10px; }
3156  /* line 6, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3157  .x-reset .x-menu-body {
3158    user-select: none;
3159    -o-user-select: none;
3160    -ms-user-select: none;
3161    -moz-user-select: -moz-none;
3162    -webkit-user-select: none;
3163    cursor: default;
3164    background: #f0f0f0 !important;
3165    padding: 2px; }
3166  /* line 12, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3167  .x-reset .x-menu-item .x-form-text {
3168    user-select: text;
3169    -webkit-user-select: text;
3170    -o-user-select: text;
3171    -ie-user-select: text;
3172    -moz-user-select: text;
3173    -ie-user-select: text; }
3174  /* line 21, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3175  .x-reset .x-menu-icon-separator {
3176    position: absolute;
3177    top: 0px;
3178    left: 27px;
3179    z-index: 0;
3180    border-left: solid 1px #e0e0e0;
3181    background-color: white;
3182    width: 2px;
3183    overflow: hidden; }
3184  /* line 33, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3185  .x-reset .x-menu-plain .x-menu-icon-separator {
3186    display: none; }
3187  /* line 38, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3188  .x-reset .x-menu-focus {
3189    display: block;
3190    position: absolute;
3191    top: -10px;
3192    left: -10px;
3193    width: 0px;
3194    height: 0px; }
3195  /* line 47, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3196  .x-reset .x-menu-item {
3197    white-space: nowrap;
3198    overflow: hidden;
3199    z-index: 1; }
3200  /* line 53, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3201  .x-reset .x-menu-item-cmp {
3202    margin-bottom: 1px; }
3203  /* line 57, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3204  .x-reset .x-menu-item-link {
3205    display: block;
3206    margin: 1px;
3207    padding: 6px 2px 3px 32px;
3208    text-decoration: none !important;
3209    line-height: 16px;
3210    cursor: default; }
3211  /* line 76, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3212  .x-reset .x-menu-item-icon {
3213    width: 16px;
3214    height: 16px;
3215    position: absolute;
3216    top: 5px;
3217    left: 4px;
3218    background: no-repeat center center; }
3219  /* line 87, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3220  .x-reset .x-menu-item-icon-right {
3221    width: 16px;
3222    height: 16px;
3223    position: absolute;
3224    top: 6px;
3225    right: 4px;
3226    background: no-repeat center center; }
3227  /* line 96, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3228  .x-reset .x-menu-item-text {
3229    font-size: 11px;
3230    color: #222222; }
3231  /* line 102, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3232  .x-reset .x-menu-item-checked .x-menu-item-icon {
3233    background-image: url('../../resources/themes/images/default/menu/checked.gif'); }
3234  /* line 105, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3235  .x-reset .x-menu-item-checked .x-menu-group-icon {
3236    background-image: url('../../resources/themes/images/default/menu/group-checked.gif'); }
3237  /* line 111, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3238  .x-reset .x-menu-item-unchecked .x-menu-item-icon {
3239    background-image: url('../../resources/themes/images/default/menu/unchecked.gif'); }
3240  /* line 114, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3241  .x-reset .x-menu-item-unchecked .x-menu-group-icon {
3242    background-image: none; }
3243  /* line 119, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3244  .x-reset .x-menu-item-separator {
3245    height: 2px;
3246    border-top: solid 1px #e0e0e0;
3247    background-color: white;
3248    margin: 2px 0px;
3249    overflow: hidden; }
3250  /* line 127, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3251  .x-reset .x-menu-item-arrow {
3252    position: absolute;
3253    width: 12px;
3254    height: 9px;
3255    top: 9px;
3256    right: 0px;
3257    background: no-repeat center center;
3258    background-image: url('../../resources/themes/images/default/menu/menu-parent.gif'); }
3259  /* line 137, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3260  .x-reset .x-menu-item-indent {
3261    margin-left: 31px;
3262    /* The 2px is the width of the seperator */ }
3263  /* line 141, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3264  .x-reset .x-menu-item-active {
3265    cursor: pointer; }
3266    /* line 144, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3267    .x-reset .x-menu-item-active .x-menu-item-link {
3268      background-image: none;
3269      background-color: #d9e8fb;
3270      background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7f0fc), color-stop(100%, #c7ddf9));
3271      background-image: -webkit-linear-gradient(top, #e7f0fc, #c7ddf9);
3272      background-image: -moz-linear-gradient(top, #e7f0fc, #c7ddf9);
3273      background-image: -o-linear-gradient(top, #e7f0fc, #c7ddf9);
3274      background-image: -ms-linear-gradient(top, #e7f0fc, #c7ddf9);
3275      background-image: linear-gradient(top, #e7f0fc, #c7ddf9);
3276      margin: 0px;
3277      border: 1px solid #a9cbf5;
3278      cursor: pointer;
3279      -moz-border-radius: 3px;
3280      -webkit-border-radius: 3px;
3281      -o-border-radius: 3px;
3282      -ms-border-radius: 3px;
3283      -khtml-border-radius: 3px;
3284      border-radius: 3px; }
3285  /* line 153, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3286  .x-reset .x-menu-item-disabled {
3287    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
3288    opacity: 0.5; }
3289  /* line 160, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3290  .x-reset .x-ie .x-menu-item-disabled .x-menu-item-icon {
3291    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
3292    opacity: 0.5; }
3293  /* line 164, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3294  .x-reset .x-ie .x-menu-item-disabled .x-menu-item-text {
3295    background-color: transparent; }
3296  /* line 171, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3297  .x-strict .x-ie7m .x-reset .x-ie .x-menu-icon-separator {
3298    width: 1px; }
3299  /* line 175, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3300  .x-strict .x-ie7m .x-reset .x-ie .x-menu-item-separator {
3301    height: 1px; }
3302  /* line 184, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3303  .x-reset .x-ie6 .x-menu-item-link,
3304  .x-reset .x-ie7 .x-menu-item-link,
3305  .x-reset .x-quirks .x-ie8 .x-menu-item-link {
3306    padding-bottom: 2px; }
3307  /* line 192, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3308  .x-reset .x-nlg .x-menu-item-active .x-menu-item-link {
3309    background: #d9e8fb repeat-x left top;
3310    background-image: url('../../resources/themes/images/default/menu/menu-item-active-bg.gif'); }
3311  /* line 199, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3312  .x-reset .x-menu-date-item {
3313    border-color: #99BBE8; }
3314  /* line 8, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3315  .x-reset .x-panel .x-grid-body {
3316    background: white;
3317    border-color: #99bce8;
3318    border-style: solid;
3319    border-width: 1px;
3320    border-top-color: #c5c5c5; }
3321  /* line 17, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3322  .x-reset .x-panel .x-grid-header-ct-hidden {
3323    visibility: hidden; }
3324  /* line 22, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3325  .x-reset .x-grid-empty {
3326    padding: 10px;
3327    color: gray;
3328    font: normal 11px tahoma, arial, helvetica, sans-serif; }
3329  /* line 28, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3330  .x-reset .x-grid-header-hidden .x-grid-body {
3331    border-top-color: #99bce8 !important; }
3332  /* line 32, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3333  .x-reset .x-grid-view {
3334    overflow: hidden;
3335    position: relative; }
3336  /* line 38, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3337  .x-reset .x-grid-table {
3338    table-layout: fixed;
3339    border-collapse: separate; }
3340  /* line 45, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3341  .x-reset .x-autowidth-table table.x-grid-table {
3342    table-layout: auto;
3343    width: auto!important; }
3344  /* line 50, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3345  .x-reset .x-grid-row .x-grid-table {
3346    border-collapse: collapse; }
3347  /* line 54, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3348  .x-reset .x-grid-locked .x-grid-inner-locked {
3349    border-width: 0 1px 0 0 !important;
3350    border-style: solid; }
3351  /* line 59, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3352  .x-reset .x-grid-header-ct {
3353    cursor: default;
3354    zoom: 1;
3355    padding: 0;
3356    border: 1px solid #99bce8;
3357    border-bottom-color: #c5c5c5; }
3358  /* line 73, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3359  .x-reset .x-accordion-item .x-grid-header-ct {
3360    border-width: 0 0 1px 0!important; }
3361  /* line 77, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3362  .x-reset .x-column-header {
3363    padding: 0;
3364    position: absolute;
3365    overflow: hidden;
3366    border-right: 1px solid #c5c5c5;
3367    border-left: 0 none;
3368    border-top: 0 none;
3369    border-bottom: 0 none;
3370    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
3371    color: null;
3372    font: normal 11px tahoma, arial, verdana, sans-serif; }
3373  /* line 99, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3374  .x-reset .x-group-header {
3375    padding: 0;
3376    border-left-width: 0; }
3377  /* line 103, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3378  .x-reset .x-group-sub-header {
3379    background: transparent;
3380    border-top: 1px solid #c5c5c5;
3381    border-left-width: 0; }
3382  /* line 109, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3383  .x-reset .x-column-header-inner {
3384    zoom: 1;
3385    position: relative;
3386    white-space: nowrap;
3387    line-height: 15px;
3388    padding: 3px 6px 4px; }
3389    /* line 116, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3390    .x-reset .x-column-header-inner .x-column-header-text {
3391      white-space: nowrap; }
3392  /* line 123, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3393  .x-reset .x-column-header-over,
3394  .x-reset .x-column-header-sort-ASC,
3395  .x-reset .x-column-header-sort-DESC {
3396    border-left-color: #aaccf6;
3397    border-right-color: #aaccf6; }
3398  /* line 135, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3399  .x-reset .x-nlg .x-grid-header-ct,
3400  .x-reset .x-nlg .x-column-header {
3401    background: repeat-x 0 top;
3402    background-image: url('../../resources/themes/images/default/grid/column-header-bg.gif'); }
3403  /* line 142, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3404  .x-reset .x-nlg .x-column-header-over,
3405  .x-reset .x-nlg .x-column-header-sort-ASC,
3406  .x-reset .x-nlg .x-column-header-sort-DESC {
3407    background: #ebf3fd repeat-x 0 top;
3408    background-image: url('../../resources/themes/images/default/grid/column-header-over-bg.gif'); }
3409  /* line 149, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3410  .x-reset .x-column-header-trigger {
3411    display: none;
3412    height: 100%;
3413    width: 14px;
3414    background: no-repeat left center;
3415    background-color: #c3daf9;
3416    background-image: url('../../resources/themes/images/default/grid/grid3-hd-btn.gif');
3417    position: absolute;
3418    right: 0;
3419    top: 0;
3420    z-index: 2;
3421    cursor: pointer; }
3422  /* line 164, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3423  .x-reset .x-column-header-over .x-column-header-trigger, .x-reset .x-column-header-open .x-column-header-trigger {
3424    display: block; }
3425  /* line 169, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3426  .x-reset .x-column-header-align-right {
3427    text-align: right; }
3428    /* line 172, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3429    .x-reset .x-column-header-align-right .x-column-header-text {
3430      padding-right: 0.5ex;
3431      margin-right: 6px; }
3432  /* line 177, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3433  .x-reset .x-column-header-align-center {
3434    text-align: center; }
3435  /* line 180, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3436  .x-reset .x-column-header-align-left {
3437    text-align: left; }
3438  /* line 185, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3439  .x-reset .x-column-header-sort-ASC .x-column-header-text {
3440    padding-right: 16px;
3441    background: no-repeat right 6px;
3442    background-image: url('../../resources/themes/images/default/grid/sort_asc.gif'); }
3443  /* line 190, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3444  .x-reset .x-column-header-sort-DESC .x-column-header-text {
3445    padding-right: 16px;
3446    background: no-repeat right 6px;
3447    background-image: url('../../resources/themes/images/default/grid/sort_desc.gif'); }
3448  /* line 197, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3449  .x-reset .x-grid-row {
3450    vertical-align: top; }
3451    /* line 199, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3452    .x-reset .x-grid-row .x-grid-cell {
3453      color: null;
3454      font: normal 11px/15px tahoma, arial, verdana, sans-serif;
3455      background-color: white;
3456      border-color: #ededed;
3457      border-style: solid;
3458      border-top-color: #fafafa;
3459      border-width: 0; }
3460  /* line 212, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3461  .x-reset .x-grid-with-row-lines .x-grid-cell {
3462    border-width: 1px 0; }
3463  /* line 216, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3464  .x-reset .x-grid-rowwrap-div {
3465    border-width: 1px 0;
3466    border-color: #ededed;
3467    border-style: solid;
3468    border-top-color: #fafafa;
3469    overflow: hidden; }
3470  /* line 226, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3471  .x-reset .x-grid-row-alt .x-grid-cell,
3472  .x-reset .x-grid-row-alt .x-grid-rowwrap-div {
3473    background-color: #fafafa; }
3474  /* line 231, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3475  .x-reset .x-grid-row-over .x-grid-cell,
3476  .x-reset .x-grid-row-over .x-grid-rowwrap-div {
3477    border-color: #dddddd;
3478    background-color: #efefef; }
3479  /* line 238, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3480  .x-reset .x-grid-row-focused .x-grid-cell,
3481  .x-reset .x-grid-row-focused .x-grid-rowwrap-div {
3482    border-color: #dddddd;
3483    background-color: #efefef; }
3484  /* line 245, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3485  .x-reset .x-grid-row-selected .x-grid-cell,
3486  .x-reset .x-grid-row-selected .x-grid-rowwrap-div {
3487    border-style: dotted;
3488    border-color: #a3bae9;
3489    background-color: #dfe8f6 !important; }
3490  /* line 254, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3491  .x-reset .x-grid-rowwrap-div .x-grid-cell,
3492  .x-reset .x-grid-rowwrap-div .x-grid-cell-inner {
3493    border-width: 0;
3494    background: transparent; }
3495  /* line 261, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3496  .x-reset .x-grid-row-body-hidden {
3497    display: none; }
3498  /* line 265, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3499  .x-reset .x-grid-rowbody {
3500    font: normal 11px/13px tahoma, arial, verdana, sans-serif;
3501    padding: 4px; }
3502    /* line 270, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3503    .x-reset .x-grid-rowbody p {
3504      margin: 5px 5px 10px 5px; }
3505  /* line 276, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3506  .x-reset .x-grid-cell {
3507    overflow: hidden; }
3508  /* line 280, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3509  .x-reset .x-grid-cell-inner {
3510    overflow: hidden;
3511    -o-text-overflow: ellipsis;
3512    text-overflow: ellipsis;
3513    padding: 2px 6px 3px;
3514    white-space: nowrap; }
3515  /* line 291, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3516  .x-reset .x-grid-with-row-lines .x-grid-cell-inner {
3517    line-height: 13px;
3518    padding-bottom: 4px; }
3519  /* line 297, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3520  .x-reset .x-action-col-cell .x-grid-cell-inner {
3521    line-height: 0;
3522    padding: 2px; }
3523  /* line 302, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3524  .x-reset .x-action-col-cell .x-item-disabled {
3525    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
3526    opacity: 0.3; }
3527  /* line 306, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3528  .x-reset .x-grid-with-row-lines .x-action-col-cell .x-grid-cell-inner {
3529    padding-top: 1px; }
3530  /* line 310, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3531  .x-reset .x-grid-row .x-grid-cell-special {
3532    padding: 0;
3533    border-right: 1px solid #d0d0d0;
3534    background-image: none;
3535    background-color: #f6f6f6;
3536    background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9));
3537    background-image: -webkit-linear-gradient(left, #f6f6f6, #e9e9e9);
3538    background-image: -moz-linear-gradient(left, #f6f6f6, #e9e9e9);
3539    background-image: -o-linear-gradient(left, #f6f6f6, #e9e9e9);
3540    background-image: -ms-linear-gradient(left, #f6f6f6, #e9e9e9);
3541    background-image: linear-gradient(left, #f6f6f6, #e9e9e9); }
3542  /* line 316, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3543  .x-reset .x-grid-row .x-grid-cell-row-checker {
3544    vertical-align: middle; }
3545  /* line 330, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3546  .x-reset .x-ie6 .x-grid-header-row,
3547  .x-reset .x-ie7 .x-grid-header-row,
3548  .x-reset .x-quirks .x-ie8 .x-grid-header-row {
3549    position: absolute; }
3550  /* line 335, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3551  .x-reset .x-grid-row-selected .x-grid-cell-special {
3552    border-right: 1px solid #aaccf6;
3553    background-image: none;
3554    background-color: #dfe8f6;
3555    background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dfe8f6), color-stop(100%, #cbdaf0));
3556    background-image: -webkit-linear-gradient(left, #dfe8f6, #cbdaf0);
3557    background-image: -moz-linear-gradient(left, #dfe8f6, #cbdaf0);
3558    background-image: -o-linear-gradient(left, #dfe8f6, #cbdaf0);
3559    background-image: -ms-linear-gradient(left, #dfe8f6, #cbdaf0);
3560    background-image: linear-gradient(left, #dfe8f6, #cbdaf0); }
3561  /* line 341, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3562  .x-reset .x-grid-dirty-cell {
3563    background-image: url('../../resources/themes/images/default/grid/dirty.gif');
3564    background-position: 0 0;
3565    background-repeat: no-repeat; }
3566  /* line 347, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3567  .x-reset .x-grid-cell-selected {
3568    background-color: #B8CFEE !important; }
3569  /* line 353, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3570  .x-reset .x-nlg .x-grid-cell-special {
3571    background-repeat: repeat-y;
3572    background-position: top right; }
3573  /* line 359, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3574  .x-reset .x-nlg .x-grid-row .x-grid-cell-special,
3575  .x-reset .x-nlg .x-grid-row-over .x-grid-cell-special {
3576    background-image: url('../../resources/themes/images/default/grid/cell-special-bg.gif'); }
3577  /* line 365, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3578  .x-reset .x-nlg .x-grid-row-focused .x-grid-cell-special,
3579  .x-reset .x-nlg .x-grid-row-selected .x-grid-cell-special {
3580    background-image: url('../../resources/themes/images/default/grid/cell-special-selected-bg.gif'); }
3581  /* line 371, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3582  .x-reset .x-grid-with-col-lines .x-grid-cell {
3583    padding-right: 0;
3584    border-right: 1px solid #d0d0d0; }
3585  /* line 378, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3586  .x-reset .x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
3587  .x-reset .x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
3588    padding-left: 12px;
3589    background-image: url('../../resources/themes/images/default/grid/property-cell-bg.gif');
3590    background-repeat: no-repeat;
3591    background-position: -16px 2px; }
3592  /* line 388, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3593  .x-reset .x-grid-with-row-lines.x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
3594  .x-reset .x-grid-with-row-lines.x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
3595    background-position: -16px 1px; }
3596  /* line 394, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3597  .x-reset .x-quirks .x-ie .x-grid-row .x-grid-property-name .x-grid-cell-inner {
3598    background-position: -16px 2px; }
3599  /* line 399, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3600  .x-reset .x-unselectable {
3601    user-select: none;
3602    -o-user-select: none;
3603    -ms-user-select: none;
3604    -moz-user-select: -moz-none;
3605    -webkit-user-select: none;
3606    cursor: default; }
3607  /* line 403, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3608  .x-reset .x-grid-row-body-hidden {
3609    display: none; }
3610  /* line 407, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3611  .x-reset .x-grid-group-collapsed {
3612    display: none; }
3613  /* line 413, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3614  .x-reset .x-grid-view .x-grid-td-expander {
3615    vertical-align: top; }
3616  /* line 418, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3617  .x-reset .x-grid-td-expander {
3618    background: repeat-y right transparent; }
3619  /* line 424, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3620  .x-reset .x-grid-view .x-grid-td-expander .x-grid-cell-inner {
3621    padding: 0 !important; }
3622  /* line 430, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3623  .x-reset .x-grid-row-expander {
3624    background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
3625    background-color: transparent;
3626    width: 9px;
3627    height: 13px;
3628    margin-left: 3px;
3629    background-repeat: no-repeat;
3630    background-position: 0 -2px; }
3631  /* line 444, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3632  .x-reset .x-grid-row-collapsed .x-grid-row-expander {
3633    background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
3634  /* line 449, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3635  .x-reset .x-grid-resize-marker {
3636    position: absolute;
3637    z-index: 5;
3638    top: 0;
3639    width: 1px;
3640    background-color: #0f0f0f; }
3641  /* line 459, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3642  .x-reset .col-move-top, .x-reset .col-move-bottom {
3643    width: 9px;
3644    height: 9px;
3645    position: absolute;
3646    top: 0;
3647    line-height: 0;
3648    font-size: 0;
3649    overflow: hidden;
3650    z-index: 20000;
3651    background: no-repeat left top transparent; }
3652  /* line 471, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3653  .x-reset .col-move-top {
3654    background-image: url('../../resources/themes/images/default/grid/col-move-top.gif'); }
3655  /* line 475, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3656  .x-reset .col-move-bottom {
3657    background-image: url('../../resources/themes/images/default/grid/col-move-bottom.gif'); }
3658  /* line 480, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3659  .x-reset .x-tbar-page-number {
3660    width: 30px; }
3661  /* line 487, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3662  .x-reset .x-grid-group,
3663  .x-reset .x-grid-group-body,
3664  .x-reset .x-grid-group-hd {
3665    zoom: 1; }
3666  /* line 491, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3667  .x-reset .x-grid-group-hd {
3668    padding-top: 6px; }
3669    /* line 494, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3670    .x-reset .x-grid-group-hd .x-grid-cell-inner {
3671      padding: 10px 4px 4px 4px;
3672      background: white;
3673      border-width: 0 0 2px 0;
3674      border-style: solid;
3675      border-color: #99bbe8;
3676      cursor: pointer; }
3677  /* line 508, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3678  .x-reset .x-grid-group-hd-collapsible .x-grid-group-title {
3679    background: transparent no-repeat 0 -1px;
3680    background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
3681    padding: 0 0 0 14px; }
3682  /* line 515, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3683  .x-reset .x-grid-group-title {
3684    color: #3764a0;
3685    font: bold 11px tahoma, arial, verdana, sans-serif; }
3686  /* line 521, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3687  .x-reset .x-grid-group-hd-collapsed .x-grid-group-title {
3688    background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
3689  /* line 526, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3690  .x-reset .x-grid-group-collapsed .x-grid-group-body {
3691    display: none; }
3692  /* line 530, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3693  .x-reset .x-grid-group-collapsed .x-grid-group-title {
3694    background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
3695  /* line 534, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3696  .x-reset .x-group-by-icon {
3697    background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
3698  /* line 538, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3699  .x-reset .x-show-groups-icon {
3700    background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
3701  /* line 542, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3702  .x-reset .x-column-header-checkbox .x-column-header-inner {
3703    padding: 0; }
3704  /* line 546, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3705  .x-reset .x-grid-cell-special .x-grid-cell-inner {
3706    padding-left: 4px;
3707    padding-right: 4px; }
3708  /* line 552, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3709  .x-reset .x-grid-row-checker,
3710  .x-reset .x-column-header-checkbox .x-column-header-text {
3711    height: 14px;
3712    width: 14px;
3713    line-height: 0;
3714    background-image: url('../../resources/themes/images/default/grid/unchecked.gif');
3715    background-position: -1px -1px;
3716    background-repeat: no-repeat;
3717    background-color: transparent; }
3718  /* line 564, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3719  .x-reset .x-column-header-checkbox .x-column-header-text {
3720    display: block;
3721    margin: 0 5px; }
3722  /* line 573, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3723  .x-reset .x-quirks .x-ie .x-grid-row-checker,
3724  .x-reset .x-quirks .x-ie .x-column-header-checkbox .x-column-header-text, .x-reset .x-ie7m .x-grid-row-checker, .x-reset .x-ie7m .x-column-header-checkbox .x-column-header-text {
3725    line-height: 14px; }
3726  /* line 579, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3727  .x-reset .x-grid-hd-checker-on .x-column-header-text {
3728    background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
3729  /* line 583, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3730  .x-reset .x-grid-cell-row-checker .x-grid-cell-inner {
3731    padding-top: 4px;
3732    padding-bottom: 2px;
3733    line-height: 14px; }
3734  /* line 588, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3735  .x-reset .x-grid-with-row-lines .x-grid-cell-row-checker .x-grid-cell-inner {
3736    padding-top: 3px; }
3737  /* line 591, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3738  .x-reset .x-grid-row-checker {
3739    margin-left: 1px;
3740    background-position: 50% -2px; }
3741  /* line 598, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3742  .x-reset .x-grid-row-selected .x-grid-row-checker,
3743  .x-reset .x-grid-row-checked .x-grid-row-checker {
3744    background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
3745  /* line 603, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3746  .x-reset .x-tbar-page-first {
3747    background-image: url('../../resources/themes/images/default/grid/page-first.gif') !important; }
3748  /* line 607, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3749  .x-reset .x-tbar-loading {
3750    background-image: url('../../resources/themes/images/default/grid/refresh.gif') !important; }
3751  /* line 611, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3752  .x-reset .x-tbar-page-last {
3753    background-image: url('../../resources/themes/images/default/grid/page-last.gif') !important; }
3754  /* line 615, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3755  .x-reset .x-tbar-page-next {
3756    background-image: url('../../resources/themes/images/default/grid/page-next.gif') !important; }
3757  /* line 619, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3758  .x-reset .x-tbar-page-prev {
3759    background-image: url('../../resources/themes/images/default/grid/page-prev.gif') !important; }
3760  /* line 624, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3761  .x-reset .x-item-disabled .x-tbar-loading {
3762    background-image: url('../../resources/themes/images/default/grid/refresh-disabled.gif') !important; }
3763  /* line 628, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3764  .x-reset .x-item-disabled .x-tbar-page-first {
3765    background-image: url('../../resources/themes/images/default/grid/page-first-disabled.gif') !important; }
3766  /* line 632, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3767  .x-reset .x-item-disabled .x-tbar-page-last {
3768    background-image: url('../../resources/themes/images/default/grid/page-last-disabled.gif') !important; }
3769  /* line 636, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3770  .x-reset .x-item-disabled .x-tbar-page-next {
3771    background-image: url('../../resources/themes/images/default/grid/page-next-disabled.gif') !important; }
3772  /* line 640, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3773  .x-reset .x-item-disabled .x-tbar-page-prev {
3774    background-image: url('../../resources/themes/images/default/grid/page-prev-disabled.gif') !important; }
3775  /* line 646, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3776  .x-reset .x-hmenu-sort-asc .x-menu-item-icon {
3777    background-image: url('../../resources/themes/images/default/grid/hmenu-asc.gif'); }
3778  /* line 650, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3779  .x-reset .x-hmenu-sort-desc .x-menu-item-icon {
3780    background-image: url('../../resources/themes/images/default/grid/hmenu-desc.gif'); }
3781  /* line 654, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3782  .x-reset .x-hmenu-lock .x-menu-item-icon {
3783    background-image: url('../../resources/themes/images/default/grid/hmenu-lock.gif'); }
3784  /* line 658, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3785  .x-reset .x-hmenu-unlock .x-menu-item-icon {
3786    background-image: url('../../resources/themes/images/default/grid/hmenu-unlock.gif'); }
3787  /* line 662, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3788  .x-reset .x-group-by-icon {
3789    background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
3790  /* line 666, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3791  .x-reset .x-cols-icon .x-menu-item-icon {
3792    background-image: url('../../resources/themes/images/default/grid/columns.gif'); }
3793  /* line 670, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3794  .x-reset .x-show-groups-icon {
3795    background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
3796  /* line 675, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3797  .x-reset .x-grid-drop-indicator {
3798    position: absolute;
3799    height: 1px;
3800    line-height: 0px;
3801    background-color: #77BC71;
3802    overflow: visible; }
3803    /* line 682, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3804    .x-reset .x-grid-drop-indicator .x-grid-drop-indicator-left {
3805      position: absolute;
3806      top: -8px;
3807      left: -12px;
3808      background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.png');
3809      height: 16px;
3810      width: 16px; }
3811    /* line 691, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3812    .x-reset .x-grid-drop-indicator .x-grid-drop-indicator-right {
3813      position: absolute;
3814      top: -8px;
3815      right: -11px;
3816      background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.png');
3817      height: 16px;
3818      width: 16px; }
3819  /* line 702, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3820  .x-reset .x-ie6 .x-grid-drop-indicator-left {
3821    background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.gif'); }
3822  /* line 706, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3823  .x-reset .x-ie6 .x-grid-drop-indicator-right {
3824    background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.gif'); }
3825  /* line 714, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3826  .x-reset .x-grid-editor .x-form-text {
3827    padding: 0 4px; }
3828  /* line 717, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3829  .x-reset .x-grid-editor .x-form-cb-wrap {
3830    padding-top: 3px; }
3831  /* line 723, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3832  .x-reset .x-grid-row-editor {
3833    position: absolute !important;
3834    z-index: 1;
3835    zoom: 1;
3836    overflow: visible !important; }
3837    /* line 729, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3838    .x-reset .x-grid-row-editor .x-form-text {
3839      padding: 0 2px; }
3840    /* line 732, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3841    .x-reset .x-grid-row-editor .x-form-cb-wrap {
3842      padding-top: 0; }
3843    /* line 735, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3844    .x-reset .x-grid-row-editor .x-form-checkbox {
3845      margin-left: -4px; }
3846    /* line 738, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3847    .x-reset .x-grid-row-editor .x-form-display-field {
3848      font: normal 11px/15px tahoma, arial, verdana, sans-serif;
3849      padding-top: 0;
3850      padding-left: 2px; }
3851    /* line 744, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3852    .x-reset .x-grid-row-editor .x-panel-body {
3853      background-color: #eaf1fb;
3854      border-top: 1px solid #99bce8 !important;
3855      border-bottom: 1px solid #99bce8 !important; }
3856  /* line 754, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3857  .x-reset .x-grid-editor .x-form-cb-wrap, .x-reset .x-grid-row-editor .x-form-cb-wrap {
3858    text-align: center; }
3859  /* line 757, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3860  .x-reset .x-grid-editor .x-form-trigger, .x-reset .x-grid-row-editor .x-form-trigger {
3861    height: 19px; }
3862  /* line 761, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3863  .x-reset .x-grid-editor .x-form-trigger-wrap .x-form-spinner-up, .x-reset .x-grid-editor .x-form-trigger-wrap .x-form-spinner-down, .x-reset .x-grid-row-editor .x-form-trigger-wrap .x-form-spinner-up, .x-reset .x-grid-row-editor .x-form-trigger-wrap .x-form-spinner-down {
3864    background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
3865    height: 10px !important; }
3866  /* line 768, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3867  .x-reset .x-grid-editor .x-form-text, .x-reset .x-grid-row-editor .x-form-text {
3868    font: normal 11px/15px tahoma, arial, verdana, sans-serif;
3869    height: 18px; }
3870  /* line 776, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3871  .x-reset .x-border-box .x-grid-editor .x-form-trigger,
3872  .x-reset .x-border-box .x-grid-row-editor .x-form-trigger {
3873    height: 20px; }
3874  /* line 779, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3875  .x-reset .x-border-box .x-grid-editor .x-form-text,
3876  .x-reset .x-border-box .x-grid-row-editor .x-form-text {
3877    height: 20px;
3878    padding-bottom: 1px; }
3879  /* line 787, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3880  .x-reset .x-ie .x-grid-editor .x-form-text {
3881    padding-left: 5px; }
3882  /* line 790, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3883  .x-reset .x-ie .x-grid-row-editor .x-form-text {
3884    padding-left: 3px; }
3885  /* line 796, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3886  .x-reset .x-ie8m .x-grid-editor .x-form-text,
3887  .x-reset .x-ie8m .x-grid-row-editor .x-form-text {
3888    padding-top: 1px; }
3889  /* line 803, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3890  .x-reset .x-strict .x-ie6 .x-grid-editor .x-form-text,
3891  .x-reset .x-strict .x-ie6 .x-grid-row-editor .x-form-text,
3892  .x-reset .x-strict .x-ie7 .x-grid-editor .x-form-text,
3893  .x-reset .x-strict .x-ie7 .x-grid-row-editor .x-form-text {
3894    height: 17px; }
3895  /* line 809, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3896  .x-reset .x-quirks .x-ie9 .x-grid-editor .x-form-text, .x-reset .x-quirks .x-ie9 .x-grid-row-editor .x-form-text {
3897    line-height: 17px; }
3898  /* line 828, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3899  .x-reset .x-grid-row-editor-buttons {
3900    background-color: #eaf1fb;
3901    position: absolute;
3902    bottom: -31px;
3903    padding: 4px;
3904    height: 32px; }
3905    /* line 835, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3906    .x-strict .x-ie7m .x-reset .x-grid-row-editor-buttons {
3907      width: 192px;
3908      height: 24px; }
3909  /* line 845, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3910  .x-reset .x-grid-row-editor-buttons-ml,
3911  .x-reset .x-grid-row-editor-buttons-mr,
3912  .x-reset .x-grid-row-editor-buttons-bl,
3913  .x-reset .x-grid-row-editor-buttons-br,
3914  .x-reset .x-grid-row-editor-buttons-bc {
3915    position: absolute;
3916    overflow: hidden; }
3917  /* line 851, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3918  .x-reset .x-grid-row-editor-buttons-bl,
3919  .x-reset .x-grid-row-editor-buttons-br {
3920    width: 4px;
3921    height: 4px;
3922    bottom: 0px;
3923    background-image: url('../../resources/themes/images/default/panel/panel-default-framed-corners.gif'); }
3924  /* line 857, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3925  .x-reset .x-grid-row-editor-buttons-bl {
3926    left: 0px;
3927    background-position: 0px -16px; }
3928  /* line 861, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3929  .x-reset .x-grid-row-editor-buttons-br {
3930    right: 0px;
3931    background-position: 0px -20px; }
3932  /* line 866, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3933  .x-reset .x-grid-row-editor-buttons-bc {
3934    position: absolute;
3935    left: 4px;
3936    bottom: 0px;
3937    width: 192px;
3938    height: 1px;
3939    background-color: #99bce8; }
3940  /* line 876, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3941  .x-reset .x-grid-row-editor-buttons-ml,
3942  .x-reset .x-grid-row-editor-buttons-mr {
3943    height: 27px;
3944    width: 1px;
3945    top: 1px;
3946    background-color: #99bce8; }
3947  /* line 882, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3948  .x-reset .x-grid-row-editor-buttons-ml {
3949    left: 0px; }
3950  /* line 885, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3951  .x-reset .x-grid-row-editor-buttons-mr {
3952    background-position: 0px -20px;
3953    right: 0px; }
3954  /* line 891, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3955  .x-reset .x-grid-row-editor-errors ul {
3956    margin-left: 5px; }
3957  /* line 894, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3958  .x-reset .x-grid-row-editor-errors li {
3959    list-style: disc;
3960    margin-left: 15px; }
3961  /* line 9, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
3962  .x-reset .x-webkit *:focus {
3963    outline: none !important; }
3964  /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
3965  .x-reset .x-form-item {
3966    vertical-align: top;
3967    table-layout: fixed; }
3968  /* line 26, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
3969  .x-reset .x-autocontainer-form-item,
3970  .x-reset .x-anchor-form-item,
3971  .x-reset .x-vbox-form-item,
3972  .x-reset .x-checkboxgroup-form-item,
3973  .x-reset .x-table-form-item {
3974    margin-bottom: 5px; }
3975  /* line 31, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
3976  .x-reset .x-form-layout-table {
3977    border-collapse: separate;
3978    border-spacing: 0 2px; }
3979  /* line 37, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
3980  .x-reset .x-form-item-body {
3981    position: relative; }
3982  /* line 42, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
3983  .x-reset .x-form-form-item td {
3984    border-top: 1px solid transparent; }
3985  /* line 51, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
3986  .x-reset .x-ie6 .x-form-layout-table {
3987    border-collapse: collapse;
3988    border-spacing: 0; }
3989  /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
3990  .x-reset .x-ie6 .x-form-form-item td {
3991    border-top-width: 0; }
3992  /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
3993  .x-reset .x-ie6 td.x-form-item-pad {
3994    height: 5px; }
3995  /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
3996  .x-reset .x-editor .x-form-item-body {
3997    padding-bottom: 0; }
3998  /* line 72, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
3999  .x-reset .x-form-item-label {
4000    display: block;
4001    padding: 3px 0 0;
4002    font-size: 12px;
4003    user-select: none;
4004    -o-user-select: none;
4005    -ms-user-select: none;
4006    -moz-user-select: -moz-none;
4007    -webkit-user-select: none;
4008    cursor: default; }
4009  /* line 79, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4010  .x-reset .x-form-item-label-top {
4011    display: block;
4012    zoom: 1;
4013    padding: 0 0 5px 0; }
4014  /* line 85, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4015  .x-reset .x-form-item-label-right {
4016    text-align: right; }
4017  /* line 89, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4018  .x-reset .x-form-invalid-under {
4019    padding: 2px 2px 2px 18px;
4020    color: #c0272b;
4021    font: normal 11px tahoma, arial, verdana, sans-serif;
4022    line-height: 16px;
4023    background: no-repeat 0 2px;
4024    background-image: url('../../resources/themes/images/default/form/exclamation.gif'); }
4025  /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4026  .x-reset .x-form-invalid-icon {
4027    width: 18px;
4028    height: 14px;
4029    background: no-repeat center center;
4030    background-image: url('../../resources/themes/images/default/form/exclamation.gif');
4031    overflow: hidden; }
4032    /* line 106, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4033    .x-reset .x-form-invalid-icon ul {
4034      display: block;
4035      width: 18px; }
4036      /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4037      .x-reset .x-form-invalid-icon ul li {
4038        /* prevent inner elements from interfering with QuickTip hovering */
4039        display: none; }
4040  /* line 117, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4041  .x-reset .x-lbl-top-err-icon {
4042    margin-bottom: 4px; }
4043  /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4044  .x-reset .x-form-field,
4045  .x-reset .x-form-display-field {
4046    margin: 0 0 0 0;
4047    font: normal 12px tahoma, arial, verdana, sans-serif;
4048    color: black; }
4049  /* line 14, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4050  .x-reset .x-form-item-hidden {
4051    margin: 0; }
4052  /* line 19, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4053  .x-reset .x-form-text,
4054  .x-reset textarea.x-form-field {
4055    padding: 1px 3px;
4056    background: repeat-x 0 0;
4057    border: 1px solid;
4058    background-color: white;
4059    background-image: url('../../resources/themes/images/default/form/text-bg.gif');
4060    border-color: #b5b8c8; }
4061  /* line 36, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4062  .x-reset .x-form-text {
4063    height: 18px;
4064    line-height: 15px;
4065    vertical-align: top; }
4066  /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4067  .x-reset .x-ie8m .x-form-text {
4068    line-height: 15px; }
4069  /* line 48, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4070  .x-reset .x-border-box .x-form-text {
4071    height: 22px; }
4072  /* line 52, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4073  .x-reset textarea.x-form-field {
4074    color: black;
4075    overflow: auto;
4076    height: auto;
4077    line-height: normal;
4078    background: repeat-x 0 0;
4079    background-color: white;
4080    background-image: url('../../resources/themes/images/default/form/text-bg.gif');
4081    resize: none; }
4082  /* line 65, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4083  .x-reset .x-border-box textarea.x-form-field {
4084    height: auto; }
4085  /* line 76, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4086  .x-reset .x-form-focus,
4087  .x-reset textarea.x-form-focus {
4088    border-color: #7eadd9; }
4089  /* line 81, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4090  .x-reset .x-form-invalid-field,
4091  .x-reset textarea.x-form-invalid-field {
4092    background-color: white;
4093    background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
4094    background-repeat: repeat-x;
4095    background-position: bottom;
4096    border-color: #cc3300; }
4097  /* line 91, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4098  .x-reset .x-form-item {
4099    font: normal 12px tahoma, arial, verdana, sans-serif; }
4100  /* line 95, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4101  .x-reset .x-form-empty-field, .x-reset textarea.x-form-empty-field {
4102    color: gray; }
4103  /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4104  .x-reset .x-webkit .x-form-empty-field {
4105    line-height: 15px; }
4106  /* line 105, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4107  .x-reset .x-form-display-field {
4108    padding-top: 3px; }
4109  /* line 121, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4110  .x-reset .x-quirks .x-ie9p .x-form-text,
4111  .x-reset .x-ie7m .x-form-text {
4112    margin-top: -1px;
4113    margin-bottom: -1px; }
4114  /* line 126, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4115  .x-reset .x-ie .x-form-file {
4116    height: 23px;
4117    line-height: 18px;
4118    vertical-align: middle; }
4119  /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4120  .x-reset .x-field-default-toolbar .x-form-text {
4121    height: 16px; }
4122  /* line 139, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4123  .x-reset .x-border-box .x-field-default-toolbar .x-form-text {
4124    height: 20px; }
4125  /* line 143, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4126  .x-reset .x-field-default-toolbar .x-form-item-label-left {
4127    padding-left: 4px; }
4128  /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4129  .x-reset .x-fieldset {
4130    border: 1px solid #b5b8c8;
4131    padding: 10px;
4132    margin-bottom: 10px;
4133    display: block;
4134    /* preserve margins in IE */
4135    position: relative; }
4136  /* line 18, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4137  .x-reset .x-ie .x-fieldset {
4138    padding-top: 0; }
4139    /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4140    .x-reset .x-ie .x-fieldset .x-fieldset-body {
4141      padding-top: 10px; }
4142  /* line 25, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4143  .x-reset .x-fieldset-header-checkbox {
4144    line-height: 14px; }
4145  /* line 29, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4146  .x-reset .x-fieldset-header {
4147    font: 11px/14px bold tahoma, arial, verdana, sans-serif;
4148    color: #15428b;
4149    padding: 0 3px 1px;
4150    overflow: hidden; }
4151    /* line 35, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4152    .x-reset .x-fieldset-header .x-fieldset-header-text {
4153      float: left;
4154      padding: 1px 0; }
4155    /* line 39, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4156    .x-reset .x-fieldset-header .x-fieldset-header-text-collapsible {
4157      cursor: pointer; }
4158    /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4159    .x-reset .x-fieldset-header .x-form-item,
4160    .x-reset .x-fieldset-header .x-tool {
4161      float: left;
4162      margin: 1px 0 0 0; }
4163    /* line 49, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4164    .x-reset .x-fieldset-header .x-form-cb-wrap {
4165      padding: 1px 0;
4166      font-size: 0;
4167      line-height: 0; }
4168  /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4169  .x-reset .x-fieldset-with-title .x-fieldset-header-checkbox,
4170  .x-reset .x-fieldset-with-title .x-tool {
4171    margin-right: 3px; }
4172  /* line 65, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4173  .x-reset .x-webkit .x-fieldset-header {
4174    -webkit-padding-start: 3px;
4175    -webkit-padding-end: 3px; }
4176  /* line 86, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4177  .x-reset .x-strict .x-ie8 .x-fieldset-header {
4178    margin-bottom: -1px; }
4179    /* line 90, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4180    .x-reset .x-strict .x-ie8 .x-fieldset-header .x-tool,
4181    .x-reset .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text,
4182    .x-reset .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox {
4183      position: relative;
4184      top: -1px; }
4185  /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4186  .x-reset .x-quirks .x-ie .x-fieldset-header,
4187  .x-reset .x-ie8m .x-fieldset-header {
4188    padding-left: 1px;
4189    padding-right: 1px; }
4190  /* line 108, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4191  .x-reset .x-fieldset-collapsed .x-fieldset-body {
4192    display: none; }
4193  /* line 113, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4194  .x-reset .x-fieldset-collapsed {
4195    padding-bottom: 0 !important;
4196    border-width: 1px 1px 0 1px !important;
4197    border-left-color: transparent !important;
4198    border-right-color: transparent !important; }
4199  /* line 122, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4200  .x-reset .x-ie6 .x-fieldset-collapsed {
4201    border-width: 1px 0 0 0 !important;
4202    padding-bottom: 0 !important;
4203    margin-left: 1px;
4204    margin-right: 1px; }
4205  /* line 130, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4206  .x-reset .x-ie .x-fieldset-bwrap {
4207    zoom: 1; }
4208  /* line 137, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4209  .x-reset .x-ie .x-fieldset-noborder legend {
4210    position: relative;
4211    margin-bottom: 23px; }
4212  /* line 143, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4213  .x-reset .x-ie .x-fieldset-noborder legend span {
4214    position: absolute;
4215    left: 16px; }
4216  /* line 149, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4217  .x-reset .x-fieldset {
4218    overflow: hidden; }
4219  /* line 153, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4220  .x-reset .x-fieldset-bwrap {
4221    overflow: hidden;
4222    zoom: 1; }
4223  /* line 159, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4224  .x-reset .x-fieldset-body {
4225    overflow: hidden; }
4226  /* line 8, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
4227  .x-reset .x-form-file-wrap .x-form-text {
4228    color: #777; }
4229  /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
4230  .x-reset .x-form-file-wrap .x-form-file-btn {
4231    overflow: hidden; }
4232  /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
4233  .x-reset .x-form-file-wrap .x-form-file-input {
4234    position: absolute;
4235    top: -4px;
4236    right: -2px;
4237    height: 30px;
4238    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
4239    opacity: 0;
4240    /* Yes, there's actually a good reason for this...
4241     * If the configured buttonText is set to something longer than the default,
4242     * then it will quickly exceed the width of the hidden file input's "Browse..."
4243     * button, so part of the custom button's clickable area will be covered by
4244     * the hidden file input's text box instead. This results in a text-selection
4245     * mouse cursor over that part of the button, at least in Firefox, which is
4246     * confusing to a user. Giving the hidden file input a huge font-size makes
4247     * the native button part very large so it will cover the whole clickable area.
4248     */
4249    font-size: 100px; }
4250  /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4251  .x-reset .x-form-cb-wrap {
4252    padding-top: 3px; }
4253  /* line 11, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4254  .x-reset .x-form-checkbox,
4255  .x-reset .x-form-radio {
4256    vertical-align: -1px;
4257    width: 13px;
4258    height: 13px;
4259    background: no-repeat;
4260    background-image: url('../../resources/themes/images/default/form/checkbox.gif');
4261    overflow: hidden;
4262    padding: 0;
4263    border: 0; }
4264    /* line 22, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4265    .x-reset .x-form-checkbox::-moz-focus-inner,
4266    .x-reset .x-form-radio::-moz-focus-inner {
4267      padding: 0;
4268      border: 0; }
4269  /* line 31, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4270  .x-reset .x-nbr.x-ie .x-form-checkbox,
4271  .x-reset .x-nbr.x-ie .x-form-radio {
4272    font-size: 0; }
4273  /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4274  .x-reset .x-form-cb-checked .x-form-checkbox,
4275  .x-reset .x-form-cb-checked .x-form-radio {
4276    background-position: 0 -13px; }
4277  /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4278  .x-reset .x-form-cb-focus {
4279    background-position: -13px 0; }
4280  /* line 48, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4281  .x-reset .x-form-cb-checked .x-form-cb-focus {
4282    background-position: -13px -13px; }
4283  /* line 54, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4284  .x-reset .x-form-radio {
4285    background-image: url('../../resources/themes/images/default/form/radio.gif'); }
4286  /* line 59, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4287  .x-reset .x-form-cb-label-before {
4288    margin-right: 4px; }
4289  /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4290  .x-reset .x-form-cb-label-after {
4291    margin-left: 4px; }
4292  /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
4293  .x-reset .x-form-checkboxgroup-body {
4294    padding: 1px 4px 1px 4px; }
4295  /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
4296  .x-reset .x-form-invalid .x-form-checkboxgroup-body {
4297    border: 1px solid #c30!important;
4298    background: transparent repeat-x bottom;
4299    background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
4300    padding: 1px 3px 0 3px; }
4301  /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
4302  .x-reset .x-check-group-alt {
4303    background: #d1ddef;
4304    border-top: 1px dotted #b5b8c8;
4305    border-bottom: 1px dotted #b5b8c8; }
4306  /* line 27, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
4307  .x-reset .x-form-check-group-label {
4308    color: #333;
4309    border-bottom: 1px solid #333;
4310    margin: 0 30px 5px 0;
4311    padding: 2px; }
4312  /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4313  .x-reset .x-form-trigger-wrap {
4314    vertical-align: top; }
4315  /* line 10, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4316  .x-reset .x-form-trigger {
4317    background-image: url('../../resources/themes/images/default/form/trigger.gif');
4318    background-position: 0 0;
4319    width: 17px;
4320    height: 21px;
4321    border-bottom: 1px solid #b5b8c8;
4322    cursor: pointer;
4323    cursor: hand;
4324    overflow: hidden; }
4325  /* line 24, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4326  .x-reset .x-border-box .x-form-trigger {
4327    height: 22px; }
4328  /* line 28, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4329  .x-reset .x-field-default-toolbar .x-form-trigger {
4330    height: 19px; }
4331  /* line 32, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4332  .x-reset .x-border-box .x-field-default-toolbar .x-form-trigger {
4333    height: 20px; }
4334  /* line 37, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4335  .x-reset .x-form-trigger-over {
4336    background-position: -17px 0;
4337    border-bottom-color: #7eadd9; }
4338  /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4339  .x-reset .x-form-trigger-wrap-focus .x-form-trigger {
4340    background-position: -51px 0;
4341    border-bottom-color: #7eadd9; }
4342  /* line 49, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4343  .x-reset .x-form-trigger-wrap-focus .x-form-trigger-over {
4344    background-position: -68px 0;
4345    border-bottom-color: null; }
4346  /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4347  .x-reset .x-form-trigger-click,
4348  .x-reset .x-form-trigger-wrap-focus .x-form-trigger-click {
4349    background-position: -34px 0;
4350    border-bottom-color: null; }
4351  /* line 66, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4352  .x-reset .x-form-trigger-icon {
4353    height: 16px;
4354    background-repeat: no-repeat;
4355    background-position: 7px 6px; }
4356  /* line 74, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4357  .x-reset .x-pickerfield-open .x-form-field {
4358    -moz-border-radius-bottomleft: 0;
4359    -webkit-border-bottom-left-radius: 0;
4360    -o-border-bottom-left-radius: 0;
4361    -ms-border-bottom-left-radius: 0;
4362    -khtml-border-bottom-left-radius: 0;
4363    border-bottom-left-radius: 0;
4364    -moz-border-radius-bottomright: 0;
4365    -webkit-border-bottom-right-radius: 0;
4366    -o-border-bottom-right-radius: 0;
4367    -ms-border-bottom-right-radius: 0;
4368    -khtml-border-bottom-right-radius: 0;
4369    border-bottom-right-radius: 0; }
4370  /* line 80, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4371  .x-reset .x-pickerfield-open-above .x-form-field {
4372    -moz-border-radius-bottomleft: 3px;
4373    -webkit-border-bottom-left-radius: 3px;
4374    -o-border-bottom-left-radius: 3px;
4375    -ms-border-bottom-left-radius: 3px;
4376    -khtml-border-bottom-left-radius: 3px;
4377    border-bottom-left-radius: 3px;
4378    -moz-border-radius-topleft: 0;
4379    -webkit-border-top-left-radius: 0;
4380    -o-border-top-left-radius: 0;
4381    -ms-border-top-left-radius: 0;
4382    -khtml-border-top-left-radius: 0;
4383    border-top-left-radius: 0;
4384    -moz-border-radius-topright: 0;
4385    -webkit-border-top-right-radius: 0;
4386    -o-border-top-right-radius: 0;
4387    -ms-border-top-right-radius: 0;
4388    -khtml-border-top-right-radius: 0;
4389    border-top-right-radius: 0; }
4390  /* line 87, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4391  .x-reset .x-form-arrow-trigger .x-form-trigger-icon {
4392    background-image: url('../../resources/themes/images/default/boundlist/trigger-arrow.png'); }
4393  /* line 92, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4394  .x-reset .x-form-date-trigger {
4395    background-image: url('../../resources/themes/images/default/form/date-trigger.gif'); }
4396  /* line 99, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4397  .x-reset .x-form-trigger-wrap .x-form-spinner-up,
4398  .x-reset .x-form-trigger-wrap .x-form-spinner-down {
4399    background-image: url('../../resources/themes/images/default/form/spinner.gif');
4400    width: 17px !important;
4401    height: 11px !important;
4402    font-size: 0;
4403    /*for IE*/
4404    border-bottom: 0; }
4405  /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4406  .x-reset .x-form-trigger-wrap .x-form-spinner-down {
4407    background-position: 0 -11px; }
4408  /* line 113, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4409  .x-reset .x-form-trigger-wrap-focus .x-form-spinner-down {
4410    background-position: -51px -11px; }
4411  /* line 116, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4412  .x-reset .x-form-trigger-wrap .x-form-spinner-down-over {
4413    background-position: -17px -11px; }
4414  /* line 119, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4415  .x-reset .x-form-trigger-wrap-focus .x-form-spinner-down-over {
4416    background-position: -68px -11px; }
4417  /* line 122, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4418  .x-reset .x-form-trigger-wrap .x-form-spinner-down-click {
4419    background-position: -34px -11px; }
4420  /* line 131, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4421  .x-reset .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-up,
4422  .x-reset .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
4423    background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
4424    height: 10px !important; }
4425  /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4426  .x-reset .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
4427    background-position: 0 -10px; }
4428  /* line 139, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4429  .x-reset .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down {
4430    background-position: -51px -10px; }
4431  /* line 142, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4432  .x-reset .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-over {
4433    background-position: -17px -10px; }
4434  /* line 145, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4435  .x-reset .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down-over {
4436    background-position: -68px -10px; }
4437  /* line 148, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4438  .x-reset .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-click {
4439    background-position: -34px -10px; }
4440  /* line 154, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4441  .x-reset .x-trigger-noedit {
4442    cursor: pointer;
4443    cursor: hand; }
4444  /* line 160, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4445  .x-reset .x-item-disabled .x-trigger-noedit, .x-reset .x-item-disabled .x-form-trigger {
4446    cursor: auto; }
4447  /* line 166, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4448  .x-reset .x-form-clear-trigger {
4449    background-image: url('../../resources/themes/images/default/form/clear-trigger.gif'); }
4450  /* line 169, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4451  .x-reset .x-form-search-trigger {
4452    background-image: url('../../resources/themes/images/default/form/search-trigger.gif'); }
4453  /* line 177, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4454  .x-reset .x-quirks .prefixie6 .x-form-trigger-input-cell {
4455    height: 22px; }
4456  /* line 180, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4457  .x-reset .x-quirks .prefixie6 .x-field-default-toolbar .x-form-trigger-input-cell {
4458    height: 20px; }
4459  /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4460  .x-reset .x-html-editor-wrap {
4461    border: 1px solid #b5b8c8; }
4462    /* line 9, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4463    .x-reset .x-html-editor-wrap .x-toolbar {
4464      border-top-width: 0;
4465      border-left-width: 0;
4466      border-right-width: 0; }
4467    /* line 15, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4468    .x-reset .x-html-editor-wrap textarea {
4469      background-color: white; }
4470  /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4471  .x-reset .x-html-editor-tb .x-btn-text {
4472    background: transparent no-repeat;
4473    background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
4474  /* line 26, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4475  .x-reset .x-html-editor-tb .x-edit-bold,
4476  .x-reset .x-menu-item img.x-edit-bold {
4477    background-position: 0 0;
4478    background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
4479  /* line 32, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4480  .x-reset .x-html-editor-tb .x-edit-italic,
4481  .x-reset .x-menu-item img.x-edit-italic {
4482    background-position: -16px 0;
4483    background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
4484  /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4485  .x-reset .x-html-editor-tb .x-edit-underline,
4486  .x-reset .x-menu-item img.x-edit-underline {
4487    background-position: -32px 0;
4488    background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
4489  /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4490  .x-reset .x-html-editor-tb .x-edit-forecolor,
4491  .x-reset .x-menu-item img.x-edit-forecolor {
4492    background-position: -160px 0;
4493    background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
4494  /* line 50, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4495  .x-reset .x-html-editor-tb .x-edit-backcolor,
4496  .x-reset .x-menu-item img.x-edit-backcolor {
4497    background-position: -176px 0;
4498    background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
4499  /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4500  .x-reset .x-html-editor-tb .x-edit-justifyleft,
4501  .x-reset .x-menu-item img.x-edit-justifyleft {
4502    background-position: -112px 0;
4503    background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
4504  /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4505  .x-reset .x-html-editor-tb .x-edit-justifycenter,
4506  .x-reset .x-menu-item img.x-edit-justifycenter {
4507    background-position: -128px 0;
4508    background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
4509  /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4510  .x-reset .x-html-editor-tb .x-edit-justifyright,
4511  .x-reset .x-menu-item img.x-edit-justifyright {
4512    background-position: -144px 0;
4513    background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
4514  /* line 74, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4515  .x-reset .x-html-editor-tb .x-edit-insertorderedlist,
4516  .x-reset .x-menu-item img.x-edit-insertorderedlist {
4517    background-position: -80px 0;
4518    background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
4519  /* line 80, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4520  .x-reset .x-html-editor-tb .x-edit-insertunorderedlist,
4521  .x-reset .x-menu-item img.x-edit-insertunorderedlist {
4522    background-position: -96px 0;
4523    background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
4524  /* line 86, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4525  .x-reset .x-html-editor-tb .x-edit-increasefontsize,
4526  .x-reset .x-menu-item img.x-edit-increasefontsize {
4527    background-position: -48px 0;
4528    background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
4529  /* line 92, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4530  .x-reset .x-html-editor-tb .x-edit-decreasefontsize,
4531  .x-reset .x-menu-item img.x-edit-decreasefontsize {
4532    background-position: -64px 0;
4533    background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
4534  /* line 98, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4535  .x-reset .x-html-editor-tb .x-edit-sourceedit,
4536  .x-reset .x-menu-item img.x-edit-sourceedit {
4537    background-position: -192px 0;
4538    background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
4539  /* line 104, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4540  .x-reset .x-html-editor-tb .x-edit-createlink,
4541  .x-reset .x-menu-item img.x-edit-createlink {
4542    background-position: -208px 0;
4543    background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
4544  /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4545  .x-reset .x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
4546    padding: 5px;
4547    padding-bottom: 1px; }
4548  /* line 115, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4549  .x-reset .x-html-editor-tb .x-toolbar {
4550    position: static !important; }
4551  /* line 118, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4552  .x-reset .x-html-editor-tb .x-font-select {
4553    font-size: 11px; }
4554  /* line 123, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
4555  .x-reset .x-html-editor-wrap textarea {
4556    border: 0;
4557    padding: 3px 2px;
4558    overflow: auto; }
4559  /* line 7, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4560  .x-reset .x-panel,
4561  .x-reset .x-plain {
4562    overflow: hidden;
4563    position: relative; }
4564  /* line 24, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4565  .x-reset .x-ie .x-panel-header,
4566  .x-reset .x-ie .x-panel-header-tl,
4567  .x-reset .x-ie .x-panel-header-tc,
4568  .x-reset .x-ie .x-panel-header-tr,
4569  .x-reset .x-ie .x-panel-header-ml,
4570  .x-reset .x-ie .x-panel-header-mc,
4571  .x-reset .x-ie .x-panel-header-mr,
4572  .x-reset .x-ie .x-panel-header-bl,
4573  .x-reset .x-ie .x-panel-header-bc,
4574  .x-reset .x-ie .x-panel-header-br {
4575    zoom: 1; }
4576  /* line 30, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4577  .x-reset .x-ie8 td.x-frame-mc {
4578    vertical-align: top; }
4579  /* line 37, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4580  .x-reset .x-panel-header-horizontal {
4581    padding: 3px 5px 4px; }
4582  /* line 40, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4583  .x-reset .x-panel-header-vertical {
4584    padding: 5px 4px; }
4585  /* line 45, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4586  .x-reset .x-panel-header-icon,
4587  .x-reset .x-window-header-icon {
4588    width: 16px;
4589    height: 16px;
4590    background-repeat: no-repeat;
4591    background-position: 0 0;
4592    vertical-align: middle;
4593    margin-right: 4px; }
4594  /* line 56, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4595  .x-reset .x-vertical .x-panel-header-icon,
4596  .x-reset .x-vertical .x-window-header-icon {
4597    margin: 0 0 4px; }
4598  /* line 64, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4599  .x-reset .x-panel-header-draggable,
4600  .x-reset .x-panel-header-draggable .x-panel-header-text,
4601  .x-reset .x-window-header-draggable,
4602  .x-reset .x-window-header-draggable .x-window-header-text {
4603    cursor: move; }
4604  /* line 70, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4605  .x-reset .x-panel-ghost, .x-reset .x-window-ghost {
4606    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
4607    opacity: 0.65;
4608    cursor: move; }
4609  /* line 76, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4610  .x-reset .x-panel-header-horizontal .x-panel-header-body, .x-reset .x-panel-header-horizontal .x-window-header-body, .x-reset .x-panel-header-horizontal .x-btn-group-header-body, .x-reset .x-window-header-horizontal .x-panel-header-body, .x-reset .x-window-header-horizontal .x-window-header-body, .x-reset .x-window-header-horizontal .x-btn-group-header-body, .x-reset .x-btn-group-header-horizontal .x-panel-header-body, .x-reset .x-btn-group-header-horizontal .x-window-header-body, .x-reset .x-btn-group-header-horizontal .x-btn-group-header-body {
4611    width: 100%; }
4612  /* line 82, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4613  .x-reset .x-panel-header-vertical .x-panel-header-body, .x-reset .x-panel-header-vertical .x-window-header-body, .x-reset .x-panel-header-vertical .x-btn-group-header-body, .x-reset .x-window-header-vertical .x-panel-header-body, .x-reset .x-window-header-vertical .x-window-header-body, .x-reset .x-window-header-vertical .x-btn-group-header-body, .x-reset .x-btn-group-header-vertical .x-panel-header-body, .x-reset .x-btn-group-header-vertical .x-window-header-body, .x-reset .x-btn-group-header-vertical .x-btn-group-header-body {
4614    height: 100%; }
4615  /* line 87, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4616  .x-reset .x-panel-header-text-container {
4617    overflow: hidden;
4618    -o-text-overflow: ellipsis;
4619    text-overflow: ellipsis; }
4620  /* line 93, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4621  .x-reset .x-panel-header-text {
4622    user-select: none;
4623    -o-user-select: none;
4624    -ms-user-select: none;
4625    -moz-user-select: -moz-none;
4626    -webkit-user-select: none;
4627    cursor: default;
4628    white-space: nowrap; }
4629  /* line 100, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4630  .x-reset .x-panel-header-left .x-vml-base,
4631  .x-reset .x-panel-header-right .x-vml-base {
4632    left: -3px !important; }
4633  /* line 106, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4634  .x-reset .x-panel-body {
4635    overflow: hidden;
4636    position: relative;
4637    font-size: 12px; }
4638  /* line 114, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4639  .x-reset .x-panel-header-vertical .x-surface {
4640    padding-left: 1px; }
4641  /* line 122, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4642  .x-reset .x-opera .x-panel-header-vertical .x-surface,
4643  .x-reset .x-strict .x-ie9 .x-panel-header-vertical .x-surface {
4644    padding-left: 2px; }
4645  /* line 129, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4646  .x-reset .x-panel-collapsed .x-panel-header-collapsed-border-top {
4647    border-bottom-width: 1px !important; }
4648  /* line 132, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4649  .x-reset .x-panel-collapsed .x-panel-header-collapsed-border-right {
4650    border-left-width: 1px !important; }
4651  /* line 135, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4652  .x-reset .x-panel-collapsed .x-panel-header-collapsed-border-bottom {
4653    border-top-width: 1px !important; }
4654  /* line 138, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4655  .x-reset .x-panel-collapsed .x-panel-header-collapsed-border-left {
4656    border-right-width: 1px !important; }
4657  /* line 145, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4658  .x-reset .x-nlg .x-panel-header-vertical .x-frame-mc {
4659    background-repeat: repeat-y; }
4660  /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4661  .x-reset .x-panel-default {
4662    border-color: #99bce8; }
4663  /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4664  .x-reset .x-panel-header-default {
4665    font-size: 11px;
4666    border-color: #99bce8;
4667    border-width: 1px;
4668    border-style: solid; }
4669  /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4670  .x-reset .x-nlg .x-panel-header-default-top {
4671    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
4672  /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4673  .x-reset .x-nlg .x-panel-header-default-bottom {
4674    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
4675  /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4676  .x-reset .x-nlg .x-panel-header-default-left {
4677    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
4678  /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4679  .x-reset .x-nlg .x-panel-header-default-right {
4680    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
4681  /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4682  .x-reset .x-nlg .x-panel-header-default-right {
4683    background-position: top right; }
4684  /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4685  .x-reset .x-nlg .x-panel-header-default-bottom {
4686    background-position: bottom left; }
4687  /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4688  .x-reset .x-panel-header-text-default {
4689    color: #04408c;
4690    font-size: 11px;
4691    font-weight: bold;
4692    font-family: tahoma, arial, verdana, sans-serif;
4693    line-height: 17px; }
4694  /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4695  .x-reset .x-panel-body-default {
4696    background: white;
4697    border-color: #99bce8;
4698    color: black;
4699    border-width: 1px;
4700    border-style: solid; }
4701  /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4702  .x-reset .x-panel-collapsed .x-window-header-default,
4703  .x-reset .x-panel-collapsed .x-panel-header-default {
4704    border-color: #99bce8; }
4705  /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4706  .x-reset .x-panel-header-default-vertical {
4707    border-color: #99bce8; }
4708  /* line 416, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4709  .x-reset .x-panel-collapsed .x-panel-header-default-top {
4710    -moz-border-radius-bottomleft: null;
4711    -webkit-border-bottom-left-radius: null;
4712    -o-border-bottom-left-radius: null;
4713    -ms-border-bottom-left-radius: null;
4714    -khtml-border-bottom-left-radius: null;
4715    border-bottom-left-radius: null;
4716    -moz-border-radius-bottomright: null;
4717    -webkit-border-bottom-right-radius: null;
4718    -o-border-bottom-right-radius: null;
4719    -ms-border-bottom-right-radius: null;
4720    -khtml-border-bottom-right-radius: null;
4721    border-bottom-right-radius: null; }
4722  /* line 420, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4723  .x-reset .x-panel-collapsed .x-panel-header-default-right {
4724    -moz-border-radius-topleft: null;
4725    -webkit-border-top-left-radius: null;
4726    -o-border-top-left-radius: null;
4727    -ms-border-top-left-radius: null;
4728    -khtml-border-top-left-radius: null;
4729    border-top-left-radius: null;
4730    -moz-border-radius-bottomleft: null;
4731    -webkit-border-bottom-left-radius: null;
4732    -o-border-bottom-left-radius: null;
4733    -ms-border-bottom-left-radius: null;
4734    -khtml-border-bottom-left-radius: null;
4735    border-bottom-left-radius: null; }
4736  /* line 424, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4737  .x-reset .x-panel-collapsed .x-panel-header-default-bottom {
4738    -moz-border-radius-topleft: null;
4739    -webkit-border-top-left-radius: null;
4740    -o-border-top-left-radius: null;
4741    -ms-border-top-left-radius: null;
4742    -khtml-border-top-left-radius: null;
4743    border-top-left-radius: null;
4744    -moz-border-radius-topright: null;
4745    -webkit-border-top-right-radius: null;
4746    -o-border-top-right-radius: null;
4747    -ms-border-top-right-radius: null;
4748    -khtml-border-top-right-radius: null;
4749    border-top-right-radius: null; }
4750  /* line 428, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4751  .x-reset .x-panel-collapsed .x-panel-header-default-left {
4752    -moz-border-radius-topright: null;
4753    -webkit-border-top-right-radius: null;
4754    -o-border-top-right-radius: null;
4755    -ms-border-top-right-radius: null;
4756    -khtml-border-top-right-radius: null;
4757    border-top-right-radius: null;
4758    -moz-border-radius-bottomright: null;
4759    -webkit-border-bottom-right-radius: null;
4760    -o-border-bottom-right-radius: null;
4761    -ms-border-bottom-right-radius: null;
4762    -khtml-border-bottom-right-radius: null;
4763    border-bottom-right-radius: null; }
4764  /* line 434, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4765  .x-reset .x-panel-header-default-top {
4766    -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset;
4767    -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset;
4768    -o-box-shadow: #f4f8fd 0 1px 0px 0 inset;
4769    box-shadow: #f4f8fd 0 1px 0px 0 inset; }
4770  /* line 438, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4771  .x-reset .x-panel-header-default-right {
4772    -moz-box-shadow: #f4f8fd -1px 0 0px 0 inset;
4773    -webkit-box-shadow: #f4f8fd -1px 0 0px 0 inset;
4774    -o-box-shadow: #f4f8fd -1px 0 0px 0 inset;
4775    box-shadow: #f4f8fd -1px 0 0px 0 inset; }
4776  /* line 442, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4777  .x-reset .x-panel-header-default-bottom {
4778    -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
4779    -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
4780    -o-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
4781    box-shadow: #f4f8fd 0 -1px 0px 0 inset; }
4782  /* line 446, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4783  .x-reset .x-panel-header-default-left {
4784    -moz-box-shadow: #f4f8fd 1px 0 0px 0 inset;
4785    -webkit-box-shadow: #f4f8fd 1px 0 0px 0 inset;
4786    -o-box-shadow: #f4f8fd 1px 0 0px 0 inset;
4787    box-shadow: #f4f8fd 1px 0 0px 0 inset; }
4788  /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4789  .x-reset .x-panel-header-default-right-tc,
4790  .x-reset .x-panel-header-default-right-mc,
4791  .x-reset .x-panel-header-default-right-bc {
4792    background-position: right 0; }
4793  /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4794  .x-reset .x-panel-header-default-bottom-tc,
4795  .x-reset .x-panel-header-default-bottom-mc,
4796  .x-reset .x-panel-header-default-bottom-bc {
4797    background-position: 0 bottom; }
4798  /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4799  .x-reset .x-panel-default-framed {
4800    border-color: #99bce8; }
4801  /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4802  .x-reset .x-panel-header-default-framed {
4803    font-size: 11px;
4804    border-color: #99bce8;
4805    border-width: 1px;
4806    border-style: solid; }
4807  /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4808  .x-reset .x-nlg .x-panel-header-default-framed-top {
4809    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif'); }
4810  /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4811  .x-reset .x-nlg .x-panel-header-default-framed-bottom {
4812    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif'); }
4813  /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4814  .x-reset .x-nlg .x-panel-header-default-framed-left {
4815    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif'); }
4816  /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4817  .x-reset .x-nlg .x-panel-header-default-framed-right {
4818    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif'); }
4819  /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4820  .x-reset .x-nlg .x-panel-header-default-framed-right {
4821    background-position: top right; }
4822  /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4823  .x-reset .x-nlg .x-panel-header-default-framed-bottom {
4824    background-position: bottom left; }
4825  /* line 305, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4826  .x-reset .x-nbr .x-panel-header-default-framed {
4827    background-image: none; }
4828  /* line 317, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4829  .x-reset .x-strict .x-ie9 .x-panel-header-default-framed-top,
4830  .x-reset .x-nlg.x-opera .x-panel-header-default-framed-top,
4831  .x-reset .x-nlg.x-safari .x-panel-header-default-framed-top {
4832    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
4833  /* line 321, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4834  .x-reset .x-strict .x-ie9 .x-panel-header-default-framed-bottom,
4835  .x-reset .x-nlg.x-opera .x-panel-header-default-framed-bottom,
4836  .x-reset .x-nlg.x-safari .x-panel-header-default-framed-bottom {
4837    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
4838  /* line 325, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4839  .x-reset .x-strict .x-ie9 .x-panel-header-default-framed-left,
4840  .x-reset .x-nlg.x-opera .x-panel-header-default-framed-left,
4841  .x-reset .x-nlg.x-safari .x-panel-header-default-framed-left {
4842    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
4843  /* line 329, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4844  .x-reset .x-strict .x-ie9 .x-panel-header-default-framed-right,
4845  .x-reset .x-nlg.x-opera .x-panel-header-default-framed-right,
4846  .x-reset .x-nlg.x-safari .x-panel-header-default-framed-right {
4847    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
4848  /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4849  .x-reset .x-panel-header-text-default-framed {
4850    color: #04408c;
4851    font-size: 11px;
4852    font-weight: bold;
4853    font-family: tahoma, arial, verdana, sans-serif;
4854    line-height: 17px; }
4855  /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4856  .x-reset .x-panel-body-default-framed {
4857    background: #dfe9f6;
4858    border-color: #99bce8;
4859    color: black;
4860    border-width: 0;
4861    border-style: solid; }
4862  /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4863  .x-reset .x-panel-collapsed .x-window-header-default-framed,
4864  .x-reset .x-panel-collapsed .x-panel-header-default-framed {
4865    border-color: #99bce8; }
4866  /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
4867  .x-reset .x-panel-header-default-framed-vertical {
4868    border-color: #99bce8; }
4869  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4870  .x-reset .x-panel-default-framed {
4871    padding: 4px 4px 4px 4px;
4872    border-width: 1px;
4873    border-style: solid;
4874    background-color: #dfe9f6; }
4875  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4876  .x-reset .x-nlg .x-panel-default-framed-mc {
4877    background-color: #dfe9f6; }
4878  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4879  .x-reset .x-nbr .x-panel-default-framed {
4880    padding: 0 !important;
4881    border-width: 0 !important;
4882    -moz-border-radius: 0px;
4883    -webkit-border-radius: 0px;
4884    -o-border-radius: 0px;
4885    -ms-border-radius: 0px;
4886    -khtml-border-radius: 0px;
4887    border-radius: 0px;
4888    background-color: transparent;
4889    background-position: 1000404px 1000404px; }
4890  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4891  .x-reset .x-nbr .x-panel-default-framed-tl,
4892  .x-reset .x-nbr .x-panel-default-framed-bl,
4893  .x-reset .x-nbr .x-panel-default-framed-tr,
4894  .x-reset .x-nbr .x-panel-default-framed-br,
4895  .x-reset .x-nbr .x-panel-default-framed-tc,
4896  .x-reset .x-nbr .x-panel-default-framed-bc,
4897  .x-reset .x-nbr .x-panel-default-framed-ml,
4898  .x-reset .x-nbr .x-panel-default-framed-mr {
4899    zoom: 1;
4900    background-image: url('../../resources/themes/images/default/panel/panel-default-framed-corners.gif'); }
4901  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4902  .x-reset .x-nbr .x-panel-default-framed-ml,
4903  .x-reset .x-nbr .x-panel-default-framed-mr {
4904    zoom: 1;
4905    background-image: url('../../resources/themes/images/default/panel/panel-default-framed-sides.gif');
4906    background-position: 0 0;
4907    background-repeat: repeat-y; }
4908  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4909  .x-reset .x-nbr .x-panel-default-framed-mc {
4910    padding: 1px 1px 1px 1px; }
4911  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4912  .x-reset .x-strict .x-ie7 .x-panel-default-framed-tl,
4913  .x-reset .x-strict .x-ie7 .x-panel-default-framed-bl {
4914    position: relative;
4915    right: 0; }
4916  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4917  .x-reset .x-panel-header-default-framed-top {
4918    padding: 3px 5px 4px 5px;
4919    border-width: 1px 1px 0 1px;
4920    border-style: solid;
4921    background-color: #cbddf3; }
4922  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4923  .x-reset .x-nlg .x-panel-header-default-framed-top-mc {
4924    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif');
4925    background-color: #cbddf3; }
4926  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4927  .x-reset .x-nbr .x-panel-header-default-framed-top {
4928    padding: 0 !important;
4929    border-width: 0 !important;
4930    -moz-border-radius: 0px;
4931    -webkit-border-radius: 0px;
4932    -o-border-radius: 0px;
4933    -ms-border-radius: 0px;
4934    -khtml-border-radius: 0px;
4935    border-radius: 0px;
4936    background-color: transparent;
4937    background-position: 1000404px 1000000px; }
4938  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4939  .x-reset .x-nbr .x-panel-header-default-framed-top-tl,
4940  .x-reset .x-nbr .x-panel-header-default-framed-top-bl,
4941  .x-reset .x-nbr .x-panel-header-default-framed-top-tr,
4942  .x-reset .x-nbr .x-panel-header-default-framed-top-br,
4943  .x-reset .x-nbr .x-panel-header-default-framed-top-tc,
4944  .x-reset .x-nbr .x-panel-header-default-framed-top-bc,
4945  .x-reset .x-nbr .x-panel-header-default-framed-top-ml,
4946  .x-reset .x-nbr .x-panel-header-default-framed-top-mr {
4947    zoom: 1;
4948    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-corners.gif'); }
4949  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4950  .x-reset .x-nbr .x-panel-header-default-framed-top-ml,
4951  .x-reset .x-nbr .x-panel-header-default-framed-top-mr {
4952    zoom: 1;
4953    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-sides.gif');
4954    background-position: 0 0; }
4955  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4956  .x-reset .x-nbr .x-panel-header-default-framed-top-mc {
4957    padding: 0px 2px 4px 2px; }
4958  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4959  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-top-tl,
4960  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-top-bl {
4961    position: relative;
4962    right: 0; }
4963  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4964  .x-reset .x-panel-header-default-framed-right {
4965    padding: 5px 4px 5px 4px;
4966    border-width: 1px 1px 1px 0;
4967    border-style: solid;
4968    background-color: #cbddf3; }
4969  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4970  .x-reset .x-nlg .x-panel-header-default-framed-right-mc {
4971    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif');
4972    background-color: #cbddf3; }
4973  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4974  .x-reset .x-nbr .x-panel-header-default-framed-right {
4975    padding: 0 !important;
4976    border-width: 0 !important;
4977    -moz-border-radius: 0px;
4978    -webkit-border-radius: 0px;
4979    -o-border-radius: 0px;
4980    -ms-border-radius: 0px;
4981    -khtml-border-radius: 0px;
4982    border-radius: 0px;
4983    background-color: transparent;
4984    background-position: 1000004px 1100400px; }
4985  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4986  .x-reset .x-nbr .x-panel-header-default-framed-right-tl,
4987  .x-reset .x-nbr .x-panel-header-default-framed-right-bl,
4988  .x-reset .x-nbr .x-panel-header-default-framed-right-tr,
4989  .x-reset .x-nbr .x-panel-header-default-framed-right-br,
4990  .x-reset .x-nbr .x-panel-header-default-framed-right-tc,
4991  .x-reset .x-nbr .x-panel-header-default-framed-right-bc,
4992  .x-reset .x-nbr .x-panel-header-default-framed-right-ml,
4993  .x-reset .x-nbr .x-panel-header-default-framed-right-mr {
4994    zoom: 1;
4995    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-corners.gif'); }
4996  /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
4997  .x-reset .x-nbr .x-panel-header-default-framed-right-tc,
4998  .x-reset .x-nbr .x-panel-header-default-framed-right-bc {
4999    zoom: 1;
5000    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-sides.gif');
5001    background-position: 0 0;
5002    background-repeat: repeat-x; }
5003  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5004  .x-reset .x-nbr .x-panel-header-default-framed-right-mc {
5005    padding: 2px 1px 2px 4px; }
5006  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5007  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-right-tl,
5008  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-right-bl {
5009    position: relative;
5010    right: 0; }
5011  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5012  .x-reset .x-panel-header-default-framed-bottom {
5013    padding: 3px 5px 4px 5px;
5014    border-width: 0 1px 1px 1px;
5015    border-style: solid;
5016    background-color: #cbddf3; }
5017  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5018  .x-reset .x-nlg .x-panel-header-default-framed-bottom-mc {
5019    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif');
5020    background-color: #cbddf3; }
5021  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5022  .x-reset .x-nbr .x-panel-header-default-framed-bottom {
5023    padding: 0 !important;
5024    border-width: 0 !important;
5025    -moz-border-radius: 0px;
5026    -webkit-border-radius: 0px;
5027    -o-border-radius: 0px;
5028    -ms-border-radius: 0px;
5029    -khtml-border-radius: 0px;
5030    border-radius: 0px;
5031    background-color: transparent;
5032    background-position: 1000000px 1000404px; }
5033  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5034  .x-reset .x-nbr .x-panel-header-default-framed-bottom-tl,
5035  .x-reset .x-nbr .x-panel-header-default-framed-bottom-bl,
5036  .x-reset .x-nbr .x-panel-header-default-framed-bottom-tr,
5037  .x-reset .x-nbr .x-panel-header-default-framed-bottom-br,
5038  .x-reset .x-nbr .x-panel-header-default-framed-bottom-tc,
5039  .x-reset .x-nbr .x-panel-header-default-framed-bottom-bc,
5040  .x-reset .x-nbr .x-panel-header-default-framed-bottom-ml,
5041  .x-reset .x-nbr .x-panel-header-default-framed-bottom-mr {
5042    zoom: 1;
5043    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-corners.gif'); }
5044  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5045  .x-reset .x-nbr .x-panel-header-default-framed-bottom-ml,
5046  .x-reset .x-nbr .x-panel-header-default-framed-bottom-mr {
5047    zoom: 1;
5048    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-sides.gif');
5049    background-position: 0 0; }
5050  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5051  .x-reset .x-nbr .x-panel-header-default-framed-bottom-mc {
5052    padding: 3px 2px 1px 2px; }
5053  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5054  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl,
5055  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl {
5056    position: relative;
5057    right: 0; }
5058  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5059  .x-reset .x-panel-header-default-framed-left {
5060    padding: 5px 4px 5px 4px;
5061    border-width: 1px 0 1px 1px;
5062    border-style: solid;
5063    background-color: #cbddf3; }
5064  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5065  .x-reset .x-nlg .x-panel-header-default-framed-left-mc {
5066    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif');
5067    background-color: #cbddf3; }
5068  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5069  .x-reset .x-nbr .x-panel-header-default-framed-left {
5070    padding: 0 !important;
5071    border-width: 0 !important;
5072    -moz-border-radius: 0px;
5073    -webkit-border-radius: 0px;
5074    -o-border-radius: 0px;
5075    -ms-border-radius: 0px;
5076    -khtml-border-radius: 0px;
5077    border-radius: 0px;
5078    background-color: transparent;
5079    background-position: 1000400px 1100004px; }
5080  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5081  .x-reset .x-nbr .x-panel-header-default-framed-left-tl,
5082  .x-reset .x-nbr .x-panel-header-default-framed-left-bl,
5083  .x-reset .x-nbr .x-panel-header-default-framed-left-tr,
5084  .x-reset .x-nbr .x-panel-header-default-framed-left-br,
5085  .x-reset .x-nbr .x-panel-header-default-framed-left-tc,
5086  .x-reset .x-nbr .x-panel-header-default-framed-left-bc,
5087  .x-reset .x-nbr .x-panel-header-default-framed-left-ml,
5088  .x-reset .x-nbr .x-panel-header-default-framed-left-mr {
5089    zoom: 1;
5090    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-corners.gif'); }
5091  /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5092  .x-reset .x-nbr .x-panel-header-default-framed-left-tc,
5093  .x-reset .x-nbr .x-panel-header-default-framed-left-bc {
5094    zoom: 1;
5095    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-sides.gif');
5096    background-position: 0 0;
5097    background-repeat: repeat-x; }
5098  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5099  .x-reset .x-nbr .x-panel-header-default-framed-left-mc {
5100    padding: 2px 4px 2px 1px; }
5101  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5102  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-left-tl,
5103  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-left-bl {
5104    position: relative;
5105    right: 0; }
5106  /* line 399, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5107  .x-reset .x-panel-header-default-framed-top {
5108    -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5109    -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5110    -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5111    box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
5112  /* line 403, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5113  .x-reset .x-panel-header-default-framed-right {
5114    -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
5115    -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
5116    -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
5117    box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset; }
5118  /* line 407, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5119  .x-reset .x-panel-header-default-framed-bottom {
5120    -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5121    -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5122    -o-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5123    box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
5124  /* line 411, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5125  .x-reset .x-panel-header-default-framed-left {
5126    -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5127    -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5128    -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5129    box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
5130  /* line 452, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5131  .x-reset .x-panel .x-panel-header-default-framed-top {
5132    border-bottom-width: 1px !important; }
5133  /* line 456, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5134  .x-reset .x-panel .x-panel-header-default-framed-right {
5135    border-left-width: 1px !important; }
5136  /* line 460, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5137  .x-reset .x-panel .x-panel-header-default-framed-bottom {
5138    border-top-width: 1px !important; }
5139  /* line 464, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5140  .x-reset .x-panel .x-panel-header-default-framed-left {
5141    border-right-width: 1px !important; }
5142  /* line 468, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5143  .x-reset .x-panel-header-default-framed-collapsed {
5144    -moz-border-radius: 4px;
5145    -webkit-border-radius: 4px;
5146    -o-border-radius: 4px;
5147    -ms-border-radius: 4px;
5148    -khtml-border-radius: 4px;
5149    border-radius: 4px; }
5150  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5151  .x-reset .x-panel-header-default-framed-collapsed-top {
5152    padding: 3px 5px 4px 5px;
5153    border-width: 1px;
5154    border-style: solid;
5155    background-color: #cbddf3; }
5156  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5157  .x-reset .x-nlg .x-panel-header-default-framed-collapsed-top-mc {
5158    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-bg.gif');
5159    background-color: #cbddf3; }
5160  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5161  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-top {
5162    padding: 0 !important;
5163    border-width: 0 !important;
5164    -moz-border-radius: 0px;
5165    -webkit-border-radius: 0px;
5166    -o-border-radius: 0px;
5167    -ms-border-radius: 0px;
5168    -khtml-border-radius: 0px;
5169    border-radius: 0px;
5170    background-color: transparent;
5171    background-position: 1000404px 1000404px; }
5172  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5173  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-top-tl,
5174  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-top-bl,
5175  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-top-tr,
5176  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-top-br,
5177  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-top-tc,
5178  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-top-bc,
5179  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-top-ml,
5180  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-top-mr {
5181    zoom: 1;
5182    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-corners.gif'); }
5183  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5184  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-top-ml,
5185  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-top-mr {
5186    zoom: 1;
5187    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-sides.gif');
5188    background-position: 0 0; }
5189  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5190  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-top-mc {
5191    padding: 0px 2px 1px 2px; }
5192  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5193  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl,
5194  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl {
5195    position: relative;
5196    right: 0; }
5197  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5198  .x-reset .x-panel-header-default-framed-collapsed-right {
5199    padding: 5px 4px 5px 4px;
5200    border-width: 1px;
5201    border-style: solid;
5202    background-color: #cbddf3; }
5203  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5204  .x-reset .x-nlg .x-panel-header-default-framed-collapsed-right-mc {
5205    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-bg.gif');
5206    background-color: #cbddf3; }
5207  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5208  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-right {
5209    padding: 0 !important;
5210    border-width: 0 !important;
5211    -moz-border-radius: 0px;
5212    -webkit-border-radius: 0px;
5213    -o-border-radius: 0px;
5214    -ms-border-radius: 0px;
5215    -khtml-border-radius: 0px;
5216    border-radius: 0px;
5217    background-color: transparent;
5218    background-position: 1000404px 1100404px; }
5219  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5220  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-right-tl,
5221  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-right-bl,
5222  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-right-tr,
5223  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-right-br,
5224  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-right-tc,
5225  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-right-bc,
5226  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-right-ml,
5227  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-right-mr {
5228    zoom: 1;
5229    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-corners.gif'); }
5230  /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5231  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-right-tc,
5232  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-right-bc {
5233    zoom: 1;
5234    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-sides.gif');
5235    background-position: 0 0;
5236    background-repeat: repeat-x; }
5237  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5238  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-right-mc {
5239    padding: 2px 1px 2px 1px; }
5240  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5241  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl,
5242  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl {
5243    position: relative;
5244    right: 0; }
5245  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5246  .x-reset .x-panel-header-default-framed-collapsed-bottom {
5247    padding: 3px 5px 4px 5px;
5248    border-width: 1px;
5249    border-style: solid;
5250    background-color: #cbddf3; }
5251  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5252  .x-reset .x-nlg .x-panel-header-default-framed-collapsed-bottom-mc {
5253    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif');
5254    background-color: #cbddf3; }
5255  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5256  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-bottom {
5257    padding: 0 !important;
5258    border-width: 0 !important;
5259    -moz-border-radius: 0px;
5260    -webkit-border-radius: 0px;
5261    -o-border-radius: 0px;
5262    -ms-border-radius: 0px;
5263    -khtml-border-radius: 0px;
5264    border-radius: 0px;
5265    background-color: transparent;
5266    background-position: 1000404px 1000404px; }
5267  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5268  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-bottom-tl,
5269  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-bottom-bl,
5270  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-bottom-tr,
5271  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-bottom-br,
5272  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-bottom-tc,
5273  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-bottom-bc,
5274  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,
5275  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-bottom-mr {
5276    zoom: 1;
5277    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif'); }
5278  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5279  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,
5280  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-bottom-mr {
5281    zoom: 1;
5282    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif');
5283    background-position: 0 0; }
5284  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5285  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-bottom-mc {
5286    padding: 0px 2px 1px 2px; }
5287  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5288  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl,
5289  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl {
5290    position: relative;
5291    right: 0; }
5292  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5293  .x-reset .x-panel-header-default-framed-collapsed-left {
5294    padding: 5px 4px 5px 4px;
5295    border-width: 1px;
5296    border-style: solid;
5297    background-color: #cbddf3; }
5298  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5299  .x-reset .x-nlg .x-panel-header-default-framed-collapsed-left-mc {
5300    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-bg.gif');
5301    background-color: #cbddf3; }
5302  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5303  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-left {
5304    padding: 0 !important;
5305    border-width: 0 !important;
5306    -moz-border-radius: 0px;
5307    -webkit-border-radius: 0px;
5308    -o-border-radius: 0px;
5309    -ms-border-radius: 0px;
5310    -khtml-border-radius: 0px;
5311    border-radius: 0px;
5312    background-color: transparent;
5313    background-position: 1000404px 1100404px; }
5314  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5315  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-left-tl,
5316  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-left-bl,
5317  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-left-tr,
5318  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-left-br,
5319  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-left-tc,
5320  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-left-bc,
5321  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-left-ml,
5322  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-left-mr {
5323    zoom: 1;
5324    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-corners.gif'); }
5325  /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5326  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-left-tc,
5327  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-left-bc {
5328    zoom: 1;
5329    background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-sides.gif');
5330    background-position: 0 0;
5331    background-repeat: repeat-x; }
5332  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5333  .x-reset .x-nbr .x-panel-header-default-framed-collapsed-left-mc {
5334    padding: 2px 1px 2px 1px; }
5335  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5336  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl,
5337  .x-reset .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl {
5338    position: relative;
5339    right: 0; }
5340  /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5341  .x-reset .x-panel-header-default-framed-right-tc,
5342  .x-reset .x-panel-header-default-framed-right-mc,
5343  .x-reset .x-panel-header-default-framed-right-bc {
5344    background-position: right 0; }
5345  /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5346  .x-reset .x-panel-header-default-framed-bottom-tc,
5347  .x-reset .x-panel-header-default-framed-bottom-mc,
5348  .x-reset .x-panel-header-default-framed-bottom-bc {
5349    background-position: 0 bottom; }
5350  /* line 197, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5351  .x-reset .x-panel-header-plain,
5352  .x-reset .x-panel-body-plain {
5353    border: 0;
5354    padding: 0; }
5355  /* line 6, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5356  .x-reset .x-tip {
5357    position: absolute;
5358    overflow: visible;
5359    /*pointer needs to be able to stick out*/
5360    border-color: #8eaace; }
5361    /* line 12, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5362    .x-reset .x-tip .x-tip-header .x-box-item {
5363      padding: 3px 3px 0; }
5364    /* line 16, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5365    .x-reset .x-tip .x-tip-header .x-tool {
5366      padding: 0px 1px 0 0 !important; }
5367  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5368  .x-reset .x-tip {
5369    padding: 2px 2px 2px 2px;
5370    border-width: 1px;
5371    border-style: solid;
5372    background-color: #e9f2ff; }
5373  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5374  .x-reset .x-nlg .x-tip-mc {
5375    background-color: #e9f2ff; }
5376  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5377  .x-reset .x-nbr .x-tip {
5378    padding: 0 !important;
5379    border-width: 0 !important;
5380    -moz-border-radius: 0px;
5381    -webkit-border-radius: 0px;
5382    -o-border-radius: 0px;
5383    -ms-border-radius: 0px;
5384    -khtml-border-radius: 0px;
5385    border-radius: 0px;
5386    background-color: transparent;
5387    background-position: 1100303px 1000303px; }
5388  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5389  .x-reset .x-nbr .x-tip-tl,
5390  .x-reset .x-nbr .x-tip-bl,
5391  .x-reset .x-nbr .x-tip-tr,
5392  .x-reset .x-nbr .x-tip-br,
5393  .x-reset .x-nbr .x-tip-tc,
5394  .x-reset .x-nbr .x-tip-bc,
5395  .x-reset .x-nbr .x-tip-ml,
5396  .x-reset .x-nbr .x-tip-mr {
5397    zoom: 1;
5398    background-image: url('../../resources/themes/images/default/tip/tip-corners.gif'); }
5399  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5400  .x-reset .x-nbr .x-tip-ml,
5401  .x-reset .x-nbr .x-tip-mr {
5402    zoom: 1;
5403    background-image: url('../../resources/themes/images/default/tip/tip-sides.gif');
5404    background-position: 0 0;
5405    background-repeat: repeat-y; }
5406  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5407  .x-reset .x-nbr .x-tip-mc {
5408    padding: 0px 0px 0px 0px; }
5409  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5410  .x-reset .x-strict .x-ie7 .x-tip-tl,
5411  .x-reset .x-strict .x-ie7 .x-tip-bl {
5412    position: relative;
5413    right: 0; }
5414  /* line 31, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5415  .x-reset .x-tip-header-text {
5416    user-select: none;
5417    -o-user-select: none;
5418    -ms-user-select: none;
5419    -moz-user-select: -moz-none;
5420    -webkit-user-select: none;
5421    cursor: default;
5422    color: #444444;
5423    font-size: 11px;
5424    font-weight: bold; }
5425  /* line 40, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5426  .x-reset .x-tip-header-draggable .x-tip-header-text {
5427    cursor: move; }
5428  /* line 47, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5429  .x-reset .x-tip-body,
5430  .x-reset .x-form-invalid-tip-body {
5431    overflow: hidden;
5432    position: relative;
5433    padding: 3px; }
5434  /* line 55, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5435  .x-reset .x-tip-header,
5436  .x-reset .x-tip-body,
5437  .x-reset .x-form-invalid-tip-body {
5438    color: #444444;
5439    font-size: 11px;
5440    font-weight: normal; }
5441    /* line 59, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5442    .x-reset .x-tip-header a,
5443    .x-reset .x-tip-body a,
5444    .x-reset .x-form-invalid-tip-body a {
5445      color: #2a2a2a; }
5446  /* line 64, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5447  .x-reset .x-tip-anchor {
5448    position: absolute;
5449    overflow: hidden;
5450    height: 0;
5451    width: 0;
5452    border-style: solid;
5453    border-width: 5px;
5454    border-color: #8eaace;
5455    zoom: 1; }
5456  /* line 79, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5457  .x-reset .x-border-box .x-tip-anchor {
5458    width: 10px;
5459    height: 10px; }
5460  /* line 84, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5461  .x-reset .x-tip-anchor-top {
5462    border-top-color: transparent;
5463    border-left-color: transparent;
5464    border-right-color: transparent;
5465    _border-top-color: pink;
5466    _border-left-color: pink;
5467    _border-right-color: pink;
5468    _filter: chroma(color=pink); }
5469  /* line 97, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5470  .x-reset .x-tip-anchor-bottom {
5471    border-bottom-color: transparent;
5472    border-left-color: transparent;
5473    border-right-color: transparent;
5474    _border-bottom-color: pink;
5475    _border-left-color: pink;
5476    _border-right-color: pink;
5477    _filter: chroma(color=pink); }
5478  /* line 110, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5479  .x-reset .x-tip-anchor-left {
5480    border-top-color: transparent;
5481    border-bottom-color: transparent;
5482    border-left-color: transparent;
5483    _border-top-color: pink;
5484    _border-bottom-color: pink;
5485    _border-left-color: pink;
5486    _filter: chroma(color=pink); }
5487  /* line 123, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5488  .x-reset .x-tip-anchor-right {
5489    border-top-color: transparent;
5490    border-bottom-color: transparent;
5491    border-right-color: transparent;
5492    _border-top-color: pink;
5493    _border-bottom-color: pink;
5494    _border-right-color: pink;
5495    _filter: chroma(color=pink); }
5496  /* line 137, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5497  .x-reset .x-form-invalid-tip {
5498    border-color: #a1311f;
5499    -moz-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;
5500    -webkit-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;
5501    -o-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;
5502    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; }
5503  /* line 146, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5504  .x-reset .x-form-invalid-tip-body {
5505    background: 1px 1px no-repeat;
5506    background-image: url('../../resources/themes/images/default/form/exclamation.gif');
5507    padding-left: 22px; }
5508    /* line 151, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5509    .x-reset .x-form-invalid-tip-body li {
5510      margin-bottom: 4px; }
5511      /* line 153, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
5512      .x-reset .x-form-invalid-tip-body li.last {
5513        margin-bottom: 0; }
5514  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5515  .x-reset .x-form-invalid-tip-default {
5516    padding: 4px 4px 4px 4px;
5517    border-width: 1px;
5518    border-style: solid;
5519    background-color: white; }
5520  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5521  .x-reset .x-nlg .x-form-invalid-tip-default-mc {
5522    background-color: white; }
5523  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5524  .x-reset .x-nbr .x-form-invalid-tip-default {
5525    padding: 0 !important;
5526    border-width: 0 !important;
5527    -moz-border-radius: 0px;
5528    -webkit-border-radius: 0px;
5529    -o-border-radius: 0px;
5530    -ms-border-radius: 0px;
5531    -khtml-border-radius: 0px;
5532    border-radius: 0px;
5533    background-color: transparent;
5534    background-position: 1100505px 1000505px; }
5535  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5536  .x-reset .x-nbr .x-form-invalid-tip-default-tl,
5537  .x-reset .x-nbr .x-form-invalid-tip-default-bl,
5538  .x-reset .x-nbr .x-form-invalid-tip-default-tr,
5539  .x-reset .x-nbr .x-form-invalid-tip-default-br,
5540  .x-reset .x-nbr .x-form-invalid-tip-default-tc,
5541  .x-reset .x-nbr .x-form-invalid-tip-default-bc,
5542  .x-reset .x-nbr .x-form-invalid-tip-default-ml,
5543  .x-reset .x-nbr .x-form-invalid-tip-default-mr {
5544    zoom: 1;
5545    background-image: url('../../resources/themes/images/default/form-invalid-tip/form-invalid-tip-default-corners.gif'); }
5546  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5547  .x-reset .x-nbr .x-form-invalid-tip-default-ml,
5548  .x-reset .x-nbr .x-form-invalid-tip-default-mr {
5549    zoom: 1;
5550    background-image: url('../../resources/themes/images/default/form-invalid-tip/form-invalid-tip-default-sides.gif');
5551    background-position: 0 0;
5552    background-repeat: repeat-y; }
5553  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5554  .x-reset .x-nbr .x-form-invalid-tip-default-mc {
5555    padding: 0px 0px 0px 0px; }
5556  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5557  .x-reset .x-strict .x-ie7 .x-form-invalid-tip-default-tl,
5558  .x-reset .x-strict .x-ie7 .x-form-invalid-tip-default-bl {
5559    position: relative;
5560    right: 0; }
5561  /* line 6, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5562  .x-reset .x-slider {
5563    zoom: 1; }
5564  /* line 10, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5565  .x-reset .x-slider-inner {
5566    position: relative;
5567    left: 0;
5568    top: 0;
5569    overflow: visible;
5570    zoom: 1; }
5571  /* line 18, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5572  .x-reset .x-slider-focus {
5573    position: absolute;
5574    left: 0;
5575    top: 0;
5576    width: 1px;
5577    height: 1px;
5578    line-height: 1px;
5579    font-size: 1px;
5580    -moz-outline: 0 none;
5581    outline: 0 none;
5582    user-select: none;
5583    -o-user-select: none;
5584    -ms-user-select: none;
5585    -moz-user-select: -moz-none;
5586    -webkit-user-select: none;
5587    cursor: default;
5588    display: block;
5589    overflow: hidden; }
5590  /* line 34, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5591  .x-reset .x-slider-horz {
5592    padding-left: 7px;
5593    background: transparent no-repeat 0 -24px;
5594    width: 100%; }
5595  /* line 40, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5596  .x-reset .x-slider-horz .x-slider-end {
5597    padding-right: 7px;
5598    zoom: 1;
5599    background: transparent no-repeat right -46px; }
5600  /* line 46, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5601  .x-reset .x-slider-horz .x-slider-inner {
5602    background: transparent repeat-x 0 -2px;
5603    height: 18px; }
5604  /* line 51, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5605  .x-reset .x-slider-horz .x-slider-thumb {
5606    width: 14px;
5607    height: 15px;
5608    margin-left: -7px;
5609    position: absolute;
5610    left: 0;
5611    top: 1px;
5612    background: transparent no-repeat 0 0; }
5613  /* line 61, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5614  .x-reset .x-slider-horz .x-slider-thumb-over {
5615    background-position: -14px -15px; }
5616  /* line 65, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5617  .x-reset .x-slider-horz .x-slider-thumb-drag {
5618    background-position: -28px -30px; }
5619  /* line 70, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5620  .x-reset .x-slider-vert {
5621    padding-top: 7px;
5622    background: transparent no-repeat -44px 0; }
5623  /* line 75, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5624  .x-reset .x-slider-vert .x-slider-end {
5625    padding-bottom: 7px;
5626    zoom: 1;
5627    background: transparent no-repeat -22px bottom;
5628    width: 22px; }
5629  /* line 82, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5630  .x-reset .x-slider-vert .x-slider-inner {
5631    background: transparent repeat-y 0 0;
5632    width: 22px; }
5633  /* line 87, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5634  .x-reset .x-slider-vert .x-slider-thumb {
5635    width: 15px;
5636    height: 14px;
5637    margin-bottom: -7px;
5638    position: absolute;
5639    left: 3px;
5640    bottom: 0;
5641    background: transparent no-repeat 0 0; }
5642  /* line 97, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5643  .x-reset .x-slider-vert .x-slider-thumb-over {
5644    background-position: -15px -14px; }
5645  /* line 101, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5646  .x-reset .x-slider-vert .x-slider-thumb-drag {
5647    background-position: -30px -28px; }
5648  /* line 107, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5649  .x-reset .x-slider-horz,
5650  .x-reset .x-slider-horz .x-slider-end,
5651  .x-reset .x-slider-horz .x-slider-inner {
5652    background-image: url('../../resources/themes/images/default/slider/slider-bg.png'); }
5653  /* line 111, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5654  .x-reset .x-slider-horz .x-slider-thumb {
5655    background-image: url('../../resources/themes/images/default/slider/slider-thumb.png'); }
5656  /* line 117, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5657  .x-reset .x-slider-vert,
5658  .x-reset .x-slider-vert .x-slider-end,
5659  .x-reset .x-slider-vert .x-slider-inner {
5660    background-image: url('../../resources/themes/images/default/slider/slider-v-bg.png'); }
5661  /* line 121, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5662  .x-reset .x-slider-vert .x-slider-thumb {
5663    background-image: url('../../resources/themes/images/default/slider/slider-v-thumb.png'); }
5664  /* line 129, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5665  .x-reset .x-ie6 .x-slider-horz,
5666  .x-reset .x-ie6 .x-slider-horz .x-slider-end,
5667  .x-reset .x-ie6 .x-slider-horz .x-slider-inner {
5668    background-image: url('../../resources/themes/images/default/slider/slider-bg.gif'); }
5669  /* line 133, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5670  .x-reset .x-ie6 .x-slider-horz .x-slider-thumb {
5671    background-image: url('../../resources/themes/images/default/slider/slider-thumb.gif'); }
5672  /* line 139, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5673  .x-reset .x-ie6 .x-slider-vert,
5674  .x-reset .x-ie6 .x-slider-vert .x-slider-end,
5675  .x-reset .x-ie6 .x-slider-vert .x-slider-inner {
5676    background-image: url('../../resources/themes/images/default/slider/slider-v-bg.gif'); }
5677  /* line 143, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
5678  .x-reset .x-ie6 .x-slider-vert .x-slider-thumb {
5679    background-image: url('../../resources/themes/images/default/slider/slider-v-thumb.gif'); }
5680  /* line 6, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
5681  .x-reset .x-progress {
5682    position: relative;
5683    border-width: 1px;
5684    border-style: solid;
5685    -moz-border-radius: 0;
5686    -webkit-border-radius: 0;
5687    -o-border-radius: 0;
5688    -ms-border-radius: 0;
5689    -khtml-border-radius: 0;
5690    border-radius: 0;
5691    overflow: hidden;
5692    height: 20px; }
5693  /* line 17, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
5694  .x-reset .x-progress-bar {
5695    height: 18px;
5696    overflow: hidden;
5697    position: absolute;
5698    width: 0;
5699    -moz-border-radius: 0;
5700    -webkit-border-radius: 0;
5701    -o-border-radius: 0;
5702    -ms-border-radius: 0;
5703    -khtml-border-radius: 0;
5704    border-radius: 0;
5705    border-right: 1px solid;
5706    border-top: 1px solid; }
5707  /* line 30, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
5708  .x-reset .x-progress-text {
5709    overflow: hidden;
5710    position: absolute;
5711    padding: 0 5px;
5712    height: 18px;
5713    font-weight: bold;
5714    font-size: 11px;
5715    line-height: 16px;
5716    text-align: center; }
5717  /* line 45, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
5718  .x-reset .x-progress-text-back {
5719    padding-top: 1px; }
5720  /* line 50, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
5721  .x-reset .x-strict .x-ie7m .x-progress {
5722    height: 18px; }
5723  /* line 93, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
5724  .x-reset .x-progress-default {
5725    border-color: #6594cf; }
5726    /* line 96, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
5727    .x-reset .x-progress-default .x-progress-bar {
5728      border-right-color: #6594cf;
5729      border-top-color: #c6d8ed;
5730      background-image: none;
5731      background-color: #73a3e0;
5732      background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b2ccee), color-stop(50%, #88b1e5), color-stop(51%, #73a3e0), color-stop(100%, #5e96db));
5733      background-image: -webkit-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
5734      background-image: -moz-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
5735      background-image: -o-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
5736      background-image: -ms-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
5737      background-image: linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); }
5738    /* line 103, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
5739    .x-reset .x-progress-default .x-progress-text {
5740      color: white; }
5741    /* line 107, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
5742    .x-reset .x-progress-default .x-progress-text-back {
5743      color: #396295; }
5744  /* line 116, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
5745  .x-reset .x-nlg .x-progress-default .x-progress-bar {
5746    background: repeat-x;
5747    background-image: url('../../resources/themes/images/default/progress/progress-default-bg.gif'); }
5748  /* line 6, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5749  .x-reset .x-toolbar {
5750    font-size: 11px;
5751    border: 1px solid;
5752    padding: 2px 0 2px 2px; }
5753    /* line 13, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5754    .x-reset .x-toolbar .x-form-item-label {
5755      font-size: 11px;
5756      line-height: 15px; }
5757    /* line 18, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5758    .x-reset .x-toolbar .x-toolbar-item {
5759      margin: 0 2px 0 0; }
5760    /* line 22, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5761    .x-reset .x-toolbar .x-toolbar-text {
5762      margin-left: 4px;
5763      margin-right: 6px;
5764      white-space: nowrap;
5765      color: #4c4c4c;
5766      line-height: 16px;
5767      font-family: tahoma, arial, verdana, sans-serif;
5768      font-size: 11px;
5769      font-weight: normal; }
5770    /* line 33, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5771    .x-reset .x-toolbar .x-toolbar-separator {
5772      display: block;
5773      font-size: 1px;
5774      overflow: hidden;
5775      cursor: default;
5776      border: 0; }
5777    /* line 41, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5778    .x-reset .x-toolbar .x-toolbar-separator-horizontal {
5779      margin: 0 3px 0 2px;
5780      height: 14px;
5781      width: 0px;
5782      border-left: 1px solid #98c8ff;
5783      border-right: 1px solid white; }
5784  /* line 53, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5785  .x-reset .x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal {
5786    width: 2px; }
5787  /* line 58, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5788  .x-reset .x-toolbar-footer {
5789    background: transparent;
5790    border: 0px none;
5791    margin-top: 3px;
5792    padding: 2px 0 2px 6px; }
5793    /* line 65, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5794    .x-reset .x-toolbar-footer .x-box-inner {
5795      border-width: 0; }
5796    /* line 69, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5797    .x-reset .x-toolbar-footer .x-toolbar-item {
5798      margin: 0 6px 0 0; }
5799  /* line 74, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5800  .x-reset .x-toolbar-vertical {
5801    padding: 2px 2px 0 2px; }
5802    /* line 77, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5803    .x-reset .x-toolbar-vertical .x-toolbar-item {
5804      margin: 0 0 2px 0; }
5805    /* line 81, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5806    .x-reset .x-toolbar-vertical .x-toolbar-text {
5807      margin-top: 4px;
5808      margin-bottom: 6px; }
5809    /* line 86, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5810    .x-reset .x-toolbar-vertical .x-toolbar-separator-vertical {
5811      margin: 2px 5px 3px 5px;
5812      height: 0px;
5813      width: 10px;
5814      line-height: 0px;
5815      border-top: 1px solid #98c8ff;
5816      border-bottom: 1px solid white; }
5817  /* line 98, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5818  .x-reset .x-toolbar-scroller {
5819    padding-left: 0; }
5820  /* line 102, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5821  .x-reset .x-toolbar-spacer {
5822    width: 2px; }
5823  /* line 107, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5824  .x-reset .x-toolbar-more-icon {
5825    background-image: url('../../resources/themes/images/default/toolbar/more.gif') !important;
5826    background-position: 2px center !important;
5827    background-repeat: no-repeat; }
5828  /* line 144, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5829  .x-reset .x-toolbar-default {
5830    border-color: #99bce8;
5831    background-image: none;
5832    background-color: #d3e1f1;
5833    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfe9f5), color-stop(100%, #d3e1f1));
5834    background-image: -webkit-linear-gradient(top, #dfe9f5, #d3e1f1);
5835    background-image: -moz-linear-gradient(top, #dfe9f5, #d3e1f1);
5836    background-image: -o-linear-gradient(top, #dfe9f5, #d3e1f1);
5837    background-image: -ms-linear-gradient(top, #dfe9f5, #d3e1f1);
5838    background-image: linear-gradient(top, #dfe9f5, #d3e1f1); }
5839  /* line 155, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5840  .x-reset .x-nlg .x-toolbar-default {
5841    background-image: url('../../resources/themes/images/default/toolbar/toolbar-default-bg.gif') !important;
5842    background-repeat: repeat-x; }
5843  /* line 123, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
5844  .x-reset .x-toolbar-plain {
5845    border: 0; }
5846  /* line 6, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5847  .x-reset .x-window {
5848    outline: none;
5849    overflow: hidden; }
5850    /* line 10, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5851    .x-reset .x-window .x-window-wrap {
5852      position: relative; }
5853  /* line 15, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5854  .x-reset .x-window-body {
5855    position: relative;
5856    border-style: solid;
5857    overflow: hidden; }
5858  /* line 24, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5859  .x-reset .x-window-maximized .x-window-wrap .x-window-header {
5860    -moz-border-radius: 0 !important;
5861    -webkit-border-radius: 0 !important;
5862    -o-border-radius: 0 !important;
5863    -ms-border-radius: 0 !important;
5864    -khtml-border-radius: 0 !important;
5865    border-radius: 0 !important; }
5866  /* line 30, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5867  .x-reset .x-window-header-top {
5868    margin-bottom: -2px; }
5869  /* line 33, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5870  .x-reset .x-window-header-body-horizontal {
5871    margin-top: -1px; }
5872  /* line 37, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5873  .x-reset .x-window-header-bottom {
5874    margin-top: -1px;
5875    margin-bottom: -1px; }
5876  /* line 42, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5877  .x-reset .x-window-header-left {
5878    margin-right: -1px; }
5879  /* line 46, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5880  .x-reset .x-window-header-right {
5881    margin-left: -1px; }
5882  /* line 51, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5883  .x-reset .x-window-header-vertical .x-surface {
5884    padding-left: 1px; }
5885  /* line 58, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5886  .x-reset .x-window-collapsed .x-window-header-vertical {
5887    -moz-border-radius: 5px;
5888    -webkit-border-radius: 5px;
5889    -o-border-radius: 5px;
5890    -ms-border-radius: 5px;
5891    -khtml-border-radius: 5px;
5892    border-radius: 5px; }
5893  /* line 61, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5894  .x-reset .x-window-collapsed .x-window-header-horizontal {
5895    -moz-border-radius: 5px;
5896    -webkit-border-radius: 5px;
5897    -o-border-radius: 5px;
5898    -ms-border-radius: 5px;
5899    -khtml-border-radius: 5px;
5900    border-radius: 5px; }
5901  /* line 66, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5902  .x-reset .x-window-collapsed .x-window-header-left {
5903    padding-right: 5px !important;
5904    margin-right: 0; }
5905  /* line 71, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5906  .x-reset .x-window-collapsed .x-window-header-right {
5907    padding-left: 5px !important;
5908    margin-left: 0; }
5909  /* line 76, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5910  .x-reset .x-window-collapsed .x-window-header-top {
5911    padding-bottom: 5px !important;
5912    margin-bottom: -1px; }
5913  /* line 81, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5914  .x-reset .x-window-collapsed .x-window-header-bottom {
5915    padding-top: 5px !important;
5916    margin-top: 0; }
5917  /* line 89, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5918  .x-reset .x-window-header-left .x-vml-base,
5919  .x-reset .x-window-header-right .x-vml-base {
5920    left: -3px !important; }
5921  /* line 97, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5922  .x-reset .x-opera .x-window-header-vertical .x-surface,
5923  .x-reset .x-strict .x-ie9 .x-window-header-vertical .x-surface {
5924    padding-left: 2px; }
5925  /* line 103, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5926  .x-reset .x-window-header-text-container {
5927    overflow: hidden;
5928    -o-text-overflow: ellipsis;
5929    text-overflow: ellipsis; }
5930  /* line 109, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5931  .x-reset .x-window-header-text {
5932    user-select: none;
5933    -o-user-select: none;
5934    -ms-user-select: none;
5935    -moz-user-select: -moz-none;
5936    -webkit-user-select: none;
5937    cursor: default;
5938    white-space: nowrap; }
5939  /* line 159, ../themes/stylesheets/ext4/default/widgets/_window.scss */
5940  .x-reset .x-window-default {
5941    border-color: #a2b1c5;
5942    -moz-border-radius: 5px 5px;
5943    -webkit-border-radius: 5px 5px;
5944    -o-border-radius: 5px 5px;
5945    -ms-border-radius: 5px 5px;
5946    -khtml-border-radius: 5px 5px;
5947    border-radius: 5px 5px;
5948    -moz-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;
5949    -webkit-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;
5950    -o-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;
5951    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; }
5952  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5953  .x-reset .x-window-default {
5954    padding: 4px 4px 4px 4px;
5955    border-width: 1px;
5956    border-style: solid;
5957    background-color: #ced9e7; }
5958  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5959  .x-reset .x-nlg .x-window-default-mc {
5960    background-color: #ced9e7; }
5961  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5962  .x-reset .x-nbr .x-window-default {
5963    padding: 0 !important;
5964    border-width: 0 !important;
5965    -moz-border-radius: 0px;
5966    -webkit-border-radius: 0px;
5967    -o-border-radius: 0px;
5968    -ms-border-radius: 0px;
5969    -khtml-border-radius: 0px;
5970    border-radius: 0px;
5971    background-color: transparent;
5972    background-position: 1000505px 1000505px; }
5973  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5974  .x-reset .x-nbr .x-window-default-tl,
5975  .x-reset .x-nbr .x-window-default-bl,
5976  .x-reset .x-nbr .x-window-default-tr,
5977  .x-reset .x-nbr .x-window-default-br,
5978  .x-reset .x-nbr .x-window-default-tc,
5979  .x-reset .x-nbr .x-window-default-bc,
5980  .x-reset .x-nbr .x-window-default-ml,
5981  .x-reset .x-nbr .x-window-default-mr {
5982    zoom: 1;
5983    background-image: url('../../resources/themes/images/default/window/window-default-corners.gif'); }
5984  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5985  .x-reset .x-nbr .x-window-default-ml,
5986  .x-reset .x-nbr .x-window-default-mr {
5987    zoom: 1;
5988    background-image: url('../../resources/themes/images/default/window/window-default-sides.gif');
5989    background-position: 0 0;
5990    background-repeat: repeat-y; }
5991  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5992  .x-reset .x-nbr .x-window-default-mc {
5993    padding: 0px 0px 0px 0px; }
5994  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5995  .x-reset .x-strict .x-ie7 .x-window-default-tl,
5996  .x-reset .x-strict .x-ie7 .x-window-default-bl {
5997    position: relative;
5998    right: 0; }
5999  /* line 178, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6000  .x-reset .x-window-body-default {
6001    border-color: #99bbe8;
6002    border-width: 1px;
6003    background: #dfe8f6;
6004    color: black; }
6005  /* line 188, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6006  .x-reset .x-window-header-default {
6007    font-size: 11px;
6008    border-color: #a2b1c5;
6009    zoom: 1; }
6010  /* line 194, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6011  .x-reset .x-window-header-text-default {
6012    color: #04468c;
6013    font-weight: bold;
6014    line-height: 17px;
6015    font-family: tahoma, arial, verdana, sans-serif;
6016    font-size: 11px; }
6017  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6018  .x-reset .x-window-header-default-top {
6019    padding: 4px 5px 0 5px;
6020    border-width: 1px 1px 0 1px;
6021    border-style: solid;
6022    background-color: #ced9e7; }
6023  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6024  .x-reset .x-nlg .x-window-header-default-top-mc {
6025    background-color: #ced9e7; }
6026  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6027  .x-reset .x-nbr .x-window-header-default-top {
6028    padding: 0 !important;
6029    border-width: 0 !important;
6030    -moz-border-radius: 0px;
6031    -webkit-border-radius: 0px;
6032    -o-border-radius: 0px;
6033    -ms-border-radius: 0px;
6034    -khtml-border-radius: 0px;
6035    border-radius: 0px;
6036    background-color: transparent;
6037    background-position: 1000505px 1000000px; }
6038  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6039  .x-reset .x-nbr .x-window-header-default-top-tl,
6040  .x-reset .x-nbr .x-window-header-default-top-bl,
6041  .x-reset .x-nbr .x-window-header-default-top-tr,
6042  .x-reset .x-nbr .x-window-header-default-top-br,
6043  .x-reset .x-nbr .x-window-header-default-top-tc,
6044  .x-reset .x-nbr .x-window-header-default-top-bc,
6045  .x-reset .x-nbr .x-window-header-default-top-ml,
6046  .x-reset .x-nbr .x-window-header-default-top-mr {
6047    zoom: 1;
6048    background-image: url('../../resources/themes/images/default/window-header/window-header-default-top-corners.gif'); }
6049  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6050  .x-reset .x-nbr .x-window-header-default-top-ml,
6051  .x-reset .x-nbr .x-window-header-default-top-mr {
6052    zoom: 1;
6053    background-image: url('../../resources/themes/images/default/window-header/window-header-default-top-sides.gif');
6054    background-position: 0 0;
6055    background-repeat: repeat-y; }
6056  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6057  .x-reset .x-nbr .x-window-header-default-top-mc {
6058    padding: 0px 1px 0 1px; }
6059  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6060  .x-reset .x-strict .x-ie7 .x-window-header-default-top-tl,
6061  .x-reset .x-strict .x-ie7 .x-window-header-default-top-bl {
6062    position: relative;
6063    right: 0; }
6064  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6065  .x-reset .x-window-header-default-right {
6066    padding: 5px 4px 5px 0;
6067    border-width: 1px 1px 1px 0;
6068    border-style: solid;
6069    background-color: #ced9e7; }
6070  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6071  .x-reset .x-nlg .x-window-header-default-right-mc {
6072    background-color: #ced9e7; }
6073  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6074  .x-reset .x-nbr .x-window-header-default-right {
6075    padding: 0 !important;
6076    border-width: 0 !important;
6077    -moz-border-radius: 0px;
6078    -webkit-border-radius: 0px;
6079    -o-border-radius: 0px;
6080    -ms-border-radius: 0px;
6081    -khtml-border-radius: 0px;
6082    border-radius: 0px;
6083    background-color: transparent;
6084    background-position: 1000005px 1000500px; }
6085  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6086  .x-reset .x-nbr .x-window-header-default-right-tl,
6087  .x-reset .x-nbr .x-window-header-default-right-bl,
6088  .x-reset .x-nbr .x-window-header-default-right-tr,
6089  .x-reset .x-nbr .x-window-header-default-right-br,
6090  .x-reset .x-nbr .x-window-header-default-right-tc,
6091  .x-reset .x-nbr .x-window-header-default-right-bc,
6092  .x-reset .x-nbr .x-window-header-default-right-ml,
6093  .x-reset .x-nbr .x-window-header-default-right-mr {
6094    zoom: 1;
6095    background-image: url('../../resources/themes/images/default/window-header/window-header-default-right-corners.gif'); }
6096  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6097  .x-reset .x-nbr .x-window-header-default-right-ml,
6098  .x-reset .x-nbr .x-window-header-default-right-mr {
6099    zoom: 1;
6100    background-image: url('../../resources/themes/images/default/window-header/window-header-default-right-sides.gif');
6101    background-position: 0 0;
6102    background-repeat: repeat-y; }
6103  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6104  .x-reset .x-nbr .x-window-header-default-right-mc {
6105    padding: 1px 0px 1px 0; }
6106  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6107  .x-reset .x-strict .x-ie7 .x-window-header-default-right-tl,
6108  .x-reset .x-strict .x-ie7 .x-window-header-default-right-bl {
6109    position: relative;
6110    right: 0; }
6111  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6112  .x-reset .x-window-header-default-bottom {
6113    padding: 0 5px 4px 5px;
6114    border-width: 0 1px 1px 1px;
6115    border-style: solid;
6116    background-color: #ced9e7; }
6117  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6118  .x-reset .x-nlg .x-window-header-default-bottom-mc {
6119    background-color: #ced9e7; }
6120  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6121  .x-reset .x-nbr .x-window-header-default-bottom {
6122    padding: 0 !important;
6123    border-width: 0 !important;
6124    -moz-border-radius: 0px;
6125    -webkit-border-radius: 0px;
6126    -o-border-radius: 0px;
6127    -ms-border-radius: 0px;
6128    -khtml-border-radius: 0px;
6129    border-radius: 0px;
6130    background-color: transparent;
6131    background-position: 1000000px 1000505px; }
6132  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6133  .x-reset .x-nbr .x-window-header-default-bottom-tl,
6134  .x-reset .x-nbr .x-window-header-default-bottom-bl,
6135  .x-reset .x-nbr .x-window-header-default-bottom-tr,
6136  .x-reset .x-nbr .x-window-header-default-bottom-br,
6137  .x-reset .x-nbr .x-window-header-default-bottom-tc,
6138  .x-reset .x-nbr .x-window-header-default-bottom-bc,
6139  .x-reset .x-nbr .x-window-header-default-bottom-ml,
6140  .x-reset .x-nbr .x-window-header-default-bottom-mr {
6141    zoom: 1;
6142    background-image: url('../../resources/themes/images/default/window-header/window-header-default-bottom-corners.gif'); }
6143  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6144  .x-reset .x-nbr .x-window-header-default-bottom-ml,
6145  .x-reset .x-nbr .x-window-header-default-bottom-mr {
6146    zoom: 1;
6147    background-image: url('../../resources/themes/images/default/window-header/window-header-default-bottom-sides.gif');
6148    background-position: 0 0;
6149    background-repeat: repeat-y; }
6150  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6151  .x-reset .x-nbr .x-window-header-default-bottom-mc {
6152    padding: 0 1px 0px 1px; }
6153  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6154  .x-reset .x-strict .x-ie7 .x-window-header-default-bottom-tl,
6155  .x-reset .x-strict .x-ie7 .x-window-header-default-bottom-bl {
6156    position: relative;
6157    right: 0; }
6158  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6159  .x-reset .x-window-header-default-left {
6160    padding: 5px 0px 5px 4px;
6161    border-width: 1px 0 1px 1px;
6162    border-style: solid;
6163    background-color: #ced9e7; }
6164  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6165  .x-reset .x-nlg .x-window-header-default-left-mc {
6166    background-color: #ced9e7; }
6167  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6168  .x-reset .x-nbr .x-window-header-default-left {
6169    padding: 0 !important;
6170    border-width: 0 !important;
6171    -moz-border-radius: 0px;
6172    -webkit-border-radius: 0px;
6173    -o-border-radius: 0px;
6174    -ms-border-radius: 0px;
6175    -khtml-border-radius: 0px;
6176    border-radius: 0px;
6177    background-color: transparent;
6178    background-position: 1000500px 1000005px; }
6179  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6180  .x-reset .x-nbr .x-window-header-default-left-tl,
6181  .x-reset .x-nbr .x-window-header-default-left-bl,
6182  .x-reset .x-nbr .x-window-header-default-left-tr,
6183  .x-reset .x-nbr .x-window-header-default-left-br,
6184  .x-reset .x-nbr .x-window-header-default-left-tc,
6185  .x-reset .x-nbr .x-window-header-default-left-bc,
6186  .x-reset .x-nbr .x-window-header-default-left-ml,
6187  .x-reset .x-nbr .x-window-header-default-left-mr {
6188    zoom: 1;
6189    background-image: url('../../resources/themes/images/default/window-header/window-header-default-left-corners.gif'); }
6190  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6191  .x-reset .x-nbr .x-window-header-default-left-ml,
6192  .x-reset .x-nbr .x-window-header-default-left-mr {
6193    zoom: 1;
6194    background-image: url('../../resources/themes/images/default/window-header/window-header-default-left-sides.gif');
6195    background-position: 0 0;
6196    background-repeat: repeat-y; }
6197  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6198  .x-reset .x-nbr .x-window-header-default-left-mc {
6199    padding: 1px 0px 1px 0px; }
6200  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6201  .x-reset .x-strict .x-ie7 .x-window-header-default-left-tl,
6202  .x-reset .x-strict .x-ie7 .x-window-header-default-left-bl {
6203    position: relative;
6204    right: 0; }
6205  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6206  .x-reset .x-window-header-default-collapsed-top {
6207    padding: 4px 5px 4px 5px;
6208    border-width: 1px;
6209    border-style: solid;
6210    background-color: #ced9e7; }
6211  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6212  .x-reset .x-nlg .x-window-header-default-collapsed-top-mc {
6213    background-color: #ced9e7; }
6214  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6215  .x-reset .x-nbr .x-window-header-default-collapsed-top {
6216    padding: 0 !important;
6217    border-width: 0 !important;
6218    -moz-border-radius: 0px;
6219    -webkit-border-radius: 0px;
6220    -o-border-radius: 0px;
6221    -ms-border-radius: 0px;
6222    -khtml-border-radius: 0px;
6223    border-radius: 0px;
6224    background-color: transparent;
6225    background-position: 1000505px 1000505px; }
6226  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6227  .x-reset .x-nbr .x-window-header-default-collapsed-top-tl,
6228  .x-reset .x-nbr .x-window-header-default-collapsed-top-bl,
6229  .x-reset .x-nbr .x-window-header-default-collapsed-top-tr,
6230  .x-reset .x-nbr .x-window-header-default-collapsed-top-br,
6231  .x-reset .x-nbr .x-window-header-default-collapsed-top-tc,
6232  .x-reset .x-nbr .x-window-header-default-collapsed-top-bc,
6233  .x-reset .x-nbr .x-window-header-default-collapsed-top-ml,
6234  .x-reset .x-nbr .x-window-header-default-collapsed-top-mr {
6235    zoom: 1;
6236    background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-top-corners.gif'); }
6237  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6238  .x-reset .x-nbr .x-window-header-default-collapsed-top-ml,
6239  .x-reset .x-nbr .x-window-header-default-collapsed-top-mr {
6240    zoom: 1;
6241    background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-top-sides.gif');
6242    background-position: 0 0;
6243    background-repeat: repeat-y; }
6244  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6245  .x-reset .x-nbr .x-window-header-default-collapsed-top-mc {
6246    padding: 0px 1px 0px 1px; }
6247  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6248  .x-reset .x-strict .x-ie7 .x-window-header-default-collapsed-top-tl,
6249  .x-reset .x-strict .x-ie7 .x-window-header-default-collapsed-top-bl {
6250    position: relative;
6251    right: 0; }
6252  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6253  .x-reset .x-window-header-default-collapsed-right {
6254    padding: 5px 4px 5px 4px;
6255    border-width: 1px;
6256    border-style: solid;
6257    background-color: #ced9e7; }
6258  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6259  .x-reset .x-nlg .x-window-header-default-collapsed-right-mc {
6260    background-color: #ced9e7; }
6261  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6262  .x-reset .x-nbr .x-window-header-default-collapsed-right {
6263    padding: 0 !important;
6264    border-width: 0 !important;
6265    -moz-border-radius: 0px;
6266    -webkit-border-radius: 0px;
6267    -o-border-radius: 0px;
6268    -ms-border-radius: 0px;
6269    -khtml-border-radius: 0px;
6270    border-radius: 0px;
6271    background-color: transparent;
6272    background-position: 1000505px 1000505px; }
6273  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6274  .x-reset .x-nbr .x-window-header-default-collapsed-right-tl,
6275  .x-reset .x-nbr .x-window-header-default-collapsed-right-bl,
6276  .x-reset .x-nbr .x-window-header-default-collapsed-right-tr,
6277  .x-reset .x-nbr .x-window-header-default-collapsed-right-br,
6278  .x-reset .x-nbr .x-window-header-default-collapsed-right-tc,
6279  .x-reset .x-nbr .x-window-header-default-collapsed-right-bc,
6280  .x-reset .x-nbr .x-window-header-default-collapsed-right-ml,
6281  .x-reset .x-nbr .x-window-header-default-collapsed-right-mr {
6282    zoom: 1;
6283    background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-right-corners.gif'); }
6284  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6285  .x-reset .x-nbr .x-window-header-default-collapsed-right-ml,
6286  .x-reset .x-nbr .x-window-header-default-collapsed-right-mr {
6287    zoom: 1;
6288    background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-right-sides.gif');
6289    background-position: 0 0;
6290    background-repeat: repeat-y; }
6291  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6292  .x-reset .x-nbr .x-window-header-default-collapsed-right-mc {
6293    padding: 1px 0px 1px 0px; }
6294  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6295  .x-reset .x-strict .x-ie7 .x-window-header-default-collapsed-right-tl,
6296  .x-reset .x-strict .x-ie7 .x-window-header-default-collapsed-right-bl {
6297    position: relative;
6298    right: 0; }
6299  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6300  .x-reset .x-window-header-default-collapsed-bottom {
6301    padding: 4px 5px 4px 5px;
6302    border-width: 1px;
6303    border-style: solid;
6304    background-color: #ced9e7; }
6305  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6306  .x-reset .x-nlg .x-window-header-default-collapsed-bottom-mc {
6307    background-color: #ced9e7; }
6308  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6309  .x-reset .x-nbr .x-window-header-default-collapsed-bottom {
6310    padding: 0 !important;
6311    border-width: 0 !important;
6312    -moz-border-radius: 0px;
6313    -webkit-border-radius: 0px;
6314    -o-border-radius: 0px;
6315    -ms-border-radius: 0px;
6316    -khtml-border-radius: 0px;
6317    border-radius: 0px;
6318    background-color: transparent;
6319    background-position: 1000505px 1000505px; }
6320  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6321  .x-reset .x-nbr .x-window-header-default-collapsed-bottom-tl,
6322  .x-reset .x-nbr .x-window-header-default-collapsed-bottom-bl,
6323  .x-reset .x-nbr .x-window-header-default-collapsed-bottom-tr,
6324  .x-reset .x-nbr .x-window-header-default-collapsed-bottom-br,
6325  .x-reset .x-nbr .x-window-header-default-collapsed-bottom-tc,
6326  .x-reset .x-nbr .x-window-header-default-collapsed-bottom-bc,
6327  .x-reset .x-nbr .x-window-header-default-collapsed-bottom-ml,
6328  .x-reset .x-nbr .x-window-header-default-collapsed-bottom-mr {
6329    zoom: 1;
6330    background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-bottom-corners.gif'); }
6331  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6332  .x-reset .x-nbr .x-window-header-default-collapsed-bottom-ml,
6333  .x-reset .x-nbr .x-window-header-default-collapsed-bottom-mr {
6334    zoom: 1;
6335    background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-bottom-sides.gif');
6336    background-position: 0 0;
6337    background-repeat: repeat-y; }
6338  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6339  .x-reset .x-nbr .x-window-header-default-collapsed-bottom-mc {
6340    padding: 0px 1px 0px 1px; }
6341  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6342  .x-reset .x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl,
6343  .x-reset .x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl {
6344    position: relative;
6345    right: 0; }
6346  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6347  .x-reset .x-window-header-default-collapsed-left {
6348    padding: 5px 4px 5px 4px;
6349    border-width: 1px;
6350    border-style: solid;
6351    background-color: #ced9e7; }
6352  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6353  .x-reset .x-nlg .x-window-header-default-collapsed-left-mc {
6354    background-color: #ced9e7; }
6355  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6356  .x-reset .x-nbr .x-window-header-default-collapsed-left {
6357    padding: 0 !important;
6358    border-width: 0 !important;
6359    -moz-border-radius: 0px;
6360    -webkit-border-radius: 0px;
6361    -o-border-radius: 0px;
6362    -ms-border-radius: 0px;
6363    -khtml-border-radius: 0px;
6364    border-radius: 0px;
6365    background-color: transparent;
6366    background-position: 1000505px 1000505px; }
6367  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6368  .x-reset .x-nbr .x-window-header-default-collapsed-left-tl,
6369  .x-reset .x-nbr .x-window-header-default-collapsed-left-bl,
6370  .x-reset .x-nbr .x-window-header-default-collapsed-left-tr,
6371  .x-reset .x-nbr .x-window-header-default-collapsed-left-br,
6372  .x-reset .x-nbr .x-window-header-default-collapsed-left-tc,
6373  .x-reset .x-nbr .x-window-header-default-collapsed-left-bc,
6374  .x-reset .x-nbr .x-window-header-default-collapsed-left-ml,
6375  .x-reset .x-nbr .x-window-header-default-collapsed-left-mr {
6376    zoom: 1;
6377    background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-left-corners.gif'); }
6378  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6379  .x-reset .x-nbr .x-window-header-default-collapsed-left-ml,
6380  .x-reset .x-nbr .x-window-header-default-collapsed-left-mr {
6381    zoom: 1;
6382    background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-left-sides.gif');
6383    background-position: 0 0;
6384    background-repeat: repeat-y; }
6385  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6386  .x-reset .x-nbr .x-window-header-default-collapsed-left-mc {
6387    padding: 1px 0px 1px 0px; }
6388  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6389  .x-reset .x-strict .x-ie7 .x-window-header-default-collapsed-left-tl,
6390  .x-reset .x-strict .x-ie7 .x-window-header-default-collapsed-left-bl {
6391    position: relative;
6392    right: 0; }
6393  /* line 217, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6394  .x-reset .x-window-header-default-top {
6395    -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
6396    -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
6397    -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
6398    box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
6399  /* line 221, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6400  .x-reset .x-window-header-default-right {
6401    -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
6402    -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
6403    -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
6404    box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; }
6405  /* line 225, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6406  .x-reset .x-window-header-default-bottom {
6407    -moz-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
6408    -webkit-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
6409    -o-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
6410    box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
6411  /* line 229, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6412  .x-reset .x-window-header-default-left {
6413    -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
6414    -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
6415    -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
6416    box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
6417  /* line 130, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6418  .x-reset .x-window-body-plain {
6419    background: transparent; }
6420  /* line 2, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
6421  .x-reset .x-message-box .x-window-body {
6422    background-color: #ced9e7;
6423    border: none; }
6424  /* line 7, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
6425  .x-reset .x-message-box .x-progress-wrap {
6426    margin-top: 4px; }
6427  /* line 11, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
6428  .x-reset .x-message-box-icon {
6429    width: 47px;
6430    height: 32px; }
6431  /* line 19, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
6432  .x-reset .x-message-box-info,
6433  .x-reset .x-message-box-warning,
6434  .x-reset .x-message-box-question,
6435  .x-reset .x-message-box-error {
6436    background: transparent no-repeat top left; }
6437  /* line 23, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
6438  .x-reset .x-message-box .x-msg-box-wait {
6439    background-image: url('../../resources/themes/images/default/shared/blue-loading.gif'); }
6440  /* line 27, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
6441  .x-reset .x-message-box-info {
6442    background-image: url('../../resources/themes/images/default/shared/icon-info.gif'); }
6443  /* line 31, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
6444  .x-reset .x-message-box-warning {
6445    background-image: url('../../resources/themes/images/default/shared/icon-warning.gif'); }
6446  /* line 35, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
6447  .x-reset .x-message-box-question {
6448    background-image: url('../../resources/themes/images/default/shared/icon-question.gif'); }
6449  /* line 39, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
6450  .x-reset .x-message-box-error {
6451    background-image: url('../../resources/themes/images/default/shared/icon-error.gif'); }
6452  /* line 73, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6453  .x-reset .x-tab-bar {
6454    position: relative;
6455    background-color: transparent;
6456    background-image: none;
6457    background-color: #cbdbef;
6458    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef));
6459    background-image: -webkit-linear-gradient(top, #dde8f5, #cbdbef);
6460    background-image: -moz-linear-gradient(top, #dde8f5, #cbdbef);
6461    background-image: -o-linear-gradient(top, #dde8f5, #cbdbef);
6462    background-image: -ms-linear-gradient(top, #dde8f5, #cbdbef);
6463    background-image: linear-gradient(top, #dde8f5, #cbdbef);
6464    font-size: 11px; }
6465  /* line 80, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6466  .x-reset .x-nlg .x-tab-bar {
6467    background-image: url('../../resources/themes/images/default/tab-bar/tab-bar-default-bg.gif'); }
6468  /* line 85, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6469  .x-reset .x-tab-bar-default-plain,
6470  .x-reset .x-nlg .x-tab-bar-default-plain {
6471    background: transparent none; }
6472  /* line 90, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6473  .x-reset .x-tab-bar-body {
6474    border-style: solid;
6475    border-color: #99bce8;
6476    position: relative;
6477    z-index: 2;
6478    zoom: 1; }
6479  /* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6480  .x-reset .x-tab-bar-top .x-tab-bar-body {
6481    height: 20px;
6482    border-width: 1px 1px 0;
6483    padding: 1px 0 3px; }
6484  /* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6485  .x-reset .x-tab-bar-top .x-tab-bar-strip {
6486    /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
6487    top: 22px;
6488    border-width: 1px 1px 0;
6489    height: 2px; }
6490  /* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6491  .x-reset .x-border-box .x-tab-bar-top .x-tab-bar-body {
6492    height: 25px; }
6493  /* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6494  .x-reset .x-border-box .x-tab-bar-top .x-tab-bar-strip {
6495    height: 3px; }
6496  /* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6497  .x-reset .x-tab-bar-top .x-tab-bar-body-default-plain {
6498    height: 20px;
6499    border-width: 0;
6500    padding: 0 0 2px; }
6501  /* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6502  .x-reset .x-tab-bar-top .x-tab-bar-strip-default-plain {
6503    /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
6504    top: 20px;
6505    border-width: 1px 1px 0 1px;
6506    height: 2px; }
6507  /* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6508  .x-reset .x-border-box .x-tab-bar-top .x-tab-bar-body-default-plain {
6509    height: 22px; }
6510  /* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6511  .x-reset .x-border-box .x-tab-bar-top .x-tab-bar-strip-default-plain {
6512    height: 3px; }
6513  /* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6514  .x-reset .x-tab-bar-bottom .x-tab-bar-body {
6515    height: 20px;
6516    border-width: 0 1px 1px;
6517    padding: 3px 0 1px; }
6518    /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6519    .x-reset .x-tab-bar-bottom .x-tab-bar-body .x-box-inner {
6520      position: relative;
6521      top: -1px; }
6522    /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6523    .x-reset .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller,
6524    .x-reset .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-left,
6525    .x-reset .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-right {
6526      height: 22px; }
6527  /* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6528  .x-reset .x-tab-bar-bottom .x-tab-bar-strip {
6529    top: 0;
6530    border-width: 0 1px 1px 1px;
6531    height: 2px; }
6532  /* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6533  .x-reset .x-border-box .x-tab-bar-bottom .x-tab-bar-body {
6534    height: 25px; }
6535  /* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6536  .x-reset .x-border-box .x-tab-bar-bottom .x-tab-bar-strip {
6537    height: 3px; }
6538  /* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6539  .x-reset .x-tab-bar-bottom .x-tab-bar-body-default-plain {
6540    height: 20px;
6541    border-width: 0;
6542    padding: 3px 0 0; }
6543    /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6544    .x-reset .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-inner {
6545      position: relative;
6546      top: -1px; }
6547    /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6548    .x-reset .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller,
6549    .x-reset .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-left,
6550    .x-reset .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-right {
6551      height: 21px; }
6552  /* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6553  .x-reset .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
6554    top: 0;
6555    border-width: 0 1px 1px 1px;
6556    height: 2px; }
6557  /* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6558  .x-reset .x-border-box .x-tab-bar-bottom .x-tab-bar-body-default-plain {
6559    height: 23px; }
6560  /* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6561  .x-reset .x-border-box .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
6562    height: 3px; }
6563  /* line 141, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
6564  .x-reset .x-tab-bar-strip-default,
6565  .x-reset .x-tab-bar-strip-default-plain {
6566    font-size: 0;
6567    line-height: 0;
6568    position: absolute;
6569    z-index: 1;
6570    border-style: solid;
6571    overflow: hidden;
6572    border-color: #99bce8;
6573    background-color: #deecfd;
6574    zoom: 1; }
6575  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6576  .x-reset .x-tab-default-top {
6577    padding: 3px 3px 0 3px;
6578    border-width: 1px 1px 0 1px;
6579    border-style: solid;
6580    background-color: #deecfd; }
6581  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6582  .x-reset .x-nlg .x-tab-default-top-mc {
6583    background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif');
6584    background-color: #deecfd; }
6585  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6586  .x-reset .x-nbr .x-tab-default-top {
6587    padding: 0 !important;
6588    border-width: 0 !important;
6589    -moz-border-radius: 0px;
6590    -webkit-border-radius: 0px;
6591    -o-border-radius: 0px;
6592    -ms-border-radius: 0px;
6593    -khtml-border-radius: 0px;
6594    border-radius: 0px;
6595    background-color: transparent;
6596    background-position: 1100404px 1000000px; }
6597  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6598  .x-reset .x-nbr .x-tab-default-top-tl,
6599  .x-reset .x-nbr .x-tab-default-top-bl,
6600  .x-reset .x-nbr .x-tab-default-top-tr,
6601  .x-reset .x-nbr .x-tab-default-top-br,
6602  .x-reset .x-nbr .x-tab-default-top-tc,
6603  .x-reset .x-nbr .x-tab-default-top-bc,
6604  .x-reset .x-nbr .x-tab-default-top-ml,
6605  .x-reset .x-nbr .x-tab-default-top-mr {
6606    zoom: 1;
6607    background-image: url('../../resources/themes/images/default/tab/tab-default-top-corners.gif'); }
6608  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6609  .x-reset .x-nbr .x-tab-default-top-ml,
6610  .x-reset .x-nbr .x-tab-default-top-mr {
6611    zoom: 1;
6612    background-image: url('../../resources/themes/images/default/tab/tab-default-top-sides.gif');
6613    background-position: 0 0; }
6614  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6615  .x-reset .x-nbr .x-tab-default-top-mc {
6616    padding: 0px 0px 0 0px; }
6617  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6618  .x-reset .x-strict .x-ie7 .x-tab-default-top-tl,
6619  .x-reset .x-strict .x-ie7 .x-tab-default-top-bl {
6620    position: relative;
6621    right: 0; }
6622  /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6623  .x-reset .x-tab-default-bottom {
6624    padding: 0 3px 3px 3px;
6625    border-width: 0 1px 1px 1px;
6626    border-style: solid;
6627    background-color: #deecfd; }
6628  /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6629  .x-reset .x-nlg .x-tab-default-bottom-mc {
6630    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif');
6631    background-color: #deecfd; }
6632  /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6633  .x-reset .x-nbr .x-tab-default-bottom {
6634    padding: 0 !important;
6635    border-width: 0 !important;
6636    -moz-border-radius: 0px;
6637    -webkit-border-radius: 0px;
6638    -o-border-radius: 0px;
6639    -ms-border-radius: 0px;
6640    -khtml-border-radius: 0px;
6641    border-radius: 0px;
6642    background-color: transparent;
6643    background-position: 1100000px 1000404px; }
6644  /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6645  .x-reset .x-nbr .x-tab-default-bottom-tl,
6646  .x-reset .x-nbr .x-tab-default-bottom-bl,
6647  .x-reset .x-nbr .x-tab-default-bottom-tr,
6648  .x-reset .x-nbr .x-tab-default-bottom-br,
6649  .x-reset .x-nbr .x-tab-default-bottom-tc,
6650  .x-reset .x-nbr .x-tab-default-bottom-bc,
6651  .x-reset .x-nbr .x-tab-default-bottom-ml,
6652  .x-reset .x-nbr .x-tab-default-bottom-mr {
6653    zoom: 1;
6654    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-corners.gif'); }
6655  /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6656  .x-reset .x-nbr .x-tab-default-bottom-ml,
6657  .x-reset .x-nbr .x-tab-default-bottom-mr {
6658    zoom: 1;
6659    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-sides.gif');
6660    background-position: 0 0; }
6661  /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6662  .x-reset .x-nbr .x-tab-default-bottom-mc {
6663    padding: 0 0px 0px 0px; }
6664  /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6665  .x-reset .x-strict .x-ie7 .x-tab-default-bottom-tl,
6666  .x-reset .x-strict .x-ie7 .x-tab-default-bottom-bl {
6667    position: relative;
6668    right: 0; }
6669  /* line 28, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6670  .x-reset .x-tab {
6671    z-index: 1;
6672    margin: 0 0 0 2px;
6673    display: inline-block;
6674    zoom: 1;
6675    *display: inline;
6676    white-space: nowrap;
6677    height: 20px;
6678    border-color: #8db3e3;
6679    cursor: pointer;
6680    cursor: hand; }
6681    /* line 40, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6682    .x-reset .x-tab button {
6683      cursor: pointer;
6684      cursor: hand; }
6685    /* line 45, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6686    .x-reset .x-tab em {
6687      display: block;
6688      padding: 0 6px;
6689      line-height: 1px; }
6690    /* line 51, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6691    .x-reset .x-tab button {
6692      background: none;
6693      border: 0;
6694      padding: 0;
6695      margin: 0;
6696      -webkit-appearance: none;
6697      font-size: 11px;
6698      font-weight: bold;
6699      font-family: tahoma, arial, verdana, sans-serif;
6700      color: #416da3;
6701      outline: 0 none;
6702      overflow-x: visible; }
6703      /* line 69, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6704      .x-reset .x-tab button::-moz-focus-inner {
6705        border: 0;
6706        padding: 0; }
6707      /* line 74, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6708      .x-reset .x-tab button .x-tab-inner {
6709        background-color: transparent;
6710        background-repeat: no-repeat;
6711        background-position: 0 -2px;
6712        display: block;
6713        text-align: center;
6714        white-space: nowrap;
6715        text-overflow: ellipsis;
6716        -o-text-overflow: ellipsis;
6717        overflow: hidden; }
6718    /* line 87, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6719    .x-reset .x-tab img {
6720      display: none; }
6721  /* line 93, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6722  .x-reset .x-border-box .x-tab-default-top {
6723    height: 21px; }
6724  /* line 96, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6725  .x-reset .x-border-box .x-tab-default-bottom {
6726    height: 21px; }
6727  /* line 103, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6728  .x-reset * html .x-ie .x-tab button {
6729    width: 1px; }
6730  /* line 110, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6731  .x-reset .x-strict .x-ie6 .x-tab .x-frame-mc,
6732  .x-reset .x-strict .x-ie7 .x-tab .x-frame-mc {
6733    height: 100%; }
6734  /* line 115, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6735  .x-reset .x-ie .x-tab-active button:active {
6736    position: relative;
6737    top: -1px;
6738    left: -1px; }
6739  /* line 124, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6740  .x-reset .x-tab-default-top {
6741    -moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
6742    -webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
6743    -o-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
6744    box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
6745    border-bottom: 1px solid #99bce8 !important; }
6746    /* line 134, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6747    .x-reset .x-tab-default-top em {
6748      padding-bottom: 3px; }
6749    /* line 139, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6750    .x-reset .x-tab-default-top button,
6751    .x-reset .x-tab-default-top .x-tab-inner {
6752      height: 13px;
6753      line-height: 13px; }
6754  /* line 148, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6755  .x-reset .x-safari4 .x-tab-default-top .x-tab-inner,
6756  .x-reset .x-safari5_0 .x-tab-default-top .x-tab-inner {
6757    line-height: 11px; }
6758  /* line 153, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6759  .x-reset .x-nbr .x-tab-default-top {
6760    border-bottom-width: 1px !important; }
6761  /* line 157, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6762  .x-reset .x-tab-default-top-active {
6763    border-bottom-color: #deecfd !important; }
6764  /* line 163, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6765  .x-reset .x-tab-default-bottom {
6766    -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
6767    -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
6768    -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
6769    box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
6770    border-top: 1px solid #99bce8 !important;
6771    -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
6772    -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
6773    -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
6774    box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; }
6775    /* line 178, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6776    .x-reset .x-tab-default-bottom em {
6777      padding-top: 3px; }
6778    /* line 183, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6779    .x-reset .x-tab-default-bottom button,
6780    .x-reset .x-tab-default-bottom .x-tab-inner {
6781      height: 13px;
6782      line-height: 13px; }
6783  /* line 189, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6784  .x-reset .x-nbr .x-tab-default-bottom {
6785    border-top-width: 1px !important; }
6786  /* line 193, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6787  .x-reset .x-tab-default-bottom-active {
6788    border-top-color: #deecfd !important; }
6789  /* line 197, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6790  .x-reset .x-tab-default-disabled {
6791    cursor: default;
6792    border-color: #bbd2ef;
6793    background-image: none;
6794    background-color: #e1ecfa;
6795    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
6796    background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
6797    background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
6798    background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
6799    background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
6800    background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
6801    /* line 203, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6802    .x-reset .x-tab-default-disabled button {
6803      color: #c3b3b3 !important; }
6804  /* line 209, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6805  .x-reset .x-tab-icon-text-left .x-tab-inner {
6806    padding-left: 20px; }
6807  /* line 214, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6808  .x-reset .x-tab button {
6809    position: relative; }
6810  /* line 218, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6811  .x-reset .x-tab-icon {
6812    position: absolute;
6813    background-repeat: no-repeat;
6814    background-position: 0 -1px;
6815    top: 0;
6816    left: 0;
6817    right: auto;
6818    bottom: 0;
6819    width: 18px;
6820    height: 18px; }
6821  /* line 233, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6822  .x-reset .x-strict .x-ie8 .x-tab button,
6823  .x-reset .x-strict .x-ie9 .x-tab button {
6824    overflow-y: visible; }
6825  /* line 238, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6826  .x-reset .x-tab-default-disabled .x-tab-icon {
6827    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
6828    opacity: 0.5; }
6829  /* line 243, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6830  .x-reset .x-tab-noicon .x-tab-icon {
6831    display: none; }
6832  /* line 269, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6833  .x-reset .x-tab-top-over {
6834    background-image: none;
6835    background-color: #e8f2ff;
6836    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
6837    background-image: -webkit-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
6838    background-image: -moz-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
6839    background-image: -o-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
6840    background-image: -ms-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
6841    background-image: linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
6842  /* line 272, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6843  .x-reset .x-tab-bottom-over {
6844    background-image: none;
6845    background-color: #e8f2ff;
6846    background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
6847    background-image: -webkit-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
6848    background-image: -moz-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
6849    background-image: -o-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
6850    background-image: -ms-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
6851    background-image: linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
6852  /* line 277, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6853  .x-reset .x-tab-active {
6854    z-index: 3; }
6855    /* line 283, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6856    .x-reset .x-tab-active button {
6857      color: #15498b; }
6858  /* line 299, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6859  .x-reset .x-tab-top-active {
6860    background-image: none;
6861    background-color: #deecfd;
6862    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
6863    background-image: -webkit-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
6864    background-image: -moz-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
6865    background-image: -o-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
6866    background-image: -ms-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
6867    background-image: linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); }
6868  /* line 302, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6869  .x-reset .x-tab-bottom-active {
6870    background-image: none;
6871    background-color: #deecfd;
6872    background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
6873    background-image: -webkit-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
6874    background-image: -moz-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
6875    background-image: -o-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
6876    background-image: -ms-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
6877    background-image: linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); }
6878  /* line 307, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6879  .x-reset .x-tab-disabled {
6880    border-color: #bbd2ef; }
6881    /* line 312, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6882    .x-reset .x-tab-disabled button {
6883      color: #c3b3b3; }
6884  /* line 328, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6885  .x-reset .x-tab-top-disabled {
6886    background-image: none;
6887    background: transparent;
6888    background-image: none;
6889    background-color: #e1ecfa;
6890    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
6891    background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
6892    background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
6893    background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
6894    background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
6895    background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
6896  /* line 333, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6897  .x-reset .x-tab-bottom-disabled {
6898    background-image: none;
6899    background: transparent;
6900    background-image: none;
6901    background-color: #e1ecfa;
6902    background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
6903    background-image: -webkit-linear-gradient(bottom, #e1ecfa, #ecf4fe);
6904    background-image: -moz-linear-gradient(bottom, #e1ecfa, #ecf4fe);
6905    background-image: -o-linear-gradient(bottom, #e1ecfa, #ecf4fe);
6906    background-image: -ms-linear-gradient(bottom, #e1ecfa, #ecf4fe);
6907    background-image: linear-gradient(bottom, #e1ecfa, #ecf4fe); }
6908  /* line 342, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6909  .x-reset .x-nlg .x-tab-top {
6910    background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif'); }
6911  /* line 343, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6912  .x-reset .x-nlg .x-tab-bottom {
6913    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif'); }
6914  /* line 347, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6915  .x-reset .x-nlg .x-tab-top-over {
6916    background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-bg.gif'); }
6917  /* line 348, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6918  .x-reset .x-nlg .x-tab-bottom-over {
6919    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-bg.gif'); }
6920  /* line 352, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6921  .x-reset .x-nlg .x-tab-top-active {
6922    background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-bg.gif'); }
6923  /* line 353, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6924  .x-reset .x-nlg .x-tab-bottom-active {
6925    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-bg.gif'); }
6926  /* line 357, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6927  .x-reset .x-nlg .x-tab-top-disabled {
6928    background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-bg.gif') !important; }
6929  /* line 358, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6930  .x-reset .x-nlg .x-tab-bottom-disabled {
6931    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif') !important; }
6932  /* line 363, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6933  .x-reset .x-tab-closable em {
6934    padding-right: 14px; }
6935  /* line 367, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6936  .x-reset .x-tab-close-btn {
6937    position: absolute;
6938    top: 2px;
6939    right: 2px;
6940    width: 11px;
6941    height: 11px;
6942    font-size: 0;
6943    line-height: 0;
6944    text-indent: -999px;
6945    background: no-repeat;
6946    background-image: url('../../resources/themes/images/default/tab/tab-default-close.gif');
6947    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
6948    opacity: 0.6; }
6949  /* line 381, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6950  .x-reset .x-nbr .x-tab-close-btn {
6951    top: 0px;
6952    right: 0px; }
6953  /* line 387, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6954  .x-reset a.x-tab-close-btn:hover {
6955    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
6956    opacity: 1; }
6957  /* line 392, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6958  .x-reset .x-tab-default-disabled a.x-tab-close-btn {
6959    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
6960    opacity: 0.3; }
6961  /* line 404, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6962  .x-reset .x-nbr .x-tab-top-over .x-frame-tl,
6963  .x-reset .x-nbr .x-tab-top-over .x-frame-bl,
6964  .x-reset .x-nbr .x-tab-top-over .x-frame-tr,
6965  .x-reset .x-nbr .x-tab-top-over .x-frame-br,
6966  .x-reset .x-nbr .x-tab-top-over .x-frame-tc,
6967  .x-reset .x-nbr .x-tab-top-over .x-frame-bc {
6968    background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-corners.gif'); }
6969  /* line 408, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6970  .x-reset .x-nbr .x-tab-top-over .x-frame-ml,
6971  .x-reset .x-nbr .x-tab-top-over .x-frame-mr {
6972    background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-sides.gif'); }
6973  /* line 412, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6974  .x-reset .x-nbr .x-tab-top-over .x-frame-mc {
6975    background-color: #e8f2ff;
6976    background-repeat: repeat-x;
6977    background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-bg.gif'); }
6978  /* line 426, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6979  .x-reset .x-nbr .x-tab-bottom-over .x-frame-tl,
6980  .x-reset .x-nbr .x-tab-bottom-over .x-frame-bl,
6981  .x-reset .x-nbr .x-tab-bottom-over .x-frame-tr,
6982  .x-reset .x-nbr .x-tab-bottom-over .x-frame-br,
6983  .x-reset .x-nbr .x-tab-bottom-over .x-frame-tc,
6984  .x-reset .x-nbr .x-tab-bottom-over .x-frame-bc {
6985    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-corners.gif'); }
6986  /* line 430, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6987  .x-reset .x-nbr .x-tab-bottom-over .x-frame-ml,
6988  .x-reset .x-nbr .x-tab-bottom-over .x-frame-mr {
6989    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-sides.gif'); }
6990  /* line 434, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6991  .x-reset .x-nbr .x-tab-bottom-over .x-frame-mc {
6992    background-color: #e8f2ff;
6993    background-repeat: repeat-x;
6994    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-bg.gif'); }
6995  /* line 448, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
6996  .x-reset .x-nbr .x-tab-top-active .x-frame-tl,
6997  .x-reset .x-nbr .x-tab-top-active .x-frame-bl,
6998  .x-reset .x-nbr .x-tab-top-active .x-frame-tr,
6999  .x-reset .x-nbr .x-tab-top-active .x-frame-br,
7000  .x-reset .x-nbr .x-tab-top-active .x-frame-tc,
7001  .x-reset .x-nbr .x-tab-top-active .x-frame-bc {
7002    background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-corners.gif'); }
7003  /* line 452, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
7004  .x-reset .x-nbr .x-tab-top-active .x-frame-ml,
7005  .x-reset .x-nbr .x-tab-top-active .x-frame-mr {
7006    background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-sides.gif'); }
7007  /* line 456, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
7008  .x-reset .x-nbr .x-tab-top-active .x-frame-mc {
7009    background-color: #deecfd;
7010    background-repeat: repeat-x;
7011    background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-bg.gif'); }
7012  /* line 470, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
7013  .x-reset .x-nbr .x-tab-bottom-active .x-frame-tl,
7014  .x-reset .x-nbr .x-tab-bottom-active .x-frame-bl,
7015  .x-reset .x-nbr .x-tab-bottom-active .x-frame-tr,
7016  .x-reset .x-nbr .x-tab-bottom-active .x-frame-br,
7017  .x-reset .x-nbr .x-tab-bottom-active .x-frame-tc,
7018  .x-reset .x-nbr .x-tab-bottom-active .x-frame-bc {
7019    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-corners.gif'); }
7020  /* line 474, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
7021  .x-reset .x-nbr .x-tab-bottom-active .x-frame-ml,
7022  .x-reset .x-nbr .x-tab-bottom-active .x-frame-mr {
7023    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-sides.gif'); }
7024  /* line 478, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
7025  .x-reset .x-nbr .x-tab-bottom-active .x-frame-mc {
7026    background-color: #deecfd;
7027    background-repeat: repeat-x;
7028    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-bg.gif'); }
7029  /* line 492, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
7030  .x-reset .x-nbr .x-tab-top-disabled .x-frame-tl,
7031  .x-reset .x-nbr .x-tab-top-disabled .x-frame-bl,
7032  .x-reset .x-nbr .x-tab-top-disabled .x-frame-tr,
7033  .x-reset .x-nbr .x-tab-top-disabled .x-frame-br,
7034  .x-reset .x-nbr .x-tab-top-disabled .x-frame-tc,
7035  .x-reset .x-nbr .x-tab-top-disabled .x-frame-bc {
7036    background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-corners.gif'); }
7037  /* line 496, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
7038  .x-reset .x-nbr .x-tab-top-disabled .x-frame-ml,
7039  .x-reset .x-nbr .x-tab-top-disabled .x-frame-mr {
7040    background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-sides.gif'); }
7041  /* line 500, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
7042  .x-reset .x-nbr .x-tab-top-disabled .x-frame-mc {
7043    background-repeat: repeat-x;
7044    background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-bg.gif'); }
7045  /* line 513, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
7046  .x-reset .x-nbr .x-tab-bottom-disabled .x-frame-tl,
7047  .x-reset .x-nbr .x-tab-bottom-disabled .x-frame-bl,
7048  .x-reset .x-nbr .x-tab-bottom-disabled .x-frame-tr,
7049  .x-reset .x-nbr .x-tab-bottom-disabled .x-frame-br,
7050  .x-reset .x-nbr .x-tab-bottom-disabled .x-frame-tc,
7051  .x-reset .x-nbr .x-tab-bottom-disabled .x-frame-bc {
7052    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-corners.gif'); }
7053  /* line 517, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
7054  .x-reset .x-nbr .x-tab-bottom-disabled .x-frame-ml,
7055  .x-reset .x-nbr .x-tab-bottom-disabled .x-frame-mr {
7056    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-sides.gif'); }
7057  /* line 521, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
7058  .x-reset .x-nbr .x-tab-bottom-disabled .x-frame-mc {
7059    background-repeat: repeat-x;
7060    background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif'); }
7061  /* line 9, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7062  .x-reset .x-autowidth-table table.x-grid-table {
7063    table-layout: auto;
7064    width: auto!important; }
7065  /* line 14, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7066  .x-reset .x-tree-no-lines .x-tree-elbow {
7067    background-color: transparent; }
7068  /* line 18, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7069  .x-reset .x-tree-no-lines .x-tree-elbow-end {
7070    background-color: transparent; }
7071  /* line 22, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7072  .x-reset .x-tree-no-lines .x-tree-elbow-line {
7073    background-color: transparent; }
7074  /* line 27, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7075  .x-reset .x-tree-arrows .x-tree-elbow-plus {
7076    background: transparent no-repeat 0 0; }
7077  /* line 31, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7078  .x-reset .x-tree-arrows .x-tree-elbow-end-plus {
7079    background: transparent no-repeat 0 0; }
7080  /* line 35, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7081  .x-reset .x-tree-arrows .x-tree-elbow-end-minus {
7082    background: transparent no-repeat -16px 0; }
7083  /* line 39, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7084  .x-reset .x-tree-arrows .x-tree-elbow-minus {
7085    background: transparent no-repeat -16px 0; }
7086  /* line 43, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7087  .x-reset .x-tree-arrows .x-tree-elbow {
7088    background-color: transparent !important; }
7089  /* line 47, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7090  .x-reset .x-tree-arrows .x-tree-elbow-end {
7091    background-color: transparent !important; }
7092  /* line 51, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7093  .x-reset .x-tree-arrows .x-tree-elbow-line {
7094    background-color: transparent !important; }
7095  /* line 57, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7096  .x-reset .x-tree-arrows .x-tree-expander-over .x-tree-elbow-plus,
7097  .x-reset .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-plus {
7098    background-position: -32px 0; }
7099  /* line 62, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7100  .x-reset .x-tree-arrows .x-tree-expander-over .x-tree-elbow-minus,
7101  .x-reset .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-minus {
7102    background-position: -48px 0; }
7103  /* line 67, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7104  .x-reset .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-plus,
7105  .x-reset .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
7106    background-position: -16px 0; }
7107  /* line 72, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7108  .x-reset .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-plus,
7109  .x-reset .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-end-plus {
7110    background-position: -48px 0; }
7111  /* line 79, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7112  .x-reset .x-tree-elbow-plus,
7113  .x-reset .x-tree-elbow-minus,
7114  .x-reset .x-tree-elbow-end-plus,
7115  .x-reset .x-tree-elbow-end-minus {
7116    cursor: pointer; }
7117  /* line 85, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7118  .x-reset .x-tree-lines .x-tree-elbow {
7119    background-image: url('../../resources/themes/images/default/tree/elbow.gif'); }
7120  /* line 89, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7121  .x-reset .x-tree-lines .x-tree-elbow-end {
7122    background-image: url('../../resources/themes/images/default/tree/elbow-end.gif'); }
7123  /* line 93, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7124  .x-reset .x-tree-lines .x-tree-elbow-plus {
7125    background-image: url('../../resources/themes/images/default/tree/elbow-plus.gif'); }
7126  /* line 97, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7127  .x-reset .x-tree-lines .x-tree-elbow-end-plus {
7128    background-image: url('../../resources/themes/images/default/tree/elbow-end-plus.gif'); }
7129  /* line 101, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7130  .x-reset .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus {
7131    background-image: url('../../resources/themes/images/default/tree/elbow-minus.gif'); }
7132  /* line 105, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7133  .x-reset .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
7134    background-image: url('../../resources/themes/images/default/tree/elbow-end-minus.gif'); }
7135  /* line 109, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7136  .x-reset .x-tree-lines .x-tree-elbow-line {
7137    background-image: url('../../resources/themes/images/default/tree/elbow-line.gif'); }
7138  /* line 116, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7139  .x-reset .x-tree-no-lines .x-tree-elbow-plus,
7140  .x-reset .x-tree-no-lines .x-tree-elbow-end-plus {
7141    background-image: url('../../resources/themes/images/default/tree/elbow-plus-nl.gif'); }
7142  /* line 121, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7143  .x-reset .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-plus,
7144  .x-reset .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
7145    background-image: url('../../resources/themes/images/default/tree/elbow-end-minus-nl.gif'); }
7146  /* line 130, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7147  .x-reset .x-tree-arrows .x-tree-elbow-plus,
7148  .x-reset .x-tree-arrows .x-tree-elbow-minus,
7149  .x-reset .x-tree-arrows .x-tree-elbow-end-plus,
7150  .x-reset .x-tree-arrows .x-tree-elbow-end-minus {
7151    background-image: url('../../resources/themes/images/default/tree/arrows.gif'); }
7152  /* line 135, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7153  .x-reset .x-tree-icon {
7154    margin: 2px 3px 0 0; }
7155  /* line 139, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7156  .x-reset .x-grid-with-row-lines .x-tree-icon {
7157    margin-top: 1px; }
7158  /* line 148, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7159  .x-reset .x-tree-elbow,
7160  .x-reset .x-tree-elbow-end,
7161  .x-reset .x-tree-elbow-plus,
7162  .x-reset .x-tree-elbow-end-plus,
7163  .x-reset .x-tree-elbow-empty,
7164  .x-reset .x-tree-elbow-line {
7165    height: 20px;
7166    width: 16px; }
7167  /* line 159, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7168  .x-reset .x-grid-with-row-lines .x-tree-elbow,
7169  .x-reset .x-grid-with-row-lines .x-tree-elbow-end,
7170  .x-reset .x-grid-with-row-lines .x-tree-elbow-plus,
7171  .x-reset .x-grid-with-row-lines .x-tree-elbow-end-plus,
7172  .x-reset .x-grid-with-row-lines .x-tree-elbow-empty,
7173  .x-reset .x-grid-with-row-lines .x-tree-elbow-line {
7174    height: 19px;
7175    background-position: 0 -1px; }
7176  /* line 165, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7177  .x-reset .x-tree-icon-leaf {
7178    width: 16px;
7179    background-image: url('../../resources/themes/images/default/tree/leaf.gif'); }
7180  /* line 170, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7181  .x-reset .x-tree-icon-parent {
7182    width: 16px;
7183    background-image: url('../../resources/themes/images/default/tree/folder.gif'); }
7184  /* line 175, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7185  .x-reset .x-grid-tree-node-expanded .x-tree-icon-parent {
7186    background-image: url('../../resources/themes/images/default/tree/folder-open.gif'); }
7187  /* line 179, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7188  .x-reset .x-grid-rowbody {
7189    padding: 0; }
7190  /* line 183, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7191  .x-reset .x-grid-cell-treecolumn .x-grid-cell-inner {
7192    padding: 0;
7193    line-height: 19px; }
7194  /* line 188, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7195  .x-reset .x-grid-with-row-lines .x-grid-cell-treecolumn .x-grid-cell-inner {
7196    line-height: 17px; }
7197  /* line 192, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7198  .x-reset .x-tree-panel .x-grid-cell-inner {
7199    cursor: pointer; }
7200    /* line 194, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7201    .x-reset .x-tree-panel .x-grid-cell-inner img {
7202      display: inline-block;
7203      vertical-align: top; }
7204  /* line 207, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7205  .x-reset .x-ie .x-tree-panel .x-tree-elbow,
7206  .x-reset .x-ie .x-tree-panel .x-tree-elbow-end,
7207  .x-reset .x-ie .x-tree-panel .x-tree-elbow-plus,
7208  .x-reset .x-ie .x-tree-panel .x-tree-elbow-end-plus,
7209  .x-reset .x-ie .x-tree-panel .x-tree-elbow-empty,
7210  .x-reset .x-ie .x-tree-panel .x-tree-elbow-line {
7211    vertical-align: -6px; }
7212  /* line 215, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7213  .x-reset .x-grid-editor-on-text-node .x-form-text {
7214    padding-left: 1px;
7215    padding-right: 1px; }
7216  /* line 222, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7217  .x-reset .x-ie .x-grid-editor-on-text-node .x-form-text {
7218    padding-left: 2px;
7219    padding-right: 2px; }
7220  /* line 234, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7221  .x-reset .x-tree-checkbox {
7222    margin: 4px 3px 0 0;
7223    display: inline-block;
7224    vertical-align: top;
7225    width: 13px;
7226    height: 13px;
7227    background: no-repeat;
7228    background-image: url('../../resources/themes/images/default/form/checkbox.gif');
7229    overflow: hidden;
7230    padding: 0;
7231    border: 0; }
7232    /* line 247, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7233    .x-reset .x-tree-checkbox::-moz-focus-inner {
7234      padding: 0;
7235      border: 0; }
7236  /* line 253, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7237  .x-reset .x-grid-with-row-lines .x-tree-checkbox {
7238    margin-top: 3px; }
7239  /* line 257, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7240  .x-reset .x-tree-checkbox-checked {
7241    background-position: 0 -13px; }
7242  /* line 261, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7243  .x-reset .x-tree-drop-ok-append .x-dd-drop-icon {
7244    background-image: url('../../resources/themes/images/default/tree/drop-append.gif'); }
7245  /* line 265, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7246  .x-reset .x-tree-drop-ok-above .x-dd-drop-icon {
7247    background-image: url('../../resources/themes/images/default/tree/drop-above.gif'); }
7248  /* line 269, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7249  .x-reset .x-tree-drop-ok-below .x-dd-drop-icon {
7250    background-image: url('../../resources/themes/images/default/tree/drop-below.gif'); }
7251  /* line 273, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7252  .x-reset .x-tree-drop-ok-between .x-dd-drop-icon {
7253    background-image: url('../../resources/themes/images/default/tree/drop-between.gif'); }
7254  /* line 277, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7255  .x-reset .x-grid-tree-loading .x-tree-icon {
7256    background-image: url('../../resources/themes/images/default/tree/loading.gif'); }
7257  /* line 281, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7258  .x-reset .x-tree-ddindicator {
7259    height: 1px;
7260    border-width: 1px 0px 0px;
7261    border-style: dotted;
7262    border-color: green; }
7263  /* line 288, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7264  .x-reset .x-grid-tree-loading span {
7265    font-style: italic;
7266    color: #444444; }
7267  /* line 293, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
7268  .x-reset .x-tree-animator-wrap {
7269    overflow: hidden; }
7270  /* line 6, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
7271  .x-reset .x-surface {
7272    display: -moz-inline-box;
7273    -moz-box-orient: vertical;
7274    display: inline-block;
7275    vertical-align: middle;
7276    *vertical-align: auto;
7277    overflow: hidden; }
7278    /* line 7, ../../../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
7279    .x-reset .x-surface {
7280      *display: inline; }
7281  /* line 11, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
7282  .x-reset .rvml {
7283    behavior: url(#default#VML); }
7284  /* line 15, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
7285  .x-reset .x-surface tspan {
7286    user-select: none;
7287    -o-user-select: none;
7288    -ms-user-select: none;
7289    -moz-user-select: -moz-none;
7290    -webkit-user-select: none;
7291    cursor: default; }
7292  /* line 19, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
7293  .x-reset .x-vml-sprite {
7294    position: absolute;
7295    left: 0;
7296    top: 0;
7297    width: 1px;
7298    height: 1px; }
7299  /* line 27, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
7300  .x-reset .x-vml-group {
7301    position: absolute;
7302    left: 0;
7303    top: 0;
7304    width: 1000px;
7305    height: 1000px; }
7306  /* line 35, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
7307  .x-reset .x-vml-measure-span {
7308    position: absolute;
7309    left: -9999em;
7310    top: -9999em;
7311    padding: 0;
7312    margin: 0;
7313    display: inline; }
7314  /* line 44, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
7315  .x-reset .x-vml-base {
7316    position: relative;
7317    top: 0;
7318    left: 0;
7319    overflow: hidden;
7320    display: inline-block; }
7321  /* line 52, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
7322  .x-reset .x-vml-base {
7323    position: relative;
7324    top: 0;
7325    left: 0;
7326    overflow: hidden;
7327    display: inline-block; }
7328  /* line 60, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
7329  .x-reset svg, .x-reset vml {
7330    overflow: hidden; }
7331  /* line 6, ../themes/stylesheets/ext4/default/widgets/_viewport.scss */
7332  .x-reset .x-viewport, .x-reset .x-viewport body {
7333    margin: 0;
7334    padding: 0;
7335    border: 0 none;
7336    overflow: hidden;
7337    height: 100%;
7338    position: static; }
7339  /* line 3, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
7340  .x-reset .x-dd-drag-proxy {
7341    z-index: 1000000!important; }
7342  /* line 8, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
7343  .x-reset .x-dd-drag-repair .x-dd-drag-ghost {
7344    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
7345    opacity: 0.6; }
7346  /* line 12, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
7347  .x-reset .x-dd-drag-repair .x-dd-drop-icon {
7348    display: none; }
7349  /* line 17, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
7350  .x-reset .x-dd-drag-ghost {
7351    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
7352    opacity: 0.85;
7353    padding: 5px;
7354    padding-left: 20px;
7355    white-space: nowrap;
7356    color: #000;
7357    font: normal 11px tahoma, arial, verdana, sans-serif;
7358    border: 1px solid;
7359    border-color: #ddd #bbb #bbb #ddd;
7360    background-color: #fff; }
7361  /* line 34, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
7362  .x-reset .x-dd-drop-icon {
7363    position: absolute;
7364    top: 3px;
7365    left: 3px;
7366    display: block;
7367    width: 16px;
7368    height: 16px;
7369    background-color: transparent;
7370    background-position: center;
7371    background-repeat: no-repeat;
7372    z-index: 1; }
7373  /* line 51, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
7374  .x-reset .x-view-selector {
7375    position: absolute;
7376    left: 0;
7377    top: 0;
7378    width: 0;
7379    background-color: #c3daf9;
7380    border: 1px dotted #3399bb;
7381    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
7382    opacity: 0.5;
7383    zoom: 1; }
7384  /* line 66, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
7385  .x-reset .x-dd-drop-nodrop .x-dd-drop-icon {
7386    background-image: url('../../resources/themes/images/default/dd/drop-no.gif'); }
7387  /* line 70, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
7388  .x-reset .x-dd-drop-ok .x-dd-drop-icon {
7389    background-image: url('../../resources/themes/images/default/dd/drop-yes.gif'); }
7390  /* line 74, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
7391  .x-reset .x-dd-drop-ok-add .x-dd-drop-icon {
7392    background-image: url('../../resources/themes/images/default/dd/drop-add.gif'); }
7393  /* line 2, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7394  .x-reset .x-resizable-handle {
7395    position: absolute;
7396    z-index: 100;
7397    font-size: 1px;
7398    line-height: 6px;
7399    overflow: hidden;
7400    zoom: 1;
7401    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
7402    opacity: 0;
7403    background-color: #fff; }
7404  /* line 14, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7405  .x-reset .x-collapsed .x-resizable-handle {
7406    display: none; }
7407  /* line 18, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7408  .x-reset .x-resizable-handle-east {
7409    width: 6px;
7410    height: 100%;
7411    right: 0;
7412    top: 0; }
7413  /* line 27, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7414  .x-reset .x-resizable-over .x-resizable-handle-east {
7415    cursor: e-resize; }
7416  /* line 32, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7417  .x-reset .x-resizable-handle-south {
7418    width: 100%;
7419    height: 6px;
7420    left: 0;
7421    bottom: 0; }
7422  /* line 41, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7423  .x-reset .x-resizable-over .x-resizable-handle-south {
7424    cursor: s-resize; }
7425  /* line 46, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7426  .x-reset .x-resizable-handle-west {
7427    width: 6px;
7428    height: 100%;
7429    left: 0;
7430    top: 0; }
7431  /* line 55, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7432  .x-reset .x-resizable-over .x-resizable-handle-west {
7433    cursor: w-resize; }
7434  /* line 60, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7435  .x-reset .x-resizable-handle-north {
7436    width: 100%;
7437    height: 6px;
7438    left: 0;
7439    top: 0; }
7440  /* line 69, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7441  .x-reset .x-resizable-over .x-resizable-handle-north {
7442    cursor: n-resize; }
7443  /* line 74, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7444  .x-reset .x-resizable-handle-southeast {
7445    width: 6px;
7446    height: 6px;
7447    right: 0;
7448    bottom: 0;
7449    z-index: 101; }
7450  /* line 85, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7451  .x-reset .x-resizable-over .x-resizable-handle-southeast {
7452    cursor: se-resize; }
7453  /* line 90, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7454  .x-reset .x-resizable-handle-northwest {
7455    width: 6px;
7456    height: 6px;
7457    left: 0;
7458    top: 0;
7459    z-index: 101; }
7460  /* line 101, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7461  .x-reset .x-resizable-over .x-resizable-handle-northwest {
7462    cursor: nw-resize; }
7463  /* line 106, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7464  .x-reset .x-resizable-handle-northeast {
7465    width: 6px;
7466    height: 6px;
7467    right: 0;
7468    top: 0;
7469    z-index: 101; }
7470  /* line 117, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7471  .x-reset .x-resizable-over .x-resizable-handle-northeast {
7472    cursor: ne-resize; }
7473  /* line 122, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7474  .x-reset .x-resizable-handle-southwest {
7475    width: 6px;
7476    height: 6px;
7477    left: 0;
7478    bottom: 0;
7479    z-index: 101; }
7480  /* line 133, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7481  .x-reset .x-resizable-over .x-resizable-handle-southwest {
7482    cursor: sw-resize; }
7483  /* line 140, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7484  .x-reset .x-ie .x-resizable-handle-east {
7485    margin-right: -1px;
7486    /*IE rounding error*/ }
7487  /* line 144, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7488  .x-reset .x-ie .x-resizable-handle-south {
7489    margin-bottom: -1px; }
7490  /* line 149, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7491  .x-reset .x-resizable-over .x-resizable-handle, .x-reset .x-resizable-pinned .x-resizable-handle {
7492    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
7493    opacity: 1; }
7494  /* line 153, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7495  .x-reset .x-window .x-window-handle {
7496    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
7497    opacity: 0; }
7498  /* line 157, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7499  .x-reset .x-window-collapsed .x-window-handle {
7500    display: none; }
7501  /* line 161, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7502  .x-reset .x-resizable-proxy {
7503    border: 1px dashed #3b5a82;
7504    position: absolute;
7505    left: 0;
7506    top: 0;
7507    overflow: hidden;
7508    z-index: 50000; }
7509  /* line 170, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7510  .x-reset .x-resizable-overlay {
7511    position: absolute;
7512    left: 0;
7513    top: 0;
7514    width: 100%;
7515    height: 100%;
7516    display: none;
7517    z-index: 200000;
7518    background-color: #fff;
7519    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
7520    opacity: 0; }
7521  /* line 190, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7522  .x-reset .x-resizable-over .x-resizable-handle-east,
7523  .x-reset .x-resizable-over .x-resizable-handle-west,
7524  .x-reset .x-resizable-pinned .x-resizable-handle-east,
7525  .x-reset .x-resizable-pinned .x-resizable-handle-west {
7526    background-position: left;
7527    background-image: url('../../resources/themes/images/default/sizer/e-handle.gif'); }
7528  /* line 196, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7529  .x-reset .x-resizable-over .x-resizable-handle-south,
7530  .x-reset .x-resizable-over .x-resizable-handle-north,
7531  .x-reset .x-resizable-pinned .x-resizable-handle-south,
7532  .x-reset .x-resizable-pinned .x-resizable-handle-north {
7533    background-position: top;
7534    background-image: url('../../resources/themes/images/default/sizer/s-handle.gif'); }
7535  /* line 201, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7536  .x-reset .x-resizable-over .x-resizable-handle-southeast,
7537  .x-reset .x-resizable-pinned .x-resizable-handle-southeast {
7538    background-position: top left;
7539    background-image: url('../../resources/themes/images/default/sizer/se-handle.gif'); }
7540  /* line 206, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7541  .x-reset .x-resizable-over .x-resizable-handle-northwest,
7542  .x-reset .x-resizable-pinned .x-resizable-handle-northwest {
7543    background-position: bottom right;
7544    background-image: url('../../resources/themes/images/default/sizer/nw-handle.gif'); }
7545  /* line 211, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7546  .x-reset .x-resizable-over .x-resizable-handle-northeast,
7547  .x-reset .x-resizable-pinned .x-resizable-handle-northeast {
7548    background-position: bottom left;
7549    background-image: url('../../resources/themes/images/default/sizer/ne-handle.gif'); }
7550  /* line 216, ../themes/stylesheets/ext4/default/util/_resizable.scss */
7551  .x-reset .x-resizable-over .x-resizable-handle-southwest,
7552  .x-reset .x-resizable-pinned .x-resizable-handle-southwest {
7553    background-position: top right;
7554    background-image: url('../../resources/themes/images/default/sizer/sw-handle.gif'); }
7555  /* line 3, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7556  .x-reset .x-splitter .x-collapse-el {
7557    position: absolute;
7558    cursor: pointer;
7559    background-color: transparent;
7560    background-repeat: no-repeat !important; }
7561  /* line 14, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7562  .x-reset .x-layout-split-left,
7563  .x-reset .x-layout-split-right {
7564    top: 50%;
7565    margin-top: -17px;
7566    width: 5px;
7567    height: 35px; }
7568  /* line 24, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7569  .x-reset .x-layout-split-top,
7570  .x-reset .x-layout-split-bottom {
7571    left: 50%;
7572    width: 35px;
7573    height: 5px;
7574    margin-left: -17px; }
7575  /* line 33, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7576  .x-reset .x-layout-split-left {
7577    background: no-repeat top right;
7578    background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
7579  /* line 38, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7580  .x-reset .x-layout-split-right {
7581    background: no-repeat top left;
7582    background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
7583  /* line 43, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7584  .x-reset .x-layout-split-top {
7585    background: no-repeat top left;
7586    background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
7587  /* line 48, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7588  .x-reset .x-layout-split-bottom {
7589    background: no-repeat top left;
7590    background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
7591  /* line 54, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7592  .x-reset .x-splitter-collapsed .x-layout-split-left {
7593    background: no-repeat top left;
7594    background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
7595  /* line 59, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7596  .x-reset .x-splitter-collapsed .x-layout-split-right {
7597    background: no-repeat top right;
7598    background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
7599  /* line 64, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7600  .x-reset .x-splitter-collapsed .x-layout-split-top {
7601    background: no-repeat top left;
7602    background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
7603  /* line 69, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7604  .x-reset .x-splitter-collapsed .x-layout-split-bottom {
7605    background: no-repeat top left;
7606    background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
7607  /* line 75, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7608  .x-reset .x-splitter-horizontal {
7609    cursor: e-resize;
7610    cursor: row-resize;
7611    font-size: 1px; }
7612  /* line 81, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7613  .x-reset .x-splitter-vertical {
7614    cursor: e-resize;
7615    cursor: col-resize;
7616    font-size: 1px; }
7617  /* line 86, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7618  .x-reset .x-splitter-collapsed, .x-reset .x-splitter-horizontal-noresize, .x-reset .x-splitter-vertical-noresize {
7619    cursor: default; }
7620  /* line 90, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7621  .x-reset .x-splitter-active {
7622    z-index: 4;
7623    font-size: 1px;
7624    background-color: #b4b4b4;
7625    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
7626    opacity: 0.8; }
7627  /* line 97, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7628  .x-reset .x-splitter-active .x-collapse-el {
7629    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
7630    opacity: 0.3; }
7631  /* line 102, ../themes/stylesheets/ext4/default/util/_splitter.scss */
7632  .x-reset .x-proxy-el {
7633    position: absolute;
7634    background: #b4b4b4;
7635    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
7636    opacity: 0.8; }
7637  /* line 6, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7638  .x-reset .x-docked {
7639    position: absolute !important;
7640    z-index: 1; }
7641  /* line 11, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7642  .x-reset .x-docked-top {
7643    border-bottom-width: 0 !important; }
7644  /* line 15, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7645  .x-reset .x-docked-bottom {
7646    border-top-width: 0 !important; }
7647  /* line 19, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7648  .x-reset .x-docked-left {
7649    border-right-width: 0 !important; }
7650  /* line 23, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7651  .x-reset .x-docked-right {
7652    border-left-width: 0 !important; }
7653  /* line 27, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7654  .x-reset .x-docked-noborder-top {
7655    border-top-width: 0 !important; }
7656  /* line 31, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7657  .x-reset .x-docked-noborder-right {
7658    border-right-width: 0 !important; }
7659  /* line 35, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7660  .x-reset .x-docked-noborder-bottom {
7661    border-bottom-width: 0 !important; }
7662  /* line 39, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7663  .x-reset .x-docked-noborder-left {
7664    border-left-width: 0 !important; }
7665  /* line 43, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7666  .x-reset .x-box-inner {
7667    overflow: hidden;
7668    zoom: 1;
7669    position: relative;
7670    left: 0;
7671    top: 0; }
7672  /* line 53, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7673  .x-reset .x-box-item {
7674    position: absolute !important;
7675    left: 0;
7676    top: 0; }
7677  /* line 59, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7678  .x-reset .x-rtl .x-box-item {
7679    right: 0;
7680    left: auto; }
7681  /* line 65, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7682  .x-reset .x-box-layout-ct,
7683  .x-reset .x-border-layout-ct {
7684    overflow: hidden;
7685    zoom: 1; }
7686  /* line 70, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7687  .x-reset .x-border-layout-ct {
7688    background-color: #dfe8f6;
7689    position: relative; }
7690  /* line 75, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7691  .x-reset .x-overflow-hidden {
7692    overflow: hidden !important; }
7693  /* line 79, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7694  .x-reset .x-inline-children > * {
7695    display: inline-block !important; }
7696  /* line 83, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7697  .x-reset .x-abs-layout-ct {
7698    position: relative; }
7699  /* line 87, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7700  .x-reset .x-abs-layout-item {
7701    position: absolute !important; }
7702  /* line 91, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7703  .x-reset .x-fit-item {
7704    position: relative; }
7705  /* line 95, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7706  .x-reset .x-border-region-slide-in {
7707    z-index: 5; }
7708  /* line 99, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7709  .x-reset .x-region-collapsed-placeholder {
7710    z-index: 4; }
7711  /* line 103, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7712  .x-reset .x-accordion-hd .x-panel-header-text {
7713    color: black;
7714    font-weight: normal; }
7715  /* line 108, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7716  .x-reset .x-accordion-hd {
7717    background: #d9e7f8 !important;
7718    -moz-box-shadow: inset 0 0 0 0 #d9e7f8;
7719    -webkit-box-shadow: inset 0 0 0 0 #d9e7f8;
7720    -o-box-shadow: inset 0 0 0 0 #d9e7f8;
7721    box-shadow: inset 0 0 0 0 #d9e7f8; }
7722    /* line 112, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7723    .x-reset .x-accordion-hd .x-tool-collapse-top,
7724    .x-reset .x-accordion-hd .x-tool-collapse-right,
7725    .x-reset .x-accordion-hd .x-tool-collapse-bottom,
7726    .x-reset .x-accordion-hd .x-tool-collapse-left {
7727      background-position: 0 -255px; }
7728    /* line 119, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7729    .x-reset .x-accordion-hd .x-tool-expand-top,
7730    .x-reset .x-accordion-hd .x-tool-expand-right,
7731    .x-reset .x-accordion-hd .x-tool-expand-bottom,
7732    .x-reset .x-accordion-hd .x-tool-expand-left {
7733      background-position: 0 -240px; }
7734    /* line 127, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7735    .x-reset .x-accordion-hd .x-tool-over .x-tool-collapse-top,
7736    .x-reset .x-accordion-hd .x-tool-over .x-tool-collapse-right,
7737    .x-reset .x-accordion-hd .x-tool-over .x-tool-collapse-bottom,
7738    .x-reset .x-accordion-hd .x-tool-over .x-tool-collapse-left {
7739      background-position: -15px -255px; }
7740    /* line 136, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7741    .x-reset .x-accordion-hd .x-tool-over .x-tool-expand-top,
7742    .x-reset .x-accordion-hd .x-tool-over .x-tool-expand-right,
7743    .x-reset .x-accordion-hd .x-tool-over .x-tool-expand-bottom,
7744    .x-reset .x-accordion-hd .x-tool-over .x-tool-expand-left {
7745      background-position: -15px -240px; }
7746  /* line 145, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7747  .x-reset .x-accordion-hd {
7748    border-width: 1px 0 1px 0 !important;
7749    padding: 4px 5px 5px 5px;
7750    border-top-color: #f3f7fb !important; }
7751  /* line 151, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7752  .x-reset .x-accordion-body {
7753    border-width: 0 !important; }
7754  /* line 155, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7755  .x-reset .x-accordion-hd-sibling-expanded {
7756    border-top-color: #99bce8 !important;
7757    -moz-box-shadow: inset 0 1px 0 0 #f3f7fb;
7758    -webkit-box-shadow: inset 0 1px 0 0 #f3f7fb;
7759    -o-box-shadow: inset 0 1px 0 0 #f3f7fb;
7760    box-shadow: inset 0 1px 0 0 #f3f7fb; }
7761  /* line 160, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7762  .x-reset .x-accordion-hd-last-collapsed {
7763    border-bottom-color: #d9e7f8 !important; }
7764  /* line 169, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7765  .x-reset .x-frame-tl,
7766  .x-reset .x-frame-tr,
7767  .x-reset .x-frame-tc,
7768  .x-reset .x-frame-bl,
7769  .x-reset .x-frame-br,
7770  .x-reset .x-frame-bc {
7771    overflow: hidden;
7772    background-repeat: no-repeat; }
7773  /* line 175, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7774  .x-reset .x-frame-tc,
7775  .x-reset .x-frame-bc {
7776    background-repeat: repeat-x; }
7777  /* line 179, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7778  .x-reset .x-frame-mc {
7779    position: relative;
7780    background-repeat: repeat-x;
7781    overflow: hidden; }
7782  /* line 188, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7783  .x-reset .x-box-scroller-left {
7784    float: left;
7785    height: 100%;
7786    z-index: 5; }
7787    /* line 195, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7788    .x-reset .x-box-scroller-left .x-toolbar-scroll-left,
7789    .x-reset .x-box-scroller-left .x-tabbar-scroll-left {
7790      width: 18px;
7791      position: relative;
7792      cursor: pointer;
7793      height: 20px;
7794      background: transparent no-repeat -18px 0;
7795      background-image: url('../../resources/themes/images/default/tab-bar/scroll-left.gif'); }
7796    /* line 203, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7797    .x-reset .x-box-scroller-left .x-toolbar-scroll-left-hover {
7798      background-position: 0 0; }
7799    /* line 207, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7800    .x-reset .x-box-scroller-left .x-toolbar-scroll-left-disabled,
7801    .x-reset .x-box-scroller-left .x-tabbar-scroll-left-disabled {
7802      background-position: -18px 0;
7803      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
7804      opacity: 0.5;
7805      cursor: default; }
7806    /* line 214, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7807    .x-reset .x-box-scroller-left .x-toolbar-scroll-left {
7808      background-image: url('../../resources/themes/images/default/toolbar/scroll-left.gif');
7809      background-position: -14px 0; }
7810    /* line 218, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7811    .x-reset .x-box-scroller-left .x-toolbar-scroll-left-hover {
7812      background-position: 0 0; }
7813    /* line 221, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7814    .x-reset .x-box-scroller-left .x-toolbar-scroll-left-disabled {
7815      background-position: -14px 0; }
7816    /* line 225, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7817    .x-reset .x-box-scroller-left .x-toolbar-scroll-left {
7818      width: 14px;
7819      height: 22px;
7820      border-bottom: 1px solid #8db2e3; }
7821  /* line 233, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7822  .x-reset .x-horizontal-box-overflow-body {
7823    float: left; }
7824  /* line 236, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7825  .x-reset .x-box-scroller-right {
7826    float: right;
7827    height: 100%;
7828    z-index: 5; }
7829    /* line 243, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7830    .x-reset .x-box-scroller-right .x-toolbar-scroll-right,
7831    .x-reset .x-box-scroller-right .x-tabbar-scroll-right {
7832      width: 18px;
7833      position: relative;
7834      cursor: pointer;
7835      height: 20px;
7836      background: transparent no-repeat 0 0;
7837      background-image: url('../../resources/themes/images/default/tab-bar/scroll-right.gif'); }
7838    /* line 251, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7839    .x-reset .x-box-scroller-right .x-toolbar-scroll-right-hover {
7840      background-position: -18px 0; }
7841    /* line 255, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7842    .x-reset .x-box-scroller-right .x-toolbar-scroll-right-disabled,
7843    .x-reset .x-box-scroller-right .x-tabbar-scroll-right-disabled {
7844      background-position: 0 0;
7845      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
7846      opacity: 0.5;
7847      cursor: default; }
7848    /* line 262, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7849    .x-reset .x-box-scroller-right .x-toolbar-scroll-right {
7850      background-image: url('../../resources/themes/images/default/toolbar/scroll-right.gif'); }
7851    /* line 265, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7852    .x-reset .x-box-scroller-right .x-toolbar-scroll-right-hover {
7853      background-position: -14px 0; }
7854    /* line 268, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7855    .x-reset .x-box-scroller-right .x-toolbar-scroll-right-disabled {
7856      background-position: 0 0; }
7857    /* line 272, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7858    .x-reset .x-box-scroller-right .x-toolbar-scroll-right {
7859      width: 14px;
7860      height: 22px;
7861      border-bottom: 1px solid #8db2e3; }
7862  /* line 282, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7863  .x-reset .x-box-scroller-top .x-box-scroller {
7864    line-height: 0;
7865    font-size: 0; }
7866  /* line 286, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7867  .x-reset .x-box-scroller-top .x-menu-scroll-top {
7868    background: transparent no-repeat center center;
7869    background-image: url('../../resources/themes/images/default/layout/mini-top.gif');
7870    height: 8px;
7871    cursor: pointer; }
7872  /* line 294, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7873  .x-reset .x-box-scroller-bottom .x-box-scroller {
7874    line-height: 0;
7875    font-size: 0; }
7876  /* line 298, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7877  .x-reset .x-box-scroller-bottom .x-menu-scroll-bottom {
7878    background: transparent no-repeat center center;
7879    background-image: url('../../resources/themes/images/default/layout/mini-bottom.gif');
7880    height: 8px;
7881    cursor: pointer; }
7882  /* line 306, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7883  .x-reset .x-box-menu-right {
7884    float: right;
7885    padding-right: 2px; }
7886  /* line 311, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7887  .x-reset .x-column {
7888    float: left; }
7889  /* line 315, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7890  .x-reset .x-ie6 .x-column {
7891    display: inline;
7892    /*prevent IE6 double-margin bug*/ }
7893  /* line 319, ../themes/stylesheets/ext4/default/layout/_layout.scss */
7894  .x-reset .x-quirks .x-ie .x-form-layout-table, .x-reset .x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item {
7895    position: relative; }
7896  /* line 2, ../themes/stylesheets/ext4/default/util/_tool.scss */
7897  .x-reset .x-tool {
7898    height: 15px; }
7899    /* line 5, ../themes/stylesheets/ext4/default/util/_tool.scss */
7900    .x-reset .x-tool img {
7901      overflow: hidden;
7902      width: 15px;
7903      height: 15px;
7904      cursor: pointer;
7905      background-color: transparent;
7906      background-repeat: no-repeat;
7907      background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
7908      margin: 0; }
7909  /* line 23, ../themes/stylesheets/ext4/default/util/_tool.scss */
7910  .x-reset .x-panel-header-horizontal .x-tool,
7911  .x-reset .x-window-header-horizontal .x-tool {
7912    margin-left: 2px; }
7913  /* line 30, ../themes/stylesheets/ext4/default/util/_tool.scss */
7914  .x-reset .x-panel-header-vertical .x-tool,
7915  .x-reset .x-window-header-vertical .x-tool {
7916    margin-top: 2px; }
7917  /* line 39, ../themes/stylesheets/ext4/default/util/_tool.scss */
7918  .x-reset .x-panel-header-vertical .x-tool-top,
7919  .x-reset .x-window-header-vertical .x-tool-top {
7920    margin: 0 0 4px; }
7921  /* line 45, ../themes/stylesheets/ext4/default/util/_tool.scss */
7922  .x-reset .x-tool-placeholder {
7923    visibility: hidden; }
7924  /* line 49, ../themes/stylesheets/ext4/default/util/_tool.scss */
7925  .x-reset .x-tool-toggle {
7926    background-position: 0 -60px; }
7927  /* line 54, ../themes/stylesheets/ext4/default/util/_tool.scss */
7928  .x-reset .x-tool-over .x-tool-toggle {
7929    background-position: -15px -60px; }
7930  /* line 61, ../themes/stylesheets/ext4/default/util/_tool.scss */
7931  .x-reset .x-panel-collapsed .x-tool-toggle,
7932  .x-reset .x-fieldset-collapsed .x-tool-toggle {
7933    background-position: 0 -75px; }
7934  /* line 66, ../themes/stylesheets/ext4/default/util/_tool.scss */
7935  .x-reset .x-panel-collapsed .x-tool-over .x-tool-toggle,
7936  .x-reset .x-fieldset-collapsed .x-tool-over .x-tool-toggle {
7937    background-position: -15px -75px; }
7938  /* line 72, ../themes/stylesheets/ext4/default/util/_tool.scss */
7939  .x-reset .x-tool-close {
7940    background-position: 0 0; }
7941  /* line 76, ../themes/stylesheets/ext4/default/util/_tool.scss */
7942  .x-reset .x-tool-minimize {
7943    background-position: 0 -15px; }
7944  /* line 80, ../themes/stylesheets/ext4/default/util/_tool.scss */
7945  .x-reset .x-tool-maximize {
7946    background-position: 0 -30px; }
7947  /* line 84, ../themes/stylesheets/ext4/default/util/_tool.scss */
7948  .x-reset .x-tool-restore {
7949    background-position: 0 -45px; }
7950  /* line 88, ../themes/stylesheets/ext4/default/util/_tool.scss */
7951  .x-reset .x-tool-gear {
7952    background-position: 0 -90px; }
7953  /* line 92, ../themes/stylesheets/ext4/default/util/_tool.scss */
7954  .x-reset .x-tool-prev {
7955    background-position: 0 -105px; }
7956  /* line 96, ../themes/stylesheets/ext4/default/util/_tool.scss */
7957  .x-reset .x-tool-next {
7958    background-position: 0 -120px; }
7959  /* line 100, ../themes/stylesheets/ext4/default/util/_tool.scss */
7960  .x-reset .x-tool-pin {
7961    background-position: 0 -135px; }
7962  /* line 104, ../themes/stylesheets/ext4/default/util/_tool.scss */
7963  .x-reset .x-tool-unpin {
7964    background-position: 0 -150px; }
7965  /* line 108, ../themes/stylesheets/ext4/default/util/_tool.scss */
7966  .x-reset .x-tool-right {
7967    background-position: 0 -165px; }
7968  /* line 112, ../themes/stylesheets/ext4/default/util/_tool.scss */
7969  .x-reset .x-tool-left {
7970    background-position: 0 -180px; }
7971  /* line 116, ../themes/stylesheets/ext4/default/util/_tool.scss */
7972  .x-reset .x-tool-help {
7973    background-position: 0 -300px; }
7974  /* line 120, ../themes/stylesheets/ext4/default/util/_tool.scss */
7975  .x-reset .x-tool-save {
7976    background-position: 0 -285px; }
7977  /* line 124, ../themes/stylesheets/ext4/default/util/_tool.scss */
7978  .x-reset .x-tool-search {
7979    background-position: 0 -270px; }
7980  /* line 128, ../themes/stylesheets/ext4/default/util/_tool.scss */
7981  .x-reset .x-tool-minus {
7982    background-position: 0 -255px; }
7983  /* line 132, ../themes/stylesheets/ext4/default/util/_tool.scss */
7984  .x-reset .x-tool-plus {
7985    background-position: 0 -240px; }
7986  /* line 136, ../themes/stylesheets/ext4/default/util/_tool.scss */
7987  .x-reset .x-tool-refresh {
7988    background-position: 0 -225px; }
7989  /* line 140, ../themes/stylesheets/ext4/default/util/_tool.scss */
7990  .x-reset .x-tool-up {
7991    background-position: 0 -210px; }
7992  /* line 144, ../themes/stylesheets/ext4/default/util/_tool.scss */
7993  .x-reset .x-tool-down {
7994    background-position: 0 -195px; }
7995  /* line 148, ../themes/stylesheets/ext4/default/util/_tool.scss */
7996  .x-reset .x-tool-collapse {
7997    background-position: 0 -345px; }
7998  /* line 152, ../themes/stylesheets/ext4/default/util/_tool.scss */
7999  .x-reset .x-tool-expand {
8000    background-position: 0 -330px; }
8001  /* line 156, ../themes/stylesheets/ext4/default/util/_tool.scss */
8002  .x-reset .x-tool-print {
8003    background-position: 0 -315px; }
8004  /* line 161, ../themes/stylesheets/ext4/default/util/_tool.scss */
8005  .x-reset .x-tool-expand-bottom,
8006  .x-reset .x-tool-collapse-bottom {
8007    background-position: 0 -195px; }
8008  /* line 166, ../themes/stylesheets/ext4/default/util/_tool.scss */
8009  .x-reset .x-tool-expand-top,
8010  .x-reset .x-tool-collapse-top {
8011    background-position: 0 -210px; }
8012  /* line 171, ../themes/stylesheets/ext4/default/util/_tool.scss */
8013  .x-reset .x-tool-expand-left,
8014  .x-reset .x-tool-collapse-left {
8015    background-position: 0 -180px; }
8016  /* line 176, ../themes/stylesheets/ext4/default/util/_tool.scss */
8017  .x-reset .x-tool-expand-right,
8018  .x-reset .x-tool-collapse-right {
8019    background-position: 0 -165px; }
8020  /* line 181, ../themes/stylesheets/ext4/default/util/_tool.scss */
8021  .x-reset .x-tool-over .x-tool-close {
8022    background-position: -15px 0; }
8023  /* line 185, ../themes/stylesheets/ext4/default/util/_tool.scss */
8024  .x-reset .x-tool-over .x-tool-minimize {
8025    background-position: -15px -15px; }
8026  /* line 189, ../themes/stylesheets/ext4/default/util/_tool.scss */
8027  .x-reset .x-tool-over .x-tool-maximize {
8028    background-position: -15px -30px; }
8029  /* line 193, ../themes/stylesheets/ext4/default/util/_tool.scss */
8030  .x-reset .x-tool-over .x-tool-restore {
8031    background-position: -15px -45px; }
8032  /* line 197, ../themes/stylesheets/ext4/default/util/_tool.scss */
8033  .x-reset .x-tool-over .x-tool-gear {
8034    background-position: -15px -90px; }
8035  /* line 201, ../themes/stylesheets/ext4/default/util/_tool.scss */
8036  .x-reset .x-tool-over .x-tool-prev {
8037    background-position: -15px -105px; }
8038  /* line 205, ../themes/stylesheets/ext4/default/util/_tool.scss */
8039  .x-reset .x-tool-over .x-tool-next {
8040    background-position: -15px -120px; }
8041  /* line 209, ../themes/stylesheets/ext4/default/util/_tool.scss */
8042  .x-reset .x-tool-over .x-tool-pin {
8043    background-position: -15px -135px; }
8044  /* line 213, ../themes/stylesheets/ext4/default/util/_tool.scss */
8045  .x-reset .x-tool-over .x-tool-unpin {
8046    background-position: -15px -150px; }
8047  /* line 217, ../themes/stylesheets/ext4/default/util/_tool.scss */
8048  .x-reset .x-tool-over .x-tool-right {
8049    background-position: -15px -165px; }
8050  /* line 221, ../themes/stylesheets/ext4/default/util/_tool.scss */
8051  .x-reset .x-tool-over .x-tool-left {
8052    background-position: -15px -180px; }
8053  /* line 225, ../themes/stylesheets/ext4/default/util/_tool.scss */
8054  .x-reset .x-tool-over .x-tool-down {
8055    background-position: -15px -195px; }
8056  /* line 229, ../themes/stylesheets/ext4/default/util/_tool.scss */
8057  .x-reset .x-tool-over .x-tool-up {
8058    background-position: -15px -210px; }
8059  /* line 233, ../themes/stylesheets/ext4/default/util/_tool.scss */
8060  .x-reset .x-tool-over .x-tool-refresh {
8061    background-position: -15px -225px; }
8062  /* line 237, ../themes/stylesheets/ext4/default/util/_tool.scss */
8063  .x-reset .x-tool-over .x-tool-plus {
8064    background-position: -15px -240px; }
8065  /* line 241, ../themes/stylesheets/ext4/default/util/_tool.scss */
8066  .x-reset .x-tool-over .x-tool-minus {
8067    background-position: -15px -255px; }
8068  /* line 245, ../themes/stylesheets/ext4/default/util/_tool.scss */
8069  .x-reset .x-tool-over .x-tool-search {
8070    background-position: -15px -270px; }
8071  /* line 249, ../themes/stylesheets/ext4/default/util/_tool.scss */
8072  .x-reset .x-tool-over .x-tool-save {
8073    background-position: -15px -285px; }
8074  /* line 253, ../themes/stylesheets/ext4/default/util/_tool.scss */
8075  .x-reset .x-tool-over .x-tool-help {
8076    background-position: -15px -300px; }
8077  /* line 257, ../themes/stylesheets/ext4/default/util/_tool.scss */
8078  .x-reset .x-tool-over .x-tool-print {
8079    background-position: -15px -315px; }
8080  /* line 261, ../themes/stylesheets/ext4/default/util/_tool.scss */
8081  .x-reset .x-tool-over .x-tool-expand {
8082    background-position: -15px -330px; }
8083  /* line 265, ../themes/stylesheets/ext4/default/util/_tool.scss */
8084  .x-reset .x-tool-over .x-tool-collapse {
8085    background-position: -15px -345px; }
8086  /* line 270, ../themes/stylesheets/ext4/default/util/_tool.scss */
8087  .x-reset .x-tool-over .x-tool-expand-bottom,
8088  .x-reset .x-tool-over .x-tool-collapse-bottom {
8089    background-position: -15px -195px; }
8090  /* line 275, ../themes/stylesheets/ext4/default/util/_tool.scss */
8091  .x-reset .x-tool-over .x-tool-expand-top,
8092  .x-reset .x-tool-over .x-tool-collapse-top {
8093    background-position: -15px -210px; }
8094  /* line 280, ../themes/stylesheets/ext4/default/util/_tool.scss */
8095  .x-reset .x-tool-over .x-tool-expand-left,
8096  .x-reset .x-tool-over .x-tool-collapse-left {
8097    background-position: -15px -180px; }
8098  /* line 285, ../themes/stylesheets/ext4/default/util/_tool.scss */
8099  .x-reset .x-tool-over .x-tool-expand-right,
8100  .x-reset .x-tool-over .x-tool-collapse-right {
8101    background-position: -15px -165px; }
8102  /* line 2, ../themes/stylesheets/ext4/default/util/_scroller.scss */
8103  .x-reset .x-horizontal-scroller-present .x-grid-body {
8104    border-bottom-width: 0px; }
8105  /* line 6, ../themes/stylesheets/ext4/default/util/_scroller.scss */
8106  .x-reset .x-vertical-scroller-present .x-grid-body {
8107    border-right-width: 0px; }
8108  /* line 10, ../themes/stylesheets/ext4/default/util/_scroller.scss */
8109  .x-reset .x-scroller {
8110    overflow: hidden; }
8111  /* line 14, ../themes/stylesheets/ext4/default/util/_scroller.scss */
8112  .x-reset .x-scroller-vertical {
8113    border: 1px solid #99bce8;
8114    border-top-color: #c5c5c5; }
8115  /* line 19, ../themes/stylesheets/ext4/default/util/_scroller.scss */
8116  .x-reset .x-scroller-horizontal {
8117    border: 1px solid #99bce8; }
8118  /* line 23, ../themes/stylesheets/ext4/default/util/_scroller.scss */
8119  .x-reset .x-vertical-scroller-present .x-scroller-horizontal {
8120    border-right-width: 0px; }
8121  /* line 27, ../themes/stylesheets/ext4/default/util/_scroller.scss */
8122  .x-reset .x-scroller-ct {
8123    overflow: hidden;
8124    position: absolute;
8125    margin: 0;
8126    padding: 0;
8127    border: none;
8128    left: 0px;
8129    top: 0px;
8130    /*
8131    In IE9 (only), the border-box style causes the scroller-ct to be 0px in the
8132    perpendicular dimension and breaks the scroll as well as offsets it by the left
8133    offset that we use to try and keep some size on this element. This works on all
8134    browsers (including IE9).
8135    */
8136    box-sizing: content-box !important;
8137    -ms-box-sizing: content-box !important;
8138    -moz-box-sizing: content-box !important;
8139    -webkit-box-sizing: content-box !important; }
8140  /* line 48, ../themes/stylesheets/ext4/default/util/_scroller.scss */
8141  .x-reset .x-scroller-vertical .x-scroller-ct {
8142    overflow-y: scroll; }
8143  /* line 52, ../themes/stylesheets/ext4/default/util/_scroller.scss */
8144  .x-reset .x-scroller-horizontal .x-scroller-ct {
8145    overflow-x: scroll; }
8146  /* line 8, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8147  .x-reset .x-html {
8148    /* Begin bidirectionality settings (do not change) */ }
8149    /* line 34, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8150    .x-reset .x-html html, .x-reset .x-html address, .x-reset .x-html blockquote, .x-reset .x-html body, .x-reset .x-html dd, .x-reset .x-html div, .x-reset .x-html dl, .x-reset .x-html dt, .x-reset .x-html fieldset, .x-reset .x-html form, .x-reset .x-html frame, .x-reset .x-html frameset, .x-reset .x-html h1, .x-reset .x-html h2, .x-reset .x-html h3, .x-reset .x-html h4, .x-reset .x-html h5, .x-reset .x-html h6, .x-reset .x-html noframes, .x-reset .x-html ol, .x-reset .x-html p, .x-reset .x-html ul, .x-reset .x-html center, .x-reset .x-html dir, .x-reset .x-html hr, .x-reset .x-html menu, .x-reset .x-html pre {
8151      display: block; }
8152    /* line 35, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8153    .x-reset .x-html li {
8154      display: list-item;
8155      list-style: disc; }
8156    /* line 36, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8157    .x-reset .x-html head {
8158      display: none; }
8159    /* line 37, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8160    .x-reset .x-html table {
8161      display: table; }
8162    /* line 38, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8163    .x-reset .x-html tr {
8164      display: table-row; }
8165    /* line 39, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8166    .x-reset .x-html thead {
8167      display: table-header-group; }
8168    /* line 40, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8169    .x-reset .x-html tbody {
8170      display: table-row-group; }
8171    /* line 41, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8172    .x-reset .x-html tfoot {
8173      display: table-footer-group; }
8174    /* line 42, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8175    .x-reset .x-html col {
8176      display: table-column; }
8177    /* line 43, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8178    .x-reset .x-html colgroup {
8179      display: table-column-group; }
8180    /* line 45, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8181    .x-reset .x-html td, .x-reset .x-html th {
8182      display: table-cell; }
8183    /* line 46, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8184    .x-reset .x-html caption {
8185      display: table-caption; }
8186    /* line 47, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8187    .x-reset .x-html th {
8188      font-weight: bolder;
8189      text-align: center; }
8190    /* line 48, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8191    .x-reset .x-html caption {
8192      text-align: center; }
8193    /* line 49, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8194    .x-reset .x-html body {
8195      margin: 8px; }
8196    /* line 50, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8197    .x-reset .x-html h1 {
8198      font-size: 2em;
8199      margin: .67em 0; }
8200    /* line 51, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8201    .x-reset .x-html h2 {
8202      font-size: 1.5em;
8203      margin: .75em 0; }
8204    /* line 52, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8205    .x-reset .x-html h3 {
8206      font-size: 1.17em;
8207      margin: .83em 0; }
8208    /* line 62, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8209    .x-reset .x-html h4, .x-reset .x-html p, .x-reset .x-html blockquote, .x-reset .x-html ul, .x-reset .x-html fieldset, .x-reset .x-html form, .x-reset .x-html ol, .x-reset .x-html dl, .x-reset .x-html dir, .x-reset .x-html menu {
8210      margin: 1.12em 0; }
8211    /* line 63, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8212    .x-reset .x-html h5 {
8213      font-size: .83em;
8214      margin: 1.5em 0; }
8215    /* line 64, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8216    .x-reset .x-html h6 {
8217      font-size: .75em;
8218      margin: 1.67em 0; }
8219    /* line 72, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8220    .x-reset .x-html h1, .x-reset .x-html h2, .x-reset .x-html h3, .x-reset .x-html h4, .x-reset .x-html h5, .x-reset .x-html h6, .x-reset .x-html b, .x-reset .x-html strong {
8221      font-weight: bolder; }
8222    /* line 73, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8223    .x-reset .x-html blockquote {
8224      margin-left: 40px;
8225      margin-right: 40px; }
8226    /* line 78, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8227    .x-reset .x-html i, .x-reset .x-html cite, .x-reset .x-html em, .x-reset .x-html var, .x-reset .x-html address {
8228      font-style: italic; }
8229    /* line 83, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8230    .x-reset .x-html pre, .x-reset .x-html tt, .x-reset .x-html code, .x-reset .x-html kbd, .x-reset .x-html samp {
8231      font-family: monospace; }
8232    /* line 84, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8233    .x-reset .x-html pre {
8234      white-space: pre; }
8235    /* line 88, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8236    .x-reset .x-html button, .x-reset .x-html textarea, .x-reset .x-html input, .x-reset .x-html select {
8237      display: inline-block; }
8238    /* line 89, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8239    .x-reset .x-html big {
8240      font-size: 1.17em; }
8241    /* line 92, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8242    .x-reset .x-html small, .x-reset .x-html sub, .x-reset .x-html sup {
8243      font-size: .83em; }
8244    /* line 93, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8245    .x-reset .x-html sub {
8246      vertical-align: sub; }
8247    /* line 94, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8248    .x-reset .x-html sup {
8249      vertical-align: super; }
8250    /* line 95, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8251    .x-reset .x-html table {
8252      border-spacing: 2px; }
8253    /* line 98, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8254    .x-reset .x-html thead, .x-reset .x-html tbody, .x-reset .x-html tfoot {
8255      vertical-align: middle; }
8256    /* line 100, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8257    .x-reset .x-html td, .x-reset .x-html th {
8258      vertical-align: inherit; }
8259    /* line 103, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8260    .x-reset .x-html s, .x-reset .x-html strike, .x-reset .x-html del {
8261      text-decoration: line-through; }
8262    /* line 104, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8263    .x-reset .x-html hr {
8264      border: 1px inset; }
8265    /* line 109, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8266    .x-reset .x-html ol, .x-reset .x-html ul, .x-reset .x-html dir, .x-reset .x-html menu, .x-reset .x-html dd {
8267      margin-left: 40px; }
8268    /* line 110, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8269    .x-reset .x-html ul, .x-reset .x-html menu, .x-reset .x-html dir {
8270      list-style-type: disc; }
8271    /* line 111, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8272    .x-reset .x-html ol {
8273      list-style-type: decimal; }
8274    /* line 115, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8275    .x-reset .x-html ol ul, .x-reset .x-html ul ol, .x-reset .x-html ul ul, .x-reset .x-html ol ol {
8276      margin-top: 0;
8277      margin-bottom: 0; }
8278    /* line 117, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8279    .x-reset .x-html u, .x-reset .x-html ins {
8280      text-decoration: underline; }
8281    /* line 118, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8282    .x-reset .x-html br:before {
8283      content: "\A"; }
8284    /* line 119, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8285    .x-reset .x-html :before, .x-reset .x-html :after {
8286      white-space: pre-line; }
8287    /* line 120, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8288    .x-reset .x-html center {
8289      text-align: center; }
8290    /* line 121, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8291    .x-reset .x-html :link, .x-reset .x-html :visited {
8292      text-decoration: underline; }
8293    /* line 122, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8294    .x-reset .x-html :focus {
8295      outline: invert dotted thin; }
8296    /* line 125, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8297    .x-reset .x-html BDO[DIR="ltr"] {
8298      direction: ltr;
8299      unicode-bidi: bidi-override; }
8300    /* line 126, ../themes/stylesheets/ext4/default/widgets/_html.scss */
8301    .x-reset .x-html BDO[DIR="rtl"] {
8302      direction: rtl;
8303      unicode-bidi: bidi-override; }
8304
8305/* line 5, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8306.x-border-box .x-reset .x-tab-default-top {
8307  height: 21px; }
8308/* line 8, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8309.x-border-box .x-reset .x-tab-default-bottom {
8310  height: 21px; }
8311/* line 13, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8312.x-border-box .x-reset .x-tip-anchor {
8313  width: 10px;
8314  height: 10px; }
8315/* line 19, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8316.x-border-box .x-reset .x-form-text {
8317  height: 22px; }
8318/* line 23, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8319.x-border-box .x-reset textarea.x-form-field {
8320  height: auto; }
8321/* line 27, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8322.x-border-box .x-reset .x-field-default-toolbar .x-form-text {
8323  height: 20px; }
8324/* line 32, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8325.x-border-box .x-reset .x-form-trigger {
8326  height: 22px; }
8327/* line 36, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8328.x-border-box .x-reset .x-field-default-toolbar .x-form-trigger {
8329  height: 20px; }
8330/* line 43, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8331.x-border-box .x-reset.x-ie9 .x-grid-header-ct {
8332  padding-left: 1px; }
8333
8334/* line 55, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8335.x-webkit .x-reset *:focus {
8336  outline: none !important; }
8337/* line 61, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8338.x-webkit .x-reset .x-form-empty-field {
8339  line-height: 15px; }
8340/* line 66, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8341.x-webkit .x-reset .x-fieldset-header {
8342  padding-top: 1px; }
8343
8344/* Top Tabs */
8345/* line 118, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8346.x-border-box .x-reset .x-tab-bar-top .x-tab-bar-body {
8347  height: 25px; }
8348/* line 122, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8349.x-border-box .x-reset .x-tab-bar-top .x-tab-bar-strip {
8350  height: 3px; }
8351
8352/* line 118, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8353.x-border-box .x-reset .x-tab-bar-top .x-tab-bar-body-default-plain {
8354  height: 22px; }
8355/* line 122, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8356.x-border-box .x-reset .x-tab-bar-top .x-tab-bar-strip-default-plain {
8357  height: 3px; }
8358
8359/* Bottom Tabs */
8360/* line 134, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8361.x-border-box .x-reset .x-tab-bar-bottom .x-tab-bar-body {
8362  height: 25px; }
8363/* line 138, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8364.x-border-box .x-reset .x-tab-bar-bottom .x-tab-bar-strip {
8365  height: 3px; }
8366
8367/* line 134, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8368.x-border-box .x-reset .x-tab-bar-bottom .x-tab-bar-body-default-plain {
8369  height: 23px; }
8370/* line 138, ../themes/stylesheets/ext4/default/mixins/_reset-extras.scss */
8371.x-border-box .x-reset .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
8372  height: 3px; }
8373