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 77, ../themes/stylesheets/ext4/default/core/_reset.scss */
223html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3,
224h4, h5, h6, pre, code, form, fieldset, legend,
225input, textarea, p, blockquote, th, td {
226  margin: 0;
227  padding: 0; }
228
229/* line 82, ../themes/stylesheets/ext4/default/core/_reset.scss */
230table {
231  border-collapse: collapse;
232  border-spacing: 0; }
233
234/* line 87, ../themes/stylesheets/ext4/default/core/_reset.scss */
235fieldset, img {
236  border: 0; }
237
238/* line 92, ../themes/stylesheets/ext4/default/core/_reset.scss */
239address, caption, cite, code,
240dfn, em, strong, th, var {
241  font-style: normal;
242  font-weight: normal; }
243
244/* line 97, ../themes/stylesheets/ext4/default/core/_reset.scss */
245li {
246  list-style: none; }
247
248/* line 101, ../themes/stylesheets/ext4/default/core/_reset.scss */
249caption, th {
250  text-align: left; }
251
252/* line 105, ../themes/stylesheets/ext4/default/core/_reset.scss */
253h1, h2, h3, h4, h5, h6 {
254  font-size: 100%; }
255
256/* line 110, ../themes/stylesheets/ext4/default/core/_reset.scss */
257q:before,
258q:after {
259  content: ""; }
260
261/* line 114, ../themes/stylesheets/ext4/default/core/_reset.scss */
262abbr, acronym {
263  border: 0;
264  font-variant: normal; }
265
266/* line 119, ../themes/stylesheets/ext4/default/core/_reset.scss */
267sup {
268  vertical-align: text-top; }
269
270/* line 123, ../themes/stylesheets/ext4/default/core/_reset.scss */
271sub {
272  vertical-align: text-bottom; }
273
274/* line 127, ../themes/stylesheets/ext4/default/core/_reset.scss */
275input, textarea, select {
276  font-family: inherit;
277  font-size: inherit;
278  font-weight: inherit; }
279
280/* line 133, ../themes/stylesheets/ext4/default/core/_reset.scss */
281*:focus {
282  outline: none; }
283
284/* line 138, ../themes/stylesheets/ext4/default/core/_reset.scss */
285.x-border-box,
286.x-border-box * {
287  box-sizing: border-box;
288  -moz-box-sizing: border-box;
289  -ms-box-sizing: border-box;
290  -webkit-box-sizing: border-box; }
291
292/* line 1, ../themes/stylesheets/ext4/default/core/_core.scss */
293.x-body {
294  color: black;
295  font-size: 12px;
296  font-family: tahoma, arial, verdana, sans-serif; }
297
298/* line 7, ../themes/stylesheets/ext4/default/core/_core.scss */
299.x-rtl {
300  direction: rtl; }
301
302/* line 11, ../themes/stylesheets/ext4/default/core/_core.scss */
303.x-ltr {
304  direction: ltr; }
305
306/* line 15, ../themes/stylesheets/ext4/default/core/_core.scss */
307.x-clear {
308  overflow: hidden;
309  clear: both;
310  font-size: 0;
311  line-height: 0;
312  display: table; }
313
314/* line 23, ../themes/stylesheets/ext4/default/core/_core.scss */
315.x-strict .x-ie7 .x-clear {
316  height: 0;
317  width: 0; }
318
319/* line 31, ../themes/stylesheets/ext4/default/core/_core.scss */
320.x-layer {
321  position: absolute !important;
322  overflow: hidden;
323  zoom: 1; }
324
325/* line 37, ../themes/stylesheets/ext4/default/core/_core.scss */
326.x-shim {
327  position: absolute;
328  left: 0;
329  top: 0;
330  overflow: hidden;
331  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
332  opacity: 0; }
333
334/* line 45, ../themes/stylesheets/ext4/default/core/_core.scss */
335.x-hide-display {
336  display: none !important; }
337
338/* line 49, ../themes/stylesheets/ext4/default/core/_core.scss */
339.x-hide-visibility {
340  visibility: hidden !important; }
341
342/* line 56, ../themes/stylesheets/ext4/default/core/_core.scss */
343.x-item-disabled .x-form-item-label,
344.x-item-disabled .x-form-field,
345.x-item-disabled .x-form-cb-label,
346.x-item-disabled .x-form-trigger {
347  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
348  opacity: 0.3; }
349
350/* line 60, ../themes/stylesheets/ext4/default/core/_core.scss */
351.x-ie6 .x-item-disabled {
352  filter: none; }
353
354/* line 65, ../themes/stylesheets/ext4/default/core/_core.scss */
355.x-hidden,
356.x-hide-offsets {
357  display: block !important;
358  visibility: hidden !important;
359  position: absolute!important;
360  left: -10000px !important;
361  top: -10000px !important; }
362
363/* line 75, ../themes/stylesheets/ext4/default/core/_core.scss */
364.x-hide-nosize {
365  height: 0!important;
366  width: 0!important; }
367
368/* line 80, ../themes/stylesheets/ext4/default/core/_core.scss */
369.x-masked-relative {
370  position: relative; }
371
372/* line 86, ../themes/stylesheets/ext4/default/core/_core.scss */
373.x-ie6 .x-masked select,
374.x-ie6.x-body-masked select {
375  visibility: hidden !important; }
376
377/* line 92, ../themes/stylesheets/ext4/default/core/_core.scss */
378.x-css-shadow {
379  position: absolute;
380  -moz-border-radius: 5px 5px;
381  -webkit-border-radius: 5px 5px;
382  -o-border-radius: 5px 5px;
383  -ms-border-radius: 5px 5px;
384  -khtml-border-radius: 5px 5px;
385  border-radius: 5px 5px; }
386
387/* line 98, ../themes/stylesheets/ext4/default/core/_core.scss */
388.x-ie-shadow {
389  background-color: #777;
390  display: none;
391  position: absolute;
392  overflow: hidden;
393  zoom: 1; }
394
395/* line 107, ../themes/stylesheets/ext4/default/core/_core.scss */
396.x-box-tl {
397  background: transparent no-repeat 0 0;
398  zoom: 1; }
399
400/* line 112, ../themes/stylesheets/ext4/default/core/_core.scss */
401.x-box-tc {
402  height: 8px;
403  background: transparent repeat-x 0 0;
404  overflow: hidden; }
405
406/* line 118, ../themes/stylesheets/ext4/default/core/_core.scss */
407.x-box-tr {
408  background: transparent no-repeat right -8px; }
409
410/* line 122, ../themes/stylesheets/ext4/default/core/_core.scss */
411.x-box-ml {
412  background: transparent repeat-y 0;
413  padding-left: 4px;
414  overflow: hidden;
415  zoom: 1; }
416
417/* line 129, ../themes/stylesheets/ext4/default/core/_core.scss */
418.x-box-mc {
419  background: repeat-x 0 -16px;
420  padding: 4px 10px; }
421
422/* line 134, ../themes/stylesheets/ext4/default/core/_core.scss */
423.x-box-mc h3 {
424  margin: 0 0 4px 0;
425  zoom: 1; }
426
427/* line 139, ../themes/stylesheets/ext4/default/core/_core.scss */
428.x-box-mr {
429  background: transparent repeat-y right;
430  padding-right: 4px;
431  overflow: hidden; }
432
433/* line 145, ../themes/stylesheets/ext4/default/core/_core.scss */
434.x-box-bl {
435  background: transparent no-repeat 0 -16px;
436  zoom: 1; }
437
438/* line 150, ../themes/stylesheets/ext4/default/core/_core.scss */
439.x-box-bc {
440  background: transparent repeat-x 0 -8px;
441  height: 8px;
442  overflow: hidden; }
443
444/* line 156, ../themes/stylesheets/ext4/default/core/_core.scss */
445.x-box-br {
446  background: transparent no-repeat right -24px; }
447
448/* line 160, ../themes/stylesheets/ext4/default/core/_core.scss */
449.x-box-tl, .x-box-bl {
450  padding-left: 8px;
451  overflow: hidden; }
452
453/* line 165, ../themes/stylesheets/ext4/default/core/_core.scss */
454.x-box-tr, .x-box-br {
455  padding-right: 8px;
456  overflow: hidden; }
457
458/* line 170, ../themes/stylesheets/ext4/default/core/_core.scss */
459.x-box-tl {
460  background-image: url('../../resources/themes/images/default/box/corners.gif'); }
461
462/* line 174, ../themes/stylesheets/ext4/default/core/_core.scss */
463.x-box-tc {
464  background-image: url('../../resources/themes/images/default/box/tb.gif'); }
465
466/* line 178, ../themes/stylesheets/ext4/default/core/_core.scss */
467.x-box-tr {
468  background-image: url('../../resources/themes/images/default/box/corners.gif'); }
469
470/* line 182, ../themes/stylesheets/ext4/default/core/_core.scss */
471.x-box-ml {
472  background-image: url('../../resources/themes/images/default/box/l.gif'); }
473
474/* line 186, ../themes/stylesheets/ext4/default/core/_core.scss */
475.x-box-mc {
476  background-color: #eee;
477  background-image: url('../../resources/themes/images/default/box/tb.gif');
478  font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
479  color: #393939;
480  font-size: 15px; }
481
482/* line 194, ../themes/stylesheets/ext4/default/core/_core.scss */
483.x-box-mc h3 {
484  font-size: 18px;
485  font-weight: bold; }
486
487/* line 199, ../themes/stylesheets/ext4/default/core/_core.scss */
488.x-box-mr {
489  background-image: url('../../resources/themes/images/default/box/r.gif'); }
490
491/* line 203, ../themes/stylesheets/ext4/default/core/_core.scss */
492.x-box-bl {
493  background-image: url('../../resources/themes/images/default/box/corners.gif'); }
494
495/* line 207, ../themes/stylesheets/ext4/default/core/_core.scss */
496.x-box-bc {
497  background-image: url('../../resources/themes/images/default/box/tb.gif'); }
498
499/* line 211, ../themes/stylesheets/ext4/default/core/_core.scss */
500.x-box-br {
501  background-image: url('../../resources/themes/images/default/box/corners.gif'); }
502
503/* line 215, ../themes/stylesheets/ext4/default/core/_core.scss */
504.x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr {
505  background-image: url('../../resources/themes/images/default/box/corners-blue.gif'); }
506
507/* line 219, ../themes/stylesheets/ext4/default/core/_core.scss */
508.x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc {
509  background-image: url('../../resources/themes/images/default/box/tb-blue.gif'); }
510
511/* line 223, ../themes/stylesheets/ext4/default/core/_core.scss */
512.x-box-blue .x-box-mc {
513  background-color: #c3daf9; }
514
515/* line 227, ../themes/stylesheets/ext4/default/core/_core.scss */
516.x-box-blue .x-box-mc h3 {
517  color: #17385b; }
518
519/* line 231, ../themes/stylesheets/ext4/default/core/_core.scss */
520.x-box-blue .x-box-ml {
521  background-image: url('../../resources/themes/images/default/box/l-blue.gif'); }
522
523/* line 235, ../themes/stylesheets/ext4/default/core/_core.scss */
524.x-box-blue .x-box-mr {
525  background-image: url('../../resources/themes/images/default/box/r-blue.gif'); }
526
527/* line 239, ../themes/stylesheets/ext4/default/core/_core.scss */
528.x-container {
529  zoom: 1; }
530  /* line 244, ../themes/stylesheets/ext4/default/core/_core.scss */
531  .x-container:before {
532    content: "";
533    clear: both;
534    display: table; }
535
536/* line 254, ../themes/stylesheets/ext4/default/core/_core.scss */
537table.x-container:before,
538tbody.x-container:before,
539tr.x-container:before {
540  display: none; }
541
542/* line 1, ../themes/stylesheets/ext4/default/util/_focus.scss */
543.x-focus-element {
544  position: absolute;
545  top: -10px;
546  left: -10px;
547  width: 0px;
548  height: 0px; }
549
550/* line 9, ../themes/stylesheets/ext4/default/util/_focus.scss */
551.x-focus-frame {
552  position: absolute;
553  left: 0px;
554  top: 0px;
555  z-index: 100000000;
556  width: 0px;
557  height: 0px; }
558
559/* line 21, ../themes/stylesheets/ext4/default/util/_focus.scss */
560.x-focus-frame-top,
561.x-focus-frame-bottom,
562.x-focus-frame-left,
563.x-focus-frame-right {
564  position: absolute;
565  top: 0px;
566  left: 0px; }
567
568/* line 28, ../themes/stylesheets/ext4/default/util/_focus.scss */
569.x-focus-frame-top,
570.x-focus-frame-bottom {
571  border-top: solid 2px #15428b;
572  height: 2px; }
573
574/* line 34, ../themes/stylesheets/ext4/default/util/_focus.scss */
575.x-focus-frame-left,
576.x-focus-frame-right {
577  border-left: solid 2px #15428b;
578  width: 2px; }
579
580/**
581 * Creates the base structure of a BoundList.
582 * @member Ext.view.BoundList
583 */
584/**
585 * Creates the base structure of an Ext.Button
586 * @member Ext.button.Button
587 */
588/**
589 * Creates a visual theme of an Ext.Button
590 * @member Ext.button.Button
591 */
592/**
593 * Creates the base structure of a button group.
594 * @member Ext.container.ButtonGroup
595 */
596/**
597 * Creates a visual theme of a button group.
598 * @member Ext.container.ButtonGroup
599 */
600/**
601 * Creates the base structure of a date picker.
602 * @member Ext.picker.Date
603 */
604/**
605 * Creates base structure for Ext.picker.Color
606 * @member Ext.picker.Color
607 */
608/**
609 * Creates the base structure of a Menu
610 * @member Ext.menu.Menu
611 */
612/**
613 * Create the base structure of an Ext.Panel
614 * @member Ext.panel.Panel
615 */
616/**
617 * Creates a visual theme for an Ext.Panel
618 * @member Ext.panel.Panel
619 */
620/**
621 * Creates base structure for Toolbar
622 * @member Ext.toolbar.Toolbar
623 */
624/**
625 * Creates a visual theme for an Toolbar.
626 * @param {String} $ui The name of the UI
627 * @param {Color} $background-color The background color of the toolbar (defaults to transparent)
628 * @param {Gradient/color-stops} $background-gradient The background gradient of the toolbar (defaults to null)
629 * @param {Color} $border-color The border color of the toolbar (defaults to null)
630 * @member Ext.toolbar.Toolbar
631 */
632/**
633 * Creates the base structure of Ext.form.Panel.
634 * @member Ext.form.Panel
635 */
636/**
637 * Creates the base structure of form field.
638 * @member Ext.form.field.Base
639 */
640/**
641 * Creates the base structure of FieldSet.
642 * @member Ext.form.FieldSet
643 */
644/**
645 * Creates the base structure of file field.
646 * @member Ext.form.field.File
647 */
648/**
649 * Creates the base structure of checkbox field.
650 * @member Ext.form.field.Checkbox
651 */
652/**
653 * Creates the base structure of CheckboxGroup.
654 * @member Ext.form.CheckboxGroup
655 */
656/**
657 * Creates the base structure of trigger field.
658 * @member Ext.form.field.Trigger
659 */
660/**
661 * Creates the base structure of HtmlEditor field.
662 * @member Ext.form.field.HtmlEditor
663 */
664/**
665 * Creates the base structure of QuickTip.
666 * @member Ext.tip.QuickTip
667 */
668/**
669 * Creates the base structure of an Ext.Window
670 * @member Ext.window.Window
671 */
672/**
673 * Creates a visual theme for an Ext.Panel
674 * @member Ext.window.Window
675 */
676/**
677 * Creates a visual theme for TabBar
678 * @member Ext.tab.Bar
679 */
680/**
681 * Creates the base structure of a Tab.
682 * @member Ext.tab.Tab
683 */
684/**
685 * Creates the base structure of slider.
686 * @member Ext.slider.Multi
687 */
688/**
689 * Creates base structure for a Grid.
690 * @member Ext.grid.Panel
691 */
692/**
693 * Creates the base structure of Tree.
694 * @member Ext.tree.Panel
695 */
696/* Styles for Ext.LoadMask */
697/* line 3, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
698.x-mask {
699  z-index: 100;
700  position: absolute;
701  top: 0;
702  left: 0;
703  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
704  opacity: 0.5;
705  width: 100%;
706  height: 100%;
707  zoom: 1;
708  background: #cccccc; }
709
710/* line 19, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
711.x-mask-msg {
712  z-index: 20001;
713  position: absolute;
714  top: 0;
715  left: 0;
716  padding: 2px;
717  border: 1px solid;
718  border-color: #99bce8;
719  background-image: none;
720  background-color: #dfe9f6; }
721  /* line 38, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
722  .x-mask-msg div {
723    padding: 5px 10px 5px 25px;
724    background-image: url('../../resources/themes/images/default/grid/loading.gif');
725    background-repeat: no-repeat;
726    background-position: 5px center;
727    cursor: wait;
728    border: 1px solid #a3bad9;
729    background-color: #eeeeee;
730    color: #222222;
731    font: normal 11px tahoma, arial, verdana, sans-serif; }
732
733/**
734 * Creates the base structure of an Ext.ProgressBar
735 * @member Ext.ProgressBar
736 */
737/**
738 * Creates a visual theme for an Ext.ProgressBar
739 * @member Ext.ProgressBar
740 */
741/**
742 * Creates base structure for a Draw Component.
743 * @member Ext.draw.Component
744 */
745/**
746 * Creates the base structure of Viewport.
747 * @member Ext.container.Viewport
748 */
749/**
750 * W3C suggested default style sheet for HTML 4:
751 * [http://www.w3.org/TR/CSS21/sample.html](http://www.w3.org/TR/CSS21/sample.html)
752 *
753 * @member Global_CSS
754 */
755/* line 6, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
756.x-boundlist {
757  border-width: 1px;
758  border-style: solid;
759  border-color: #98c0f4;
760  background: white; }
761  /* line 12, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
762  .x-boundlist .x-toolbar {
763    border-width: 1px 0 0 0; }
764
765/* line 22, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
766.x-strict .x-ie6 .x-boundlist-list-ct,
767.x-strict .x-ie7 .x-boundlist-list-ct {
768  position: relative; }
769
770/* line 29, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
771.x-boundlist-item {
772  padding: 2px;
773  user-select: none;
774  -o-user-select: none;
775  -ms-user-select: none;
776  -moz-user-select: -moz-none;
777  -webkit-user-select: none;
778  cursor: default;
779  cursor: pointer;
780  cursor: hand;
781  position: relative;
782  /*allow hover in IE on empty items*/
783  border-width: 1px;
784  border-style: dotted;
785  border-color: white; }
786
787/* line 43, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
788.x-boundlist-selected {
789  background: #cbdaf0;
790  border-color: #8eabe4; }
791
792/* line 48, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
793.x-boundlist-item-over {
794  background: #dfe8f6;
795  border-color: #a3bae9; }
796
797/* line 53, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
798.x-boundlist-floating {
799  border-top-width: 0; }
800
801/* line 57, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
802.x-boundlist-above {
803  border-top-width: 1px;
804  border-bottom-width: 1px; }
805
806/* line 6, ../themes/stylesheets/ext4/default/widgets/_button.scss */
807.x-btn {
808  display: inline-block;
809  zoom: 1;
810  *display: inline;
811  position: relative;
812  cursor: pointer;
813  cursor: hand;
814  white-space: nowrap;
815  vertical-align: middle;
816  background-repeat: no-repeat; }
817  /* line 19, ../themes/stylesheets/ext4/default/widgets/_button.scss */
818  .x-btn * {
819    cursor: pointer;
820    cursor: hand; }
821  /* line 26, ../themes/stylesheets/ext4/default/widgets/_button.scss */
822  .x-btn em {
823    background-repeat: no-repeat; }
824    /* line 30, ../themes/stylesheets/ext4/default/widgets/_button.scss */
825    .x-btn em a {
826      text-decoration: none;
827      display: block;
828      color: inherit;
829      width: 100%;
830      zoom: 1; }
831  /* line 45, ../themes/stylesheets/ext4/default/widgets/_button.scss */
832  .x-btn button {
833    width: 100%;
834    display: block;
835    margin: 0;
836    padding: 0;
837    border: 0;
838    background: none;
839    outline: 0 none;
840    overflow: hidden;
841    vertical-align: bottom;
842    -webkit-appearance: none; }
843    /* line 59, ../themes/stylesheets/ext4/default/widgets/_button.scss */
844    .x-btn button::-moz-focus-inner {
845      border: 0;
846      padding: 0; }
847  /* line 65, ../themes/stylesheets/ext4/default/widgets/_button.scss */
848  .x-btn .x-btn-inner {
849    display: block;
850    white-space: nowrap;
851    background-color: transparent;
852    background-repeat: no-repeat;
853    background-position: left center;
854    overflow: hidden; }
855  /* line 74, ../themes/stylesheets/ext4/default/widgets/_button.scss */
856  .x-btn .x-btn-left .x-btn-inner {
857    text-align: left; }
858  /* line 78, ../themes/stylesheets/ext4/default/widgets/_button.scss */
859  .x-btn .x-btn-center .x-btn-inner {
860    text-align: center; }
861  /* line 82, ../themes/stylesheets/ext4/default/widgets/_button.scss */
862  .x-btn .x-btn-right .x-btn-inner {
863    text-align: right; }
864
865/* line 87, ../themes/stylesheets/ext4/default/widgets/_button.scss */
866.x-btn-disabled span {
867  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
868  opacity: 0.5; }
869  /* line 91, ../themes/stylesheets/ext4/default/widgets/_button.scss */
870  .x-ie6 .x-btn-disabled span, .x-ie7 .x-btn-disabled span {
871    filter: none; }
872
873/* line 98, ../themes/stylesheets/ext4/default/widgets/_button.scss */
874.x-ie7 .x-btn-disabled,
875.x-ie8 .x-btn-disabled {
876  filter: none; }
877
878/* line 105, ../themes/stylesheets/ext4/default/widgets/_button.scss */
879.x-ie6 .x-btn-disabled .x-btn-icon,
880.x-ie7 .x-btn-disabled .x-btn-icon,
881.x-ie8 .x-btn-disabled .x-btn-icon {
882  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
883  opacity: 0.6; }
884
885/* IE9 shows scrollbars in a button unless this is set  */
886/* line 112, ../themes/stylesheets/ext4/default/widgets/_button.scss */
887.x-ie9 .x-btn button {
888  overflow: visible!important; }
889
890/* line 117, ../themes/stylesheets/ext4/default/widgets/_button.scss */
891* html .x-ie .x-btn button {
892  width: 1px; }
893
894/* line 122, ../themes/stylesheets/ext4/default/widgets/_button.scss */
895.x-ie .x-btn button {
896  overflow-x: visible;
897  /*prevents extra horiz space in IE*/
898  vertical-align: baseline;
899  /*IE doesn't like bottom*/ }
900
901/* line 129, ../themes/stylesheets/ext4/default/widgets/_button.scss */
902.x-strict .x-ie6 .x-btn .x-frame-mc,
903.x-strict .x-ie7 .x-btn .x-frame-mc {
904  height: 100%; }
905
906/* Keep the selector simple ".x-btn .x-frame-mc" is enough to target the center frame of the button table */
907/* line 138, ../themes/stylesheets/ext4/default/widgets/_button.scss */
908.x-btn .x-frame-mc {
909  vertical-align: middle;
910  white-space: nowrap;
911  cursor: pointer; }
912
913/* Only center when all there is is text. Otherwise solo icons get centered. */
914/* line 147, ../themes/stylesheets/ext4/default/widgets/_button.scss */
915.x-btn-noicon .x-frame-mc {
916  text-align: center; }
917
918/* line 153, ../themes/stylesheets/ext4/default/widgets/_button.scss */
919.x-btn-icon-text-left .x-btn-icon {
920  background-position: left center; }
921
922/* line 157, ../themes/stylesheets/ext4/default/widgets/_button.scss */
923.x-btn-icon-text-right .x-btn-icon {
924  background-position: right center; }
925
926/* line 161, ../themes/stylesheets/ext4/default/widgets/_button.scss */
927.x-btn-icon-text-top .x-btn-icon {
928  background-position: center top; }
929
930/* line 165, ../themes/stylesheets/ext4/default/widgets/_button.scss */
931.x-btn-icon-text-bottom .x-btn-icon {
932  background-position: center bottom; }
933
934/* line 170, ../themes/stylesheets/ext4/default/widgets/_button.scss */
935.x-btn button, .x-btn a {
936  position: relative; }
937  /* line 173, ../themes/stylesheets/ext4/default/widgets/_button.scss */
938  .x-btn button .x-btn-icon, .x-btn a .x-btn-icon {
939    position: absolute;
940    background-repeat: no-repeat; }
941
942/* line 180, ../themes/stylesheets/ext4/default/widgets/_button.scss */
943.x-btn-arrow-right {
944  background: transparent no-repeat right center;
945  padding-right: 12px; }
946  /* line 184, ../themes/stylesheets/ext4/default/widgets/_button.scss */
947  .x-btn-arrow-right .x-btn-inner {
948    padding-right: 0 !important; }
949
950/* line 189, ../themes/stylesheets/ext4/default/widgets/_button.scss */
951.x-toolbar .x-btn-arrow-right {
952  padding-right: 12px; }
953
954/* line 193, ../themes/stylesheets/ext4/default/widgets/_button.scss */
955.x-btn-arrow-bottom {
956  background: transparent no-repeat center bottom;
957  padding-bottom: 12px; }
958
959/* line 198, ../themes/stylesheets/ext4/default/widgets/_button.scss */
960.x-btn-arrow {
961  background-image: url('../../resources/themes/images/default/button/arrow.gif');
962  display: block; }
963
964/* line 206, ../themes/stylesheets/ext4/default/widgets/_button.scss */
965.x-btn-split-right,
966.x-btn-over .x-btn-split-right {
967  background: transparent no-repeat right center;
968  background-image: url('../../resources/themes/images/default/button/s-arrow.gif');
969  padding-right: 14px !important; }
970
971/* line 213, ../themes/stylesheets/ext4/default/widgets/_button.scss */
972.x-btn-split-bottom,
973.x-btn-over .x-btn-split-bottom {
974  background: transparent no-repeat center bottom;
975  background-image: url('../../resources/themes/images/default/button/s-arrow-b.gif');
976  padding-bottom: 14px; }
977
978/* line 219, ../themes/stylesheets/ext4/default/widgets/_button.scss */
979.x-toolbar .x-btn-split-right {
980  background-image: url('../../resources/themes/images/default/button/s-arrow-noline.gif');
981  padding-right: 12px !important; }
982
983/* line 224, ../themes/stylesheets/ext4/default/widgets/_button.scss */
984.x-toolbar .x-btn-split-bottom {
985  background-image: url('../../resources/themes/images/default/button/s-arrow-b-noline.gif'); }
986
987/* line 228, ../themes/stylesheets/ext4/default/widgets/_button.scss */
988.x-btn-split {
989  display: block; }
990
991/* line 233, ../themes/stylesheets/ext4/default/widgets/_button.scss */
992.x-item-disabled,
993.x-item-disabled * {
994  cursor: default; }
995
996/* line 237, ../themes/stylesheets/ext4/default/widgets/_button.scss */
997.x-cycle-fixed-width .x-btn-inner {
998  text-align: inherit; }
999
1000/* line 241, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1001.x-btn-over .x-btn-split-right {
1002  background-image: url('../../resources/themes/images/default/button/s-arrow-o.gif'); }
1003
1004/* line 242, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1005.x-btn-over .x-btn-split-bottom {
1006  background-image: url('../../resources/themes/images/default/button/s-arrow-bo.gif'); }
1007
1008/* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1009.x-btn-default-small {
1010  border-color: #d1d1d1; }
1011
1012/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1013.x-btn-default-small {
1014  -moz-border-radius: 3px;
1015  -webkit-border-radius: 3px;
1016  -o-border-radius: 3px;
1017  -ms-border-radius: 3px;
1018  -khtml-border-radius: 3px;
1019  border-radius: 3px;
1020  padding: 2px 2px 2px 2px;
1021  border-width: 1px;
1022  border-style: solid;
1023  background-image: none;
1024  background-color: white;
1025  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(48%, #f9f9f9), color-stop(52%, #e2e2e2), color-stop(100%, #e7e7e7));
1026  background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
1027  background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
1028  background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
1029  background-image: -ms-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
1030  background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); }
1031
1032/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1033.x-nlg .x-btn-default-small-mc {
1034  background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif');
1035  background-color: white; }
1036
1037/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1038.x-nbr .x-btn-default-small {
1039  padding: 0 !important;
1040  border-width: 0 !important;
1041  -moz-border-radius: 0px;
1042  -webkit-border-radius: 0px;
1043  -o-border-radius: 0px;
1044  -ms-border-radius: 0px;
1045  -khtml-border-radius: 0px;
1046  border-radius: 0px;
1047  background-color: transparent;
1048  background-position: 1100303px 1000303px; }
1049/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1050.x-nbr .x-btn-default-small-tl,
1051.x-nbr .x-btn-default-small-bl,
1052.x-nbr .x-btn-default-small-tr,
1053.x-nbr .x-btn-default-small-br,
1054.x-nbr .x-btn-default-small-tc,
1055.x-nbr .x-btn-default-small-bc,
1056.x-nbr .x-btn-default-small-ml,
1057.x-nbr .x-btn-default-small-mr {
1058  zoom: 1;
1059  background-image: url('../../resources/themes/images/default/btn/btn-default-small-corners.gif'); }
1060/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1061.x-nbr .x-btn-default-small-ml,
1062.x-nbr .x-btn-default-small-mr {
1063  zoom: 1;
1064  background-image: url('../../resources/themes/images/default/btn/btn-default-small-sides.gif');
1065  background-position: 0 0; }
1066/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1067.x-nbr .x-btn-default-small-mc {
1068  padding: 0px 0px 0px 0px; }
1069
1070/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1071.x-strict .x-ie7 .x-btn-default-small-tl,
1072.x-strict .x-ie7 .x-btn-default-small-bl {
1073  position: relative;
1074  right: 0; }
1075
1076/* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1077.x-btn-default-small .x-btn-inner {
1078  font-size: 11px;
1079  font-weight: normal;
1080  font-family: tahoma, arial, verdana, sans-serif;
1081  color: #333333;
1082  background-repeat: no-repeat;
1083  padding: 0 4px; }
1084
1085/* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1086.x-btn-default-small-icon button,
1087.x-btn-default-small-icon a,
1088.x-btn-default-small-icon .x-btn-inner,
1089.x-btn-default-small-noicon button,
1090.x-btn-default-small-noicon a,
1091.x-btn-default-small-noicon .x-btn-inner {
1092  height: 16px;
1093  line-height: 16px; }
1094
1095/* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1096.x-btn-default-small-icon button, .x-btn-default-small-icon a {
1097  padding: 0; }
1098/* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1099.x-btn-default-small-icon .x-btn-inner {
1100  /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
1101  width: 16px;
1102  padding: 0; }
1103/* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1104.x-btn-default-small-icon .x-btn-icon {
1105  width: 16px;
1106  height: 16px;
1107  top: 0;
1108  left: 0;
1109  bottom: 0;
1110  right: 0; }
1111
1112/* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1113.x-btn-default-small-icon-text-left button, .x-btn-default-small-icon-text-left a {
1114  height: 16px; }
1115/* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1116.x-btn-default-small-icon-text-left .x-btn-inner {
1117  height: 16px;
1118  line-height: 16px;
1119  padding-left: 20px; }
1120/* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1121.x-btn-default-small-icon-text-left .x-btn-icon {
1122  width: 16px;
1123  height: auto;
1124  top: 0;
1125  left: 0;
1126  bottom: 0;
1127  right: auto; }
1128  /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1129  .x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon {
1130    height: 16px; }
1131
1132/* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1133.x-btn-default-small-icon-text-right button, .x-btn-default-small-icon-text-right a {
1134  height: 16px; }
1135/* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1136.x-btn-default-small-icon-text-right .x-btn-inner {
1137  height: 16px;
1138  line-height: 16px;
1139  padding-right: 20px !important; }
1140/* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1141.x-btn-default-small-icon-text-right .x-btn-icon {
1142  width: 16px;
1143  height: auto;
1144  top: 0;
1145  left: auto;
1146  bottom: 0;
1147  right: 0; }
1148  /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1149  .x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon {
1150    height: 16px; }
1151
1152/* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1153.x-btn-default-small-icon-text-top .x-btn-inner {
1154  padding-top: 20px; }
1155/* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1156.x-btn-default-small-icon-text-top .x-btn-icon {
1157  width: auto;
1158  height: 16px;
1159  top: 0;
1160  left: 0;
1161  bottom: auto;
1162  right: 0; }
1163  /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1164  .x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon {
1165    width: 16px; }
1166
1167/* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1168.x-btn-default-small-icon-text-bottom .x-btn-inner {
1169  padding-bottom: 20px; }
1170/* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1171.x-btn-default-small-icon-text-bottom .x-btn-icon {
1172  width: auto;
1173  height: 16px;
1174  top: auto;
1175  left: 0;
1176  bottom: 0;
1177  right: 0; }
1178  /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1179  .x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon {
1180    width: 16px; }
1181
1182/* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1183.x-btn-default-small-over {
1184  border-color: #b0ccf2;
1185  background-image: none;
1186  background-color: #e4f3ff;
1187  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));
1188  background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1189  background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1190  background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1191  background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1192  background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
1193
1194/* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1195.x-btn-default-small-focus {
1196  border-color: #b0ccf2;
1197  background-image: none;
1198  background-color: #e4f3ff;
1199  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));
1200  background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1201  background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1202  background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1203  background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1204  background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
1205
1206/* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1207.x-btn-default-small-menu-active,
1208.x-btn-default-small-pressed {
1209  border-color: #9ebae1;
1210  background-image: none;
1211  background-color: #b6cbe4;
1212  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));
1213  background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1214  background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1215  background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1216  background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1217  background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
1218
1219/* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1220.x-btn-default-small-disabled {
1221  border-color: #e1e1e1;
1222  background-image: none;
1223  background-color: #f7f7f7;
1224  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));
1225  background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1226  background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1227  background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1228  background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1229  background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
1230  /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1231  .x-btn-default-small-disabled .x-btn-inner {
1232    color: #333333 !important; }
1233
1234/* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1235.x-ie .x-btn-default-small-disabled .x-btn-inner {
1236  color: #595959 !important; }
1237
1238/* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1239.x-ie6 .x-btn-default-small-disabled .x-btn-inner {
1240  color: #8c8c8c !important; }
1241
1242/* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1243.x-nbr .x-btn-default-small-over .x-frame-tl,
1244.x-nbr .x-btn-default-small-over .x-frame-bl,
1245.x-nbr .x-btn-default-small-over .x-frame-tr,
1246.x-nbr .x-btn-default-small-over .x-frame-br,
1247.x-nbr .x-btn-default-small-over .x-frame-tc,
1248.x-nbr .x-btn-default-small-over .x-frame-bc {
1249  background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-corners.gif'); }
1250/* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1251.x-nbr .x-btn-default-small-over .x-frame-ml,
1252.x-nbr .x-btn-default-small-over .x-frame-mr {
1253  background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-sides.gif'); }
1254/* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1255.x-nbr .x-btn-default-small-over .x-frame-mc {
1256  background-color: #e4f3ff;
1257  background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-bg.gif'); }
1258/* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1259.x-nbr .x-btn-default-small-focus .x-frame-tl,
1260.x-nbr .x-btn-default-small-focus .x-frame-bl,
1261.x-nbr .x-btn-default-small-focus .x-frame-tr,
1262.x-nbr .x-btn-default-small-focus .x-frame-br,
1263.x-nbr .x-btn-default-small-focus .x-frame-tc,
1264.x-nbr .x-btn-default-small-focus .x-frame-bc {
1265  background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-corners.gif'); }
1266/* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1267.x-nbr .x-btn-default-small-focus .x-frame-ml,
1268.x-nbr .x-btn-default-small-focus .x-frame-mr {
1269  background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-sides.gif'); }
1270/* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1271.x-nbr .x-btn-default-small-focus .x-frame-mc {
1272  background-color: #e4f3ff;
1273  background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-bg.gif'); }
1274/* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1275.x-nbr .x-btn-default-small-menu-active .x-frame-tl,
1276.x-nbr .x-btn-default-small-menu-active .x-frame-bl,
1277.x-nbr .x-btn-default-small-menu-active .x-frame-tr,
1278.x-nbr .x-btn-default-small-menu-active .x-frame-br,
1279.x-nbr .x-btn-default-small-menu-active .x-frame-tc,
1280.x-nbr .x-btn-default-small-menu-active .x-frame-bc,
1281.x-nbr .x-btn-default-small-pressed .x-frame-tl,
1282.x-nbr .x-btn-default-small-pressed .x-frame-bl,
1283.x-nbr .x-btn-default-small-pressed .x-frame-tr,
1284.x-nbr .x-btn-default-small-pressed .x-frame-br,
1285.x-nbr .x-btn-default-small-pressed .x-frame-tc,
1286.x-nbr .x-btn-default-small-pressed .x-frame-bc {
1287  background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-corners.gif'); }
1288/* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1289.x-nbr .x-btn-default-small-menu-active .x-frame-ml,
1290.x-nbr .x-btn-default-small-menu-active .x-frame-mr,
1291.x-nbr .x-btn-default-small-pressed .x-frame-ml,
1292.x-nbr .x-btn-default-small-pressed .x-frame-mr {
1293  background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-sides.gif'); }
1294/* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1295.x-nbr .x-btn-default-small-menu-active .x-frame-mc,
1296.x-nbr .x-btn-default-small-pressed .x-frame-mc {
1297  background-color: #b6cbe4;
1298  background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-bg.gif'); }
1299/* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1300.x-nbr .x-btn-default-small-disabled .x-frame-tl,
1301.x-nbr .x-btn-default-small-disabled .x-frame-bl,
1302.x-nbr .x-btn-default-small-disabled .x-frame-tr,
1303.x-nbr .x-btn-default-small-disabled .x-frame-br,
1304.x-nbr .x-btn-default-small-disabled .x-frame-tc,
1305.x-nbr .x-btn-default-small-disabled .x-frame-bc {
1306  background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-corners.gif'); }
1307/* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1308.x-nbr .x-btn-default-small-disabled .x-frame-ml,
1309.x-nbr .x-btn-default-small-disabled .x-frame-mr {
1310  background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-sides.gif'); }
1311/* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1312.x-nbr .x-btn-default-small-disabled .x-frame-mc {
1313  background-color: #f7f7f7;
1314  background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-bg.gif'); }
1315
1316/* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1317.x-nlg .x-btn-default-small {
1318  background-repeat: repeat-x;
1319  background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif'); }
1320
1321/* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1322.x-nlg .x-btn-default-small-over {
1323  background-repeat: repeat-x;
1324  background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-bg.gif'); }
1325
1326/* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1327.x-nlg .x-btn-default-small-focus {
1328  background-repeat: repeat-x;
1329  background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-bg.gif'); }
1330
1331/* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1332.x-nlg .x-btn-default-small-menu-active,
1333.x-nlg .x-btn-default-small-pressed {
1334  background-repeat: repeat-x;
1335  background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-bg.gif'); }
1336
1337/* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1338.x-nlg .x-btn-default-small-disabled {
1339  background-repeat: repeat-x;
1340  background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-bg.gif'); }
1341
1342/* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1343.x-btn-default-medium {
1344  border-color: #d1d1d1; }
1345
1346/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1347.x-btn-default-medium {
1348  -moz-border-radius: 3px;
1349  -webkit-border-radius: 3px;
1350  -o-border-radius: 3px;
1351  -ms-border-radius: 3px;
1352  -khtml-border-radius: 3px;
1353  border-radius: 3px;
1354  padding: 3px 3px 3px 3px;
1355  border-width: 1px;
1356  border-style: solid;
1357  background-image: none;
1358  background-color: white;
1359  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(48%, #f9f9f9), color-stop(52%, #e2e2e2), color-stop(100%, #e7e7e7));
1360  background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
1361  background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
1362  background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
1363  background-image: -ms-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
1364  background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); }
1365
1366/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1367.x-nlg .x-btn-default-medium-mc {
1368  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif');
1369  background-color: white; }
1370
1371/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1372.x-nbr .x-btn-default-medium {
1373  padding: 0 !important;
1374  border-width: 0 !important;
1375  -moz-border-radius: 0px;
1376  -webkit-border-radius: 0px;
1377  -o-border-radius: 0px;
1378  -ms-border-radius: 0px;
1379  -khtml-border-radius: 0px;
1380  border-radius: 0px;
1381  background-color: transparent;
1382  background-position: 1100303px 1000303px; }
1383/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1384.x-nbr .x-btn-default-medium-tl,
1385.x-nbr .x-btn-default-medium-bl,
1386.x-nbr .x-btn-default-medium-tr,
1387.x-nbr .x-btn-default-medium-br,
1388.x-nbr .x-btn-default-medium-tc,
1389.x-nbr .x-btn-default-medium-bc,
1390.x-nbr .x-btn-default-medium-ml,
1391.x-nbr .x-btn-default-medium-mr {
1392  zoom: 1;
1393  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-corners.gif'); }
1394/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1395.x-nbr .x-btn-default-medium-ml,
1396.x-nbr .x-btn-default-medium-mr {
1397  zoom: 1;
1398  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-sides.gif');
1399  background-position: 0 0; }
1400/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1401.x-nbr .x-btn-default-medium-mc {
1402  padding: 1px 1px 1px 1px; }
1403
1404/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1405.x-strict .x-ie7 .x-btn-default-medium-tl,
1406.x-strict .x-ie7 .x-btn-default-medium-bl {
1407  position: relative;
1408  right: 0; }
1409
1410/* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1411.x-btn-default-medium .x-btn-inner {
1412  font-size: 11px;
1413  font-weight: normal;
1414  font-family: tahoma, arial, verdana, sans-serif;
1415  color: #333333;
1416  background-repeat: no-repeat;
1417  padding: 0 3px; }
1418
1419/* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1420.x-btn-default-medium-icon button,
1421.x-btn-default-medium-icon a,
1422.x-btn-default-medium-icon .x-btn-inner,
1423.x-btn-default-medium-noicon button,
1424.x-btn-default-medium-noicon a,
1425.x-btn-default-medium-noicon .x-btn-inner {
1426  height: 24px;
1427  line-height: 24px; }
1428
1429/* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1430.x-btn-default-medium-icon button, .x-btn-default-medium-icon a {
1431  padding: 0; }
1432/* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1433.x-btn-default-medium-icon .x-btn-inner {
1434  /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
1435  width: 24px;
1436  padding: 0; }
1437/* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1438.x-btn-default-medium-icon .x-btn-icon {
1439  width: 24px;
1440  height: 24px;
1441  top: 0;
1442  left: 0;
1443  bottom: 0;
1444  right: 0; }
1445
1446/* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1447.x-btn-default-medium-icon-text-left button, .x-btn-default-medium-icon-text-left a {
1448  height: 24px; }
1449/* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1450.x-btn-default-medium-icon-text-left .x-btn-inner {
1451  height: 24px;
1452  line-height: 24px;
1453  padding-left: 28px; }
1454/* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1455.x-btn-default-medium-icon-text-left .x-btn-icon {
1456  width: 24px;
1457  height: auto;
1458  top: 0;
1459  left: 0;
1460  bottom: 0;
1461  right: auto; }
1462  /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1463  .x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon {
1464    height: 24px; }
1465
1466/* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1467.x-btn-default-medium-icon-text-right button, .x-btn-default-medium-icon-text-right a {
1468  height: 24px; }
1469/* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1470.x-btn-default-medium-icon-text-right .x-btn-inner {
1471  height: 24px;
1472  line-height: 24px;
1473  padding-right: 28px !important; }
1474/* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1475.x-btn-default-medium-icon-text-right .x-btn-icon {
1476  width: 24px;
1477  height: auto;
1478  top: 0;
1479  left: auto;
1480  bottom: 0;
1481  right: 0; }
1482  /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1483  .x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon {
1484    height: 24px; }
1485
1486/* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1487.x-btn-default-medium-icon-text-top .x-btn-inner {
1488  padding-top: 28px; }
1489/* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1490.x-btn-default-medium-icon-text-top .x-btn-icon {
1491  width: auto;
1492  height: 24px;
1493  top: 0;
1494  left: 0;
1495  bottom: auto;
1496  right: 0; }
1497  /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1498  .x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon {
1499    width: 24px; }
1500
1501/* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1502.x-btn-default-medium-icon-text-bottom .x-btn-inner {
1503  padding-bottom: 28px; }
1504/* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1505.x-btn-default-medium-icon-text-bottom .x-btn-icon {
1506  width: auto;
1507  height: 24px;
1508  top: auto;
1509  left: 0;
1510  bottom: 0;
1511  right: 0; }
1512  /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1513  .x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon {
1514    width: 24px; }
1515
1516/* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1517.x-btn-default-medium-over {
1518  border-color: #b0ccf2;
1519  background-image: none;
1520  background-color: #e4f3ff;
1521  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));
1522  background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1523  background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1524  background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1525  background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1526  background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
1527
1528/* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1529.x-btn-default-medium-focus {
1530  border-color: #b0ccf2;
1531  background-image: none;
1532  background-color: #e4f3ff;
1533  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));
1534  background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1535  background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1536  background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1537  background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1538  background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
1539
1540/* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1541.x-btn-default-medium-menu-active,
1542.x-btn-default-medium-pressed {
1543  border-color: #9ebae1;
1544  background-image: none;
1545  background-color: #b6cbe4;
1546  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));
1547  background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1548  background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1549  background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1550  background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1551  background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
1552
1553/* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1554.x-btn-default-medium-disabled {
1555  border-color: #e1e1e1;
1556  background-image: none;
1557  background-color: #f7f7f7;
1558  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));
1559  background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1560  background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1561  background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1562  background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1563  background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
1564  /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1565  .x-btn-default-medium-disabled .x-btn-inner {
1566    color: #333333 !important; }
1567
1568/* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1569.x-ie .x-btn-default-medium-disabled .x-btn-inner {
1570  color: #595959 !important; }
1571
1572/* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1573.x-ie6 .x-btn-default-medium-disabled .x-btn-inner {
1574  color: #8c8c8c !important; }
1575
1576/* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1577.x-nbr .x-btn-default-medium-over .x-frame-tl,
1578.x-nbr .x-btn-default-medium-over .x-frame-bl,
1579.x-nbr .x-btn-default-medium-over .x-frame-tr,
1580.x-nbr .x-btn-default-medium-over .x-frame-br,
1581.x-nbr .x-btn-default-medium-over .x-frame-tc,
1582.x-nbr .x-btn-default-medium-over .x-frame-bc {
1583  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-corners.gif'); }
1584/* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1585.x-nbr .x-btn-default-medium-over .x-frame-ml,
1586.x-nbr .x-btn-default-medium-over .x-frame-mr {
1587  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-sides.gif'); }
1588/* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1589.x-nbr .x-btn-default-medium-over .x-frame-mc {
1590  background-color: #e4f3ff;
1591  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-bg.gif'); }
1592/* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1593.x-nbr .x-btn-default-medium-focus .x-frame-tl,
1594.x-nbr .x-btn-default-medium-focus .x-frame-bl,
1595.x-nbr .x-btn-default-medium-focus .x-frame-tr,
1596.x-nbr .x-btn-default-medium-focus .x-frame-br,
1597.x-nbr .x-btn-default-medium-focus .x-frame-tc,
1598.x-nbr .x-btn-default-medium-focus .x-frame-bc {
1599  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-corners.gif'); }
1600/* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1601.x-nbr .x-btn-default-medium-focus .x-frame-ml,
1602.x-nbr .x-btn-default-medium-focus .x-frame-mr {
1603  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-sides.gif'); }
1604/* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1605.x-nbr .x-btn-default-medium-focus .x-frame-mc {
1606  background-color: #e4f3ff;
1607  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-bg.gif'); }
1608/* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1609.x-nbr .x-btn-default-medium-menu-active .x-frame-tl,
1610.x-nbr .x-btn-default-medium-menu-active .x-frame-bl,
1611.x-nbr .x-btn-default-medium-menu-active .x-frame-tr,
1612.x-nbr .x-btn-default-medium-menu-active .x-frame-br,
1613.x-nbr .x-btn-default-medium-menu-active .x-frame-tc,
1614.x-nbr .x-btn-default-medium-menu-active .x-frame-bc,
1615.x-nbr .x-btn-default-medium-pressed .x-frame-tl,
1616.x-nbr .x-btn-default-medium-pressed .x-frame-bl,
1617.x-nbr .x-btn-default-medium-pressed .x-frame-tr,
1618.x-nbr .x-btn-default-medium-pressed .x-frame-br,
1619.x-nbr .x-btn-default-medium-pressed .x-frame-tc,
1620.x-nbr .x-btn-default-medium-pressed .x-frame-bc {
1621  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-corners.gif'); }
1622/* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1623.x-nbr .x-btn-default-medium-menu-active .x-frame-ml,
1624.x-nbr .x-btn-default-medium-menu-active .x-frame-mr,
1625.x-nbr .x-btn-default-medium-pressed .x-frame-ml,
1626.x-nbr .x-btn-default-medium-pressed .x-frame-mr {
1627  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-sides.gif'); }
1628/* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1629.x-nbr .x-btn-default-medium-menu-active .x-frame-mc,
1630.x-nbr .x-btn-default-medium-pressed .x-frame-mc {
1631  background-color: #b6cbe4;
1632  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-bg.gif'); }
1633/* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1634.x-nbr .x-btn-default-medium-disabled .x-frame-tl,
1635.x-nbr .x-btn-default-medium-disabled .x-frame-bl,
1636.x-nbr .x-btn-default-medium-disabled .x-frame-tr,
1637.x-nbr .x-btn-default-medium-disabled .x-frame-br,
1638.x-nbr .x-btn-default-medium-disabled .x-frame-tc,
1639.x-nbr .x-btn-default-medium-disabled .x-frame-bc {
1640  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-corners.gif'); }
1641/* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1642.x-nbr .x-btn-default-medium-disabled .x-frame-ml,
1643.x-nbr .x-btn-default-medium-disabled .x-frame-mr {
1644  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-sides.gif'); }
1645/* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1646.x-nbr .x-btn-default-medium-disabled .x-frame-mc {
1647  background-color: #f7f7f7;
1648  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-bg.gif'); }
1649
1650/* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1651.x-nlg .x-btn-default-medium {
1652  background-repeat: repeat-x;
1653  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif'); }
1654
1655/* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1656.x-nlg .x-btn-default-medium-over {
1657  background-repeat: repeat-x;
1658  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-bg.gif'); }
1659
1660/* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1661.x-nlg .x-btn-default-medium-focus {
1662  background-repeat: repeat-x;
1663  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-bg.gif'); }
1664
1665/* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1666.x-nlg .x-btn-default-medium-menu-active,
1667.x-nlg .x-btn-default-medium-pressed {
1668  background-repeat: repeat-x;
1669  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-bg.gif'); }
1670
1671/* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1672.x-nlg .x-btn-default-medium-disabled {
1673  background-repeat: repeat-x;
1674  background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-bg.gif'); }
1675
1676/* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1677.x-btn-default-large {
1678  border-color: #d1d1d1; }
1679
1680/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1681.x-btn-default-large {
1682  -moz-border-radius: 3px;
1683  -webkit-border-radius: 3px;
1684  -o-border-radius: 3px;
1685  -ms-border-radius: 3px;
1686  -khtml-border-radius: 3px;
1687  border-radius: 3px;
1688  padding: 3px 3px 3px 3px;
1689  border-width: 1px;
1690  border-style: solid;
1691  background-image: none;
1692  background-color: white;
1693  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(48%, #f9f9f9), color-stop(52%, #e2e2e2), color-stop(100%, #e7e7e7));
1694  background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
1695  background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
1696  background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
1697  background-image: -ms-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
1698  background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); }
1699
1700/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1701.x-nlg .x-btn-default-large-mc {
1702  background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif');
1703  background-color: white; }
1704
1705/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1706.x-nbr .x-btn-default-large {
1707  padding: 0 !important;
1708  border-width: 0 !important;
1709  -moz-border-radius: 0px;
1710  -webkit-border-radius: 0px;
1711  -o-border-radius: 0px;
1712  -ms-border-radius: 0px;
1713  -khtml-border-radius: 0px;
1714  border-radius: 0px;
1715  background-color: transparent;
1716  background-position: 1100303px 1000303px; }
1717/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1718.x-nbr .x-btn-default-large-tl,
1719.x-nbr .x-btn-default-large-bl,
1720.x-nbr .x-btn-default-large-tr,
1721.x-nbr .x-btn-default-large-br,
1722.x-nbr .x-btn-default-large-tc,
1723.x-nbr .x-btn-default-large-bc,
1724.x-nbr .x-btn-default-large-ml,
1725.x-nbr .x-btn-default-large-mr {
1726  zoom: 1;
1727  background-image: url('../../resources/themes/images/default/btn/btn-default-large-corners.gif'); }
1728/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1729.x-nbr .x-btn-default-large-ml,
1730.x-nbr .x-btn-default-large-mr {
1731  zoom: 1;
1732  background-image: url('../../resources/themes/images/default/btn/btn-default-large-sides.gif');
1733  background-position: 0 0; }
1734/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1735.x-nbr .x-btn-default-large-mc {
1736  padding: 1px 1px 1px 1px; }
1737
1738/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
1739.x-strict .x-ie7 .x-btn-default-large-tl,
1740.x-strict .x-ie7 .x-btn-default-large-bl {
1741  position: relative;
1742  right: 0; }
1743
1744/* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1745.x-btn-default-large .x-btn-inner {
1746  font-size: 11px;
1747  font-weight: normal;
1748  font-family: tahoma, arial, verdana, sans-serif;
1749  color: #333333;
1750  background-repeat: no-repeat;
1751  padding: 0 3px; }
1752
1753/* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1754.x-btn-default-large-icon button,
1755.x-btn-default-large-icon a,
1756.x-btn-default-large-icon .x-btn-inner,
1757.x-btn-default-large-noicon button,
1758.x-btn-default-large-noicon a,
1759.x-btn-default-large-noicon .x-btn-inner {
1760  height: 32px;
1761  line-height: 32px; }
1762
1763/* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1764.x-btn-default-large-icon button, .x-btn-default-large-icon a {
1765  padding: 0; }
1766/* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1767.x-btn-default-large-icon .x-btn-inner {
1768  /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
1769  width: 32px;
1770  padding: 0; }
1771/* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1772.x-btn-default-large-icon .x-btn-icon {
1773  width: 32px;
1774  height: 32px;
1775  top: 0;
1776  left: 0;
1777  bottom: 0;
1778  right: 0; }
1779
1780/* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1781.x-btn-default-large-icon-text-left button, .x-btn-default-large-icon-text-left a {
1782  height: 32px; }
1783/* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1784.x-btn-default-large-icon-text-left .x-btn-inner {
1785  height: 32px;
1786  line-height: 32px;
1787  padding-left: 36px; }
1788/* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1789.x-btn-default-large-icon-text-left .x-btn-icon {
1790  width: 32px;
1791  height: auto;
1792  top: 0;
1793  left: 0;
1794  bottom: 0;
1795  right: auto; }
1796  /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1797  .x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon {
1798    height: 32px; }
1799
1800/* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1801.x-btn-default-large-icon-text-right button, .x-btn-default-large-icon-text-right a {
1802  height: 32px; }
1803/* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1804.x-btn-default-large-icon-text-right .x-btn-inner {
1805  height: 32px;
1806  line-height: 32px;
1807  padding-right: 36px !important; }
1808/* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1809.x-btn-default-large-icon-text-right .x-btn-icon {
1810  width: 32px;
1811  height: auto;
1812  top: 0;
1813  left: auto;
1814  bottom: 0;
1815  right: 0; }
1816  /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1817  .x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon {
1818    height: 32px; }
1819
1820/* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1821.x-btn-default-large-icon-text-top .x-btn-inner {
1822  padding-top: 36px; }
1823/* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1824.x-btn-default-large-icon-text-top .x-btn-icon {
1825  width: auto;
1826  height: 32px;
1827  top: 0;
1828  left: 0;
1829  bottom: auto;
1830  right: 0; }
1831  /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1832  .x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon {
1833    width: 32px; }
1834
1835/* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1836.x-btn-default-large-icon-text-bottom .x-btn-inner {
1837  padding-bottom: 36px; }
1838/* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1839.x-btn-default-large-icon-text-bottom .x-btn-icon {
1840  width: auto;
1841  height: 32px;
1842  top: auto;
1843  left: 0;
1844  bottom: 0;
1845  right: 0; }
1846  /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1847  .x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon {
1848    width: 32px; }
1849
1850/* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1851.x-btn-default-large-over {
1852  border-color: #b0ccf2;
1853  background-image: none;
1854  background-color: #e4f3ff;
1855  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));
1856  background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1857  background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1858  background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1859  background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1860  background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
1861
1862/* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1863.x-btn-default-large-focus {
1864  border-color: #b0ccf2;
1865  background-image: none;
1866  background-color: #e4f3ff;
1867  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));
1868  background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1869  background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1870  background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1871  background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
1872  background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
1873
1874/* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1875.x-btn-default-large-menu-active,
1876.x-btn-default-large-pressed {
1877  border-color: #9ebae1;
1878  background-image: none;
1879  background-color: #b6cbe4;
1880  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));
1881  background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1882  background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1883  background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1884  background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
1885  background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
1886
1887/* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1888.x-btn-default-large-disabled {
1889  border-color: #e1e1e1;
1890  background-image: none;
1891  background-color: #f7f7f7;
1892  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));
1893  background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1894  background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1895  background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1896  background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
1897  background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
1898  /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1899  .x-btn-default-large-disabled .x-btn-inner {
1900    color: #333333 !important; }
1901
1902/* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1903.x-ie .x-btn-default-large-disabled .x-btn-inner {
1904  color: #595959 !important; }
1905
1906/* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1907.x-ie6 .x-btn-default-large-disabled .x-btn-inner {
1908  color: #8c8c8c !important; }
1909
1910/* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1911.x-nbr .x-btn-default-large-over .x-frame-tl,
1912.x-nbr .x-btn-default-large-over .x-frame-bl,
1913.x-nbr .x-btn-default-large-over .x-frame-tr,
1914.x-nbr .x-btn-default-large-over .x-frame-br,
1915.x-nbr .x-btn-default-large-over .x-frame-tc,
1916.x-nbr .x-btn-default-large-over .x-frame-bc {
1917  background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-corners.gif'); }
1918/* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1919.x-nbr .x-btn-default-large-over .x-frame-ml,
1920.x-nbr .x-btn-default-large-over .x-frame-mr {
1921  background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-sides.gif'); }
1922/* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1923.x-nbr .x-btn-default-large-over .x-frame-mc {
1924  background-color: #e4f3ff;
1925  background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-bg.gif'); }
1926/* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1927.x-nbr .x-btn-default-large-focus .x-frame-tl,
1928.x-nbr .x-btn-default-large-focus .x-frame-bl,
1929.x-nbr .x-btn-default-large-focus .x-frame-tr,
1930.x-nbr .x-btn-default-large-focus .x-frame-br,
1931.x-nbr .x-btn-default-large-focus .x-frame-tc,
1932.x-nbr .x-btn-default-large-focus .x-frame-bc {
1933  background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-corners.gif'); }
1934/* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1935.x-nbr .x-btn-default-large-focus .x-frame-ml,
1936.x-nbr .x-btn-default-large-focus .x-frame-mr {
1937  background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-sides.gif'); }
1938/* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1939.x-nbr .x-btn-default-large-focus .x-frame-mc {
1940  background-color: #e4f3ff;
1941  background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-bg.gif'); }
1942/* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1943.x-nbr .x-btn-default-large-menu-active .x-frame-tl,
1944.x-nbr .x-btn-default-large-menu-active .x-frame-bl,
1945.x-nbr .x-btn-default-large-menu-active .x-frame-tr,
1946.x-nbr .x-btn-default-large-menu-active .x-frame-br,
1947.x-nbr .x-btn-default-large-menu-active .x-frame-tc,
1948.x-nbr .x-btn-default-large-menu-active .x-frame-bc,
1949.x-nbr .x-btn-default-large-pressed .x-frame-tl,
1950.x-nbr .x-btn-default-large-pressed .x-frame-bl,
1951.x-nbr .x-btn-default-large-pressed .x-frame-tr,
1952.x-nbr .x-btn-default-large-pressed .x-frame-br,
1953.x-nbr .x-btn-default-large-pressed .x-frame-tc,
1954.x-nbr .x-btn-default-large-pressed .x-frame-bc {
1955  background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-corners.gif'); }
1956/* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1957.x-nbr .x-btn-default-large-menu-active .x-frame-ml,
1958.x-nbr .x-btn-default-large-menu-active .x-frame-mr,
1959.x-nbr .x-btn-default-large-pressed .x-frame-ml,
1960.x-nbr .x-btn-default-large-pressed .x-frame-mr {
1961  background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-sides.gif'); }
1962/* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1963.x-nbr .x-btn-default-large-menu-active .x-frame-mc,
1964.x-nbr .x-btn-default-large-pressed .x-frame-mc {
1965  background-color: #b6cbe4;
1966  background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-bg.gif'); }
1967/* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1968.x-nbr .x-btn-default-large-disabled .x-frame-tl,
1969.x-nbr .x-btn-default-large-disabled .x-frame-bl,
1970.x-nbr .x-btn-default-large-disabled .x-frame-tr,
1971.x-nbr .x-btn-default-large-disabled .x-frame-br,
1972.x-nbr .x-btn-default-large-disabled .x-frame-tc,
1973.x-nbr .x-btn-default-large-disabled .x-frame-bc {
1974  background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-corners.gif'); }
1975/* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1976.x-nbr .x-btn-default-large-disabled .x-frame-ml,
1977.x-nbr .x-btn-default-large-disabled .x-frame-mr {
1978  background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-sides.gif'); }
1979/* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1980.x-nbr .x-btn-default-large-disabled .x-frame-mc {
1981  background-color: #f7f7f7;
1982  background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-bg.gif'); }
1983
1984/* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1985.x-nlg .x-btn-default-large {
1986  background-repeat: repeat-x;
1987  background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif'); }
1988
1989/* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1990.x-nlg .x-btn-default-large-over {
1991  background-repeat: repeat-x;
1992  background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-bg.gif'); }
1993
1994/* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
1995.x-nlg .x-btn-default-large-focus {
1996  background-repeat: repeat-x;
1997  background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-bg.gif'); }
1998
1999/* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2000.x-nlg .x-btn-default-large-menu-active,
2001.x-nlg .x-btn-default-large-pressed {
2002  background-repeat: repeat-x;
2003  background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-bg.gif'); }
2004
2005/* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2006.x-nlg .x-btn-default-large-disabled {
2007  background-repeat: repeat-x;
2008  background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-bg.gif'); }
2009
2010/* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2011.x-btn-default-toolbar-small {
2012  border-color: transparent; }
2013
2014/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2015.x-btn-default-toolbar-small {
2016  -moz-border-radius: 3px;
2017  -webkit-border-radius: 3px;
2018  -o-border-radius: 3px;
2019  -ms-border-radius: 3px;
2020  -khtml-border-radius: 3px;
2021  border-radius: 3px;
2022  padding: 2px 2px 2px 2px;
2023  border-width: 1px;
2024  border-style: solid;
2025  background-color: transparent; }
2026
2027/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2028.x-nlg .x-btn-default-toolbar-small-mc {
2029  background-color: transparent; }
2030
2031/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2032.x-nbr .x-btn-default-toolbar-small {
2033  padding: 0 !important;
2034  border-width: 0 !important;
2035  -moz-border-radius: 0px;
2036  -webkit-border-radius: 0px;
2037  -o-border-radius: 0px;
2038  -ms-border-radius: 0px;
2039  -khtml-border-radius: 0px;
2040  border-radius: 0px;
2041  background-color: transparent;
2042  background-position: 1100303px 1000303px; }
2043/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2044.x-nbr .x-btn-default-toolbar-small-tl,
2045.x-nbr .x-btn-default-toolbar-small-bl,
2046.x-nbr .x-btn-default-toolbar-small-tr,
2047.x-nbr .x-btn-default-toolbar-small-br,
2048.x-nbr .x-btn-default-toolbar-small-tc,
2049.x-nbr .x-btn-default-toolbar-small-bc,
2050.x-nbr .x-btn-default-toolbar-small-ml,
2051.x-nbr .x-btn-default-toolbar-small-mr {
2052  zoom: 1; }
2053/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2054.x-nbr .x-btn-default-toolbar-small-ml,
2055.x-nbr .x-btn-default-toolbar-small-mr {
2056  zoom: 1; }
2057/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2058.x-nbr .x-btn-default-toolbar-small-mc {
2059  padding: 0px 0px 0px 0px; }
2060
2061/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2062.x-strict .x-ie7 .x-btn-default-toolbar-small-tl,
2063.x-strict .x-ie7 .x-btn-default-toolbar-small-bl {
2064  position: relative;
2065  right: 0; }
2066
2067/* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2068.x-btn-default-toolbar-small .x-btn-inner {
2069  font-size: 11px;
2070  font-weight: normal;
2071  font-family: tahoma, arial, verdana, sans-serif;
2072  color: #333333;
2073  background-repeat: no-repeat;
2074  padding: 0 4px; }
2075
2076/* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2077.x-btn-default-toolbar-small-icon button,
2078.x-btn-default-toolbar-small-icon a,
2079.x-btn-default-toolbar-small-icon .x-btn-inner,
2080.x-btn-default-toolbar-small-noicon button,
2081.x-btn-default-toolbar-small-noicon a,
2082.x-btn-default-toolbar-small-noicon .x-btn-inner {
2083  height: 16px;
2084  line-height: 16px; }
2085
2086/* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2087.x-btn-default-toolbar-small-icon button, .x-btn-default-toolbar-small-icon a {
2088  padding: 0; }
2089/* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2090.x-btn-default-toolbar-small-icon .x-btn-inner {
2091  /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
2092  width: 16px;
2093  padding: 0; }
2094/* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2095.x-btn-default-toolbar-small-icon .x-btn-icon {
2096  width: 16px;
2097  height: 16px;
2098  top: 0;
2099  left: 0;
2100  bottom: 0;
2101  right: 0; }
2102
2103/* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2104.x-btn-default-toolbar-small-icon-text-left button, .x-btn-default-toolbar-small-icon-text-left a {
2105  height: 16px; }
2106/* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2107.x-btn-default-toolbar-small-icon-text-left .x-btn-inner {
2108  height: 16px;
2109  line-height: 16px;
2110  padding-left: 20px; }
2111/* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2112.x-btn-default-toolbar-small-icon-text-left .x-btn-icon {
2113  width: 16px;
2114  height: auto;
2115  top: 0;
2116  left: 0;
2117  bottom: 0;
2118  right: auto; }
2119  /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2120  .x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon {
2121    height: 16px; }
2122
2123/* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2124.x-btn-default-toolbar-small-icon-text-right button, .x-btn-default-toolbar-small-icon-text-right a {
2125  height: 16px; }
2126/* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2127.x-btn-default-toolbar-small-icon-text-right .x-btn-inner {
2128  height: 16px;
2129  line-height: 16px;
2130  padding-right: 20px !important; }
2131/* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2132.x-btn-default-toolbar-small-icon-text-right .x-btn-icon {
2133  width: 16px;
2134  height: auto;
2135  top: 0;
2136  left: auto;
2137  bottom: 0;
2138  right: 0; }
2139  /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2140  .x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon {
2141    height: 16px; }
2142
2143/* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2144.x-btn-default-toolbar-small-icon-text-top .x-btn-inner {
2145  padding-top: 20px; }
2146/* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2147.x-btn-default-toolbar-small-icon-text-top .x-btn-icon {
2148  width: auto;
2149  height: 16px;
2150  top: 0;
2151  left: 0;
2152  bottom: auto;
2153  right: 0; }
2154  /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2155  .x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon {
2156    width: 16px; }
2157
2158/* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2159.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner {
2160  padding-bottom: 20px; }
2161/* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2162.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon {
2163  width: auto;
2164  height: 16px;
2165  top: auto;
2166  left: 0;
2167  bottom: 0;
2168  right: 0; }
2169  /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2170  .x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon {
2171    width: 16px; }
2172
2173/* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2174.x-btn-default-toolbar-small-over {
2175  border-color: #81a4d0;
2176  background-image: none;
2177  background-color: #dbeeff;
2178  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));
2179  background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2180  background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2181  background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2182  background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2183  background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
2184
2185/* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2186.x-btn-default-toolbar-small-focus {
2187  border-color: #81a4d0;
2188  background-image: none;
2189  background-color: #dbeeff;
2190  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));
2191  background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2192  background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2193  background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2194  background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2195  background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
2196
2197/* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2198.x-btn-default-toolbar-small-menu-active,
2199.x-btn-default-toolbar-small-pressed {
2200  border-color: #7a9ac4;
2201  background-image: none;
2202  background-color: #bccfe5;
2203  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));
2204  background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2205  background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2206  background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2207  background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2208  background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
2209
2210/* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2211.x-btn-default-toolbar-small-disabled {
2212  background-image: none;
2213  background-color: transparent; }
2214  /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2215  .x-btn-default-toolbar-small-disabled .x-btn-inner {
2216    color: #333333 !important; }
2217
2218/* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2219.x-ie .x-btn-default-toolbar-small-disabled .x-btn-inner {
2220  color: #595959 !important; }
2221
2222/* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2223.x-ie6 .x-btn-default-toolbar-small-disabled .x-btn-inner {
2224  color: #8c8c8c !important; }
2225
2226/* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2227.x-nbr .x-btn-default-toolbar-small-over .x-frame-tl,
2228.x-nbr .x-btn-default-toolbar-small-over .x-frame-bl,
2229.x-nbr .x-btn-default-toolbar-small-over .x-frame-tr,
2230.x-nbr .x-btn-default-toolbar-small-over .x-frame-br,
2231.x-nbr .x-btn-default-toolbar-small-over .x-frame-tc,
2232.x-nbr .x-btn-default-toolbar-small-over .x-frame-bc {
2233  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-corners.gif'); }
2234/* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2235.x-nbr .x-btn-default-toolbar-small-over .x-frame-ml,
2236.x-nbr .x-btn-default-toolbar-small-over .x-frame-mr {
2237  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-sides.gif'); }
2238/* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2239.x-nbr .x-btn-default-toolbar-small-over .x-frame-mc {
2240  background-color: #dbeeff;
2241  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-bg.gif'); }
2242/* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2243.x-nbr .x-btn-default-toolbar-small-focus .x-frame-tl,
2244.x-nbr .x-btn-default-toolbar-small-focus .x-frame-bl,
2245.x-nbr .x-btn-default-toolbar-small-focus .x-frame-tr,
2246.x-nbr .x-btn-default-toolbar-small-focus .x-frame-br,
2247.x-nbr .x-btn-default-toolbar-small-focus .x-frame-tc,
2248.x-nbr .x-btn-default-toolbar-small-focus .x-frame-bc {
2249  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-corners.gif'); }
2250/* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2251.x-nbr .x-btn-default-toolbar-small-focus .x-frame-ml,
2252.x-nbr .x-btn-default-toolbar-small-focus .x-frame-mr {
2253  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-sides.gif'); }
2254/* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2255.x-nbr .x-btn-default-toolbar-small-focus .x-frame-mc {
2256  background-color: #dbeeff;
2257  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-bg.gif'); }
2258/* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2259.x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tl,
2260.x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bl,
2261.x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tr,
2262.x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-br,
2263.x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tc,
2264.x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bc,
2265.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tl,
2266.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bl,
2267.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tr,
2268.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-br,
2269.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tc,
2270.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bc {
2271  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-corners.gif'); }
2272/* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2273.x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-ml,
2274.x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mr,
2275.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-ml,
2276.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mr {
2277  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-sides.gif'); }
2278/* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2279.x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mc,
2280.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mc {
2281  background-color: #bccfe5;
2282  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-bg.gif'); }
2283/* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2284.x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tl,
2285.x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bl,
2286.x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tr,
2287.x-nbr .x-btn-default-toolbar-small-disabled .x-frame-br,
2288.x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tc,
2289.x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bc {
2290  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-disabled-corners.gif'); }
2291/* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2292.x-nbr .x-btn-default-toolbar-small-disabled .x-frame-ml,
2293.x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mr {
2294  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-disabled-sides.gif'); }
2295/* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2296.x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mc {
2297  background-color: transparent; }
2298
2299/* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2300.x-nlg .x-btn-default-toolbar-small-over {
2301  background-repeat: repeat-x;
2302  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-bg.gif'); }
2303
2304/* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2305.x-nlg .x-btn-default-toolbar-small-focus {
2306  background-repeat: repeat-x;
2307  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-bg.gif'); }
2308
2309/* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2310.x-nlg .x-btn-default-toolbar-small-menu-active,
2311.x-nlg .x-btn-default-toolbar-small-pressed {
2312  background-repeat: repeat-x;
2313  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-bg.gif'); }
2314
2315/* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2316.x-btn-default-toolbar-medium {
2317  border-color: transparent; }
2318
2319/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2320.x-btn-default-toolbar-medium {
2321  -moz-border-radius: 3px;
2322  -webkit-border-radius: 3px;
2323  -o-border-radius: 3px;
2324  -ms-border-radius: 3px;
2325  -khtml-border-radius: 3px;
2326  border-radius: 3px;
2327  padding: 3px 3px 3px 3px;
2328  border-width: 1px;
2329  border-style: solid;
2330  background-color: transparent; }
2331
2332/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2333.x-nlg .x-btn-default-toolbar-medium-mc {
2334  background-color: transparent; }
2335
2336/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2337.x-nbr .x-btn-default-toolbar-medium {
2338  padding: 0 !important;
2339  border-width: 0 !important;
2340  -moz-border-radius: 0px;
2341  -webkit-border-radius: 0px;
2342  -o-border-radius: 0px;
2343  -ms-border-radius: 0px;
2344  -khtml-border-radius: 0px;
2345  border-radius: 0px;
2346  background-color: transparent;
2347  background-position: 1100303px 1000303px; }
2348/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2349.x-nbr .x-btn-default-toolbar-medium-tl,
2350.x-nbr .x-btn-default-toolbar-medium-bl,
2351.x-nbr .x-btn-default-toolbar-medium-tr,
2352.x-nbr .x-btn-default-toolbar-medium-br,
2353.x-nbr .x-btn-default-toolbar-medium-tc,
2354.x-nbr .x-btn-default-toolbar-medium-bc,
2355.x-nbr .x-btn-default-toolbar-medium-ml,
2356.x-nbr .x-btn-default-toolbar-medium-mr {
2357  zoom: 1; }
2358/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2359.x-nbr .x-btn-default-toolbar-medium-ml,
2360.x-nbr .x-btn-default-toolbar-medium-mr {
2361  zoom: 1; }
2362/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2363.x-nbr .x-btn-default-toolbar-medium-mc {
2364  padding: 1px 1px 1px 1px; }
2365
2366/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2367.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl,
2368.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl {
2369  position: relative;
2370  right: 0; }
2371
2372/* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2373.x-btn-default-toolbar-medium .x-btn-inner {
2374  font-size: 11px;
2375  font-weight: normal;
2376  font-family: tahoma, arial, verdana, sans-serif;
2377  color: #333333;
2378  background-repeat: no-repeat;
2379  padding: 0 3px; }
2380
2381/* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2382.x-btn-default-toolbar-medium-icon button,
2383.x-btn-default-toolbar-medium-icon a,
2384.x-btn-default-toolbar-medium-icon .x-btn-inner,
2385.x-btn-default-toolbar-medium-noicon button,
2386.x-btn-default-toolbar-medium-noicon a,
2387.x-btn-default-toolbar-medium-noicon .x-btn-inner {
2388  height: 24px;
2389  line-height: 24px; }
2390
2391/* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2392.x-btn-default-toolbar-medium-icon button, .x-btn-default-toolbar-medium-icon a {
2393  padding: 0; }
2394/* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2395.x-btn-default-toolbar-medium-icon .x-btn-inner {
2396  /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
2397  width: 24px;
2398  padding: 0; }
2399/* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2400.x-btn-default-toolbar-medium-icon .x-btn-icon {
2401  width: 24px;
2402  height: 24px;
2403  top: 0;
2404  left: 0;
2405  bottom: 0;
2406  right: 0; }
2407
2408/* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2409.x-btn-default-toolbar-medium-icon-text-left button, .x-btn-default-toolbar-medium-icon-text-left a {
2410  height: 24px; }
2411/* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2412.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner {
2413  height: 24px;
2414  line-height: 24px;
2415  padding-left: 28px; }
2416/* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2417.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon {
2418  width: 24px;
2419  height: auto;
2420  top: 0;
2421  left: 0;
2422  bottom: 0;
2423  right: auto; }
2424  /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2425  .x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon {
2426    height: 24px; }
2427
2428/* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2429.x-btn-default-toolbar-medium-icon-text-right button, .x-btn-default-toolbar-medium-icon-text-right a {
2430  height: 24px; }
2431/* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2432.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner {
2433  height: 24px;
2434  line-height: 24px;
2435  padding-right: 28px !important; }
2436/* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2437.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon {
2438  width: 24px;
2439  height: auto;
2440  top: 0;
2441  left: auto;
2442  bottom: 0;
2443  right: 0; }
2444  /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2445  .x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon {
2446    height: 24px; }
2447
2448/* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2449.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner {
2450  padding-top: 28px; }
2451/* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2452.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon {
2453  width: auto;
2454  height: 24px;
2455  top: 0;
2456  left: 0;
2457  bottom: auto;
2458  right: 0; }
2459  /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2460  .x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon {
2461    width: 24px; }
2462
2463/* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2464.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner {
2465  padding-bottom: 28px; }
2466/* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2467.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon {
2468  width: auto;
2469  height: 24px;
2470  top: auto;
2471  left: 0;
2472  bottom: 0;
2473  right: 0; }
2474  /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2475  .x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon {
2476    width: 24px; }
2477
2478/* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2479.x-btn-default-toolbar-medium-over {
2480  border-color: #81a4d0;
2481  background-image: none;
2482  background-color: #dbeeff;
2483  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));
2484  background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2485  background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2486  background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2487  background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2488  background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
2489
2490/* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2491.x-btn-default-toolbar-medium-focus {
2492  border-color: #81a4d0;
2493  background-image: none;
2494  background-color: #dbeeff;
2495  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));
2496  background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2497  background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2498  background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2499  background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2500  background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
2501
2502/* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2503.x-btn-default-toolbar-medium-menu-active,
2504.x-btn-default-toolbar-medium-pressed {
2505  border-color: #7a9ac4;
2506  background-image: none;
2507  background-color: #bccfe5;
2508  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));
2509  background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2510  background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2511  background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2512  background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2513  background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
2514
2515/* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2516.x-btn-default-toolbar-medium-disabled {
2517  background-image: none;
2518  background-color: transparent; }
2519  /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2520  .x-btn-default-toolbar-medium-disabled .x-btn-inner {
2521    color: #333333 !important; }
2522
2523/* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2524.x-ie .x-btn-default-toolbar-medium-disabled .x-btn-inner {
2525  color: #595959 !important; }
2526
2527/* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2528.x-ie6 .x-btn-default-toolbar-medium-disabled .x-btn-inner {
2529  color: #8c8c8c !important; }
2530
2531/* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2532.x-nbr .x-btn-default-toolbar-medium-over .x-frame-tl,
2533.x-nbr .x-btn-default-toolbar-medium-over .x-frame-bl,
2534.x-nbr .x-btn-default-toolbar-medium-over .x-frame-tr,
2535.x-nbr .x-btn-default-toolbar-medium-over .x-frame-br,
2536.x-nbr .x-btn-default-toolbar-medium-over .x-frame-tc,
2537.x-nbr .x-btn-default-toolbar-medium-over .x-frame-bc {
2538  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-corners.gif'); }
2539/* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2540.x-nbr .x-btn-default-toolbar-medium-over .x-frame-ml,
2541.x-nbr .x-btn-default-toolbar-medium-over .x-frame-mr {
2542  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-sides.gif'); }
2543/* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2544.x-nbr .x-btn-default-toolbar-medium-over .x-frame-mc {
2545  background-color: #dbeeff;
2546  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-bg.gif'); }
2547/* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2548.x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tl,
2549.x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bl,
2550.x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tr,
2551.x-nbr .x-btn-default-toolbar-medium-focus .x-frame-br,
2552.x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tc,
2553.x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bc {
2554  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-corners.gif'); }
2555/* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2556.x-nbr .x-btn-default-toolbar-medium-focus .x-frame-ml,
2557.x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mr {
2558  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-sides.gif'); }
2559/* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2560.x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mc {
2561  background-color: #dbeeff;
2562  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-bg.gif'); }
2563/* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2564.x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tl,
2565.x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bl,
2566.x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tr,
2567.x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-br,
2568.x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tc,
2569.x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bc,
2570.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tl,
2571.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bl,
2572.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tr,
2573.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-br,
2574.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tc,
2575.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bc {
2576  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-corners.gif'); }
2577/* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2578.x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-ml,
2579.x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mr,
2580.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-ml,
2581.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mr {
2582  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-sides.gif'); }
2583/* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2584.x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mc,
2585.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mc {
2586  background-color: #bccfe5;
2587  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
2588/* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2589.x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tl,
2590.x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bl,
2591.x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tr,
2592.x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-br,
2593.x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tc,
2594.x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bc {
2595  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-disabled-corners.gif'); }
2596/* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2597.x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-ml,
2598.x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mr {
2599  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-disabled-sides.gif'); }
2600/* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2601.x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mc {
2602  background-color: transparent; }
2603
2604/* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2605.x-nlg .x-btn-default-toolbar-medium-over {
2606  background-repeat: repeat-x;
2607  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-bg.gif'); }
2608
2609/* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2610.x-nlg .x-btn-default-toolbar-medium-focus {
2611  background-repeat: repeat-x;
2612  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-bg.gif'); }
2613
2614/* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2615.x-nlg .x-btn-default-toolbar-medium-menu-active,
2616.x-nlg .x-btn-default-toolbar-medium-pressed {
2617  background-repeat: repeat-x;
2618  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
2619
2620/* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2621.x-btn-default-toolbar-large {
2622  border-color: transparent; }
2623
2624/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2625.x-btn-default-toolbar-large {
2626  -moz-border-radius: 3px;
2627  -webkit-border-radius: 3px;
2628  -o-border-radius: 3px;
2629  -ms-border-radius: 3px;
2630  -khtml-border-radius: 3px;
2631  border-radius: 3px;
2632  padding: 3px 3px 3px 3px;
2633  border-width: 1px;
2634  border-style: solid;
2635  background-color: transparent; }
2636
2637/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2638.x-nlg .x-btn-default-toolbar-large-mc {
2639  background-color: transparent; }
2640
2641/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2642.x-nbr .x-btn-default-toolbar-large {
2643  padding: 0 !important;
2644  border-width: 0 !important;
2645  -moz-border-radius: 0px;
2646  -webkit-border-radius: 0px;
2647  -o-border-radius: 0px;
2648  -ms-border-radius: 0px;
2649  -khtml-border-radius: 0px;
2650  border-radius: 0px;
2651  background-color: transparent;
2652  background-position: 1100303px 1000303px; }
2653/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2654.x-nbr .x-btn-default-toolbar-large-tl,
2655.x-nbr .x-btn-default-toolbar-large-bl,
2656.x-nbr .x-btn-default-toolbar-large-tr,
2657.x-nbr .x-btn-default-toolbar-large-br,
2658.x-nbr .x-btn-default-toolbar-large-tc,
2659.x-nbr .x-btn-default-toolbar-large-bc,
2660.x-nbr .x-btn-default-toolbar-large-ml,
2661.x-nbr .x-btn-default-toolbar-large-mr {
2662  zoom: 1; }
2663/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2664.x-nbr .x-btn-default-toolbar-large-ml,
2665.x-nbr .x-btn-default-toolbar-large-mr {
2666  zoom: 1; }
2667/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2668.x-nbr .x-btn-default-toolbar-large-mc {
2669  padding: 1px 1px 1px 1px; }
2670
2671/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2672.x-strict .x-ie7 .x-btn-default-toolbar-large-tl,
2673.x-strict .x-ie7 .x-btn-default-toolbar-large-bl {
2674  position: relative;
2675  right: 0; }
2676
2677/* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2678.x-btn-default-toolbar-large .x-btn-inner {
2679  font-size: 11px;
2680  font-weight: normal;
2681  font-family: tahoma, arial, verdana, sans-serif;
2682  color: #333333;
2683  background-repeat: no-repeat;
2684  padding: 0 3px; }
2685
2686/* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2687.x-btn-default-toolbar-large-icon button,
2688.x-btn-default-toolbar-large-icon a,
2689.x-btn-default-toolbar-large-icon .x-btn-inner,
2690.x-btn-default-toolbar-large-noicon button,
2691.x-btn-default-toolbar-large-noicon a,
2692.x-btn-default-toolbar-large-noicon .x-btn-inner {
2693  height: 32px;
2694  line-height: 32px; }
2695
2696/* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2697.x-btn-default-toolbar-large-icon button, .x-btn-default-toolbar-large-icon a {
2698  padding: 0; }
2699/* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2700.x-btn-default-toolbar-large-icon .x-btn-inner {
2701  /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
2702  width: 32px;
2703  padding: 0; }
2704/* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2705.x-btn-default-toolbar-large-icon .x-btn-icon {
2706  width: 32px;
2707  height: 32px;
2708  top: 0;
2709  left: 0;
2710  bottom: 0;
2711  right: 0; }
2712
2713/* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2714.x-btn-default-toolbar-large-icon-text-left button, .x-btn-default-toolbar-large-icon-text-left a {
2715  height: 32px; }
2716/* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2717.x-btn-default-toolbar-large-icon-text-left .x-btn-inner {
2718  height: 32px;
2719  line-height: 32px;
2720  padding-left: 36px; }
2721/* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2722.x-btn-default-toolbar-large-icon-text-left .x-btn-icon {
2723  width: 32px;
2724  height: auto;
2725  top: 0;
2726  left: 0;
2727  bottom: 0;
2728  right: auto; }
2729  /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2730  .x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon {
2731    height: 32px; }
2732
2733/* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2734.x-btn-default-toolbar-large-icon-text-right button, .x-btn-default-toolbar-large-icon-text-right a {
2735  height: 32px; }
2736/* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2737.x-btn-default-toolbar-large-icon-text-right .x-btn-inner {
2738  height: 32px;
2739  line-height: 32px;
2740  padding-right: 36px !important; }
2741/* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2742.x-btn-default-toolbar-large-icon-text-right .x-btn-icon {
2743  width: 32px;
2744  height: auto;
2745  top: 0;
2746  left: auto;
2747  bottom: 0;
2748  right: 0; }
2749  /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2750  .x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon {
2751    height: 32px; }
2752
2753/* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2754.x-btn-default-toolbar-large-icon-text-top .x-btn-inner {
2755  padding-top: 36px; }
2756/* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2757.x-btn-default-toolbar-large-icon-text-top .x-btn-icon {
2758  width: auto;
2759  height: 32px;
2760  top: 0;
2761  left: 0;
2762  bottom: auto;
2763  right: 0; }
2764  /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2765  .x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon {
2766    width: 32px; }
2767
2768/* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2769.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner {
2770  padding-bottom: 36px; }
2771/* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2772.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon {
2773  width: auto;
2774  height: 32px;
2775  top: auto;
2776  left: 0;
2777  bottom: 0;
2778  right: 0; }
2779  /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2780  .x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon {
2781    width: 32px; }
2782
2783/* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2784.x-btn-default-toolbar-large-over {
2785  border-color: #81a4d0;
2786  background-image: none;
2787  background-color: #dbeeff;
2788  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));
2789  background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2790  background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2791  background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2792  background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2793  background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
2794
2795/* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2796.x-btn-default-toolbar-large-focus {
2797  border-color: #81a4d0;
2798  background-image: none;
2799  background-color: #dbeeff;
2800  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));
2801  background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2802  background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2803  background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2804  background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
2805  background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
2806
2807/* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2808.x-btn-default-toolbar-large-menu-active,
2809.x-btn-default-toolbar-large-pressed {
2810  border-color: #7a9ac4;
2811  background-image: none;
2812  background-color: #bccfe5;
2813  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));
2814  background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2815  background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2816  background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2817  background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
2818  background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
2819
2820/* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2821.x-btn-default-toolbar-large-disabled {
2822  background-image: none;
2823  background-color: transparent; }
2824  /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2825  .x-btn-default-toolbar-large-disabled .x-btn-inner {
2826    color: #333333 !important; }
2827
2828/* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2829.x-ie .x-btn-default-toolbar-large-disabled .x-btn-inner {
2830  color: #595959 !important; }
2831
2832/* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2833.x-ie6 .x-btn-default-toolbar-large-disabled .x-btn-inner {
2834  color: #8c8c8c !important; }
2835
2836/* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2837.x-nbr .x-btn-default-toolbar-large-over .x-frame-tl,
2838.x-nbr .x-btn-default-toolbar-large-over .x-frame-bl,
2839.x-nbr .x-btn-default-toolbar-large-over .x-frame-tr,
2840.x-nbr .x-btn-default-toolbar-large-over .x-frame-br,
2841.x-nbr .x-btn-default-toolbar-large-over .x-frame-tc,
2842.x-nbr .x-btn-default-toolbar-large-over .x-frame-bc {
2843  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-corners.gif'); }
2844/* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2845.x-nbr .x-btn-default-toolbar-large-over .x-frame-ml,
2846.x-nbr .x-btn-default-toolbar-large-over .x-frame-mr {
2847  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-sides.gif'); }
2848/* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2849.x-nbr .x-btn-default-toolbar-large-over .x-frame-mc {
2850  background-color: #dbeeff;
2851  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-bg.gif'); }
2852/* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2853.x-nbr .x-btn-default-toolbar-large-focus .x-frame-tl,
2854.x-nbr .x-btn-default-toolbar-large-focus .x-frame-bl,
2855.x-nbr .x-btn-default-toolbar-large-focus .x-frame-tr,
2856.x-nbr .x-btn-default-toolbar-large-focus .x-frame-br,
2857.x-nbr .x-btn-default-toolbar-large-focus .x-frame-tc,
2858.x-nbr .x-btn-default-toolbar-large-focus .x-frame-bc {
2859  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-corners.gif'); }
2860/* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2861.x-nbr .x-btn-default-toolbar-large-focus .x-frame-ml,
2862.x-nbr .x-btn-default-toolbar-large-focus .x-frame-mr {
2863  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-sides.gif'); }
2864/* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2865.x-nbr .x-btn-default-toolbar-large-focus .x-frame-mc {
2866  background-color: #dbeeff;
2867  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-bg.gif'); }
2868/* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2869.x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tl,
2870.x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bl,
2871.x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tr,
2872.x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-br,
2873.x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tc,
2874.x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bc,
2875.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tl,
2876.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bl,
2877.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tr,
2878.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-br,
2879.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tc,
2880.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bc {
2881  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-corners.gif'); }
2882/* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2883.x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-ml,
2884.x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mr,
2885.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-ml,
2886.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mr {
2887  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-sides.gif'); }
2888/* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2889.x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mc,
2890.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mc {
2891  background-color: #bccfe5;
2892  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-bg.gif'); }
2893/* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2894.x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tl,
2895.x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bl,
2896.x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tr,
2897.x-nbr .x-btn-default-toolbar-large-disabled .x-frame-br,
2898.x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tc,
2899.x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bc {
2900  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-disabled-corners.gif'); }
2901/* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2902.x-nbr .x-btn-default-toolbar-large-disabled .x-frame-ml,
2903.x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mr {
2904  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-disabled-sides.gif'); }
2905/* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2906.x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mc {
2907  background-color: transparent; }
2908
2909/* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2910.x-nlg .x-btn-default-toolbar-large-over {
2911  background-repeat: repeat-x;
2912  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-bg.gif'); }
2913
2914/* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2915.x-nlg .x-btn-default-toolbar-large-focus {
2916  background-repeat: repeat-x;
2917  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-bg.gif'); }
2918
2919/* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2920.x-nlg .x-btn-default-toolbar-large-menu-active,
2921.x-nlg .x-btn-default-toolbar-large-pressed {
2922  background-repeat: repeat-x;
2923  background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-bg.gif'); }
2924
2925/* line 571, ../themes/stylesheets/ext4/default/widgets/_button.scss */
2926.x-btn-default-toolbar-small-disabled,
2927.x-btn-default-toolbar-medium-disabled,
2928.x-btn-default-toolbar-large-disabled {
2929  border-color: transparent;
2930  background-image: none;
2931  background: transparent; }
2932
2933/* line 6, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
2934.x-btn-group {
2935  position: relative;
2936  overflow: hidden; }
2937
2938/* line 11, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
2939.x-btn-group-body {
2940  position: relative;
2941  zoom: 1;
2942  padding: 0 1px; }
2943  /* line 15, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
2944  .x-btn-group-body .x-table-layout-cell {
2945    vertical-align: top; }
2946
2947/* line 20, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
2948.x-btn-group-header-text {
2949  white-space: nowrap; }
2950
2951/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2952.x-btn-group-default-framed {
2953  -moz-border-radius: 2px;
2954  -webkit-border-radius: 2px;
2955  -o-border-radius: 2px;
2956  -ms-border-radius: 2px;
2957  -khtml-border-radius: 2px;
2958  border-radius: 2px;
2959  padding: 1px 1px 1px 1px;
2960  border-width: 1px;
2961  border-style: solid;
2962  background-color: #d0def0; }
2963
2964/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2965.x-nlg .x-btn-group-default-framed-mc {
2966  background-color: #d0def0; }
2967
2968/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2969.x-nbr .x-btn-group-default-framed {
2970  padding: 0 !important;
2971  border-width: 0 !important;
2972  -moz-border-radius: 0px;
2973  -webkit-border-radius: 0px;
2974  -o-border-radius: 0px;
2975  -ms-border-radius: 0px;
2976  -khtml-border-radius: 0px;
2977  border-radius: 0px;
2978  background-color: transparent;
2979  background-position: 1000202px 1000202px; }
2980/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2981.x-nbr .x-btn-group-default-framed-tl,
2982.x-nbr .x-btn-group-default-framed-bl,
2983.x-nbr .x-btn-group-default-framed-tr,
2984.x-nbr .x-btn-group-default-framed-br,
2985.x-nbr .x-btn-group-default-framed-tc,
2986.x-nbr .x-btn-group-default-framed-bc,
2987.x-nbr .x-btn-group-default-framed-ml,
2988.x-nbr .x-btn-group-default-framed-mr {
2989  zoom: 1;
2990  background-image: url('../../resources/themes/images/default/btn-group/btn-group-default-framed-corners.gif'); }
2991/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2992.x-nbr .x-btn-group-default-framed-ml,
2993.x-nbr .x-btn-group-default-framed-mr {
2994  zoom: 1;
2995  background-image: url('../../resources/themes/images/default/btn-group/btn-group-default-framed-sides.gif');
2996  background-position: 0 0;
2997  background-repeat: repeat-y; }
2998/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
2999.x-nbr .x-btn-group-default-framed-mc {
3000  padding: 0px 0px 0px 0px; }
3001
3002/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
3003.x-strict .x-ie7 .x-btn-group-default-framed-tl,
3004.x-strict .x-ie7 .x-btn-group-default-framed-bl {
3005  position: relative;
3006  right: 0; }
3007
3008/* line 60, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
3009.x-btn-group-default-framed {
3010  border-color: #b7c8d7;
3011  -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;
3012  -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;
3013  -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;
3014  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; }
3015
3016/* line 68, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
3017.x-btn-group-header-default-framed {
3018  margin: 2px 2px 0 2px; }
3019
3020/* line 72, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
3021.x-btn-group-header-body-default-framed {
3022  padding: 1px 0;
3023  background: #c2d8f0;
3024  -moz-border-radius-topleft: 2px;
3025  -webkit-border-top-left-radius: 2px;
3026  -o-border-top-left-radius: 2px;
3027  -ms-border-top-left-radius: 2px;
3028  -khtml-border-top-left-radius: 2px;
3029  border-top-left-radius: 2px;
3030  -moz-border-radius-topright: 2px;
3031  -webkit-border-top-right-radius: 2px;
3032  -o-border-top-right-radius: 2px;
3033  -ms-border-top-right-radius: 2px;
3034  -khtml-border-top-right-radius: 2px;
3035  border-top-right-radius: 2px; }
3036
3037/* line 80, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
3038.x-btn-group-header-text-default-framed {
3039  font: normal 11px tahoma, arial, verdana, sans-serif;
3040  color: #3e6aaa; }
3041
3042/* line 6, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3043.x-datepicker {
3044  border: 1px solid #1b376c;
3045  background-color: white;
3046  position: relative; }
3047  /* line 12, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3048  .x-datepicker a {
3049    -moz-outline: 0 none;
3050    outline: 0 none;
3051    color: #15428b;
3052    text-decoration: none;
3053    border-width: 0; }
3054
3055/* line 25, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3056.x-datepicker-inner,
3057.x-datepicker-inner td,
3058.x-datepicker-inner th {
3059  border-collapse: separate; }
3060
3061/* line 29, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3062.x-datepicker-header {
3063  position: relative;
3064  height: 26px;
3065  background-image: none;
3066  background-color: #23427c;
3067  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #264888), color-stop(100%, #1f3a6c));
3068  background-image: -webkit-linear-gradient(top, #264888, #1f3a6c);
3069  background-image: -moz-linear-gradient(top, #264888, #1f3a6c);
3070  background-image: -o-linear-gradient(top, #264888, #1f3a6c);
3071  background-image: -ms-linear-gradient(top, #264888, #1f3a6c);
3072  background-image: linear-gradient(top, #264888, #1f3a6c); }
3073
3074/* line 42, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3075.x-datepicker-prev,
3076.x-datepicker-next {
3077  position: absolute;
3078  top: 5px;
3079  width: 18px; }
3080  /* line 48, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3081  .x-datepicker-prev a,
3082  .x-datepicker-next a {
3083    display: block;
3084    width: 16px;
3085    height: 16px;
3086    background-position: top;
3087    background-repeat: no-repeat;
3088    cursor: pointer;
3089    text-decoration: none !important;
3090    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
3091    opacity: 0.7; }
3092    /* line 63, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3093    .x-datepicker-prev a:hover,
3094    .x-datepicker-next a:hover {
3095      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
3096      opacity: 1; }
3097
3098/* line 69, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3099.x-datepicker-next {
3100  right: 5px; }
3101  /* line 72, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3102  .x-datepicker-next a {
3103    background-image: url('../../resources/themes/images/default/shared/right-btn.gif'); }
3104
3105/* line 77, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3106.x-datepicker-prev {
3107  left: 5px; }
3108  /* line 80, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3109  .x-datepicker-prev a {
3110    background-image: url('../../resources/themes/images/default/shared/left-btn.gif'); }
3111
3112/* line 86, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3113.x-item-disabled .x-datepicker-prev a:hover,
3114.x-item-disabled .x-datepicker-next a:hover {
3115  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
3116  opacity: 0.6; }
3117
3118/* line 90, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3119.x-datepicker-month {
3120  padding-top: 3px; }
3121  /* line 103, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3122  .x-datepicker-month .x-btn,
3123  .x-datepicker-month button,
3124  .x-datepicker-month .x-btn-tc,
3125  .x-datepicker-month .x-btn-tl,
3126  .x-datepicker-month .x-btn-tr,
3127  .x-datepicker-month .x-btn-mc,
3128  .x-datepicker-month .x-btn-ml,
3129  .x-datepicker-month .x-btn-mr,
3130  .x-datepicker-month .x-btn-bc,
3131  .x-datepicker-month .x-btn-bl,
3132  .x-datepicker-month .x-btn-br {
3133    background: transparent !important;
3134    border-width: 0 !important; }
3135  /* line 108, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3136  .x-datepicker-month span {
3137    color: #fff !important; }
3138  /* line 112, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3139  .x-datepicker-month .x-btn-split-right {
3140    background-image: url('../../resources/themes/images/default/button/s-arrow-light.gif');
3141    padding-right: 12px; }
3142
3143/* line 118, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3144.x-datepicker-next {
3145  text-align: right; }
3146
3147/* line 122, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3148.x-datepicker-month {
3149  text-align: center; }
3150  /* line 126, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3151  .x-datepicker-month button {
3152    color: white !important; }
3153
3154/* line 132, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3155table.x-datepicker-inner {
3156  width: 100%;
3157  table-layout: fixed; }
3158  /* line 136, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3159  table.x-datepicker-inner th {
3160    width: 25px;
3161    height: 19px;
3162    padding: 0;
3163    color: #233d6d;
3164    font: normal 10px tahoma, arial, verdana, sans-serif;
3165    text-align: right;
3166    border-bottom: 1px solid #b2d1f5;
3167    border-collapse: separate;
3168    background-image: none;
3169    background-color: #dfecfb;
3170    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #edf4fd), color-stop(100%, #cde1f9));
3171    background-image: -webkit-linear-gradient(top, #edf4fd, #cde1f9);
3172    background-image: -moz-linear-gradient(top, #edf4fd, #cde1f9);
3173    background-image: -o-linear-gradient(top, #edf4fd, #cde1f9);
3174    background-image: -ms-linear-gradient(top, #edf4fd, #cde1f9);
3175    background-image: linear-gradient(top, #edf4fd, #cde1f9);
3176    cursor: default; }
3177    /* line 157, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3178    table.x-datepicker-inner th span {
3179      display: block;
3180      padding-right: 7px; }
3181  /* line 163, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3182  table.x-datepicker-inner tr {
3183    height: 20px; }
3184  /* line 167, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3185  table.x-datepicker-inner td {
3186    border: 1px solid;
3187    height: 17px;
3188    border-color: white;
3189    text-align: right;
3190    padding: 0; }
3191  /* line 175, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3192  table.x-datepicker-inner a {
3193    padding-right: 4px;
3194    display: block;
3195    zoom: 1;
3196    font: normal 11px tahoma, arial, verdana, sans-serif;
3197    color: black;
3198    text-decoration: none;
3199    text-align: right; }
3200  /* line 188, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3201  table.x-datepicker-inner .x-datepicker-active {
3202    cursor: pointer;
3203    color: black; }
3204  /* line 194, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3205  table.x-datepicker-inner .x-datepicker-selected a {
3206    background: repeat-x left top;
3207    background-color: #dae5f3;
3208    border: 1px solid #8db2e3; }
3209  /* line 200, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3210  table.x-datepicker-inner .x-datepicker-selected span {
3211    font-weight: bold; }
3212  /* line 206, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3213  table.x-datepicker-inner .x-datepicker-today a {
3214    border: 1px solid;
3215    border-color: darkred; }
3216  /* line 214, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3217  table.x-datepicker-inner .x-datepicker-prevday a,
3218  table.x-datepicker-inner .x-datepicker-nextday a {
3219    text-decoration: none !important;
3220    color: #aaa; }
3221  /* line 221, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3222  table.x-datepicker-inner a:hover,
3223  table.x-datepicker-inner .x-datepicker-disabled a:hover {
3224    text-decoration: none !important;
3225    color: #000;
3226    background-color: #ddecfe; }
3227  /* line 229, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3228  table.x-datepicker-inner .x-datepicker-disabled a {
3229    cursor: default;
3230    background-color: #eee;
3231    color: #bbb; }
3232
3233/* line 237, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3234.x-datepicker-footer,
3235.x-monthpicker-buttons {
3236  position: relative;
3237  border-top: 1px solid #b2d1f5;
3238  background-image: none;
3239  background-color: #dfecfb;
3240  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));
3241  background-image: -webkit-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
3242  background-image: -moz-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
3243  background-image: -o-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
3244  background-image: -ms-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
3245  background-image: linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
3246  text-align: center; }
3247  /* line 250, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3248  .x-datepicker-footer .x-btn,
3249  .x-monthpicker-buttons .x-btn {
3250    position: relative;
3251    margin: 4px; }
3252
3253/* line 256, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3254.x-item-disabled .x-datepicker-inner a:hover {
3255  background: none; }
3256
3257/* line 261, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3258.x-datepicker .x-monthpicker {
3259  position: absolute;
3260  left: 0;
3261  top: 0; }
3262
3263/* line 268, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3264.x-monthpicker {
3265  border: 1px solid #1b376c;
3266  background-color: white; }
3267
3268/* line 274, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3269.x-monthpicker-months,
3270.x-monthpicker-years {
3271  float: left;
3272  height: 167px;
3273  width: 88px; }
3274
3275/* line 281, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3276.x-monthpicker-item {
3277  float: left;
3278  margin: 4px 0 5px 0;
3279  font: normal 11px tahoma, arial, verdana, sans-serif;
3280  text-align: center;
3281  vertical-align: middle;
3282  height: 18px;
3283  width: 43px;
3284  border: 0 none; }
3285  /* line 295, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3286  .x-monthpicker-item a {
3287    display: block;
3288    margin: 0 5px;
3289    text-decoration: none;
3290    color: #15428b;
3291    border: 1px solid white;
3292    line-height: 17px; }
3293    /* line 308, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3294    .x-monthpicker-item a:hover {
3295      background-color: #ddecfe; }
3296    /* line 312, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3297    .x-monthpicker-item a.x-monthpicker-selected {
3298      background-color: #dfecfb;
3299      border: 1px solid #8db2e3; }
3300
3301/* line 319, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3302.x-monthpicker-months {
3303  border-right: 1px solid #1b376c;
3304  width: 87px; }
3305
3306/* line 324, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3307.x-monthpicker-years .x-monthpicker-item {
3308  width: 44px; }
3309
3310/* line 328, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3311.x-monthpicker-yearnav {
3312  height: 28px; }
3313  /* line 331, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3314  .x-monthpicker-yearnav button {
3315    background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
3316    height: 15px;
3317    width: 15px;
3318    padding: 0;
3319    margin: 6px 12px 5px 15px;
3320    border: 0;
3321    outline: 0 none; }
3322    /* line 339, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3323    .x-monthpicker-yearnav button::-moz-focus-inner {
3324      border: 0;
3325      padding: 0; }
3326
3327/* line 346, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3328.x-monthpicker-yearnav-next {
3329  background-position: 0 -120px; }
3330
3331/* line 350, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3332.x-monthpicker-yearnav-next-over {
3333  cursor: pointer;
3334  cursor: hand;
3335  background-position: -15px -120px; }
3336
3337/* line 356, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3338.x-monthpicker-yearnav-prev {
3339  background-position: 0 -105px; }
3340
3341/* line 360, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3342.x-monthpicker-yearnav-prev-over {
3343  cursor: pointer;
3344  cursor: hand;
3345  background-position: -15px -105px; }
3346
3347/* line 367, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3348.x-monthpicker-small .x-monthpicker-item {
3349  margin: 2px 0 2px 0; }
3350/* line 371, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3351.x-monthpicker-small .x-monthpicker-yearnav {
3352  height: 23px; }
3353/* line 375, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3354.x-monthpicker-small .x-monthpicker-months, .x-monthpicker-small .x-monthpicker-years {
3355  height: 136px; }
3356
3357/* line 385, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3358.x-quirks .x-ie7 .x-monthpicker-buttons .x-btn,
3359.x-quirks .x-ie8 .x-monthpicker-buttons .x-btn {
3360  margin-top: 2px; }
3361/* line 391, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3362.x-quirks .x-monthpicker-small .x-monthpicker-yearnav button {
3363  margin-top: 3px;
3364  margin-bottom: 3px; }
3365
3366/* line 397, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3367.x-ie6 .x-monthpicker-small .x-monthpicker-yearnav button {
3368  margin-top: 3px;
3369  margin-bottom: 3px; }
3370
3371/* line 407, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3372.x-nlg .x-datepicker-header {
3373  background-image: url('../../resources/themes/images/default/datepicker/datepicker-header-bg.gif');
3374  background-repeat: repeat-x;
3375  background-position: top left; }
3376/* line 416, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
3377.x-nlg .x-datepicker-footer,
3378.x-nlg .x-monthpicker-buttons {
3379  background-image: url('../../resources/themes/images/default/datepicker/datepicker-footer-bg.gif');
3380  background-repeat: repeat-x;
3381  background-position: top left; }
3382
3383/* line 6, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
3384.x-color-picker {
3385  width: 144px;
3386  height: 90px;
3387  cursor: pointer; }
3388
3389/* line 12, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
3390.x-color-picker a {
3391  border: 1px solid #fff;
3392  float: left;
3393  padding: 2px;
3394  text-decoration: none;
3395  -moz-outline: 0 none;
3396  outline: 0 none;
3397  cursor: pointer; }
3398
3399/* line 28, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
3400.x-color-picker a:hover,
3401.x-color-picker a.x-color-picker-selected {
3402  border-color: #8bb8f3;
3403  background-color: #deecfd; }
3404
3405/* line 33, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
3406.x-color-picker em {
3407  display: block;
3408  border: 1px solid #aca899; }
3409
3410/* line 39, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
3411.x-color-picker em span {
3412  cursor: pointer;
3413  display: block;
3414  height: 10px;
3415  width: 10px;
3416  line-height: 10px; }
3417
3418/* line 6, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3419.x-menu-body {
3420  user-select: none;
3421  -o-user-select: none;
3422  -ms-user-select: none;
3423  -moz-user-select: -moz-none;
3424  -webkit-user-select: none;
3425  cursor: default;
3426  background: #f0f0f0 !important;
3427  padding: 2px; }
3428
3429/* line 12, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3430.x-menu-item .x-form-text {
3431  user-select: text;
3432  -webkit-user-select: text;
3433  -o-user-select: text;
3434  -ie-user-select: text;
3435  -moz-user-select: text;
3436  -ie-user-select: text; }
3437
3438/* line 21, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3439.x-menu-icon-separator {
3440  position: absolute;
3441  top: 0px;
3442  left: 27px;
3443  z-index: 0;
3444  border-left: solid 1px #e0e0e0;
3445  background-color: white;
3446  width: 2px;
3447  overflow: hidden; }
3448
3449/* line 33, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3450.x-menu-plain .x-menu-icon-separator {
3451  display: none; }
3452
3453/* line 38, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3454.x-menu-focus {
3455  display: block;
3456  position: absolute;
3457  top: -10px;
3458  left: -10px;
3459  width: 0px;
3460  height: 0px; }
3461
3462/* line 47, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3463.x-menu-item {
3464  white-space: nowrap;
3465  overflow: hidden;
3466  z-index: 1; }
3467
3468/* line 53, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3469.x-menu-item-cmp {
3470  margin-bottom: 1px; }
3471
3472/* line 57, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3473.x-menu-item-link {
3474  display: block;
3475  margin: 1px;
3476  padding: 6px 2px 3px 32px;
3477  text-decoration: none !important;
3478  line-height: 16px;
3479  cursor: default; }
3480
3481/* line 70, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3482.x-opera .x-menu-item-link {
3483  position: relative; }
3484
3485/* line 76, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3486.x-menu-item-icon {
3487  width: 16px;
3488  height: 16px;
3489  position: absolute;
3490  top: 5px;
3491  left: 4px;
3492  background: no-repeat center center; }
3493
3494/* line 87, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3495.x-menu-item-icon-right {
3496  width: 16px;
3497  height: 16px;
3498  position: absolute;
3499  top: 6px;
3500  right: 4px;
3501  background: no-repeat center center; }
3502
3503/* line 96, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3504.x-menu-item-text {
3505  font-size: 11px;
3506  color: #222222; }
3507
3508/* line 102, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3509.x-menu-item-checked .x-menu-item-icon {
3510  background-image: url('../../resources/themes/images/default/menu/checked.gif'); }
3511/* line 105, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3512.x-menu-item-checked .x-menu-group-icon {
3513  background-image: url('../../resources/themes/images/default/menu/group-checked.gif'); }
3514
3515/* line 111, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3516.x-menu-item-unchecked .x-menu-item-icon {
3517  background-image: url('../../resources/themes/images/default/menu/unchecked.gif'); }
3518/* line 114, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3519.x-menu-item-unchecked .x-menu-group-icon {
3520  background-image: none; }
3521
3522/* line 119, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3523.x-menu-item-separator {
3524  height: 2px;
3525  border-top: solid 1px #e0e0e0;
3526  background-color: white;
3527  margin: 2px 0px;
3528  overflow: hidden; }
3529
3530/* line 127, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3531.x-menu-item-arrow {
3532  position: absolute;
3533  width: 12px;
3534  height: 9px;
3535  top: 9px;
3536  right: 0px;
3537  background: no-repeat center center;
3538  background-image: url('../../resources/themes/images/default/menu/menu-parent.gif'); }
3539
3540/* line 137, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3541.x-menu-item-indent {
3542  margin-left: 31px;
3543  /* The 2px is the width of the seperator */ }
3544
3545/* line 141, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3546.x-menu-item-active {
3547  cursor: pointer; }
3548  /* line 144, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3549  .x-menu-item-active .x-menu-item-link {
3550    background-image: none;
3551    background-color: #d9e8fb;
3552    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7f0fc), color-stop(100%, #c7ddf9));
3553    background-image: -webkit-linear-gradient(top, #e7f0fc, #c7ddf9);
3554    background-image: -moz-linear-gradient(top, #e7f0fc, #c7ddf9);
3555    background-image: -o-linear-gradient(top, #e7f0fc, #c7ddf9);
3556    background-image: -ms-linear-gradient(top, #e7f0fc, #c7ddf9);
3557    background-image: linear-gradient(top, #e7f0fc, #c7ddf9);
3558    margin: 0px;
3559    border: 1px solid #a9cbf5;
3560    cursor: pointer;
3561    -moz-border-radius: 3px;
3562    -webkit-border-radius: 3px;
3563    -o-border-radius: 3px;
3564    -ms-border-radius: 3px;
3565    -khtml-border-radius: 3px;
3566    border-radius: 3px; }
3567
3568/* line 153, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3569.x-menu-item-disabled {
3570  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
3571  opacity: 0.5; }
3572
3573/* line 160, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3574.x-ie .x-menu-item-disabled .x-menu-item-icon {
3575  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
3576  opacity: 0.5; }
3577/* line 164, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3578.x-ie .x-menu-item-disabled .x-menu-item-text {
3579  background-color: transparent; }
3580/* line 171, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3581.x-strict .x-ie7m .x-ie .x-menu-icon-separator {
3582  width: 1px; }
3583/* line 175, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3584.x-strict .x-ie7m .x-ie .x-menu-item-separator {
3585  height: 1px; }
3586
3587/* line 184, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3588.x-ie6 .x-menu-item-link,
3589.x-ie7 .x-menu-item-link,
3590.x-quirks .x-ie8 .x-menu-item-link {
3591  padding-bottom: 2px; }
3592
3593/* line 192, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3594.x-nlg .x-menu-item-active .x-menu-item-link {
3595  background: #d9e8fb repeat-x left top;
3596  background-image: url('../../resources/themes/images/default/menu/menu-item-active-bg.gif'); }
3597
3598/* line 199, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
3599.x-menu-date-item {
3600  border-color: #99BBE8; }
3601
3602/* line 8, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3603.x-panel .x-grid-body {
3604  background: white;
3605  border-color: #99bce8;
3606  border-style: solid;
3607  border-width: 1px;
3608  border-top-color: #c5c5c5; }
3609/* line 17, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3610.x-panel .x-grid-header-ct-hidden {
3611  visibility: hidden; }
3612
3613/* line 22, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3614.x-grid-empty {
3615  padding: 10px;
3616  color: gray;
3617  font: normal 11px tahoma, arial, helvetica, sans-serif; }
3618
3619/* line 28, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3620.x-grid-header-hidden .x-grid-body {
3621  border-top-color: #99bce8 !important; }
3622
3623/* line 32, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3624.x-grid-view {
3625  overflow: hidden;
3626  position: relative; }
3627
3628/* line 38, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3629.x-grid-table {
3630  table-layout: fixed;
3631  border-collapse: separate; }
3632
3633/* line 45, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3634.x-autowidth-table table.x-grid-table {
3635  table-layout: auto;
3636  width: auto!important; }
3637
3638/* line 50, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3639.x-grid-row .x-grid-table {
3640  border-collapse: collapse; }
3641
3642/* line 54, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3643.x-grid-locked .x-grid-inner-locked {
3644  border-width: 0 1px 0 0 !important;
3645  border-style: solid; }
3646
3647/* line 59, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3648.x-grid-header-ct {
3649  cursor: default;
3650  zoom: 1;
3651  padding: 0;
3652  border: 1px solid #99bce8;
3653  border-bottom-color: #c5c5c5;
3654  background-image: none;
3655  background-color: #c5c5c5;
3656  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6));
3657  background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6);
3658  background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6);
3659  background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6);
3660  background-image: -ms-linear-gradient(top, #f9f9f9, #e3e4e6);
3661  background-image: linear-gradient(top, #f9f9f9, #e3e4e6); }
3662
3663/* line 73, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3664.x-accordion-item .x-grid-header-ct {
3665  border-width: 0 0 1px 0!important; }
3666
3667/* line 77, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3668.x-column-header {
3669  padding: 0;
3670  position: absolute;
3671  overflow: hidden;
3672  border-right: 1px solid #c5c5c5;
3673  border-left: 0 none;
3674  border-top: 0 none;
3675  border-bottom: 0 none;
3676  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
3677  color: null;
3678  font: normal 11px tahoma, arial, verdana, sans-serif;
3679  background-image: none;
3680  background-color: #c5c5c5;
3681  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6));
3682  background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6);
3683  background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6);
3684  background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6);
3685  background-image: -ms-linear-gradient(top, #f9f9f9, #e3e4e6);
3686  background-image: linear-gradient(top, #f9f9f9, #e3e4e6); }
3687
3688/* line 99, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3689.x-group-header {
3690  padding: 0;
3691  border-left-width: 0; }
3692
3693/* line 103, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3694.x-group-sub-header {
3695  background: transparent;
3696  border-top: 1px solid #c5c5c5;
3697  border-left-width: 0; }
3698
3699/* line 109, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3700.x-column-header-inner {
3701  zoom: 1;
3702  position: relative;
3703  white-space: nowrap;
3704  line-height: 15px;
3705  padding: 3px 6px 4px; }
3706  /* line 116, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3707  .x-column-header-inner .x-column-header-text {
3708    white-space: nowrap; }
3709
3710/* line 123, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3711.x-column-header-over,
3712.x-column-header-sort-ASC,
3713.x-column-header-sort-DESC {
3714  border-left-color: #aaccf6;
3715  border-right-color: #aaccf6;
3716  background-image: none;
3717  background-color: #aaccf6;
3718  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ebf3fd), color-stop(39%, #ebf3fd), color-stop(40%, #d9e8fb), color-stop(100%, #d9e8fb));
3719  background-image: -webkit-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb);
3720  background-image: -moz-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb);
3721  background-image: -o-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb);
3722  background-image: -ms-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb);
3723  background-image: linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); }
3724
3725/* line 135, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3726.x-nlg .x-grid-header-ct,
3727.x-nlg .x-column-header {
3728  background: repeat-x 0 top;
3729  background-image: url('../../resources/themes/images/default/grid/column-header-bg.gif'); }
3730/* line 142, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3731.x-nlg .x-column-header-over,
3732.x-nlg .x-column-header-sort-ASC,
3733.x-nlg .x-column-header-sort-DESC {
3734  background: #ebf3fd repeat-x 0 top;
3735  background-image: url('../../resources/themes/images/default/grid/column-header-over-bg.gif'); }
3736
3737/* line 149, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3738.x-column-header-trigger {
3739  display: none;
3740  height: 100%;
3741  width: 14px;
3742  background: no-repeat left center;
3743  background-color: #c3daf9;
3744  background-image: url('../../resources/themes/images/default/grid/grid3-hd-btn.gif');
3745  position: absolute;
3746  right: 0;
3747  top: 0;
3748  z-index: 2;
3749  cursor: pointer; }
3750
3751/* line 164, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3752.x-column-header-over .x-column-header-trigger, .x-column-header-open .x-column-header-trigger {
3753  display: block; }
3754
3755/* line 169, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3756.x-column-header-align-right {
3757  text-align: right; }
3758  /* line 172, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3759  .x-column-header-align-right .x-column-header-text {
3760    padding-right: 0.5ex;
3761    margin-right: 6px; }
3762
3763/* line 177, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3764.x-column-header-align-center {
3765  text-align: center; }
3766
3767/* line 180, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3768.x-column-header-align-left {
3769  text-align: left; }
3770
3771/* line 185, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3772.x-column-header-sort-ASC .x-column-header-text {
3773  padding-right: 16px;
3774  background: no-repeat right 6px;
3775  background-image: url('../../resources/themes/images/default/grid/sort_asc.gif'); }
3776
3777/* line 190, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3778.x-column-header-sort-DESC .x-column-header-text {
3779  padding-right: 16px;
3780  background: no-repeat right 6px;
3781  background-image: url('../../resources/themes/images/default/grid/sort_desc.gif'); }
3782
3783/* line 197, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3784.x-grid-row {
3785  vertical-align: top; }
3786  /* line 199, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3787  .x-grid-row .x-grid-cell {
3788    color: null;
3789    font: normal 11px/15px tahoma, arial, verdana, sans-serif;
3790    background-color: white;
3791    border-color: #ededed;
3792    border-style: solid;
3793    border-top-color: #fafafa;
3794    border-width: 0; }
3795
3796/* line 212, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3797.x-grid-with-row-lines .x-grid-cell {
3798  border-width: 1px 0; }
3799
3800/* line 216, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3801.x-grid-rowwrap-div {
3802  border-width: 1px 0;
3803  border-color: #ededed;
3804  border-style: solid;
3805  border-top-color: #fafafa;
3806  overflow: hidden; }
3807
3808/* line 226, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3809.x-grid-row-alt .x-grid-cell,
3810.x-grid-row-alt .x-grid-rowwrap-div {
3811  background-color: #fafafa; }
3812
3813/* line 231, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3814.x-grid-row-over .x-grid-cell,
3815.x-grid-row-over .x-grid-rowwrap-div {
3816  border-color: #dddddd;
3817  background-color: #efefef; }
3818
3819/* line 238, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3820.x-grid-row-focused .x-grid-cell,
3821.x-grid-row-focused .x-grid-rowwrap-div {
3822  border-color: #dddddd;
3823  background-color: #efefef; }
3824
3825/* line 245, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3826.x-grid-row-selected .x-grid-cell,
3827.x-grid-row-selected .x-grid-rowwrap-div {
3828  border-style: dotted;
3829  border-color: #a3bae9;
3830  background-color: #dfe8f6 !important; }
3831
3832/* line 254, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3833.x-grid-rowwrap-div .x-grid-cell,
3834.x-grid-rowwrap-div .x-grid-cell-inner {
3835  border-width: 0;
3836  background: transparent; }
3837
3838/* line 261, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3839.x-grid-row-body-hidden {
3840  display: none; }
3841
3842/* line 265, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3843.x-grid-rowbody {
3844  font: normal 11px/13px tahoma, arial, verdana, sans-serif;
3845  padding: 4px; }
3846  /* line 270, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3847  .x-grid-rowbody p {
3848    margin: 5px 5px 10px 5px; }
3849
3850/* line 276, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3851.x-grid-cell {
3852  overflow: hidden; }
3853
3854/* line 280, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3855.x-grid-cell-inner {
3856  overflow: hidden;
3857  -o-text-overflow: ellipsis;
3858  text-overflow: ellipsis;
3859  padding: 2px 6px 3px;
3860  white-space: nowrap; }
3861
3862/* line 291, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3863.x-grid-with-row-lines .x-grid-cell-inner {
3864  line-height: 13px;
3865  padding-bottom: 4px; }
3866
3867/* line 297, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3868.x-action-col-cell .x-grid-cell-inner {
3869  line-height: 0;
3870  padding: 2px; }
3871
3872/* line 302, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3873.x-action-col-cell .x-item-disabled {
3874  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
3875  opacity: 0.3; }
3876
3877/* line 306, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3878.x-grid-with-row-lines .x-action-col-cell .x-grid-cell-inner {
3879  padding-top: 1px; }
3880
3881/* line 310, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3882.x-grid-row .x-grid-cell-special {
3883  padding: 0;
3884  border-right: 1px solid #d0d0d0;
3885  background-image: none;
3886  background-color: #f6f6f6;
3887  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9));
3888  background-image: -webkit-linear-gradient(left, #f6f6f6, #e9e9e9);
3889  background-image: -moz-linear-gradient(left, #f6f6f6, #e9e9e9);
3890  background-image: -o-linear-gradient(left, #f6f6f6, #e9e9e9);
3891  background-image: -ms-linear-gradient(left, #f6f6f6, #e9e9e9);
3892  background-image: linear-gradient(left, #f6f6f6, #e9e9e9); }
3893
3894/* line 316, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3895.x-grid-row .x-grid-cell-row-checker {
3896  vertical-align: middle; }
3897
3898/*
3899IE6-8 have issues with shrinking the TR to 0px (even w/line-height=0), so we
3900use an IE-specific trick to make the row disappear. We cannot do this on any
3901other browser, because it is not a non-standard thing to do and those other
3902browsers will do whacky things with it.
3903*/
3904/* line 330, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3905.x-ie6 .x-grid-header-row,
3906.x-ie7 .x-grid-header-row,
3907.x-quirks .x-ie8 .x-grid-header-row {
3908  position: absolute; }
3909
3910/* line 335, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3911.x-grid-row-selected .x-grid-cell-special {
3912  border-right: 1px solid #aaccf6;
3913  background-image: none;
3914  background-color: #dfe8f6;
3915  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dfe8f6), color-stop(100%, #cbdaf0));
3916  background-image: -webkit-linear-gradient(left, #dfe8f6, #cbdaf0);
3917  background-image: -moz-linear-gradient(left, #dfe8f6, #cbdaf0);
3918  background-image: -o-linear-gradient(left, #dfe8f6, #cbdaf0);
3919  background-image: -ms-linear-gradient(left, #dfe8f6, #cbdaf0);
3920  background-image: linear-gradient(left, #dfe8f6, #cbdaf0); }
3921
3922/* line 341, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3923.x-grid-dirty-cell {
3924  background-image: url('../../resources/themes/images/default/grid/dirty.gif');
3925  background-position: 0 0;
3926  background-repeat: no-repeat; }
3927
3928/* line 347, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3929.x-grid-cell-selected {
3930  background-color: #B8CFEE !important; }
3931
3932/* line 353, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3933.x-nlg .x-grid-cell-special {
3934  background-repeat: repeat-y;
3935  background-position: top right; }
3936/* line 359, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3937.x-nlg .x-grid-row .x-grid-cell-special,
3938.x-nlg .x-grid-row-over .x-grid-cell-special {
3939  background-image: url('../../resources/themes/images/default/grid/cell-special-bg.gif'); }
3940/* line 365, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3941.x-nlg .x-grid-row-focused .x-grid-cell-special,
3942.x-nlg .x-grid-row-selected .x-grid-cell-special {
3943  background-image: url('../../resources/themes/images/default/grid/cell-special-selected-bg.gif'); }
3944
3945/* line 371, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3946.x-grid-with-col-lines .x-grid-cell {
3947  padding-right: 0;
3948  border-right: 1px solid #d0d0d0; }
3949
3950/* line 378, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3951.x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
3952.x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
3953  padding-left: 12px;
3954  background-image: url('../../resources/themes/images/default/grid/property-cell-bg.gif');
3955  background-repeat: no-repeat;
3956  background-position: -16px 2px; }
3957
3958/* line 388, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3959.x-grid-with-row-lines.x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
3960.x-grid-with-row-lines.x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
3961  background-position: -16px 1px; }
3962
3963/* line 394, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3964.x-quirks .x-ie .x-grid-row .x-grid-property-name .x-grid-cell-inner {
3965  background-position: -16px 2px; }
3966
3967/* line 399, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3968.x-unselectable {
3969  user-select: none;
3970  -o-user-select: none;
3971  -ms-user-select: none;
3972  -moz-user-select: -moz-none;
3973  -webkit-user-select: none;
3974  cursor: default; }
3975
3976/* line 403, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3977.x-grid-row-body-hidden {
3978  display: none; }
3979
3980/* line 407, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3981.x-grid-group-collapsed {
3982  display: none; }
3983
3984/* line 413, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3985.x-grid-view .x-grid-td-expander {
3986  vertical-align: top; }
3987
3988/* line 418, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3989.x-grid-td-expander {
3990  background: repeat-y right transparent; }
3991
3992/* line 424, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3993.x-grid-view .x-grid-td-expander .x-grid-cell-inner {
3994  padding: 0 !important; }
3995
3996/* line 430, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
3997.x-grid-row-expander {
3998  background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
3999  background-color: transparent;
4000  width: 9px;
4001  height: 13px;
4002  margin-left: 3px;
4003  background-repeat: no-repeat;
4004  background-position: 0 -2px; }
4005
4006/* line 444, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4007.x-grid-row-collapsed .x-grid-row-expander {
4008  background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
4009
4010/* line 449, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4011.x-grid-resize-marker {
4012  position: absolute;
4013  z-index: 5;
4014  top: 0;
4015  width: 1px;
4016  background-color: #0f0f0f; }
4017
4018/* line 459, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4019.col-move-top, .col-move-bottom {
4020  width: 9px;
4021  height: 9px;
4022  position: absolute;
4023  top: 0;
4024  line-height: 0;
4025  font-size: 0;
4026  overflow: hidden;
4027  z-index: 20000;
4028  background: no-repeat left top transparent; }
4029
4030/* line 471, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4031.col-move-top {
4032  background-image: url('../../resources/themes/images/default/grid/col-move-top.gif'); }
4033
4034/* line 475, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4035.col-move-bottom {
4036  background-image: url('../../resources/themes/images/default/grid/col-move-bottom.gif'); }
4037
4038/* line 480, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4039.x-tbar-page-number {
4040  width: 30px; }
4041
4042/* line 487, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4043.x-grid-group,
4044.x-grid-group-body,
4045.x-grid-group-hd {
4046  zoom: 1; }
4047
4048/* line 491, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4049.x-grid-group-hd {
4050  padding-top: 6px; }
4051  /* line 494, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4052  .x-grid-group-hd .x-grid-cell-inner {
4053    padding: 10px 4px 4px 4px;
4054    background: white;
4055    border-width: 0 0 2px 0;
4056    border-style: solid;
4057    border-color: #99bbe8;
4058    cursor: pointer; }
4059
4060/* line 508, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4061.x-grid-group-hd-collapsible .x-grid-group-title {
4062  background: transparent no-repeat 0 -1px;
4063  background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
4064  padding: 0 0 0 14px; }
4065
4066/* line 515, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4067.x-grid-group-title {
4068  color: #3764a0;
4069  font: bold 11px tahoma, arial, verdana, sans-serif; }
4070
4071/* line 521, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4072.x-grid-group-hd-collapsed .x-grid-group-title {
4073  background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
4074
4075/* line 526, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4076.x-grid-group-collapsed .x-grid-group-body {
4077  display: none; }
4078
4079/* line 530, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4080.x-grid-group-collapsed .x-grid-group-title {
4081  background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
4082
4083/* line 534, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4084.x-group-by-icon {
4085  background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
4086
4087/* line 538, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4088.x-show-groups-icon {
4089  background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
4090
4091/* line 542, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4092.x-column-header-checkbox .x-column-header-inner {
4093  padding: 0; }
4094
4095/* line 546, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4096.x-grid-cell-special .x-grid-cell-inner {
4097  padding-left: 4px;
4098  padding-right: 4px; }
4099
4100/* line 552, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4101.x-grid-row-checker,
4102.x-column-header-checkbox .x-column-header-text {
4103  height: 14px;
4104  width: 14px;
4105  line-height: 0;
4106  background-image: url('../../resources/themes/images/default/grid/unchecked.gif');
4107  background-position: -1px -1px;
4108  background-repeat: no-repeat;
4109  background-color: transparent; }
4110
4111/* line 564, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4112.x-column-header-checkbox .x-column-header-text {
4113  display: block;
4114  margin: 0 5px; }
4115
4116/* 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 */
4117/* line 573, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4118.x-quirks .x-ie .x-grid-row-checker,
4119.x-quirks .x-ie .x-column-header-checkbox .x-column-header-text, .x-ie7m .x-grid-row-checker, .x-ie7m .x-column-header-checkbox .x-column-header-text {
4120  line-height: 14px; }
4121
4122/* line 579, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4123.x-grid-hd-checker-on .x-column-header-text {
4124  background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
4125
4126/* line 583, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4127.x-grid-cell-row-checker .x-grid-cell-inner {
4128  padding-top: 4px;
4129  padding-bottom: 2px;
4130  line-height: 14px; }
4131
4132/* line 588, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4133.x-grid-with-row-lines .x-grid-cell-row-checker .x-grid-cell-inner {
4134  padding-top: 3px; }
4135
4136/* line 591, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4137.x-grid-row-checker {
4138  margin-left: 1px;
4139  background-position: 50% -2px; }
4140
4141/* line 598, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4142.x-grid-row-selected .x-grid-row-checker,
4143.x-grid-row-checked .x-grid-row-checker {
4144  background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
4145
4146/* line 603, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4147.x-tbar-page-first {
4148  background-image: url('../../resources/themes/images/default/grid/page-first.gif') !important; }
4149
4150/* line 607, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4151.x-tbar-loading {
4152  background-image: url('../../resources/themes/images/default/grid/refresh.gif') !important; }
4153
4154/* line 611, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4155.x-tbar-page-last {
4156  background-image: url('../../resources/themes/images/default/grid/page-last.gif') !important; }
4157
4158/* line 615, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4159.x-tbar-page-next {
4160  background-image: url('../../resources/themes/images/default/grid/page-next.gif') !important; }
4161
4162/* line 619, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4163.x-tbar-page-prev {
4164  background-image: url('../../resources/themes/images/default/grid/page-prev.gif') !important; }
4165
4166/* line 624, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4167.x-item-disabled .x-tbar-loading {
4168  background-image: url('../../resources/themes/images/default/grid/refresh-disabled.gif') !important; }
4169/* line 628, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4170.x-item-disabled .x-tbar-page-first {
4171  background-image: url('../../resources/themes/images/default/grid/page-first-disabled.gif') !important; }
4172/* line 632, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4173.x-item-disabled .x-tbar-page-last {
4174  background-image: url('../../resources/themes/images/default/grid/page-last-disabled.gif') !important; }
4175/* line 636, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4176.x-item-disabled .x-tbar-page-next {
4177  background-image: url('../../resources/themes/images/default/grid/page-next-disabled.gif') !important; }
4178/* line 640, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4179.x-item-disabled .x-tbar-page-prev {
4180  background-image: url('../../resources/themes/images/default/grid/page-prev-disabled.gif') !important; }
4181
4182/* line 646, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4183.x-hmenu-sort-asc .x-menu-item-icon {
4184  background-image: url('../../resources/themes/images/default/grid/hmenu-asc.gif'); }
4185
4186/* line 650, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4187.x-hmenu-sort-desc .x-menu-item-icon {
4188  background-image: url('../../resources/themes/images/default/grid/hmenu-desc.gif'); }
4189
4190/* line 654, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4191.x-hmenu-lock .x-menu-item-icon {
4192  background-image: url('../../resources/themes/images/default/grid/hmenu-lock.gif'); }
4193
4194/* line 658, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4195.x-hmenu-unlock .x-menu-item-icon {
4196  background-image: url('../../resources/themes/images/default/grid/hmenu-unlock.gif'); }
4197
4198/* line 662, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4199.x-group-by-icon {
4200  background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
4201
4202/* line 666, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4203.x-cols-icon .x-menu-item-icon {
4204  background-image: url('../../resources/themes/images/default/grid/columns.gif'); }
4205
4206/* line 670, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4207.x-show-groups-icon {
4208  background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
4209
4210/* line 675, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4211.x-grid-drop-indicator {
4212  position: absolute;
4213  height: 1px;
4214  line-height: 0px;
4215  background-color: #77BC71;
4216  overflow: visible; }
4217  /* line 682, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4218  .x-grid-drop-indicator .x-grid-drop-indicator-left {
4219    position: absolute;
4220    top: -8px;
4221    left: -12px;
4222    background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.png');
4223    height: 16px;
4224    width: 16px; }
4225  /* line 691, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4226  .x-grid-drop-indicator .x-grid-drop-indicator-right {
4227    position: absolute;
4228    top: -8px;
4229    right: -11px;
4230    background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.png');
4231    height: 16px;
4232    width: 16px; }
4233
4234/* line 702, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4235.x-ie6 .x-grid-drop-indicator-left {
4236  background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.gif'); }
4237/* line 706, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4238.x-ie6 .x-grid-drop-indicator-right {
4239  background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.gif'); }
4240
4241/* line 714, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4242.x-grid-editor .x-form-text {
4243  padding: 0 4px; }
4244/* line 717, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4245.x-grid-editor .x-form-cb-wrap {
4246  padding-top: 3px; }
4247
4248/* line 723, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4249.x-grid-row-editor {
4250  position: absolute !important;
4251  z-index: 1;
4252  zoom: 1;
4253  overflow: visible !important; }
4254  /* line 729, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4255  .x-grid-row-editor .x-form-text {
4256    padding: 0 2px; }
4257  /* line 732, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4258  .x-grid-row-editor .x-form-cb-wrap {
4259    padding-top: 0; }
4260  /* line 735, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4261  .x-grid-row-editor .x-form-checkbox {
4262    margin-left: -4px; }
4263  /* line 738, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4264  .x-grid-row-editor .x-form-display-field {
4265    font: normal 11px/15px tahoma, arial, verdana, sans-serif;
4266    padding-top: 0;
4267    padding-left: 2px; }
4268  /* line 744, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4269  .x-grid-row-editor .x-panel-body {
4270    background-color: #eaf1fb;
4271    border-top: 1px solid #99bce8 !important;
4272    border-bottom: 1px solid #99bce8 !important; }
4273
4274/* line 754, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4275.x-grid-editor .x-form-cb-wrap, .x-grid-row-editor .x-form-cb-wrap {
4276  text-align: center; }
4277/* line 757, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4278.x-grid-editor .x-form-trigger, .x-grid-row-editor .x-form-trigger {
4279  height: 19px; }
4280/* line 761, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4281.x-grid-editor .x-form-trigger-wrap .x-form-spinner-up, .x-grid-editor .x-form-trigger-wrap .x-form-spinner-down, .x-grid-row-editor .x-form-trigger-wrap .x-form-spinner-up, .x-grid-row-editor .x-form-trigger-wrap .x-form-spinner-down {
4282  background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
4283  height: 10px !important; }
4284
4285/* line 768, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4286.x-grid-editor .x-form-text, .x-grid-row-editor .x-form-text {
4287  font: normal 11px/15px tahoma, arial, verdana, sans-serif;
4288  height: 18px; }
4289
4290/* line 776, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4291.x-border-box .x-grid-editor .x-form-trigger,
4292.x-border-box .x-grid-row-editor .x-form-trigger {
4293  height: 20px; }
4294/* line 779, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4295.x-border-box .x-grid-editor .x-form-text,
4296.x-border-box .x-grid-row-editor .x-form-text {
4297  height: 20px;
4298  padding-bottom: 1px; }
4299
4300/* line 787, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4301.x-ie .x-grid-editor .x-form-text {
4302  padding-left: 5px; }
4303/* line 790, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4304.x-ie .x-grid-row-editor .x-form-text {
4305  padding-left: 3px; }
4306
4307/* line 796, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4308.x-ie8m .x-grid-editor .x-form-text,
4309.x-ie8m .x-grid-row-editor .x-form-text {
4310  padding-top: 1px; }
4311
4312/* line 803, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4313.x-strict .x-ie6 .x-grid-editor .x-form-text,
4314.x-strict .x-ie6 .x-grid-row-editor .x-form-text,
4315.x-strict .x-ie7 .x-grid-editor .x-form-text,
4316.x-strict .x-ie7 .x-grid-row-editor .x-form-text {
4317  height: 17px; }
4318
4319/* line 809, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4320.x-quirks .x-ie9 .x-grid-editor .x-form-text, .x-quirks .x-ie9 .x-grid-row-editor .x-form-text {
4321  line-height: 17px; }
4322
4323/* line 818, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4324.x-opera .x-grid-editor .x-form-text {
4325  padding-left: 5px; }
4326/* line 821, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4327.x-opera .x-grid-row-editor .x-form-text {
4328  padding-left: 3px; }
4329
4330/* line 828, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4331.x-grid-row-editor-buttons {
4332  background-color: #eaf1fb;
4333  position: absolute;
4334  bottom: -31px;
4335  padding: 4px;
4336  height: 32px; }
4337  /* line 835, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4338  .x-strict .x-ie7m .x-grid-row-editor-buttons {
4339    width: 192px;
4340    height: 24px; }
4341
4342/* line 845, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4343.x-grid-row-editor-buttons-ml,
4344.x-grid-row-editor-buttons-mr,
4345.x-grid-row-editor-buttons-bl,
4346.x-grid-row-editor-buttons-br,
4347.x-grid-row-editor-buttons-bc {
4348  position: absolute;
4349  overflow: hidden; }
4350
4351/* line 851, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4352.x-grid-row-editor-buttons-bl,
4353.x-grid-row-editor-buttons-br {
4354  width: 4px;
4355  height: 4px;
4356  bottom: 0px;
4357  background-image: url('../../resources/themes/images/default/panel/panel-default-framed-corners.gif'); }
4358
4359/* line 857, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4360.x-grid-row-editor-buttons-bl {
4361  left: 0px;
4362  background-position: 0px -16px; }
4363
4364/* line 861, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4365.x-grid-row-editor-buttons-br {
4366  right: 0px;
4367  background-position: 0px -20px; }
4368
4369/* line 866, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4370.x-grid-row-editor-buttons-bc {
4371  position: absolute;
4372  left: 4px;
4373  bottom: 0px;
4374  width: 192px;
4375  height: 1px;
4376  background-color: #99bce8; }
4377
4378/* line 876, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4379.x-grid-row-editor-buttons-ml,
4380.x-grid-row-editor-buttons-mr {
4381  height: 27px;
4382  width: 1px;
4383  top: 1px;
4384  background-color: #99bce8; }
4385
4386/* line 882, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4387.x-grid-row-editor-buttons-ml {
4388  left: 0px; }
4389
4390/* line 885, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4391.x-grid-row-editor-buttons-mr {
4392  background-position: 0px -20px;
4393  right: 0px; }
4394
4395/* line 891, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4396.x-grid-row-editor-errors ul {
4397  margin-left: 5px; }
4398/* line 894, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
4399.x-grid-row-editor-errors li {
4400  list-style: disc;
4401  margin-left: 15px; }
4402
4403/*misc*/
4404/* line 9, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4405.x-webkit *:focus {
4406  outline: none !important; }
4407
4408/* line 16, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4409.x-form-item {
4410  vertical-align: top;
4411  table-layout: fixed; }
4412
4413/* line 26, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4414.x-autocontainer-form-item,
4415.x-anchor-form-item,
4416.x-vbox-form-item,
4417.x-checkboxgroup-form-item,
4418.x-table-form-item {
4419  margin-bottom: 5px; }
4420
4421/* line 31, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4422.x-form-layout-table {
4423  border-collapse: separate;
4424  border-spacing: 0 2px; }
4425
4426/* line 37, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4427.x-form-item-body {
4428  position: relative; }
4429
4430/* line 42, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4431.x-form-form-item td {
4432  border-top: 1px solid transparent; }
4433
4434/* line 51, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4435.x-ie6 .x-form-layout-table {
4436  border-collapse: collapse;
4437  border-spacing: 0; }
4438/* line 56, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4439.x-ie6 .x-form-form-item td {
4440  border-top-width: 0; }
4441/* line 62, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4442.x-ie6 td.x-form-item-pad {
4443  height: 5px; }
4444
4445/* line 68, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4446.x-editor .x-form-item-body {
4447  padding-bottom: 0; }
4448
4449/* line 72, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4450.x-form-item-label {
4451  display: block;
4452  padding: 3px 0 0;
4453  font-size: 12px;
4454  user-select: none;
4455  -o-user-select: none;
4456  -ms-user-select: none;
4457  -moz-user-select: -moz-none;
4458  -webkit-user-select: none;
4459  cursor: default; }
4460
4461/* line 79, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4462.x-form-item-label-top {
4463  display: block;
4464  zoom: 1;
4465  padding: 0 0 5px 0; }
4466
4467/* line 85, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4468.x-form-item-label-right {
4469  text-align: right; }
4470
4471/* line 89, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4472.x-form-invalid-under {
4473  padding: 2px 2px 2px 18px;
4474  color: #c0272b;
4475  font: normal 11px tahoma, arial, verdana, sans-serif;
4476  line-height: 16px;
4477  background: no-repeat 0 2px;
4478  background-image: url('../../resources/themes/images/default/form/exclamation.gif'); }
4479
4480/* line 100, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4481.x-form-invalid-icon {
4482  width: 18px;
4483  height: 14px;
4484  background: no-repeat center center;
4485  background-image: url('../../resources/themes/images/default/form/exclamation.gif');
4486  overflow: hidden; }
4487  /* line 106, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4488  .x-form-invalid-icon ul {
4489    display: block;
4490    width: 18px; }
4491    /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4492    .x-form-invalid-icon ul li {
4493      /* prevent inner elements from interfering with QuickTip hovering */
4494      display: none; }
4495
4496/* line 117, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
4497.x-lbl-top-err-icon {
4498  margin-bottom: 4px; }
4499
4500/* line 7, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4501.x-form-field,
4502.x-form-display-field {
4503  margin: 0 0 0 0;
4504  font: normal 12px tahoma, arial, verdana, sans-serif;
4505  color: black; }
4506
4507/* line 14, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4508.x-form-item-hidden {
4509  margin: 0; }
4510
4511/* line 19, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4512.x-form-text,
4513textarea.x-form-field {
4514  padding: 1px 3px;
4515  background: repeat-x 0 0;
4516  border: 1px solid;
4517  background-color: white;
4518  background-image: url('../../resources/themes/images/default/form/text-bg.gif');
4519  border-color: #b5b8c8; }
4520
4521/* line 36, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4522.x-form-text {
4523  height: 18px;
4524  line-height: 15px;
4525  vertical-align: top; }
4526
4527/* line 43, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4528.x-ie8m .x-form-text {
4529  line-height: 15px; }
4530
4531/* line 48, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4532.x-border-box .x-form-text {
4533  height: 22px; }
4534
4535/* line 52, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4536textarea.x-form-field {
4537  color: black;
4538  overflow: auto;
4539  height: auto;
4540  line-height: normal;
4541  background: repeat-x 0 0;
4542  background-color: white;
4543  background-image: url('../../resources/themes/images/default/form/text-bg.gif');
4544  resize: none; }
4545
4546/* line 65, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4547.x-border-box textarea.x-form-field {
4548  height: auto; }
4549
4550/* line 70, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4551.x-safari.x-mac textarea.x-form-field {
4552  margin-bottom: -2px; }
4553
4554/* line 76, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4555.x-form-focus,
4556textarea.x-form-focus {
4557  border-color: #7eadd9; }
4558
4559/* line 81, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4560.x-form-invalid-field,
4561textarea.x-form-invalid-field {
4562  background-color: white;
4563  background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
4564  background-repeat: repeat-x;
4565  background-position: bottom;
4566  border-color: #cc3300; }
4567
4568/* line 91, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4569.x-form-item {
4570  font: normal 12px tahoma, arial, verdana, sans-serif; }
4571
4572/* line 95, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4573.x-form-empty-field, textarea.x-form-empty-field {
4574  color: gray; }
4575
4576/* line 100, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4577.x-webkit .x-form-empty-field {
4578  line-height: 15px; }
4579
4580/* line 105, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4581.x-form-display-field {
4582  padding-top: 3px; }
4583
4584        /*
4585        In oldIE, text inputs get a mysterious extra pixel of spacing above and below.
4586        This is targeted at IE6-IE7 (all modes) and IE9+ Quirks mode.
4587
4588        IE8 quirks on Windows 7 requires this fix, but on
4589        IE8 quirks on Windows XP, this is breaks the layout.
4590        TODO: Check field input heights in IE8 quirks on Windows Vista.
4591
4592        Since we can't specifically target a specific version of Windows via CSS, we default to fixing it the XP way, for now.
4593        */
4594/* line 121, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4595.x-quirks .x-ie9p .x-form-text,
4596.x-ie7m .x-form-text {
4597  margin-top: -1px;
4598  margin-bottom: -1px; }
4599
4600/* line 126, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4601.x-ie .x-form-file {
4602  height: 23px;
4603  line-height: 18px;
4604  vertical-align: middle; }
4605
4606/* line 135, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4607.x-field-default-toolbar .x-form-text {
4608  height: 16px; }
4609
4610/* line 139, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4611.x-border-box .x-field-default-toolbar .x-form-text {
4612  height: 20px; }
4613
4614/* line 143, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
4615.x-field-default-toolbar .x-form-item-label-left {
4616  padding-left: 4px; }
4617
4618/* line 6, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4619.x-fieldset {
4620  border: 1px solid #b5b8c8;
4621  padding: 10px;
4622  margin-bottom: 10px;
4623  display: block;
4624  /* preserve margins in IE */
4625  position: relative; }
4626
4627/* line 18, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4628.x-ie .x-fieldset {
4629  padding-top: 0; }
4630  /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4631  .x-ie .x-fieldset .x-fieldset-body {
4632    padding-top: 10px; }
4633
4634/* line 25, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4635.x-fieldset-header-checkbox {
4636  line-height: 14px; }
4637
4638/* line 29, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4639.x-fieldset-header {
4640  font: 11px/14px bold tahoma, arial, verdana, sans-serif;
4641  color: #15428b;
4642  padding: 0 3px 1px;
4643  overflow: hidden; }
4644  /* line 35, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4645  .x-fieldset-header .x-fieldset-header-text {
4646    float: left;
4647    padding: 1px 0; }
4648  /* line 39, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4649  .x-fieldset-header .x-fieldset-header-text-collapsible {
4650    cursor: pointer; }
4651  /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4652  .x-fieldset-header .x-form-item,
4653  .x-fieldset-header .x-tool {
4654    float: left;
4655    margin: 1px 0 0 0; }
4656  /* line 49, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4657  .x-fieldset-header .x-form-cb-wrap {
4658    padding: 1px 0;
4659    font-size: 0;
4660    line-height: 0; }
4661
4662/* line 58, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4663.x-fieldset-with-title .x-fieldset-header-checkbox,
4664.x-fieldset-with-title .x-tool {
4665  margin-right: 3px; }
4666
4667/* line 65, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4668.x-webkit .x-fieldset-header {
4669  -webkit-padding-start: 3px;
4670  -webkit-padding-end: 3px; }
4671
4672/* line 75, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4673.x-opera .x-fieldset-with-legend {
4674  margin-top: -1px; }
4675/* line 78, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4676.x-opera.x-mac .x-fieldset-header-text {
4677  padding: 2px 0 0; }
4678
4679/* line 86, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4680.x-strict .x-ie8 .x-fieldset-header {
4681  margin-bottom: -1px; }
4682  /* line 90, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4683  .x-strict .x-ie8 .x-fieldset-header .x-tool,
4684  .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text,
4685  .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox {
4686    position: relative;
4687    top: -1px; }
4688
4689/* line 100, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4690.x-quirks .x-ie .x-fieldset-header,
4691.x-ie8m .x-fieldset-header {
4692  padding-left: 1px;
4693  padding-right: 1px; }
4694
4695/* line 108, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4696.x-fieldset-collapsed .x-fieldset-body {
4697  display: none; }
4698
4699/* line 113, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4700.x-fieldset-collapsed {
4701  padding-bottom: 0 !important;
4702  border-width: 1px 1px 0 1px !important;
4703  border-left-color: transparent !important;
4704  border-right-color: transparent !important; }
4705
4706/* line 122, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4707.x-ie6 .x-fieldset-collapsed {
4708  border-width: 1px 0 0 0 !important;
4709  padding-bottom: 0 !important;
4710  margin-left: 1px;
4711  margin-right: 1px; }
4712
4713/* line 130, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4714.x-ie .x-fieldset-bwrap {
4715  zoom: 1; }
4716
4717/* IE legend positioning bug */
4718/* line 137, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4719.x-ie .x-fieldset-noborder legend {
4720  position: relative;
4721  margin-bottom: 23px; }
4722
4723/* line 143, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4724.x-ie .x-fieldset-noborder legend span {
4725  position: absolute;
4726  left: 16px; }
4727
4728/* line 149, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4729.x-fieldset {
4730  overflow: hidden; }
4731
4732/* line 153, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4733.x-fieldset-bwrap {
4734  overflow: hidden;
4735  zoom: 1; }
4736
4737/* line 159, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
4738.x-fieldset-body {
4739  overflow: hidden; }
4740
4741/* line 8, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
4742.x-form-file-wrap .x-form-text {
4743  color: #777; }
4744/* line 12, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
4745.x-form-file-wrap .x-form-file-btn {
4746  overflow: hidden; }
4747/* line 16, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
4748.x-form-file-wrap .x-form-file-input {
4749  position: absolute;
4750  top: -4px;
4751  right: -2px;
4752  height: 30px;
4753  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
4754  opacity: 0;
4755  /* Yes, there's actually a good reason for this...
4756   * If the configured buttonText is set to something longer than the default,
4757   * then it will quickly exceed the width of the hidden file input's "Browse..."
4758   * button, so part of the custom button's clickable area will be covered by
4759   * the hidden file input's text box instead. This results in a text-selection
4760   * mouse cursor over that part of the button, at least in Firefox, which is
4761   * confusing to a user. Giving the hidden file input a huge font-size makes
4762   * the native button part very large so it will cover the whole clickable area.
4763   */
4764  font-size: 100px; }
4765
4766/* line 6, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4767.x-form-cb-wrap {
4768  padding-top: 3px; }
4769
4770/* line 11, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4771.x-form-checkbox,
4772.x-form-radio {
4773  vertical-align: -1px;
4774  width: 13px;
4775  height: 13px;
4776  background: no-repeat;
4777  background-image: url('../../resources/themes/images/default/form/checkbox.gif');
4778  overflow: hidden;
4779  padding: 0;
4780  border: 0; }
4781  /* line 22, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4782  .x-form-checkbox::-moz-focus-inner,
4783  .x-form-radio::-moz-focus-inner {
4784    padding: 0;
4785    border: 0; }
4786
4787/* Hack for IE; causes alignment problem in IE9 standards mode so exclude that */
4788/* line 31, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4789.x-nbr.x-ie .x-form-checkbox,
4790.x-nbr.x-ie .x-form-radio {
4791  font-size: 0; }
4792
4793/* line 38, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4794.x-form-cb-checked .x-form-checkbox,
4795.x-form-cb-checked .x-form-radio {
4796  background-position: 0 -13px; }
4797
4798/* Focused */
4799/* line 44, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4800.x-form-cb-focus {
4801  background-position: -13px 0; }
4802
4803/* line 48, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4804.x-form-cb-checked .x-form-cb-focus {
4805  background-position: -13px -13px; }
4806
4807/* Radios */
4808/* line 54, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4809.x-form-radio {
4810  background-image: url('../../resources/themes/images/default/form/radio.gif'); }
4811
4812/* boxLabel */
4813/* line 59, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4814.x-form-cb-label-before {
4815  margin-right: 4px; }
4816
4817/* line 62, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
4818.x-form-cb-label-after {
4819  margin-left: 4px; }
4820
4821/* line 7, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
4822.x-form-checkboxgroup-body {
4823  padding: 1px 4px 1px 4px; }
4824
4825/* line 12, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
4826.x-form-invalid .x-form-checkboxgroup-body {
4827  border: 1px solid #c30!important;
4828  background: transparent repeat-x bottom;
4829  background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
4830  padding: 1px 3px 0 3px; }
4831
4832/* line 20, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
4833.x-check-group-alt {
4834  background: #d1ddef;
4835  border-top: 1px dotted #b5b8c8;
4836  border-bottom: 1px dotted #b5b8c8; }
4837
4838/* line 27, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
4839.x-form-check-group-label {
4840  color: #333;
4841  border-bottom: 1px solid #333;
4842  margin: 0 30px 5px 0;
4843  padding: 2px; }
4844
4845/* line 6, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4846.x-form-trigger-wrap {
4847  vertical-align: top; }
4848
4849/* line 10, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4850.x-form-trigger {
4851  background-image: url('../../resources/themes/images/default/form/trigger.gif');
4852  background-position: 0 0;
4853  width: 17px;
4854  height: 21px;
4855  border-bottom: 1px solid #b5b8c8;
4856  cursor: pointer;
4857  cursor: hand;
4858  overflow: hidden; }
4859
4860/* line 24, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4861.x-border-box .x-form-trigger {
4862  height: 22px; }
4863
4864/* line 28, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4865.x-field-default-toolbar .x-form-trigger {
4866  height: 19px; }
4867
4868/* line 32, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4869.x-border-box .x-field-default-toolbar .x-form-trigger {
4870  height: 20px; }
4871
4872/* line 37, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4873.x-form-trigger-over {
4874  background-position: -17px 0;
4875  border-bottom-color: #7eadd9; }
4876
4877/* line 43, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4878.x-form-trigger-wrap-focus .x-form-trigger {
4879  background-position: -51px 0;
4880  border-bottom-color: #7eadd9; }
4881
4882/* line 49, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4883.x-form-trigger-wrap-focus .x-form-trigger-over {
4884  background-position: -68px 0;
4885  border-bottom-color: null; }
4886
4887/* line 58, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4888.x-form-trigger-click,
4889.x-form-trigger-wrap-focus .x-form-trigger-click {
4890  background-position: -34px 0;
4891  border-bottom-color: null; }
4892
4893/* line 66, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4894.x-form-trigger-icon {
4895  height: 16px;
4896  background-repeat: no-repeat;
4897  background-position: 7px 6px; }
4898
4899/* line 74, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4900.x-pickerfield-open .x-form-field {
4901  -moz-border-radius-bottomleft: 0;
4902  -webkit-border-bottom-left-radius: 0;
4903  -o-border-bottom-left-radius: 0;
4904  -ms-border-bottom-left-radius: 0;
4905  -khtml-border-bottom-left-radius: 0;
4906  border-bottom-left-radius: 0;
4907  -moz-border-radius-bottomright: 0;
4908  -webkit-border-bottom-right-radius: 0;
4909  -o-border-bottom-right-radius: 0;
4910  -ms-border-bottom-right-radius: 0;
4911  -khtml-border-bottom-right-radius: 0;
4912  border-bottom-right-radius: 0; }
4913
4914/* line 80, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4915.x-pickerfield-open-above .x-form-field {
4916  -moz-border-radius-bottomleft: 3px;
4917  -webkit-border-bottom-left-radius: 3px;
4918  -o-border-bottom-left-radius: 3px;
4919  -ms-border-bottom-left-radius: 3px;
4920  -khtml-border-bottom-left-radius: 3px;
4921  border-bottom-left-radius: 3px;
4922  -moz-border-radius-topleft: 0;
4923  -webkit-border-top-left-radius: 0;
4924  -o-border-top-left-radius: 0;
4925  -ms-border-top-left-radius: 0;
4926  -khtml-border-top-left-radius: 0;
4927  border-top-left-radius: 0;
4928  -moz-border-radius-topright: 0;
4929  -webkit-border-top-right-radius: 0;
4930  -o-border-top-right-radius: 0;
4931  -ms-border-top-right-radius: 0;
4932  -khtml-border-top-right-radius: 0;
4933  border-top-right-radius: 0; }
4934
4935/* line 87, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4936.x-form-arrow-trigger .x-form-trigger-icon {
4937  background-image: url('../../resources/themes/images/default/boundlist/trigger-arrow.png'); }
4938
4939/* line 92, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4940.x-form-date-trigger {
4941  background-image: url('../../resources/themes/images/default/form/date-trigger.gif'); }
4942
4943/* line 99, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4944.x-form-trigger-wrap .x-form-spinner-up,
4945.x-form-trigger-wrap .x-form-spinner-down {
4946  background-image: url('../../resources/themes/images/default/form/spinner.gif');
4947  width: 17px !important;
4948  height: 11px !important;
4949  font-size: 0;
4950  /*for IE*/
4951  border-bottom: 0; }
4952/* line 109, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4953.x-form-trigger-wrap .x-form-spinner-down {
4954  background-position: 0 -11px; }
4955
4956/* line 113, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4957.x-form-trigger-wrap-focus .x-form-spinner-down {
4958  background-position: -51px -11px; }
4959
4960/* line 116, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4961.x-form-trigger-wrap .x-form-spinner-down-over {
4962  background-position: -17px -11px; }
4963
4964/* line 119, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4965.x-form-trigger-wrap-focus .x-form-spinner-down-over {
4966  background-position: -68px -11px; }
4967
4968/* line 122, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4969.x-form-trigger-wrap .x-form-spinner-down-click {
4970  background-position: -34px -11px; }
4971
4972/* line 131, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4973.x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-up,
4974.x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
4975  background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
4976  height: 10px !important; }
4977/* line 135, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4978.x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
4979  background-position: 0 -10px; }
4980/* line 139, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4981.x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down {
4982  background-position: -51px -10px; }
4983/* line 142, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4984.x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-over {
4985  background-position: -17px -10px; }
4986/* line 145, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4987.x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down-over {
4988  background-position: -68px -10px; }
4989/* line 148, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4990.x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-click {
4991  background-position: -34px -10px; }
4992
4993/* line 154, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4994.x-trigger-noedit {
4995  cursor: pointer;
4996  cursor: hand; }
4997
4998/* line 160, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
4999.x-item-disabled .x-trigger-noedit, .x-item-disabled .x-form-trigger {
5000  cursor: auto; }
5001
5002/* line 166, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
5003.x-form-clear-trigger {
5004  background-image: url('../../resources/themes/images/default/form/clear-trigger.gif'); }
5005
5006/* line 169, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
5007.x-form-search-trigger {
5008  background-image: url('../../resources/themes/images/default/form/search-trigger.gif'); }
5009
5010/* line 177, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
5011.x-quirks .prefixie6 .x-form-trigger-input-cell {
5012  height: 22px; }
5013/* line 180, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
5014.x-quirks .prefixie6 .x-field-default-toolbar .x-form-trigger-input-cell {
5015  height: 20px; }
5016
5017/* line 6, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5018.x-html-editor-wrap {
5019  border: 1px solid #b5b8c8; }
5020  /* line 9, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5021  .x-html-editor-wrap .x-toolbar {
5022    border-top-width: 0;
5023    border-left-width: 0;
5024    border-right-width: 0; }
5025  /* line 15, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5026  .x-html-editor-wrap textarea {
5027    background-color: white; }
5028
5029/* line 20, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5030.x-html-editor-tb .x-btn-text {
5031  background: transparent no-repeat;
5032  background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
5033
5034/* line 26, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5035.x-html-editor-tb .x-edit-bold,
5036.x-menu-item img.x-edit-bold {
5037  background-position: 0 0;
5038  background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
5039
5040/* line 32, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5041.x-html-editor-tb .x-edit-italic,
5042.x-menu-item img.x-edit-italic {
5043  background-position: -16px 0;
5044  background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
5045
5046/* line 38, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5047.x-html-editor-tb .x-edit-underline,
5048.x-menu-item img.x-edit-underline {
5049  background-position: -32px 0;
5050  background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
5051
5052/* line 44, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5053.x-html-editor-tb .x-edit-forecolor,
5054.x-menu-item img.x-edit-forecolor {
5055  background-position: -160px 0;
5056  background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
5057
5058/* line 50, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5059.x-html-editor-tb .x-edit-backcolor,
5060.x-menu-item img.x-edit-backcolor {
5061  background-position: -176px 0;
5062  background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
5063
5064/* line 56, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5065.x-html-editor-tb .x-edit-justifyleft,
5066.x-menu-item img.x-edit-justifyleft {
5067  background-position: -112px 0;
5068  background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
5069
5070/* line 62, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5071.x-html-editor-tb .x-edit-justifycenter,
5072.x-menu-item img.x-edit-justifycenter {
5073  background-position: -128px 0;
5074  background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
5075
5076/* line 68, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5077.x-html-editor-tb .x-edit-justifyright,
5078.x-menu-item img.x-edit-justifyright {
5079  background-position: -144px 0;
5080  background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
5081
5082/* line 74, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5083.x-html-editor-tb .x-edit-insertorderedlist,
5084.x-menu-item img.x-edit-insertorderedlist {
5085  background-position: -80px 0;
5086  background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
5087
5088/* line 80, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5089.x-html-editor-tb .x-edit-insertunorderedlist,
5090.x-menu-item img.x-edit-insertunorderedlist {
5091  background-position: -96px 0;
5092  background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
5093
5094/* line 86, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5095.x-html-editor-tb .x-edit-increasefontsize,
5096.x-menu-item img.x-edit-increasefontsize {
5097  background-position: -48px 0;
5098  background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
5099
5100/* line 92, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5101.x-html-editor-tb .x-edit-decreasefontsize,
5102.x-menu-item img.x-edit-decreasefontsize {
5103  background-position: -64px 0;
5104  background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
5105
5106/* line 98, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5107.x-html-editor-tb .x-edit-sourceedit,
5108.x-menu-item img.x-edit-sourceedit {
5109  background-position: -192px 0;
5110  background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
5111
5112/* line 104, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5113.x-html-editor-tb .x-edit-createlink,
5114.x-menu-item img.x-edit-createlink {
5115  background-position: -208px 0;
5116  background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
5117
5118/* line 109, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5119.x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
5120  padding: 5px;
5121  padding-bottom: 1px; }
5122
5123/* line 115, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5124.x-html-editor-tb .x-toolbar {
5125  position: static !important; }
5126/* line 118, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5127.x-html-editor-tb .x-font-select {
5128  font-size: 11px; }
5129
5130/* line 123, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
5131.x-html-editor-wrap textarea {
5132  border: 0;
5133  padding: 3px 2px;
5134  overflow: auto; }
5135
5136/* line 7, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5137.x-panel,
5138.x-plain {
5139  overflow: hidden;
5140  position: relative; }
5141
5142/* line 24, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5143.x-ie .x-panel-header,
5144.x-ie .x-panel-header-tl,
5145.x-ie .x-panel-header-tc,
5146.x-ie .x-panel-header-tr,
5147.x-ie .x-panel-header-ml,
5148.x-ie .x-panel-header-mc,
5149.x-ie .x-panel-header-mr,
5150.x-ie .x-panel-header-bl,
5151.x-ie .x-panel-header-bc,
5152.x-ie .x-panel-header-br {
5153  zoom: 1; }
5154
5155/* line 30, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5156.x-ie8 td.x-frame-mc {
5157  vertical-align: top; }
5158
5159/* line 37, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5160.x-panel-header-horizontal {
5161  padding: 3px 5px 4px; }
5162
5163/* line 40, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5164.x-panel-header-vertical {
5165  padding: 5px 4px; }
5166
5167/* line 45, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5168.x-panel-header-icon,
5169.x-window-header-icon {
5170  width: 16px;
5171  height: 16px;
5172  background-repeat: no-repeat;
5173  background-position: 0 0;
5174  vertical-align: middle;
5175  margin-right: 4px; }
5176
5177/* line 56, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5178.x-vertical .x-panel-header-icon,
5179.x-vertical .x-window-header-icon {
5180  margin: 0 0 4px; }
5181
5182/* line 64, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5183.x-panel-header-draggable,
5184.x-panel-header-draggable .x-panel-header-text,
5185.x-window-header-draggable,
5186.x-window-header-draggable .x-window-header-text {
5187  cursor: move; }
5188
5189/* line 70, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5190.x-panel-ghost, .x-window-ghost {
5191  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
5192  opacity: 0.65;
5193  cursor: move; }
5194
5195/* line 76, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5196.x-panel-header-horizontal .x-panel-header-body, .x-panel-header-horizontal .x-window-header-body, .x-panel-header-horizontal .x-btn-group-header-body, .x-window-header-horizontal .x-panel-header-body, .x-window-header-horizontal .x-window-header-body, .x-window-header-horizontal .x-btn-group-header-body, .x-btn-group-header-horizontal .x-panel-header-body, .x-btn-group-header-horizontal .x-window-header-body, .x-btn-group-header-horizontal .x-btn-group-header-body {
5197  width: 100%; }
5198
5199/* line 82, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5200.x-panel-header-vertical .x-panel-header-body, .x-panel-header-vertical .x-window-header-body, .x-panel-header-vertical .x-btn-group-header-body, .x-window-header-vertical .x-panel-header-body, .x-window-header-vertical .x-window-header-body, .x-window-header-vertical .x-btn-group-header-body, .x-btn-group-header-vertical .x-panel-header-body, .x-btn-group-header-vertical .x-window-header-body, .x-btn-group-header-vertical .x-btn-group-header-body {
5201  height: 100%; }
5202
5203/* line 87, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5204.x-panel-header-text-container {
5205  overflow: hidden;
5206  -o-text-overflow: ellipsis;
5207  text-overflow: ellipsis; }
5208
5209/* line 93, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5210.x-panel-header-text {
5211  user-select: none;
5212  -o-user-select: none;
5213  -ms-user-select: none;
5214  -moz-user-select: -moz-none;
5215  -webkit-user-select: none;
5216  cursor: default;
5217  white-space: nowrap; }
5218
5219/* line 100, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5220.x-panel-header-left .x-vml-base,
5221.x-panel-header-right .x-vml-base {
5222  left: -3px !important; }
5223
5224/* line 106, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5225.x-panel-body {
5226  overflow: hidden;
5227  position: relative;
5228  font-size: 12px; }
5229
5230/* line 114, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5231.x-panel-header-vertical .x-surface {
5232  padding-left: 1px; }
5233
5234/* line 122, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5235.x-opera .x-panel-header-vertical .x-surface,
5236.x-strict .x-ie9 .x-panel-header-vertical .x-surface {
5237  padding-left: 2px; }
5238
5239/* line 129, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5240.x-panel-collapsed .x-panel-header-collapsed-border-top {
5241  border-bottom-width: 1px !important; }
5242/* line 132, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5243.x-panel-collapsed .x-panel-header-collapsed-border-right {
5244  border-left-width: 1px !important; }
5245/* line 135, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5246.x-panel-collapsed .x-panel-header-collapsed-border-bottom {
5247  border-top-width: 1px !important; }
5248/* line 138, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5249.x-panel-collapsed .x-panel-header-collapsed-border-left {
5250  border-right-width: 1px !important; }
5251
5252/* line 145, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5253.x-nlg .x-panel-header-vertical .x-frame-mc {
5254  background-repeat: repeat-y; }
5255
5256/* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5257.x-panel-default {
5258  border-color: #99bce8; }
5259
5260/* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5261.x-panel-header-default {
5262  font-size: 11px;
5263  border-color: #99bce8;
5264  border-width: 1px;
5265  border-style: solid;
5266  background-image: none;
5267  background-color: #cbddf3;
5268  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3));
5269  background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5270  background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5271  background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5272  background-image: -ms-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5273  background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5274  -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset;
5275  -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset;
5276  -o-box-shadow: #f4f8fd 0 1px 0px 0 inset;
5277  box-shadow: #f4f8fd 0 1px 0px 0 inset; }
5278
5279/* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5280.x-nlg .x-panel-header-default-top {
5281  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
5282
5283/* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5284.x-nlg .x-panel-header-default-bottom {
5285  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
5286
5287/* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5288.x-nlg .x-panel-header-default-left {
5289  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
5290
5291/* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5292.x-nlg .x-panel-header-default-right {
5293  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
5294
5295/* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5296.x-nlg .x-panel-header-default-right {
5297  background-position: top right; }
5298
5299/* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5300.x-nlg .x-panel-header-default-bottom {
5301  background-position: bottom left; }
5302
5303/* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5304.x-panel-header-text-default {
5305  color: #04408c;
5306  font-size: 11px;
5307  font-weight: bold;
5308  font-family: tahoma, arial, verdana, sans-serif;
5309  line-height: 17px; }
5310
5311/* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5312.x-panel-body-default {
5313  background: white;
5314  border-color: #99bce8;
5315  color: black;
5316  border-width: 1px;
5317  border-style: solid; }
5318
5319/* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5320.x-panel-collapsed .x-window-header-default,
5321.x-panel-collapsed .x-panel-header-default {
5322  border-color: #99bce8; }
5323
5324/* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5325.x-panel-header-default-vertical {
5326  border-color: #99bce8; }
5327
5328/* line 375, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5329.x-panel-header-default-left,
5330.x-panel-header-default-right {
5331  background-image: none;
5332  background-color: #cbddf3;
5333  background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3));
5334  background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5335  background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5336  background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5337  background-image: -ms-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5338  background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); }
5339
5340/* line 416, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5341.x-panel-collapsed .x-panel-header-default-top {
5342  -moz-border-radius-bottomleft: null;
5343  -webkit-border-bottom-left-radius: null;
5344  -o-border-bottom-left-radius: null;
5345  -ms-border-bottom-left-radius: null;
5346  -khtml-border-bottom-left-radius: null;
5347  border-bottom-left-radius: null;
5348  -moz-border-radius-bottomright: null;
5349  -webkit-border-bottom-right-radius: null;
5350  -o-border-bottom-right-radius: null;
5351  -ms-border-bottom-right-radius: null;
5352  -khtml-border-bottom-right-radius: null;
5353  border-bottom-right-radius: null; }
5354/* line 420, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5355.x-panel-collapsed .x-panel-header-default-right {
5356  -moz-border-radius-topleft: null;
5357  -webkit-border-top-left-radius: null;
5358  -o-border-top-left-radius: null;
5359  -ms-border-top-left-radius: null;
5360  -khtml-border-top-left-radius: null;
5361  border-top-left-radius: null;
5362  -moz-border-radius-bottomleft: null;
5363  -webkit-border-bottom-left-radius: null;
5364  -o-border-bottom-left-radius: null;
5365  -ms-border-bottom-left-radius: null;
5366  -khtml-border-bottom-left-radius: null;
5367  border-bottom-left-radius: null; }
5368/* line 424, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5369.x-panel-collapsed .x-panel-header-default-bottom {
5370  -moz-border-radius-topleft: null;
5371  -webkit-border-top-left-radius: null;
5372  -o-border-top-left-radius: null;
5373  -ms-border-top-left-radius: null;
5374  -khtml-border-top-left-radius: null;
5375  border-top-left-radius: null;
5376  -moz-border-radius-topright: null;
5377  -webkit-border-top-right-radius: null;
5378  -o-border-top-right-radius: null;
5379  -ms-border-top-right-radius: null;
5380  -khtml-border-top-right-radius: null;
5381  border-top-right-radius: null; }
5382/* line 428, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5383.x-panel-collapsed .x-panel-header-default-left {
5384  -moz-border-radius-topright: null;
5385  -webkit-border-top-right-radius: null;
5386  -o-border-top-right-radius: null;
5387  -ms-border-top-right-radius: null;
5388  -khtml-border-top-right-radius: null;
5389  border-top-right-radius: null;
5390  -moz-border-radius-bottomright: null;
5391  -webkit-border-bottom-right-radius: null;
5392  -o-border-bottom-right-radius: null;
5393  -ms-border-bottom-right-radius: null;
5394  -khtml-border-bottom-right-radius: null;
5395  border-bottom-right-radius: null; }
5396
5397/* line 434, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5398.x-panel-header-default-top {
5399  -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset;
5400  -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset;
5401  -o-box-shadow: #f4f8fd 0 1px 0px 0 inset;
5402  box-shadow: #f4f8fd 0 1px 0px 0 inset; }
5403
5404/* line 438, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5405.x-panel-header-default-right {
5406  -moz-box-shadow: #f4f8fd -1px 0 0px 0 inset;
5407  -webkit-box-shadow: #f4f8fd -1px 0 0px 0 inset;
5408  -o-box-shadow: #f4f8fd -1px 0 0px 0 inset;
5409  box-shadow: #f4f8fd -1px 0 0px 0 inset; }
5410
5411/* line 442, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5412.x-panel-header-default-bottom {
5413  -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
5414  -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
5415  -o-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
5416  box-shadow: #f4f8fd 0 -1px 0px 0 inset; }
5417
5418/* line 446, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5419.x-panel-header-default-left {
5420  -moz-box-shadow: #f4f8fd 1px 0 0px 0 inset;
5421  -webkit-box-shadow: #f4f8fd 1px 0 0px 0 inset;
5422  -o-box-shadow: #f4f8fd 1px 0 0px 0 inset;
5423  box-shadow: #f4f8fd 1px 0 0px 0 inset; }
5424
5425/* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5426.x-panel-header-default-right-tc,
5427.x-panel-header-default-right-mc,
5428.x-panel-header-default-right-bc {
5429  background-position: right 0; }
5430
5431/* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5432.x-panel-header-default-bottom-tc,
5433.x-panel-header-default-bottom-mc,
5434.x-panel-header-default-bottom-bc {
5435  background-position: 0 bottom; }
5436
5437/* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5438.x-panel-default-framed {
5439  border-color: #99bce8; }
5440
5441/* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5442.x-panel-header-default-framed {
5443  font-size: 11px;
5444  border-color: #99bce8;
5445  border-width: 1px;
5446  border-style: solid;
5447  background-image: none;
5448  background-color: #cbddf3;
5449  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3));
5450  background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5451  background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5452  background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5453  background-image: -ms-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5454  background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5455  -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset;
5456  -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset;
5457  -o-box-shadow: #f4f8fd 0 1px 0px 0 inset;
5458  box-shadow: #f4f8fd 0 1px 0px 0 inset; }
5459
5460/* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5461.x-nlg .x-panel-header-default-framed-top {
5462  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif'); }
5463
5464/* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5465.x-nlg .x-panel-header-default-framed-bottom {
5466  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif'); }
5467
5468/* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5469.x-nlg .x-panel-header-default-framed-left {
5470  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif'); }
5471
5472/* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5473.x-nlg .x-panel-header-default-framed-right {
5474  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif'); }
5475
5476/* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5477.x-nlg .x-panel-header-default-framed-right {
5478  background-position: top right; }
5479
5480/* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5481.x-nlg .x-panel-header-default-framed-bottom {
5482  background-position: bottom left; }
5483
5484/* line 305, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5485.x-nbr .x-panel-header-default-framed {
5486  background-image: none; }
5487
5488/* line 317, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5489.x-strict .x-ie9 .x-panel-header-default-framed-top,
5490.x-nlg.x-opera .x-panel-header-default-framed-top,
5491.x-nlg.x-safari .x-panel-header-default-framed-top {
5492  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
5493/* line 321, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5494.x-strict .x-ie9 .x-panel-header-default-framed-bottom,
5495.x-nlg.x-opera .x-panel-header-default-framed-bottom,
5496.x-nlg.x-safari .x-panel-header-default-framed-bottom {
5497  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
5498/* line 325, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5499.x-strict .x-ie9 .x-panel-header-default-framed-left,
5500.x-nlg.x-opera .x-panel-header-default-framed-left,
5501.x-nlg.x-safari .x-panel-header-default-framed-left {
5502  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
5503/* line 329, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5504.x-strict .x-ie9 .x-panel-header-default-framed-right,
5505.x-nlg.x-opera .x-panel-header-default-framed-right,
5506.x-nlg.x-safari .x-panel-header-default-framed-right {
5507  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
5508
5509/* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5510.x-panel-header-text-default-framed {
5511  color: #04408c;
5512  font-size: 11px;
5513  font-weight: bold;
5514  font-family: tahoma, arial, verdana, sans-serif;
5515  line-height: 17px; }
5516
5517/* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5518.x-panel-body-default-framed {
5519  background: #dfe9f6;
5520  border-color: #99bce8;
5521  color: black;
5522  border-width: 0;
5523  border-style: solid; }
5524
5525/* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5526.x-panel-collapsed .x-window-header-default-framed,
5527.x-panel-collapsed .x-panel-header-default-framed {
5528  border-color: #99bce8; }
5529
5530/* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5531.x-panel-header-default-framed-vertical {
5532  border-color: #99bce8; }
5533
5534/* line 375, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5535.x-panel-header-default-framed-left,
5536.x-panel-header-default-framed-right {
5537  background-image: none;
5538  background-color: #cbddf3;
5539  background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3));
5540  background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5541  background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5542  background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5543  background-image: -ms-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5544  background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); }
5545
5546/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5547.x-panel-default-framed {
5548  -moz-border-radius: 4px;
5549  -webkit-border-radius: 4px;
5550  -o-border-radius: 4px;
5551  -ms-border-radius: 4px;
5552  -khtml-border-radius: 4px;
5553  border-radius: 4px;
5554  padding: 4px 4px 4px 4px;
5555  border-width: 1px;
5556  border-style: solid;
5557  background-color: #dfe9f6; }
5558
5559/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5560.x-nlg .x-panel-default-framed-mc {
5561  background-color: #dfe9f6; }
5562
5563/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5564.x-nbr .x-panel-default-framed {
5565  padding: 0 !important;
5566  border-width: 0 !important;
5567  -moz-border-radius: 0px;
5568  -webkit-border-radius: 0px;
5569  -o-border-radius: 0px;
5570  -ms-border-radius: 0px;
5571  -khtml-border-radius: 0px;
5572  border-radius: 0px;
5573  background-color: transparent;
5574  background-position: 1000404px 1000404px; }
5575/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5576.x-nbr .x-panel-default-framed-tl,
5577.x-nbr .x-panel-default-framed-bl,
5578.x-nbr .x-panel-default-framed-tr,
5579.x-nbr .x-panel-default-framed-br,
5580.x-nbr .x-panel-default-framed-tc,
5581.x-nbr .x-panel-default-framed-bc,
5582.x-nbr .x-panel-default-framed-ml,
5583.x-nbr .x-panel-default-framed-mr {
5584  zoom: 1;
5585  background-image: url('../../resources/themes/images/default/panel/panel-default-framed-corners.gif'); }
5586/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5587.x-nbr .x-panel-default-framed-ml,
5588.x-nbr .x-panel-default-framed-mr {
5589  zoom: 1;
5590  background-image: url('../../resources/themes/images/default/panel/panel-default-framed-sides.gif');
5591  background-position: 0 0;
5592  background-repeat: repeat-y; }
5593/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5594.x-nbr .x-panel-default-framed-mc {
5595  padding: 1px 1px 1px 1px; }
5596
5597/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5598.x-strict .x-ie7 .x-panel-default-framed-tl,
5599.x-strict .x-ie7 .x-panel-default-framed-bl {
5600  position: relative;
5601  right: 0; }
5602
5603/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5604.x-panel-header-default-framed-top {
5605  -moz-border-radius-topleft: 4px;
5606  -webkit-border-top-left-radius: 4px;
5607  -o-border-top-left-radius: 4px;
5608  -ms-border-top-left-radius: 4px;
5609  -khtml-border-top-left-radius: 4px;
5610  border-top-left-radius: 4px;
5611  -moz-border-radius-topright: 4px;
5612  -webkit-border-top-right-radius: 4px;
5613  -o-border-top-right-radius: 4px;
5614  -ms-border-top-right-radius: 4px;
5615  -khtml-border-top-right-radius: 4px;
5616  border-top-right-radius: 4px;
5617  -moz-border-radius-bottomright: 0;
5618  -webkit-border-bottom-right-radius: 0;
5619  -o-border-bottom-right-radius: 0;
5620  -ms-border-bottom-right-radius: 0;
5621  -khtml-border-bottom-right-radius: 0;
5622  border-bottom-right-radius: 0;
5623  -moz-border-radius-bottomleft: 0;
5624  -webkit-border-bottom-left-radius: 0;
5625  -o-border-bottom-left-radius: 0;
5626  -ms-border-bottom-left-radius: 0;
5627  -khtml-border-bottom-left-radius: 0;
5628  border-bottom-left-radius: 0;
5629  padding: 3px 5px 4px 5px;
5630  border-width: 1px 1px 0 1px;
5631  border-style: solid;
5632  background-image: none;
5633  background-color: #cbddf3;
5634  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3));
5635  background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5636  background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5637  background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5638  background-image: -ms-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5639  background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); }
5640
5641/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5642.x-nlg .x-panel-header-default-framed-top-mc {
5643  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif');
5644  background-color: #cbddf3; }
5645
5646/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5647.x-nbr .x-panel-header-default-framed-top {
5648  padding: 0 !important;
5649  border-width: 0 !important;
5650  -moz-border-radius: 0px;
5651  -webkit-border-radius: 0px;
5652  -o-border-radius: 0px;
5653  -ms-border-radius: 0px;
5654  -khtml-border-radius: 0px;
5655  border-radius: 0px;
5656  background-color: transparent;
5657  background-position: 1000404px 1000000px; }
5658/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5659.x-nbr .x-panel-header-default-framed-top-tl,
5660.x-nbr .x-panel-header-default-framed-top-bl,
5661.x-nbr .x-panel-header-default-framed-top-tr,
5662.x-nbr .x-panel-header-default-framed-top-br,
5663.x-nbr .x-panel-header-default-framed-top-tc,
5664.x-nbr .x-panel-header-default-framed-top-bc,
5665.x-nbr .x-panel-header-default-framed-top-ml,
5666.x-nbr .x-panel-header-default-framed-top-mr {
5667  zoom: 1;
5668  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-corners.gif'); }
5669/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5670.x-nbr .x-panel-header-default-framed-top-ml,
5671.x-nbr .x-panel-header-default-framed-top-mr {
5672  zoom: 1;
5673  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-sides.gif');
5674  background-position: 0 0; }
5675/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5676.x-nbr .x-panel-header-default-framed-top-mc {
5677  padding: 0px 2px 4px 2px; }
5678
5679/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5680.x-strict .x-ie7 .x-panel-header-default-framed-top-tl,
5681.x-strict .x-ie7 .x-panel-header-default-framed-top-bl {
5682  position: relative;
5683  right: 0; }
5684
5685/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5686.x-panel-header-default-framed-right {
5687  -moz-border-radius-topleft: 0;
5688  -webkit-border-top-left-radius: 0;
5689  -o-border-top-left-radius: 0;
5690  -ms-border-top-left-radius: 0;
5691  -khtml-border-top-left-radius: 0;
5692  border-top-left-radius: 0;
5693  -moz-border-radius-topright: 4px;
5694  -webkit-border-top-right-radius: 4px;
5695  -o-border-top-right-radius: 4px;
5696  -ms-border-top-right-radius: 4px;
5697  -khtml-border-top-right-radius: 4px;
5698  border-top-right-radius: 4px;
5699  -moz-border-radius-bottomright: 4px;
5700  -webkit-border-bottom-right-radius: 4px;
5701  -o-border-bottom-right-radius: 4px;
5702  -ms-border-bottom-right-radius: 4px;
5703  -khtml-border-bottom-right-radius: 4px;
5704  border-bottom-right-radius: 4px;
5705  -moz-border-radius-bottomleft: 0;
5706  -webkit-border-bottom-left-radius: 0;
5707  -o-border-bottom-left-radius: 0;
5708  -ms-border-bottom-left-radius: 0;
5709  -khtml-border-bottom-left-radius: 0;
5710  border-bottom-left-radius: 0;
5711  padding: 5px 4px 5px 4px;
5712  border-width: 1px 1px 1px 0;
5713  border-style: solid;
5714  background-image: none;
5715  background-color: #cbddf3;
5716  background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3));
5717  background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5718  background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5719  background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5720  background-image: -ms-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5721  background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); }
5722
5723/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5724.x-nlg .x-panel-header-default-framed-right-mc {
5725  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif');
5726  background-color: #cbddf3; }
5727
5728/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5729.x-nbr .x-panel-header-default-framed-right {
5730  padding: 0 !important;
5731  border-width: 0 !important;
5732  -moz-border-radius: 0px;
5733  -webkit-border-radius: 0px;
5734  -o-border-radius: 0px;
5735  -ms-border-radius: 0px;
5736  -khtml-border-radius: 0px;
5737  border-radius: 0px;
5738  background-color: transparent;
5739  background-position: 1000004px 1100400px; }
5740/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5741.x-nbr .x-panel-header-default-framed-right-tl,
5742.x-nbr .x-panel-header-default-framed-right-bl,
5743.x-nbr .x-panel-header-default-framed-right-tr,
5744.x-nbr .x-panel-header-default-framed-right-br,
5745.x-nbr .x-panel-header-default-framed-right-tc,
5746.x-nbr .x-panel-header-default-framed-right-bc,
5747.x-nbr .x-panel-header-default-framed-right-ml,
5748.x-nbr .x-panel-header-default-framed-right-mr {
5749  zoom: 1;
5750  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-corners.gif'); }
5751/* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5752.x-nbr .x-panel-header-default-framed-right-tc,
5753.x-nbr .x-panel-header-default-framed-right-bc {
5754  zoom: 1;
5755  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-sides.gif');
5756  background-position: 0 0;
5757  background-repeat: repeat-x; }
5758/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5759.x-nbr .x-panel-header-default-framed-right-mc {
5760  padding: 2px 1px 2px 4px; }
5761
5762/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5763.x-strict .x-ie7 .x-panel-header-default-framed-right-tl,
5764.x-strict .x-ie7 .x-panel-header-default-framed-right-bl {
5765  position: relative;
5766  right: 0; }
5767
5768/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5769.x-panel-header-default-framed-bottom {
5770  -moz-border-radius-topleft: 0;
5771  -webkit-border-top-left-radius: 0;
5772  -o-border-top-left-radius: 0;
5773  -ms-border-top-left-radius: 0;
5774  -khtml-border-top-left-radius: 0;
5775  border-top-left-radius: 0;
5776  -moz-border-radius-topright: 0;
5777  -webkit-border-top-right-radius: 0;
5778  -o-border-top-right-radius: 0;
5779  -ms-border-top-right-radius: 0;
5780  -khtml-border-top-right-radius: 0;
5781  border-top-right-radius: 0;
5782  -moz-border-radius-bottomright: 4px;
5783  -webkit-border-bottom-right-radius: 4px;
5784  -o-border-bottom-right-radius: 4px;
5785  -ms-border-bottom-right-radius: 4px;
5786  -khtml-border-bottom-right-radius: 4px;
5787  border-bottom-right-radius: 4px;
5788  -moz-border-radius-bottomleft: 4px;
5789  -webkit-border-bottom-left-radius: 4px;
5790  -o-border-bottom-left-radius: 4px;
5791  -ms-border-bottom-left-radius: 4px;
5792  -khtml-border-bottom-left-radius: 4px;
5793  border-bottom-left-radius: 4px;
5794  padding: 3px 5px 4px 5px;
5795  border-width: 0 1px 1px 1px;
5796  border-style: solid;
5797  background-image: none;
5798  background-color: #cbddf3;
5799  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3));
5800  background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5801  background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5802  background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5803  background-image: -ms-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5804  background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); }
5805
5806/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5807.x-nlg .x-panel-header-default-framed-bottom-mc {
5808  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif');
5809  background-color: #cbddf3; }
5810
5811/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5812.x-nbr .x-panel-header-default-framed-bottom {
5813  padding: 0 !important;
5814  border-width: 0 !important;
5815  -moz-border-radius: 0px;
5816  -webkit-border-radius: 0px;
5817  -o-border-radius: 0px;
5818  -ms-border-radius: 0px;
5819  -khtml-border-radius: 0px;
5820  border-radius: 0px;
5821  background-color: transparent;
5822  background-position: 1000000px 1000404px; }
5823/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5824.x-nbr .x-panel-header-default-framed-bottom-tl,
5825.x-nbr .x-panel-header-default-framed-bottom-bl,
5826.x-nbr .x-panel-header-default-framed-bottom-tr,
5827.x-nbr .x-panel-header-default-framed-bottom-br,
5828.x-nbr .x-panel-header-default-framed-bottom-tc,
5829.x-nbr .x-panel-header-default-framed-bottom-bc,
5830.x-nbr .x-panel-header-default-framed-bottom-ml,
5831.x-nbr .x-panel-header-default-framed-bottom-mr {
5832  zoom: 1;
5833  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-corners.gif'); }
5834/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5835.x-nbr .x-panel-header-default-framed-bottom-ml,
5836.x-nbr .x-panel-header-default-framed-bottom-mr {
5837  zoom: 1;
5838  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-sides.gif');
5839  background-position: 0 0; }
5840/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5841.x-nbr .x-panel-header-default-framed-bottom-mc {
5842  padding: 3px 2px 1px 2px; }
5843
5844/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5845.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl,
5846.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl {
5847  position: relative;
5848  right: 0; }
5849
5850/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5851.x-panel-header-default-framed-left {
5852  -moz-border-radius-topleft: 4px;
5853  -webkit-border-top-left-radius: 4px;
5854  -o-border-top-left-radius: 4px;
5855  -ms-border-top-left-radius: 4px;
5856  -khtml-border-top-left-radius: 4px;
5857  border-top-left-radius: 4px;
5858  -moz-border-radius-topright: 0;
5859  -webkit-border-top-right-radius: 0;
5860  -o-border-top-right-radius: 0;
5861  -ms-border-top-right-radius: 0;
5862  -khtml-border-top-right-radius: 0;
5863  border-top-right-radius: 0;
5864  -moz-border-radius-bottomright: 0;
5865  -webkit-border-bottom-right-radius: 0;
5866  -o-border-bottom-right-radius: 0;
5867  -ms-border-bottom-right-radius: 0;
5868  -khtml-border-bottom-right-radius: 0;
5869  border-bottom-right-radius: 0;
5870  -moz-border-radius-bottomleft: 4px;
5871  -webkit-border-bottom-left-radius: 4px;
5872  -o-border-bottom-left-radius: 4px;
5873  -ms-border-bottom-left-radius: 4px;
5874  -khtml-border-bottom-left-radius: 4px;
5875  border-bottom-left-radius: 4px;
5876  padding: 5px 4px 5px 4px;
5877  border-width: 1px 0 1px 1px;
5878  border-style: solid;
5879  background-image: none;
5880  background-color: #cbddf3;
5881  background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3));
5882  background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5883  background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5884  background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5885  background-image: -ms-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
5886  background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); }
5887
5888/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5889.x-nlg .x-panel-header-default-framed-left-mc {
5890  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif');
5891  background-color: #cbddf3; }
5892
5893/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5894.x-nbr .x-panel-header-default-framed-left {
5895  padding: 0 !important;
5896  border-width: 0 !important;
5897  -moz-border-radius: 0px;
5898  -webkit-border-radius: 0px;
5899  -o-border-radius: 0px;
5900  -ms-border-radius: 0px;
5901  -khtml-border-radius: 0px;
5902  border-radius: 0px;
5903  background-color: transparent;
5904  background-position: 1000400px 1100004px; }
5905/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5906.x-nbr .x-panel-header-default-framed-left-tl,
5907.x-nbr .x-panel-header-default-framed-left-bl,
5908.x-nbr .x-panel-header-default-framed-left-tr,
5909.x-nbr .x-panel-header-default-framed-left-br,
5910.x-nbr .x-panel-header-default-framed-left-tc,
5911.x-nbr .x-panel-header-default-framed-left-bc,
5912.x-nbr .x-panel-header-default-framed-left-ml,
5913.x-nbr .x-panel-header-default-framed-left-mr {
5914  zoom: 1;
5915  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-corners.gif'); }
5916/* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5917.x-nbr .x-panel-header-default-framed-left-tc,
5918.x-nbr .x-panel-header-default-framed-left-bc {
5919  zoom: 1;
5920  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-sides.gif');
5921  background-position: 0 0;
5922  background-repeat: repeat-x; }
5923/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5924.x-nbr .x-panel-header-default-framed-left-mc {
5925  padding: 2px 4px 2px 1px; }
5926
5927/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5928.x-strict .x-ie7 .x-panel-header-default-framed-left-tl,
5929.x-strict .x-ie7 .x-panel-header-default-framed-left-bl {
5930  position: relative;
5931  right: 0; }
5932
5933/* line 399, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5934.x-panel-header-default-framed-top {
5935  -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5936  -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5937  -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5938  box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
5939
5940/* line 403, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5941.x-panel-header-default-framed-right {
5942  -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
5943  -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
5944  -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
5945  box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset; }
5946
5947/* line 407, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5948.x-panel-header-default-framed-bottom {
5949  -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5950  -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5951  -o-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5952  box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
5953
5954/* line 411, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5955.x-panel-header-default-framed-left {
5956  -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5957  -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5958  -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
5959  box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
5960
5961/* line 452, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5962.x-panel .x-panel-header-default-framed-top {
5963  border-bottom-width: 1px !important; }
5964
5965/* line 456, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5966.x-panel .x-panel-header-default-framed-right {
5967  border-left-width: 1px !important; }
5968
5969/* line 460, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5970.x-panel .x-panel-header-default-framed-bottom {
5971  border-top-width: 1px !important; }
5972
5973/* line 464, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5974.x-panel .x-panel-header-default-framed-left {
5975  border-right-width: 1px !important; }
5976
5977/* line 468, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
5978.x-panel-header-default-framed-collapsed {
5979  -moz-border-radius: 4px;
5980  -webkit-border-radius: 4px;
5981  -o-border-radius: 4px;
5982  -ms-border-radius: 4px;
5983  -khtml-border-radius: 4px;
5984  border-radius: 4px; }
5985
5986/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
5987.x-panel-header-default-framed-collapsed-top {
5988  -moz-border-radius-topleft: 4px;
5989  -webkit-border-top-left-radius: 4px;
5990  -o-border-top-left-radius: 4px;
5991  -ms-border-top-left-radius: 4px;
5992  -khtml-border-top-left-radius: 4px;
5993  border-top-left-radius: 4px;
5994  -moz-border-radius-topright: 4px;
5995  -webkit-border-top-right-radius: 4px;
5996  -o-border-top-right-radius: 4px;
5997  -ms-border-top-right-radius: 4px;
5998  -khtml-border-top-right-radius: 4px;
5999  border-top-right-radius: 4px;
6000  -moz-border-radius-bottomright: 4px;
6001  -webkit-border-bottom-right-radius: 4px;
6002  -o-border-bottom-right-radius: 4px;
6003  -ms-border-bottom-right-radius: 4px;
6004  -khtml-border-bottom-right-radius: 4px;
6005  border-bottom-right-radius: 4px;
6006  -moz-border-radius-bottomleft: 4px;
6007  -webkit-border-bottom-left-radius: 4px;
6008  -o-border-bottom-left-radius: 4px;
6009  -ms-border-bottom-left-radius: 4px;
6010  -khtml-border-bottom-left-radius: 4px;
6011  border-bottom-left-radius: 4px;
6012  padding: 3px 5px 4px 5px;
6013  border-width: 1px;
6014  border-style: solid;
6015  background-image: none;
6016  background-color: #cbddf3;
6017  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3));
6018  background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6019  background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6020  background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6021  background-image: -ms-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6022  background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); }
6023
6024/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6025.x-nlg .x-panel-header-default-framed-collapsed-top-mc {
6026  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-bg.gif');
6027  background-color: #cbddf3; }
6028
6029/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6030.x-nbr .x-panel-header-default-framed-collapsed-top {
6031  padding: 0 !important;
6032  border-width: 0 !important;
6033  -moz-border-radius: 0px;
6034  -webkit-border-radius: 0px;
6035  -o-border-radius: 0px;
6036  -ms-border-radius: 0px;
6037  -khtml-border-radius: 0px;
6038  border-radius: 0px;
6039  background-color: transparent;
6040  background-position: 1000404px 1000404px; }
6041/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6042.x-nbr .x-panel-header-default-framed-collapsed-top-tl,
6043.x-nbr .x-panel-header-default-framed-collapsed-top-bl,
6044.x-nbr .x-panel-header-default-framed-collapsed-top-tr,
6045.x-nbr .x-panel-header-default-framed-collapsed-top-br,
6046.x-nbr .x-panel-header-default-framed-collapsed-top-tc,
6047.x-nbr .x-panel-header-default-framed-collapsed-top-bc,
6048.x-nbr .x-panel-header-default-framed-collapsed-top-ml,
6049.x-nbr .x-panel-header-default-framed-collapsed-top-mr {
6050  zoom: 1;
6051  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-corners.gif'); }
6052/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6053.x-nbr .x-panel-header-default-framed-collapsed-top-ml,
6054.x-nbr .x-panel-header-default-framed-collapsed-top-mr {
6055  zoom: 1;
6056  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-sides.gif');
6057  background-position: 0 0; }
6058/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6059.x-nbr .x-panel-header-default-framed-collapsed-top-mc {
6060  padding: 0px 2px 1px 2px; }
6061
6062/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6063.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl,
6064.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl {
6065  position: relative;
6066  right: 0; }
6067
6068/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6069.x-panel-header-default-framed-collapsed-right {
6070  -moz-border-radius-topleft: 4px;
6071  -webkit-border-top-left-radius: 4px;
6072  -o-border-top-left-radius: 4px;
6073  -ms-border-top-left-radius: 4px;
6074  -khtml-border-top-left-radius: 4px;
6075  border-top-left-radius: 4px;
6076  -moz-border-radius-topright: 4px;
6077  -webkit-border-top-right-radius: 4px;
6078  -o-border-top-right-radius: 4px;
6079  -ms-border-top-right-radius: 4px;
6080  -khtml-border-top-right-radius: 4px;
6081  border-top-right-radius: 4px;
6082  -moz-border-radius-bottomright: 4px;
6083  -webkit-border-bottom-right-radius: 4px;
6084  -o-border-bottom-right-radius: 4px;
6085  -ms-border-bottom-right-radius: 4px;
6086  -khtml-border-bottom-right-radius: 4px;
6087  border-bottom-right-radius: 4px;
6088  -moz-border-radius-bottomleft: 4px;
6089  -webkit-border-bottom-left-radius: 4px;
6090  -o-border-bottom-left-radius: 4px;
6091  -ms-border-bottom-left-radius: 4px;
6092  -khtml-border-bottom-left-radius: 4px;
6093  border-bottom-left-radius: 4px;
6094  padding: 5px 4px 5px 4px;
6095  border-width: 1px;
6096  border-style: solid;
6097  background-image: none;
6098  background-color: #cbddf3;
6099  background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3));
6100  background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6101  background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6102  background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6103  background-image: -ms-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6104  background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); }
6105
6106/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6107.x-nlg .x-panel-header-default-framed-collapsed-right-mc {
6108  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-bg.gif');
6109  background-color: #cbddf3; }
6110
6111/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6112.x-nbr .x-panel-header-default-framed-collapsed-right {
6113  padding: 0 !important;
6114  border-width: 0 !important;
6115  -moz-border-radius: 0px;
6116  -webkit-border-radius: 0px;
6117  -o-border-radius: 0px;
6118  -ms-border-radius: 0px;
6119  -khtml-border-radius: 0px;
6120  border-radius: 0px;
6121  background-color: transparent;
6122  background-position: 1000404px 1100404px; }
6123/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6124.x-nbr .x-panel-header-default-framed-collapsed-right-tl,
6125.x-nbr .x-panel-header-default-framed-collapsed-right-bl,
6126.x-nbr .x-panel-header-default-framed-collapsed-right-tr,
6127.x-nbr .x-panel-header-default-framed-collapsed-right-br,
6128.x-nbr .x-panel-header-default-framed-collapsed-right-tc,
6129.x-nbr .x-panel-header-default-framed-collapsed-right-bc,
6130.x-nbr .x-panel-header-default-framed-collapsed-right-ml,
6131.x-nbr .x-panel-header-default-framed-collapsed-right-mr {
6132  zoom: 1;
6133  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-corners.gif'); }
6134/* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6135.x-nbr .x-panel-header-default-framed-collapsed-right-tc,
6136.x-nbr .x-panel-header-default-framed-collapsed-right-bc {
6137  zoom: 1;
6138  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-sides.gif');
6139  background-position: 0 0;
6140  background-repeat: repeat-x; }
6141/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6142.x-nbr .x-panel-header-default-framed-collapsed-right-mc {
6143  padding: 2px 1px 2px 1px; }
6144
6145/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6146.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl,
6147.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl {
6148  position: relative;
6149  right: 0; }
6150
6151/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6152.x-panel-header-default-framed-collapsed-bottom {
6153  -moz-border-radius-topleft: 4px;
6154  -webkit-border-top-left-radius: 4px;
6155  -o-border-top-left-radius: 4px;
6156  -ms-border-top-left-radius: 4px;
6157  -khtml-border-top-left-radius: 4px;
6158  border-top-left-radius: 4px;
6159  -moz-border-radius-topright: 4px;
6160  -webkit-border-top-right-radius: 4px;
6161  -o-border-top-right-radius: 4px;
6162  -ms-border-top-right-radius: 4px;
6163  -khtml-border-top-right-radius: 4px;
6164  border-top-right-radius: 4px;
6165  -moz-border-radius-bottomright: 4px;
6166  -webkit-border-bottom-right-radius: 4px;
6167  -o-border-bottom-right-radius: 4px;
6168  -ms-border-bottom-right-radius: 4px;
6169  -khtml-border-bottom-right-radius: 4px;
6170  border-bottom-right-radius: 4px;
6171  -moz-border-radius-bottomleft: 4px;
6172  -webkit-border-bottom-left-radius: 4px;
6173  -o-border-bottom-left-radius: 4px;
6174  -ms-border-bottom-left-radius: 4px;
6175  -khtml-border-bottom-left-radius: 4px;
6176  border-bottom-left-radius: 4px;
6177  padding: 3px 5px 4px 5px;
6178  border-width: 1px;
6179  border-style: solid;
6180  background-image: none;
6181  background-color: #cbddf3;
6182  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3));
6183  background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6184  background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6185  background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6186  background-image: -ms-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6187  background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); }
6188
6189/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6190.x-nlg .x-panel-header-default-framed-collapsed-bottom-mc {
6191  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif');
6192  background-color: #cbddf3; }
6193
6194/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6195.x-nbr .x-panel-header-default-framed-collapsed-bottom {
6196  padding: 0 !important;
6197  border-width: 0 !important;
6198  -moz-border-radius: 0px;
6199  -webkit-border-radius: 0px;
6200  -o-border-radius: 0px;
6201  -ms-border-radius: 0px;
6202  -khtml-border-radius: 0px;
6203  border-radius: 0px;
6204  background-color: transparent;
6205  background-position: 1000404px 1000404px; }
6206/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6207.x-nbr .x-panel-header-default-framed-collapsed-bottom-tl,
6208.x-nbr .x-panel-header-default-framed-collapsed-bottom-bl,
6209.x-nbr .x-panel-header-default-framed-collapsed-bottom-tr,
6210.x-nbr .x-panel-header-default-framed-collapsed-bottom-br,
6211.x-nbr .x-panel-header-default-framed-collapsed-bottom-tc,
6212.x-nbr .x-panel-header-default-framed-collapsed-bottom-bc,
6213.x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,
6214.x-nbr .x-panel-header-default-framed-collapsed-bottom-mr {
6215  zoom: 1;
6216  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif'); }
6217/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6218.x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,
6219.x-nbr .x-panel-header-default-framed-collapsed-bottom-mr {
6220  zoom: 1;
6221  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif');
6222  background-position: 0 0; }
6223/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6224.x-nbr .x-panel-header-default-framed-collapsed-bottom-mc {
6225  padding: 0px 2px 1px 2px; }
6226
6227/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6228.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl,
6229.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl {
6230  position: relative;
6231  right: 0; }
6232
6233/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6234.x-panel-header-default-framed-collapsed-left {
6235  -moz-border-radius-topleft: 4px;
6236  -webkit-border-top-left-radius: 4px;
6237  -o-border-top-left-radius: 4px;
6238  -ms-border-top-left-radius: 4px;
6239  -khtml-border-top-left-radius: 4px;
6240  border-top-left-radius: 4px;
6241  -moz-border-radius-topright: 4px;
6242  -webkit-border-top-right-radius: 4px;
6243  -o-border-top-right-radius: 4px;
6244  -ms-border-top-right-radius: 4px;
6245  -khtml-border-top-right-radius: 4px;
6246  border-top-right-radius: 4px;
6247  -moz-border-radius-bottomright: 4px;
6248  -webkit-border-bottom-right-radius: 4px;
6249  -o-border-bottom-right-radius: 4px;
6250  -ms-border-bottom-right-radius: 4px;
6251  -khtml-border-bottom-right-radius: 4px;
6252  border-bottom-right-radius: 4px;
6253  -moz-border-radius-bottomleft: 4px;
6254  -webkit-border-bottom-left-radius: 4px;
6255  -o-border-bottom-left-radius: 4px;
6256  -ms-border-bottom-left-radius: 4px;
6257  -khtml-border-bottom-left-radius: 4px;
6258  border-bottom-left-radius: 4px;
6259  padding: 5px 4px 5px 4px;
6260  border-width: 1px;
6261  border-style: solid;
6262  background-image: none;
6263  background-color: #cbddf3;
6264  background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3));
6265  background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6266  background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6267  background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6268  background-image: -ms-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3);
6269  background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); }
6270
6271/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6272.x-nlg .x-panel-header-default-framed-collapsed-left-mc {
6273  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-bg.gif');
6274  background-color: #cbddf3; }
6275
6276/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6277.x-nbr .x-panel-header-default-framed-collapsed-left {
6278  padding: 0 !important;
6279  border-width: 0 !important;
6280  -moz-border-radius: 0px;
6281  -webkit-border-radius: 0px;
6282  -o-border-radius: 0px;
6283  -ms-border-radius: 0px;
6284  -khtml-border-radius: 0px;
6285  border-radius: 0px;
6286  background-color: transparent;
6287  background-position: 1000404px 1100404px; }
6288/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6289.x-nbr .x-panel-header-default-framed-collapsed-left-tl,
6290.x-nbr .x-panel-header-default-framed-collapsed-left-bl,
6291.x-nbr .x-panel-header-default-framed-collapsed-left-tr,
6292.x-nbr .x-panel-header-default-framed-collapsed-left-br,
6293.x-nbr .x-panel-header-default-framed-collapsed-left-tc,
6294.x-nbr .x-panel-header-default-framed-collapsed-left-bc,
6295.x-nbr .x-panel-header-default-framed-collapsed-left-ml,
6296.x-nbr .x-panel-header-default-framed-collapsed-left-mr {
6297  zoom: 1;
6298  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-corners.gif'); }
6299/* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6300.x-nbr .x-panel-header-default-framed-collapsed-left-tc,
6301.x-nbr .x-panel-header-default-framed-collapsed-left-bc {
6302  zoom: 1;
6303  background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-sides.gif');
6304  background-position: 0 0;
6305  background-repeat: repeat-x; }
6306/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6307.x-nbr .x-panel-header-default-framed-collapsed-left-mc {
6308  padding: 2px 1px 2px 1px; }
6309
6310/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6311.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl,
6312.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl {
6313  position: relative;
6314  right: 0; }
6315
6316/* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
6317.x-panel-header-default-framed-right-tc,
6318.x-panel-header-default-framed-right-mc,
6319.x-panel-header-default-framed-right-bc {
6320  background-position: right 0; }
6321
6322/* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
6323.x-panel-header-default-framed-bottom-tc,
6324.x-panel-header-default-framed-bottom-mc,
6325.x-panel-header-default-framed-bottom-bc {
6326  background-position: 0 bottom; }
6327
6328/* line 197, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
6329.x-panel-header-plain,
6330.x-panel-body-plain {
6331  border: 0;
6332  padding: 0; }
6333
6334/* line 6, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6335.x-tip {
6336  position: absolute;
6337  overflow: visible;
6338  /*pointer needs to be able to stick out*/
6339  border-color: #8eaace; }
6340  /* line 12, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6341  .x-tip .x-tip-header .x-box-item {
6342    padding: 3px 3px 0; }
6343  /* line 16, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6344  .x-tip .x-tip-header .x-tool {
6345    padding: 0px 1px 0 0 !important; }
6346
6347/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6348.x-tip {
6349  -moz-border-radius: 3px;
6350  -webkit-border-radius: 3px;
6351  -o-border-radius: 3px;
6352  -ms-border-radius: 3px;
6353  -khtml-border-radius: 3px;
6354  border-radius: 3px;
6355  padding: 2px 2px 2px 2px;
6356  border-width: 1px;
6357  border-style: solid;
6358  background-color: #e9f2ff; }
6359
6360/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6361.x-nlg .x-tip-mc {
6362  background-color: #e9f2ff; }
6363
6364/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6365.x-nbr .x-tip {
6366  padding: 0 !important;
6367  border-width: 0 !important;
6368  -moz-border-radius: 0px;
6369  -webkit-border-radius: 0px;
6370  -o-border-radius: 0px;
6371  -ms-border-radius: 0px;
6372  -khtml-border-radius: 0px;
6373  border-radius: 0px;
6374  background-color: transparent;
6375  background-position: 1100303px 1000303px; }
6376/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6377.x-nbr .x-tip-tl,
6378.x-nbr .x-tip-bl,
6379.x-nbr .x-tip-tr,
6380.x-nbr .x-tip-br,
6381.x-nbr .x-tip-tc,
6382.x-nbr .x-tip-bc,
6383.x-nbr .x-tip-ml,
6384.x-nbr .x-tip-mr {
6385  zoom: 1;
6386  background-image: url('../../resources/themes/images/default/tip/tip-corners.gif'); }
6387/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6388.x-nbr .x-tip-ml,
6389.x-nbr .x-tip-mr {
6390  zoom: 1;
6391  background-image: url('../../resources/themes/images/default/tip/tip-sides.gif');
6392  background-position: 0 0;
6393  background-repeat: repeat-y; }
6394/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6395.x-nbr .x-tip-mc {
6396  padding: 0px 0px 0px 0px; }
6397
6398/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6399.x-strict .x-ie7 .x-tip-tl,
6400.x-strict .x-ie7 .x-tip-bl {
6401  position: relative;
6402  right: 0; }
6403
6404/* line 31, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6405.x-tip-header-text {
6406  user-select: none;
6407  -o-user-select: none;
6408  -ms-user-select: none;
6409  -moz-user-select: -moz-none;
6410  -webkit-user-select: none;
6411  cursor: default;
6412  color: #444444;
6413  font-size: 11px;
6414  font-weight: bold; }
6415
6416/* line 40, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6417.x-tip-header-draggable .x-tip-header-text {
6418  cursor: move; }
6419
6420/* line 47, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6421.x-tip-body,
6422.x-form-invalid-tip-body {
6423  overflow: hidden;
6424  position: relative;
6425  padding: 3px; }
6426
6427/* line 55, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6428.x-tip-header,
6429.x-tip-body,
6430.x-form-invalid-tip-body {
6431  color: #444444;
6432  font-size: 11px;
6433  font-weight: normal; }
6434  /* line 59, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6435  .x-tip-header a,
6436  .x-tip-body a,
6437  .x-form-invalid-tip-body a {
6438    color: #2a2a2a; }
6439
6440/* line 64, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6441.x-tip-anchor {
6442  position: absolute;
6443  overflow: hidden;
6444  height: 0;
6445  width: 0;
6446  border-style: solid;
6447  border-width: 5px;
6448  border-color: #8eaace;
6449  zoom: 1; }
6450
6451/* line 79, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6452.x-border-box .x-tip-anchor {
6453  width: 10px;
6454  height: 10px; }
6455
6456/* line 84, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6457.x-tip-anchor-top {
6458  border-top-color: transparent;
6459  border-left-color: transparent;
6460  border-right-color: transparent;
6461  _border-top-color: pink;
6462  _border-left-color: pink;
6463  _border-right-color: pink;
6464  _filter: chroma(color=pink); }
6465
6466/* line 97, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6467.x-tip-anchor-bottom {
6468  border-bottom-color: transparent;
6469  border-left-color: transparent;
6470  border-right-color: transparent;
6471  _border-bottom-color: pink;
6472  _border-left-color: pink;
6473  _border-right-color: pink;
6474  _filter: chroma(color=pink); }
6475
6476/* line 110, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6477.x-tip-anchor-left {
6478  border-top-color: transparent;
6479  border-bottom-color: transparent;
6480  border-left-color: transparent;
6481  _border-top-color: pink;
6482  _border-bottom-color: pink;
6483  _border-left-color: pink;
6484  _filter: chroma(color=pink); }
6485
6486/* line 123, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6487.x-tip-anchor-right {
6488  border-top-color: transparent;
6489  border-bottom-color: transparent;
6490  border-right-color: transparent;
6491  _border-top-color: pink;
6492  _border-bottom-color: pink;
6493  _border-right-color: pink;
6494  _filter: chroma(color=pink); }
6495
6496/* line 137, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6497.x-form-invalid-tip {
6498  border-color: #a1311f;
6499  -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;
6500  -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;
6501  -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;
6502  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; }
6503
6504/* line 146, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6505.x-form-invalid-tip-body {
6506  background: 1px 1px no-repeat;
6507  background-image: url('../../resources/themes/images/default/form/exclamation.gif');
6508  padding-left: 22px; }
6509  /* line 151, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6510  .x-form-invalid-tip-body li {
6511    margin-bottom: 4px; }
6512    /* line 153, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
6513    .x-form-invalid-tip-body li.last {
6514      margin-bottom: 0; }
6515
6516/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6517.x-form-invalid-tip-default {
6518  -moz-border-radius: 5px;
6519  -webkit-border-radius: 5px;
6520  -o-border-radius: 5px;
6521  -ms-border-radius: 5px;
6522  -khtml-border-radius: 5px;
6523  border-radius: 5px;
6524  padding: 4px 4px 4px 4px;
6525  border-width: 1px;
6526  border-style: solid;
6527  background-color: white; }
6528
6529/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6530.x-nlg .x-form-invalid-tip-default-mc {
6531  background-color: white; }
6532
6533/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6534.x-nbr .x-form-invalid-tip-default {
6535  padding: 0 !important;
6536  border-width: 0 !important;
6537  -moz-border-radius: 0px;
6538  -webkit-border-radius: 0px;
6539  -o-border-radius: 0px;
6540  -ms-border-radius: 0px;
6541  -khtml-border-radius: 0px;
6542  border-radius: 0px;
6543  background-color: transparent;
6544  background-position: 1100505px 1000505px; }
6545/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6546.x-nbr .x-form-invalid-tip-default-tl,
6547.x-nbr .x-form-invalid-tip-default-bl,
6548.x-nbr .x-form-invalid-tip-default-tr,
6549.x-nbr .x-form-invalid-tip-default-br,
6550.x-nbr .x-form-invalid-tip-default-tc,
6551.x-nbr .x-form-invalid-tip-default-bc,
6552.x-nbr .x-form-invalid-tip-default-ml,
6553.x-nbr .x-form-invalid-tip-default-mr {
6554  zoom: 1;
6555  background-image: url('../../resources/themes/images/default/form-invalid-tip/form-invalid-tip-default-corners.gif'); }
6556/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6557.x-nbr .x-form-invalid-tip-default-ml,
6558.x-nbr .x-form-invalid-tip-default-mr {
6559  zoom: 1;
6560  background-image: url('../../resources/themes/images/default/form-invalid-tip/form-invalid-tip-default-sides.gif');
6561  background-position: 0 0;
6562  background-repeat: repeat-y; }
6563/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6564.x-nbr .x-form-invalid-tip-default-mc {
6565  padding: 0px 0px 0px 0px; }
6566
6567/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
6568.x-strict .x-ie7 .x-form-invalid-tip-default-tl,
6569.x-strict .x-ie7 .x-form-invalid-tip-default-bl {
6570  position: relative;
6571  right: 0; }
6572
6573/* line 6, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6574.x-slider {
6575  zoom: 1; }
6576
6577/* line 10, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6578.x-slider-inner {
6579  position: relative;
6580  left: 0;
6581  top: 0;
6582  overflow: visible;
6583  zoom: 1; }
6584
6585/* line 18, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6586.x-slider-focus {
6587  position: absolute;
6588  left: 0;
6589  top: 0;
6590  width: 1px;
6591  height: 1px;
6592  line-height: 1px;
6593  font-size: 1px;
6594  -moz-outline: 0 none;
6595  outline: 0 none;
6596  user-select: none;
6597  -o-user-select: none;
6598  -ms-user-select: none;
6599  -moz-user-select: -moz-none;
6600  -webkit-user-select: none;
6601  cursor: default;
6602  display: block;
6603  overflow: hidden; }
6604
6605/* Horizontal styles */
6606/* line 34, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6607.x-slider-horz {
6608  padding-left: 7px;
6609  background: transparent no-repeat 0 -24px;
6610  width: 100%; }
6611
6612/* line 40, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6613.x-slider-horz .x-slider-end {
6614  padding-right: 7px;
6615  zoom: 1;
6616  background: transparent no-repeat right -46px; }
6617
6618/* line 46, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6619.x-slider-horz .x-slider-inner {
6620  background: transparent repeat-x 0 -2px;
6621  height: 18px; }
6622
6623/* line 51, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6624.x-slider-horz .x-slider-thumb {
6625  width: 14px;
6626  height: 15px;
6627  margin-left: -7px;
6628  position: absolute;
6629  left: 0;
6630  top: 1px;
6631  background: transparent no-repeat 0 0; }
6632
6633/* line 61, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6634.x-slider-horz .x-slider-thumb-over {
6635  background-position: -14px -15px; }
6636
6637/* line 65, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6638.x-slider-horz .x-slider-thumb-drag {
6639  background-position: -28px -30px; }
6640
6641/* Vertical styles */
6642/* line 70, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6643.x-slider-vert {
6644  padding-top: 7px;
6645  background: transparent no-repeat -44px 0; }
6646
6647/* line 75, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6648.x-slider-vert .x-slider-end {
6649  padding-bottom: 7px;
6650  zoom: 1;
6651  background: transparent no-repeat -22px bottom;
6652  width: 22px; }
6653
6654/* line 82, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6655.x-slider-vert .x-slider-inner {
6656  background: transparent repeat-y 0 0;
6657  width: 22px; }
6658
6659/* line 87, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6660.x-slider-vert .x-slider-thumb {
6661  width: 15px;
6662  height: 14px;
6663  margin-bottom: -7px;
6664  position: absolute;
6665  left: 3px;
6666  bottom: 0;
6667  background: transparent no-repeat 0 0; }
6668
6669/* line 97, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6670.x-slider-vert .x-slider-thumb-over {
6671  background-position: -15px -14px; }
6672
6673/* line 101, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6674.x-slider-vert .x-slider-thumb-drag {
6675  background-position: -30px -28px; }
6676
6677/* line 107, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6678.x-slider-horz,
6679.x-slider-horz .x-slider-end,
6680.x-slider-horz .x-slider-inner {
6681  background-image: url('../../resources/themes/images/default/slider/slider-bg.png'); }
6682
6683/* line 111, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6684.x-slider-horz .x-slider-thumb {
6685  background-image: url('../../resources/themes/images/default/slider/slider-thumb.png'); }
6686
6687/* line 117, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6688.x-slider-vert,
6689.x-slider-vert .x-slider-end,
6690.x-slider-vert .x-slider-inner {
6691  background-image: url('../../resources/themes/images/default/slider/slider-v-bg.png'); }
6692
6693/* line 121, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6694.x-slider-vert .x-slider-thumb {
6695  background-image: url('../../resources/themes/images/default/slider/slider-v-thumb.png'); }
6696
6697/* line 129, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6698.x-ie6 .x-slider-horz,
6699.x-ie6 .x-slider-horz .x-slider-end,
6700.x-ie6 .x-slider-horz .x-slider-inner {
6701  background-image: url('../../resources/themes/images/default/slider/slider-bg.gif'); }
6702/* line 133, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6703.x-ie6 .x-slider-horz .x-slider-thumb {
6704  background-image: url('../../resources/themes/images/default/slider/slider-thumb.gif'); }
6705/* line 139, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6706.x-ie6 .x-slider-vert,
6707.x-ie6 .x-slider-vert .x-slider-end,
6708.x-ie6 .x-slider-vert .x-slider-inner {
6709  background-image: url('../../resources/themes/images/default/slider/slider-v-bg.gif'); }
6710/* line 143, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
6711.x-ie6 .x-slider-vert .x-slider-thumb {
6712  background-image: url('../../resources/themes/images/default/slider/slider-v-thumb.gif'); }
6713
6714/* line 6, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
6715.x-progress {
6716  position: relative;
6717  border-width: 1px;
6718  border-style: solid;
6719  -moz-border-radius: 0;
6720  -webkit-border-radius: 0;
6721  -o-border-radius: 0;
6722  -ms-border-radius: 0;
6723  -khtml-border-radius: 0;
6724  border-radius: 0;
6725  overflow: hidden;
6726  height: 20px; }
6727
6728/* line 17, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
6729.x-progress-bar {
6730  height: 18px;
6731  overflow: hidden;
6732  position: absolute;
6733  width: 0;
6734  -moz-border-radius: 0;
6735  -webkit-border-radius: 0;
6736  -o-border-radius: 0;
6737  -ms-border-radius: 0;
6738  -khtml-border-radius: 0;
6739  border-radius: 0;
6740  border-right: 1px solid;
6741  border-top: 1px solid; }
6742
6743/* line 30, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
6744.x-progress-text {
6745  overflow: hidden;
6746  position: absolute;
6747  padding: 0 5px;
6748  height: 18px;
6749  font-weight: bold;
6750  font-size: 11px;
6751  line-height: 16px;
6752  text-align: center; }
6753
6754/* line 45, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
6755.x-progress-text-back {
6756  padding-top: 1px; }
6757
6758/* line 50, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
6759.x-strict .x-ie7m .x-progress {
6760  height: 18px; }
6761
6762/* line 93, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
6763.x-progress-default {
6764  border-color: #6594cf; }
6765  /* line 96, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
6766  .x-progress-default .x-progress-bar {
6767    border-right-color: #6594cf;
6768    border-top-color: #c6d8ed;
6769    background-image: none;
6770    background-color: #73a3e0;
6771    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));
6772    background-image: -webkit-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
6773    background-image: -moz-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
6774    background-image: -o-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
6775    background-image: -ms-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
6776    background-image: linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); }
6777  /* line 103, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
6778  .x-progress-default .x-progress-text {
6779    color: white; }
6780  /* line 107, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
6781  .x-progress-default .x-progress-text-back {
6782    color: #396295; }
6783
6784/* line 116, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
6785.x-nlg .x-progress-default .x-progress-bar {
6786  background: repeat-x;
6787  background-image: url('../../resources/themes/images/default/progress/progress-default-bg.gif'); }
6788
6789/* line 6, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6790.x-toolbar {
6791  font-size: 11px;
6792  border: 1px solid;
6793  padding: 2px 0 2px 2px; }
6794  /* line 13, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6795  .x-toolbar .x-form-item-label {
6796    font-size: 11px;
6797    line-height: 15px; }
6798  /* line 18, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6799  .x-toolbar .x-toolbar-item {
6800    margin: 0 2px 0 0; }
6801  /* line 22, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6802  .x-toolbar .x-toolbar-text {
6803    margin-left: 4px;
6804    margin-right: 6px;
6805    white-space: nowrap;
6806    color: #4c4c4c;
6807    line-height: 16px;
6808    font-family: tahoma, arial, verdana, sans-serif;
6809    font-size: 11px;
6810    font-weight: normal; }
6811  /* line 33, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6812  .x-toolbar .x-toolbar-separator {
6813    display: block;
6814    font-size: 1px;
6815    overflow: hidden;
6816    cursor: default;
6817    border: 0; }
6818  /* line 41, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6819  .x-toolbar .x-toolbar-separator-horizontal {
6820    margin: 0 3px 0 2px;
6821    height: 14px;
6822    width: 0px;
6823    border-left: 1px solid #98c8ff;
6824    border-right: 1px solid white; }
6825
6826/* line 53, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6827.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal {
6828  width: 2px; }
6829
6830/* line 58, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6831.x-toolbar-footer {
6832  background: transparent;
6833  border: 0px none;
6834  margin-top: 3px;
6835  padding: 2px 0 2px 6px; }
6836  /* line 65, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6837  .x-toolbar-footer .x-box-inner {
6838    border-width: 0; }
6839  /* line 69, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6840  .x-toolbar-footer .x-toolbar-item {
6841    margin: 0 6px 0 0; }
6842
6843/* line 74, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6844.x-toolbar-vertical {
6845  padding: 2px 2px 0 2px; }
6846  /* line 77, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6847  .x-toolbar-vertical .x-toolbar-item {
6848    margin: 0 0 2px 0; }
6849  /* line 81, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6850  .x-toolbar-vertical .x-toolbar-text {
6851    margin-top: 4px;
6852    margin-bottom: 6px; }
6853  /* line 86, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6854  .x-toolbar-vertical .x-toolbar-separator-vertical {
6855    margin: 2px 5px 3px 5px;
6856    height: 0px;
6857    width: 10px;
6858    line-height: 0px;
6859    border-top: 1px solid #98c8ff;
6860    border-bottom: 1px solid white; }
6861
6862/* line 98, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6863.x-toolbar-scroller {
6864  padding-left: 0; }
6865
6866/* line 102, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6867.x-toolbar-spacer {
6868  width: 2px; }
6869
6870/* line 107, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6871.x-toolbar-more-icon {
6872  background-image: url('../../resources/themes/images/default/toolbar/more.gif') !important;
6873  background-position: 2px center !important;
6874  background-repeat: no-repeat; }
6875
6876/* line 144, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6877.x-toolbar-default {
6878  border-color: #99bce8;
6879  background-image: none;
6880  background-color: #d3e1f1;
6881  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfe9f5), color-stop(100%, #d3e1f1));
6882  background-image: -webkit-linear-gradient(top, #dfe9f5, #d3e1f1);
6883  background-image: -moz-linear-gradient(top, #dfe9f5, #d3e1f1);
6884  background-image: -o-linear-gradient(top, #dfe9f5, #d3e1f1);
6885  background-image: -ms-linear-gradient(top, #dfe9f5, #d3e1f1);
6886  background-image: linear-gradient(top, #dfe9f5, #d3e1f1); }
6887
6888/* line 155, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6889.x-nlg .x-toolbar-default {
6890  background-image: url('../../resources/themes/images/default/toolbar/toolbar-default-bg.gif') !important;
6891  background-repeat: repeat-x; }
6892
6893/* line 123, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
6894.x-toolbar-plain {
6895  border: 0; }
6896
6897/* line 6, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6898.x-window {
6899  outline: none;
6900  overflow: hidden; }
6901  /* line 10, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6902  .x-window .x-window-wrap {
6903    position: relative; }
6904
6905/* line 15, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6906.x-window-body {
6907  position: relative;
6908  border-style: solid;
6909  overflow: hidden; }
6910
6911/* line 24, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6912.x-window-maximized .x-window-wrap .x-window-header {
6913  -moz-border-radius: 0 !important;
6914  -webkit-border-radius: 0 !important;
6915  -o-border-radius: 0 !important;
6916  -ms-border-radius: 0 !important;
6917  -khtml-border-radius: 0 !important;
6918  border-radius: 0 !important; }
6919
6920/* line 30, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6921.x-window-header-top {
6922  margin-bottom: -2px; }
6923
6924/* line 33, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6925.x-window-header-body-horizontal {
6926  margin-top: -1px; }
6927
6928/* line 37, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6929.x-window-header-bottom {
6930  margin-top: -1px;
6931  margin-bottom: -1px; }
6932
6933/* line 42, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6934.x-window-header-left {
6935  margin-right: -1px; }
6936
6937/* line 46, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6938.x-window-header-right {
6939  margin-left: -1px; }
6940
6941/* line 51, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6942.x-window-header-vertical .x-surface {
6943  padding-left: 1px; }
6944
6945/* line 58, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6946.x-window-collapsed .x-window-header-vertical {
6947  -moz-border-radius: 5px;
6948  -webkit-border-radius: 5px;
6949  -o-border-radius: 5px;
6950  -ms-border-radius: 5px;
6951  -khtml-border-radius: 5px;
6952  border-radius: 5px; }
6953/* line 61, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6954.x-window-collapsed .x-window-header-horizontal {
6955  -moz-border-radius: 5px;
6956  -webkit-border-radius: 5px;
6957  -o-border-radius: 5px;
6958  -ms-border-radius: 5px;
6959  -khtml-border-radius: 5px;
6960  border-radius: 5px; }
6961/* line 66, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6962.x-window-collapsed .x-window-header-left {
6963  padding-right: 5px !important;
6964  margin-right: 0; }
6965/* line 71, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6966.x-window-collapsed .x-window-header-right {
6967  padding-left: 5px !important;
6968  margin-left: 0; }
6969/* line 76, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6970.x-window-collapsed .x-window-header-top {
6971  padding-bottom: 5px !important;
6972  margin-bottom: -1px; }
6973/* line 81, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6974.x-window-collapsed .x-window-header-bottom {
6975  padding-top: 5px !important;
6976  margin-top: 0; }
6977
6978/* line 89, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6979.x-window-header-left .x-vml-base,
6980.x-window-header-right .x-vml-base {
6981  left: -3px !important; }
6982
6983/* line 97, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6984.x-opera .x-window-header-vertical .x-surface,
6985.x-strict .x-ie9 .x-window-header-vertical .x-surface {
6986  padding-left: 2px; }
6987
6988/* line 103, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6989.x-window-header-text-container {
6990  overflow: hidden;
6991  -o-text-overflow: ellipsis;
6992  text-overflow: ellipsis; }
6993
6994/* line 109, ../themes/stylesheets/ext4/default/widgets/_window.scss */
6995.x-window-header-text {
6996  user-select: none;
6997  -o-user-select: none;
6998  -ms-user-select: none;
6999  -moz-user-select: -moz-none;
7000  -webkit-user-select: none;
7001  cursor: default;
7002  white-space: nowrap; }
7003
7004/* line 159, ../themes/stylesheets/ext4/default/widgets/_window.scss */
7005.x-window-default {
7006  border-color: #a2b1c5;
7007  -moz-border-radius: 5px 5px;
7008  -webkit-border-radius: 5px 5px;
7009  -o-border-radius: 5px 5px;
7010  -ms-border-radius: 5px 5px;
7011  -khtml-border-radius: 5px 5px;
7012  border-radius: 5px 5px;
7013  -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;
7014  -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;
7015  -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;
7016  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; }
7017
7018/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7019.x-window-default {
7020  -moz-border-radius-topleft: 5px;
7021  -webkit-border-top-left-radius: 5px;
7022  -o-border-top-left-radius: 5px;
7023  -ms-border-top-left-radius: 5px;
7024  -khtml-border-top-left-radius: 5px;
7025  border-top-left-radius: 5px;
7026  -moz-border-radius-topright: 5px;
7027  -webkit-border-top-right-radius: 5px;
7028  -o-border-top-right-radius: 5px;
7029  -ms-border-top-right-radius: 5px;
7030  -khtml-border-top-right-radius: 5px;
7031  border-top-right-radius: 5px;
7032  -moz-border-radius-bottomright: 5px;
7033  -webkit-border-bottom-right-radius: 5px;
7034  -o-border-bottom-right-radius: 5px;
7035  -ms-border-bottom-right-radius: 5px;
7036  -khtml-border-bottom-right-radius: 5px;
7037  border-bottom-right-radius: 5px;
7038  -moz-border-radius-bottomleft: 5px;
7039  -webkit-border-bottom-left-radius: 5px;
7040  -o-border-bottom-left-radius: 5px;
7041  -ms-border-bottom-left-radius: 5px;
7042  -khtml-border-bottom-left-radius: 5px;
7043  border-bottom-left-radius: 5px;
7044  padding: 4px 4px 4px 4px;
7045  border-width: 1px;
7046  border-style: solid;
7047  background-color: #ced9e7; }
7048
7049/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7050.x-nlg .x-window-default-mc {
7051  background-color: #ced9e7; }
7052
7053/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7054.x-nbr .x-window-default {
7055  padding: 0 !important;
7056  border-width: 0 !important;
7057  -moz-border-radius: 0px;
7058  -webkit-border-radius: 0px;
7059  -o-border-radius: 0px;
7060  -ms-border-radius: 0px;
7061  -khtml-border-radius: 0px;
7062  border-radius: 0px;
7063  background-color: transparent;
7064  background-position: 1000505px 1000505px; }
7065/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7066.x-nbr .x-window-default-tl,
7067.x-nbr .x-window-default-bl,
7068.x-nbr .x-window-default-tr,
7069.x-nbr .x-window-default-br,
7070.x-nbr .x-window-default-tc,
7071.x-nbr .x-window-default-bc,
7072.x-nbr .x-window-default-ml,
7073.x-nbr .x-window-default-mr {
7074  zoom: 1;
7075  background-image: url('../../resources/themes/images/default/window/window-default-corners.gif'); }
7076/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7077.x-nbr .x-window-default-ml,
7078.x-nbr .x-window-default-mr {
7079  zoom: 1;
7080  background-image: url('../../resources/themes/images/default/window/window-default-sides.gif');
7081  background-position: 0 0;
7082  background-repeat: repeat-y; }
7083/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7084.x-nbr .x-window-default-mc {
7085  padding: 0px 0px 0px 0px; }
7086
7087/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7088.x-strict .x-ie7 .x-window-default-tl,
7089.x-strict .x-ie7 .x-window-default-bl {
7090  position: relative;
7091  right: 0; }
7092
7093/* line 178, ../themes/stylesheets/ext4/default/widgets/_window.scss */
7094.x-window-body-default {
7095  border-color: #99bbe8;
7096  border-width: 1px;
7097  background: #dfe8f6;
7098  color: black; }
7099
7100/* line 188, ../themes/stylesheets/ext4/default/widgets/_window.scss */
7101.x-window-header-default {
7102  font-size: 11px;
7103  border-color: #a2b1c5;
7104  zoom: 1; }
7105
7106/* line 194, ../themes/stylesheets/ext4/default/widgets/_window.scss */
7107.x-window-header-text-default {
7108  color: #04468c;
7109  font-weight: bold;
7110  line-height: 17px;
7111  font-family: tahoma, arial, verdana, sans-serif;
7112  font-size: 11px; }
7113
7114/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7115.x-window-header-default-top {
7116  -moz-border-radius-topleft: 5px;
7117  -webkit-border-top-left-radius: 5px;
7118  -o-border-top-left-radius: 5px;
7119  -ms-border-top-left-radius: 5px;
7120  -khtml-border-top-left-radius: 5px;
7121  border-top-left-radius: 5px;
7122  -moz-border-radius-topright: 5px;
7123  -webkit-border-top-right-radius: 5px;
7124  -o-border-top-right-radius: 5px;
7125  -ms-border-top-right-radius: 5px;
7126  -khtml-border-top-right-radius: 5px;
7127  border-top-right-radius: 5px;
7128  -moz-border-radius-bottomright: 0;
7129  -webkit-border-bottom-right-radius: 0;
7130  -o-border-bottom-right-radius: 0;
7131  -ms-border-bottom-right-radius: 0;
7132  -khtml-border-bottom-right-radius: 0;
7133  border-bottom-right-radius: 0;
7134  -moz-border-radius-bottomleft: 0;
7135  -webkit-border-bottom-left-radius: 0;
7136  -o-border-bottom-left-radius: 0;
7137  -ms-border-bottom-left-radius: 0;
7138  -khtml-border-bottom-left-radius: 0;
7139  border-bottom-left-radius: 0;
7140  padding: 4px 5px 0 5px;
7141  border-width: 1px 1px 0 1px;
7142  border-style: solid;
7143  background-color: #ced9e7; }
7144
7145/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7146.x-nlg .x-window-header-default-top-mc {
7147  background-color: #ced9e7; }
7148
7149/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7150.x-nbr .x-window-header-default-top {
7151  padding: 0 !important;
7152  border-width: 0 !important;
7153  -moz-border-radius: 0px;
7154  -webkit-border-radius: 0px;
7155  -o-border-radius: 0px;
7156  -ms-border-radius: 0px;
7157  -khtml-border-radius: 0px;
7158  border-radius: 0px;
7159  background-color: transparent;
7160  background-position: 1000505px 1000000px; }
7161/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7162.x-nbr .x-window-header-default-top-tl,
7163.x-nbr .x-window-header-default-top-bl,
7164.x-nbr .x-window-header-default-top-tr,
7165.x-nbr .x-window-header-default-top-br,
7166.x-nbr .x-window-header-default-top-tc,
7167.x-nbr .x-window-header-default-top-bc,
7168.x-nbr .x-window-header-default-top-ml,
7169.x-nbr .x-window-header-default-top-mr {
7170  zoom: 1;
7171  background-image: url('../../resources/themes/images/default/window-header/window-header-default-top-corners.gif'); }
7172/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7173.x-nbr .x-window-header-default-top-ml,
7174.x-nbr .x-window-header-default-top-mr {
7175  zoom: 1;
7176  background-image: url('../../resources/themes/images/default/window-header/window-header-default-top-sides.gif');
7177  background-position: 0 0;
7178  background-repeat: repeat-y; }
7179/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7180.x-nbr .x-window-header-default-top-mc {
7181  padding: 0px 1px 0 1px; }
7182
7183/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7184.x-strict .x-ie7 .x-window-header-default-top-tl,
7185.x-strict .x-ie7 .x-window-header-default-top-bl {
7186  position: relative;
7187  right: 0; }
7188
7189/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7190.x-window-header-default-right {
7191  -moz-border-radius-topleft: 0;
7192  -webkit-border-top-left-radius: 0;
7193  -o-border-top-left-radius: 0;
7194  -ms-border-top-left-radius: 0;
7195  -khtml-border-top-left-radius: 0;
7196  border-top-left-radius: 0;
7197  -moz-border-radius-topright: 5px;
7198  -webkit-border-top-right-radius: 5px;
7199  -o-border-top-right-radius: 5px;
7200  -ms-border-top-right-radius: 5px;
7201  -khtml-border-top-right-radius: 5px;
7202  border-top-right-radius: 5px;
7203  -moz-border-radius-bottomright: 5px;
7204  -webkit-border-bottom-right-radius: 5px;
7205  -o-border-bottom-right-radius: 5px;
7206  -ms-border-bottom-right-radius: 5px;
7207  -khtml-border-bottom-right-radius: 5px;
7208  border-bottom-right-radius: 5px;
7209  -moz-border-radius-bottomleft: 0;
7210  -webkit-border-bottom-left-radius: 0;
7211  -o-border-bottom-left-radius: 0;
7212  -ms-border-bottom-left-radius: 0;
7213  -khtml-border-bottom-left-radius: 0;
7214  border-bottom-left-radius: 0;
7215  padding: 5px 4px 5px 0;
7216  border-width: 1px 1px 1px 0;
7217  border-style: solid;
7218  background-color: #ced9e7; }
7219
7220/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7221.x-nlg .x-window-header-default-right-mc {
7222  background-color: #ced9e7; }
7223
7224/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7225.x-nbr .x-window-header-default-right {
7226  padding: 0 !important;
7227  border-width: 0 !important;
7228  -moz-border-radius: 0px;
7229  -webkit-border-radius: 0px;
7230  -o-border-radius: 0px;
7231  -ms-border-radius: 0px;
7232  -khtml-border-radius: 0px;
7233  border-radius: 0px;
7234  background-color: transparent;
7235  background-position: 1000005px 1000500px; }
7236/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7237.x-nbr .x-window-header-default-right-tl,
7238.x-nbr .x-window-header-default-right-bl,
7239.x-nbr .x-window-header-default-right-tr,
7240.x-nbr .x-window-header-default-right-br,
7241.x-nbr .x-window-header-default-right-tc,
7242.x-nbr .x-window-header-default-right-bc,
7243.x-nbr .x-window-header-default-right-ml,
7244.x-nbr .x-window-header-default-right-mr {
7245  zoom: 1;
7246  background-image: url('../../resources/themes/images/default/window-header/window-header-default-right-corners.gif'); }
7247/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7248.x-nbr .x-window-header-default-right-ml,
7249.x-nbr .x-window-header-default-right-mr {
7250  zoom: 1;
7251  background-image: url('../../resources/themes/images/default/window-header/window-header-default-right-sides.gif');
7252  background-position: 0 0;
7253  background-repeat: repeat-y; }
7254/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7255.x-nbr .x-window-header-default-right-mc {
7256  padding: 1px 0px 1px 0; }
7257
7258/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7259.x-strict .x-ie7 .x-window-header-default-right-tl,
7260.x-strict .x-ie7 .x-window-header-default-right-bl {
7261  position: relative;
7262  right: 0; }
7263
7264/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7265.x-window-header-default-bottom {
7266  -moz-border-radius-topleft: 0;
7267  -webkit-border-top-left-radius: 0;
7268  -o-border-top-left-radius: 0;
7269  -ms-border-top-left-radius: 0;
7270  -khtml-border-top-left-radius: 0;
7271  border-top-left-radius: 0;
7272  -moz-border-radius-topright: 0;
7273  -webkit-border-top-right-radius: 0;
7274  -o-border-top-right-radius: 0;
7275  -ms-border-top-right-radius: 0;
7276  -khtml-border-top-right-radius: 0;
7277  border-top-right-radius: 0;
7278  -moz-border-radius-bottomright: 5px;
7279  -webkit-border-bottom-right-radius: 5px;
7280  -o-border-bottom-right-radius: 5px;
7281  -ms-border-bottom-right-radius: 5px;
7282  -khtml-border-bottom-right-radius: 5px;
7283  border-bottom-right-radius: 5px;
7284  -moz-border-radius-bottomleft: 5px;
7285  -webkit-border-bottom-left-radius: 5px;
7286  -o-border-bottom-left-radius: 5px;
7287  -ms-border-bottom-left-radius: 5px;
7288  -khtml-border-bottom-left-radius: 5px;
7289  border-bottom-left-radius: 5px;
7290  padding: 0 5px 4px 5px;
7291  border-width: 0 1px 1px 1px;
7292  border-style: solid;
7293  background-color: #ced9e7; }
7294
7295/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7296.x-nlg .x-window-header-default-bottom-mc {
7297  background-color: #ced9e7; }
7298
7299/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7300.x-nbr .x-window-header-default-bottom {
7301  padding: 0 !important;
7302  border-width: 0 !important;
7303  -moz-border-radius: 0px;
7304  -webkit-border-radius: 0px;
7305  -o-border-radius: 0px;
7306  -ms-border-radius: 0px;
7307  -khtml-border-radius: 0px;
7308  border-radius: 0px;
7309  background-color: transparent;
7310  background-position: 1000000px 1000505px; }
7311/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7312.x-nbr .x-window-header-default-bottom-tl,
7313.x-nbr .x-window-header-default-bottom-bl,
7314.x-nbr .x-window-header-default-bottom-tr,
7315.x-nbr .x-window-header-default-bottom-br,
7316.x-nbr .x-window-header-default-bottom-tc,
7317.x-nbr .x-window-header-default-bottom-bc,
7318.x-nbr .x-window-header-default-bottom-ml,
7319.x-nbr .x-window-header-default-bottom-mr {
7320  zoom: 1;
7321  background-image: url('../../resources/themes/images/default/window-header/window-header-default-bottom-corners.gif'); }
7322/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7323.x-nbr .x-window-header-default-bottom-ml,
7324.x-nbr .x-window-header-default-bottom-mr {
7325  zoom: 1;
7326  background-image: url('../../resources/themes/images/default/window-header/window-header-default-bottom-sides.gif');
7327  background-position: 0 0;
7328  background-repeat: repeat-y; }
7329/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7330.x-nbr .x-window-header-default-bottom-mc {
7331  padding: 0 1px 0px 1px; }
7332
7333/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7334.x-strict .x-ie7 .x-window-header-default-bottom-tl,
7335.x-strict .x-ie7 .x-window-header-default-bottom-bl {
7336  position: relative;
7337  right: 0; }
7338
7339/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7340.x-window-header-default-left {
7341  -moz-border-radius-topleft: 5px;
7342  -webkit-border-top-left-radius: 5px;
7343  -o-border-top-left-radius: 5px;
7344  -ms-border-top-left-radius: 5px;
7345  -khtml-border-top-left-radius: 5px;
7346  border-top-left-radius: 5px;
7347  -moz-border-radius-topright: 0;
7348  -webkit-border-top-right-radius: 0;
7349  -o-border-top-right-radius: 0;
7350  -ms-border-top-right-radius: 0;
7351  -khtml-border-top-right-radius: 0;
7352  border-top-right-radius: 0;
7353  -moz-border-radius-bottomright: 0;
7354  -webkit-border-bottom-right-radius: 0;
7355  -o-border-bottom-right-radius: 0;
7356  -ms-border-bottom-right-radius: 0;
7357  -khtml-border-bottom-right-radius: 0;
7358  border-bottom-right-radius: 0;
7359  -moz-border-radius-bottomleft: 5px;
7360  -webkit-border-bottom-left-radius: 5px;
7361  -o-border-bottom-left-radius: 5px;
7362  -ms-border-bottom-left-radius: 5px;
7363  -khtml-border-bottom-left-radius: 5px;
7364  border-bottom-left-radius: 5px;
7365  padding: 5px 0px 5px 4px;
7366  border-width: 1px 0 1px 1px;
7367  border-style: solid;
7368  background-color: #ced9e7; }
7369
7370/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7371.x-nlg .x-window-header-default-left-mc {
7372  background-color: #ced9e7; }
7373
7374/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7375.x-nbr .x-window-header-default-left {
7376  padding: 0 !important;
7377  border-width: 0 !important;
7378  -moz-border-radius: 0px;
7379  -webkit-border-radius: 0px;
7380  -o-border-radius: 0px;
7381  -ms-border-radius: 0px;
7382  -khtml-border-radius: 0px;
7383  border-radius: 0px;
7384  background-color: transparent;
7385  background-position: 1000500px 1000005px; }
7386/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7387.x-nbr .x-window-header-default-left-tl,
7388.x-nbr .x-window-header-default-left-bl,
7389.x-nbr .x-window-header-default-left-tr,
7390.x-nbr .x-window-header-default-left-br,
7391.x-nbr .x-window-header-default-left-tc,
7392.x-nbr .x-window-header-default-left-bc,
7393.x-nbr .x-window-header-default-left-ml,
7394.x-nbr .x-window-header-default-left-mr {
7395  zoom: 1;
7396  background-image: url('../../resources/themes/images/default/window-header/window-header-default-left-corners.gif'); }
7397/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7398.x-nbr .x-window-header-default-left-ml,
7399.x-nbr .x-window-header-default-left-mr {
7400  zoom: 1;
7401  background-image: url('../../resources/themes/images/default/window-header/window-header-default-left-sides.gif');
7402  background-position: 0 0;
7403  background-repeat: repeat-y; }
7404/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7405.x-nbr .x-window-header-default-left-mc {
7406  padding: 1px 0px 1px 0px; }
7407
7408/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7409.x-strict .x-ie7 .x-window-header-default-left-tl,
7410.x-strict .x-ie7 .x-window-header-default-left-bl {
7411  position: relative;
7412  right: 0; }
7413
7414/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7415.x-window-header-default-collapsed-top {
7416  -moz-border-radius-topleft: 5px;
7417  -webkit-border-top-left-radius: 5px;
7418  -o-border-top-left-radius: 5px;
7419  -ms-border-top-left-radius: 5px;
7420  -khtml-border-top-left-radius: 5px;
7421  border-top-left-radius: 5px;
7422  -moz-border-radius-topright: 5px;
7423  -webkit-border-top-right-radius: 5px;
7424  -o-border-top-right-radius: 5px;
7425  -ms-border-top-right-radius: 5px;
7426  -khtml-border-top-right-radius: 5px;
7427  border-top-right-radius: 5px;
7428  -moz-border-radius-bottomright: 5px;
7429  -webkit-border-bottom-right-radius: 5px;
7430  -o-border-bottom-right-radius: 5px;
7431  -ms-border-bottom-right-radius: 5px;
7432  -khtml-border-bottom-right-radius: 5px;
7433  border-bottom-right-radius: 5px;
7434  -moz-border-radius-bottomleft: 5px;
7435  -webkit-border-bottom-left-radius: 5px;
7436  -o-border-bottom-left-radius: 5px;
7437  -ms-border-bottom-left-radius: 5px;
7438  -khtml-border-bottom-left-radius: 5px;
7439  border-bottom-left-radius: 5px;
7440  padding: 4px 5px 4px 5px;
7441  border-width: 1px;
7442  border-style: solid;
7443  background-color: #ced9e7; }
7444
7445/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7446.x-nlg .x-window-header-default-collapsed-top-mc {
7447  background-color: #ced9e7; }
7448
7449/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7450.x-nbr .x-window-header-default-collapsed-top {
7451  padding: 0 !important;
7452  border-width: 0 !important;
7453  -moz-border-radius: 0px;
7454  -webkit-border-radius: 0px;
7455  -o-border-radius: 0px;
7456  -ms-border-radius: 0px;
7457  -khtml-border-radius: 0px;
7458  border-radius: 0px;
7459  background-color: transparent;
7460  background-position: 1000505px 1000505px; }
7461/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7462.x-nbr .x-window-header-default-collapsed-top-tl,
7463.x-nbr .x-window-header-default-collapsed-top-bl,
7464.x-nbr .x-window-header-default-collapsed-top-tr,
7465.x-nbr .x-window-header-default-collapsed-top-br,
7466.x-nbr .x-window-header-default-collapsed-top-tc,
7467.x-nbr .x-window-header-default-collapsed-top-bc,
7468.x-nbr .x-window-header-default-collapsed-top-ml,
7469.x-nbr .x-window-header-default-collapsed-top-mr {
7470  zoom: 1;
7471  background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-top-corners.gif'); }
7472/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7473.x-nbr .x-window-header-default-collapsed-top-ml,
7474.x-nbr .x-window-header-default-collapsed-top-mr {
7475  zoom: 1;
7476  background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-top-sides.gif');
7477  background-position: 0 0;
7478  background-repeat: repeat-y; }
7479/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7480.x-nbr .x-window-header-default-collapsed-top-mc {
7481  padding: 0px 1px 0px 1px; }
7482
7483/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7484.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl,
7485.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl {
7486  position: relative;
7487  right: 0; }
7488
7489/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7490.x-window-header-default-collapsed-right {
7491  -moz-border-radius-topleft: 5px;
7492  -webkit-border-top-left-radius: 5px;
7493  -o-border-top-left-radius: 5px;
7494  -ms-border-top-left-radius: 5px;
7495  -khtml-border-top-left-radius: 5px;
7496  border-top-left-radius: 5px;
7497  -moz-border-radius-topright: 5px;
7498  -webkit-border-top-right-radius: 5px;
7499  -o-border-top-right-radius: 5px;
7500  -ms-border-top-right-radius: 5px;
7501  -khtml-border-top-right-radius: 5px;
7502  border-top-right-radius: 5px;
7503  -moz-border-radius-bottomright: 5px;
7504  -webkit-border-bottom-right-radius: 5px;
7505  -o-border-bottom-right-radius: 5px;
7506  -ms-border-bottom-right-radius: 5px;
7507  -khtml-border-bottom-right-radius: 5px;
7508  border-bottom-right-radius: 5px;
7509  -moz-border-radius-bottomleft: 5px;
7510  -webkit-border-bottom-left-radius: 5px;
7511  -o-border-bottom-left-radius: 5px;
7512  -ms-border-bottom-left-radius: 5px;
7513  -khtml-border-bottom-left-radius: 5px;
7514  border-bottom-left-radius: 5px;
7515  padding: 5px 4px 5px 4px;
7516  border-width: 1px;
7517  border-style: solid;
7518  background-color: #ced9e7; }
7519
7520/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7521.x-nlg .x-window-header-default-collapsed-right-mc {
7522  background-color: #ced9e7; }
7523
7524/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7525.x-nbr .x-window-header-default-collapsed-right {
7526  padding: 0 !important;
7527  border-width: 0 !important;
7528  -moz-border-radius: 0px;
7529  -webkit-border-radius: 0px;
7530  -o-border-radius: 0px;
7531  -ms-border-radius: 0px;
7532  -khtml-border-radius: 0px;
7533  border-radius: 0px;
7534  background-color: transparent;
7535  background-position: 1000505px 1000505px; }
7536/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7537.x-nbr .x-window-header-default-collapsed-right-tl,
7538.x-nbr .x-window-header-default-collapsed-right-bl,
7539.x-nbr .x-window-header-default-collapsed-right-tr,
7540.x-nbr .x-window-header-default-collapsed-right-br,
7541.x-nbr .x-window-header-default-collapsed-right-tc,
7542.x-nbr .x-window-header-default-collapsed-right-bc,
7543.x-nbr .x-window-header-default-collapsed-right-ml,
7544.x-nbr .x-window-header-default-collapsed-right-mr {
7545  zoom: 1;
7546  background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-right-corners.gif'); }
7547/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7548.x-nbr .x-window-header-default-collapsed-right-ml,
7549.x-nbr .x-window-header-default-collapsed-right-mr {
7550  zoom: 1;
7551  background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-right-sides.gif');
7552  background-position: 0 0;
7553  background-repeat: repeat-y; }
7554/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7555.x-nbr .x-window-header-default-collapsed-right-mc {
7556  padding: 1px 0px 1px 0px; }
7557
7558/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7559.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl,
7560.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl {
7561  position: relative;
7562  right: 0; }
7563
7564/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7565.x-window-header-default-collapsed-bottom {
7566  -moz-border-radius-topleft: 5px;
7567  -webkit-border-top-left-radius: 5px;
7568  -o-border-top-left-radius: 5px;
7569  -ms-border-top-left-radius: 5px;
7570  -khtml-border-top-left-radius: 5px;
7571  border-top-left-radius: 5px;
7572  -moz-border-radius-topright: 5px;
7573  -webkit-border-top-right-radius: 5px;
7574  -o-border-top-right-radius: 5px;
7575  -ms-border-top-right-radius: 5px;
7576  -khtml-border-top-right-radius: 5px;
7577  border-top-right-radius: 5px;
7578  -moz-border-radius-bottomright: 5px;
7579  -webkit-border-bottom-right-radius: 5px;
7580  -o-border-bottom-right-radius: 5px;
7581  -ms-border-bottom-right-radius: 5px;
7582  -khtml-border-bottom-right-radius: 5px;
7583  border-bottom-right-radius: 5px;
7584  -moz-border-radius-bottomleft: 5px;
7585  -webkit-border-bottom-left-radius: 5px;
7586  -o-border-bottom-left-radius: 5px;
7587  -ms-border-bottom-left-radius: 5px;
7588  -khtml-border-bottom-left-radius: 5px;
7589  border-bottom-left-radius: 5px;
7590  padding: 4px 5px 4px 5px;
7591  border-width: 1px;
7592  border-style: solid;
7593  background-color: #ced9e7; }
7594
7595/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7596.x-nlg .x-window-header-default-collapsed-bottom-mc {
7597  background-color: #ced9e7; }
7598
7599/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7600.x-nbr .x-window-header-default-collapsed-bottom {
7601  padding: 0 !important;
7602  border-width: 0 !important;
7603  -moz-border-radius: 0px;
7604  -webkit-border-radius: 0px;
7605  -o-border-radius: 0px;
7606  -ms-border-radius: 0px;
7607  -khtml-border-radius: 0px;
7608  border-radius: 0px;
7609  background-color: transparent;
7610  background-position: 1000505px 1000505px; }
7611/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7612.x-nbr .x-window-header-default-collapsed-bottom-tl,
7613.x-nbr .x-window-header-default-collapsed-bottom-bl,
7614.x-nbr .x-window-header-default-collapsed-bottom-tr,
7615.x-nbr .x-window-header-default-collapsed-bottom-br,
7616.x-nbr .x-window-header-default-collapsed-bottom-tc,
7617.x-nbr .x-window-header-default-collapsed-bottom-bc,
7618.x-nbr .x-window-header-default-collapsed-bottom-ml,
7619.x-nbr .x-window-header-default-collapsed-bottom-mr {
7620  zoom: 1;
7621  background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-bottom-corners.gif'); }
7622/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7623.x-nbr .x-window-header-default-collapsed-bottom-ml,
7624.x-nbr .x-window-header-default-collapsed-bottom-mr {
7625  zoom: 1;
7626  background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-bottom-sides.gif');
7627  background-position: 0 0;
7628  background-repeat: repeat-y; }
7629/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7630.x-nbr .x-window-header-default-collapsed-bottom-mc {
7631  padding: 0px 1px 0px 1px; }
7632
7633/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7634.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl,
7635.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl {
7636  position: relative;
7637  right: 0; }
7638
7639/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7640.x-window-header-default-collapsed-left {
7641  -moz-border-radius-topleft: 5px;
7642  -webkit-border-top-left-radius: 5px;
7643  -o-border-top-left-radius: 5px;
7644  -ms-border-top-left-radius: 5px;
7645  -khtml-border-top-left-radius: 5px;
7646  border-top-left-radius: 5px;
7647  -moz-border-radius-topright: 5px;
7648  -webkit-border-top-right-radius: 5px;
7649  -o-border-top-right-radius: 5px;
7650  -ms-border-top-right-radius: 5px;
7651  -khtml-border-top-right-radius: 5px;
7652  border-top-right-radius: 5px;
7653  -moz-border-radius-bottomright: 5px;
7654  -webkit-border-bottom-right-radius: 5px;
7655  -o-border-bottom-right-radius: 5px;
7656  -ms-border-bottom-right-radius: 5px;
7657  -khtml-border-bottom-right-radius: 5px;
7658  border-bottom-right-radius: 5px;
7659  -moz-border-radius-bottomleft: 5px;
7660  -webkit-border-bottom-left-radius: 5px;
7661  -o-border-bottom-left-radius: 5px;
7662  -ms-border-bottom-left-radius: 5px;
7663  -khtml-border-bottom-left-radius: 5px;
7664  border-bottom-left-radius: 5px;
7665  padding: 5px 4px 5px 4px;
7666  border-width: 1px;
7667  border-style: solid;
7668  background-color: #ced9e7; }
7669
7670/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7671.x-nlg .x-window-header-default-collapsed-left-mc {
7672  background-color: #ced9e7; }
7673
7674/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7675.x-nbr .x-window-header-default-collapsed-left {
7676  padding: 0 !important;
7677  border-width: 0 !important;
7678  -moz-border-radius: 0px;
7679  -webkit-border-radius: 0px;
7680  -o-border-radius: 0px;
7681  -ms-border-radius: 0px;
7682  -khtml-border-radius: 0px;
7683  border-radius: 0px;
7684  background-color: transparent;
7685  background-position: 1000505px 1000505px; }
7686/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7687.x-nbr .x-window-header-default-collapsed-left-tl,
7688.x-nbr .x-window-header-default-collapsed-left-bl,
7689.x-nbr .x-window-header-default-collapsed-left-tr,
7690.x-nbr .x-window-header-default-collapsed-left-br,
7691.x-nbr .x-window-header-default-collapsed-left-tc,
7692.x-nbr .x-window-header-default-collapsed-left-bc,
7693.x-nbr .x-window-header-default-collapsed-left-ml,
7694.x-nbr .x-window-header-default-collapsed-left-mr {
7695  zoom: 1;
7696  background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-left-corners.gif'); }
7697/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7698.x-nbr .x-window-header-default-collapsed-left-ml,
7699.x-nbr .x-window-header-default-collapsed-left-mr {
7700  zoom: 1;
7701  background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-left-sides.gif');
7702  background-position: 0 0;
7703  background-repeat: repeat-y; }
7704/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7705.x-nbr .x-window-header-default-collapsed-left-mc {
7706  padding: 1px 0px 1px 0px; }
7707
7708/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7709.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl,
7710.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl {
7711  position: relative;
7712  right: 0; }
7713
7714/* line 217, ../themes/stylesheets/ext4/default/widgets/_window.scss */
7715.x-window-header-default-top {
7716  -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
7717  -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
7718  -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
7719  box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
7720
7721/* line 221, ../themes/stylesheets/ext4/default/widgets/_window.scss */
7722.x-window-header-default-right {
7723  -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
7724  -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
7725  -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
7726  box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; }
7727
7728/* line 225, ../themes/stylesheets/ext4/default/widgets/_window.scss */
7729.x-window-header-default-bottom {
7730  -moz-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
7731  -webkit-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
7732  -o-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
7733  box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
7734
7735/* line 229, ../themes/stylesheets/ext4/default/widgets/_window.scss */
7736.x-window-header-default-left {
7737  -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
7738  -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
7739  -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
7740  box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
7741
7742/* line 130, ../themes/stylesheets/ext4/default/widgets/_window.scss */
7743.x-window-body-plain {
7744  background: transparent; }
7745
7746/* line 2, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
7747.x-message-box .x-window-body {
7748  background-color: #ced9e7;
7749  border: none; }
7750
7751/* line 7, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
7752.x-message-box .x-progress-wrap {
7753  margin-top: 4px; }
7754
7755/* line 11, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
7756.x-message-box-icon {
7757  width: 47px;
7758  height: 32px; }
7759
7760/* line 19, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
7761.x-message-box-info,
7762.x-message-box-warning,
7763.x-message-box-question,
7764.x-message-box-error {
7765  background: transparent no-repeat top left; }
7766
7767/* line 23, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
7768.x-message-box .x-msg-box-wait {
7769  background-image: url('../../resources/themes/images/default/shared/blue-loading.gif'); }
7770
7771/* line 27, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
7772.x-message-box-info {
7773  background-image: url('../../resources/themes/images/default/shared/icon-info.gif'); }
7774
7775/* line 31, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
7776.x-message-box-warning {
7777  background-image: url('../../resources/themes/images/default/shared/icon-warning.gif'); }
7778
7779/* line 35, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
7780.x-message-box-question {
7781  background-image: url('../../resources/themes/images/default/shared/icon-question.gif'); }
7782
7783/* line 39, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
7784.x-message-box-error {
7785  background-image: url('../../resources/themes/images/default/shared/icon-error.gif'); }
7786
7787/* line 73, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7788.x-tab-bar {
7789  position: relative;
7790  background-color: transparent;
7791  background-image: none;
7792  background-color: #cbdbef;
7793  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef));
7794  background-image: -webkit-linear-gradient(top, #dde8f5, #cbdbef);
7795  background-image: -moz-linear-gradient(top, #dde8f5, #cbdbef);
7796  background-image: -o-linear-gradient(top, #dde8f5, #cbdbef);
7797  background-image: -ms-linear-gradient(top, #dde8f5, #cbdbef);
7798  background-image: linear-gradient(top, #dde8f5, #cbdbef);
7799  font-size: 11px; }
7800
7801/* line 80, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7802.x-nlg .x-tab-bar {
7803  background-image: url('../../resources/themes/images/default/tab-bar/tab-bar-default-bg.gif'); }
7804
7805/* line 85, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7806.x-tab-bar-default-plain,
7807.x-nlg .x-tab-bar-default-plain {
7808  background: transparent none; }
7809
7810/* line 90, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7811.x-tab-bar-body {
7812  border-style: solid;
7813  border-color: #99bce8;
7814  position: relative;
7815  z-index: 2;
7816  zoom: 1; }
7817
7818/* Top Tabs */
7819/* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7820.x-tab-bar-top .x-tab-bar-body {
7821  height: 20px;
7822  border-width: 1px 1px 0;
7823  padding: 1px 0 3px; }
7824/* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7825.x-tab-bar-top .x-tab-bar-strip {
7826  /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
7827  top: 22px;
7828  border-width: 1px 1px 0;
7829  height: 2px; }
7830
7831/* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7832.x-border-box .x-tab-bar-top .x-tab-bar-body {
7833  height: 25px; }
7834/* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7835.x-border-box .x-tab-bar-top .x-tab-bar-strip {
7836  height: 3px; }
7837
7838/* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7839.x-tab-bar-top .x-tab-bar-body-default-plain {
7840  height: 20px;
7841  border-width: 0;
7842  padding: 0 0 2px; }
7843/* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7844.x-tab-bar-top .x-tab-bar-strip-default-plain {
7845  /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
7846  top: 20px;
7847  border-width: 1px 1px 0 1px;
7848  height: 2px; }
7849
7850/* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7851.x-border-box .x-tab-bar-top .x-tab-bar-body-default-plain {
7852  height: 22px; }
7853/* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7854.x-border-box .x-tab-bar-top .x-tab-bar-strip-default-plain {
7855  height: 3px; }
7856
7857/* Bottom Tabs */
7858/* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7859.x-tab-bar-bottom .x-tab-bar-body {
7860  height: 20px;
7861  border-width: 0 1px 1px;
7862  padding: 3px 0 1px; }
7863  /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7864  .x-tab-bar-bottom .x-tab-bar-body .x-box-inner {
7865    position: relative;
7866    top: -1px; }
7867  /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7868  .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller,
7869  .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-left,
7870  .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-right {
7871    height: 22px; }
7872/* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7873.x-tab-bar-bottom .x-tab-bar-strip {
7874  top: 0;
7875  border-width: 0 1px 1px 1px;
7876  height: 2px; }
7877
7878/* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7879.x-border-box .x-tab-bar-bottom .x-tab-bar-body {
7880  height: 25px; }
7881/* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7882.x-border-box .x-tab-bar-bottom .x-tab-bar-strip {
7883  height: 3px; }
7884
7885/* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7886.x-tab-bar-bottom .x-tab-bar-body-default-plain {
7887  height: 20px;
7888  border-width: 0;
7889  padding: 3px 0 0; }
7890  /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7891  .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-inner {
7892    position: relative;
7893    top: -1px; }
7894  /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7895  .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller,
7896  .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-left,
7897  .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-right {
7898    height: 21px; }
7899/* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7900.x-tab-bar-bottom .x-tab-bar-strip-default-plain {
7901  top: 0;
7902  border-width: 0 1px 1px 1px;
7903  height: 2px; }
7904
7905/* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7906.x-border-box .x-tab-bar-bottom .x-tab-bar-body-default-plain {
7907  height: 23px; }
7908/* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7909.x-border-box .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
7910  height: 3px; }
7911
7912/* line 141, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
7913.x-tab-bar-strip-default,
7914.x-tab-bar-strip-default-plain {
7915  font-size: 0;
7916  line-height: 0;
7917  position: absolute;
7918  z-index: 1;
7919  border-style: solid;
7920  overflow: hidden;
7921  border-color: #99bce8;
7922  background-color: #deecfd;
7923  zoom: 1; }
7924
7925/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7926.x-tab-default-top {
7927  -moz-border-radius-topleft: 4px;
7928  -webkit-border-top-left-radius: 4px;
7929  -o-border-top-left-radius: 4px;
7930  -ms-border-top-left-radius: 4px;
7931  -khtml-border-top-left-radius: 4px;
7932  border-top-left-radius: 4px;
7933  -moz-border-radius-topright: 4px;
7934  -webkit-border-top-right-radius: 4px;
7935  -o-border-top-right-radius: 4px;
7936  -ms-border-top-right-radius: 4px;
7937  -khtml-border-top-right-radius: 4px;
7938  border-top-right-radius: 4px;
7939  -moz-border-radius-bottomright: 0;
7940  -webkit-border-bottom-right-radius: 0;
7941  -o-border-bottom-right-radius: 0;
7942  -ms-border-bottom-right-radius: 0;
7943  -khtml-border-bottom-right-radius: 0;
7944  border-bottom-right-radius: 0;
7945  -moz-border-radius-bottomleft: 0;
7946  -webkit-border-bottom-left-radius: 0;
7947  -o-border-bottom-left-radius: 0;
7948  -ms-border-bottom-left-radius: 0;
7949  -khtml-border-bottom-left-radius: 0;
7950  border-bottom-left-radius: 0;
7951  padding: 3px 3px 0 3px;
7952  border-width: 1px 1px 0 1px;
7953  border-style: solid;
7954  background-image: none;
7955  background-color: #deecfd;
7956  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd));
7957  background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%);
7958  background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%);
7959  background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%);
7960  background-image: -ms-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%);
7961  background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); }
7962
7963/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7964.x-nlg .x-tab-default-top-mc {
7965  background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif');
7966  background-color: #deecfd; }
7967
7968/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7969.x-nbr .x-tab-default-top {
7970  padding: 0 !important;
7971  border-width: 0 !important;
7972  -moz-border-radius: 0px;
7973  -webkit-border-radius: 0px;
7974  -o-border-radius: 0px;
7975  -ms-border-radius: 0px;
7976  -khtml-border-radius: 0px;
7977  border-radius: 0px;
7978  background-color: transparent;
7979  background-position: 1100404px 1000000px; }
7980/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7981.x-nbr .x-tab-default-top-tl,
7982.x-nbr .x-tab-default-top-bl,
7983.x-nbr .x-tab-default-top-tr,
7984.x-nbr .x-tab-default-top-br,
7985.x-nbr .x-tab-default-top-tc,
7986.x-nbr .x-tab-default-top-bc,
7987.x-nbr .x-tab-default-top-ml,
7988.x-nbr .x-tab-default-top-mr {
7989  zoom: 1;
7990  background-image: url('../../resources/themes/images/default/tab/tab-default-top-corners.gif'); }
7991/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7992.x-nbr .x-tab-default-top-ml,
7993.x-nbr .x-tab-default-top-mr {
7994  zoom: 1;
7995  background-image: url('../../resources/themes/images/default/tab/tab-default-top-sides.gif');
7996  background-position: 0 0; }
7997/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
7998.x-nbr .x-tab-default-top-mc {
7999  padding: 0px 0px 0 0px; }
8000
8001/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
8002.x-strict .x-ie7 .x-tab-default-top-tl,
8003.x-strict .x-ie7 .x-tab-default-top-bl {
8004  position: relative;
8005  right: 0; }
8006
8007/* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
8008.x-tab-default-bottom {
8009  -moz-border-radius-topleft: 0;
8010  -webkit-border-top-left-radius: 0;
8011  -o-border-top-left-radius: 0;
8012  -ms-border-top-left-radius: 0;
8013  -khtml-border-top-left-radius: 0;
8014  border-top-left-radius: 0;
8015  -moz-border-radius-topright: 0;
8016  -webkit-border-top-right-radius: 0;
8017  -o-border-top-right-radius: 0;
8018  -ms-border-top-right-radius: 0;
8019  -khtml-border-top-right-radius: 0;
8020  border-top-right-radius: 0;
8021  -moz-border-radius-bottomright: 4px;
8022  -webkit-border-bottom-right-radius: 4px;
8023  -o-border-bottom-right-radius: 4px;
8024  -ms-border-bottom-right-radius: 4px;
8025  -khtml-border-bottom-right-radius: 4px;
8026  border-bottom-right-radius: 4px;
8027  -moz-border-radius-bottomleft: 4px;
8028  -webkit-border-bottom-left-radius: 4px;
8029  -o-border-bottom-left-radius: 4px;
8030  -ms-border-bottom-left-radius: 4px;
8031  -khtml-border-bottom-left-radius: 4px;
8032  border-bottom-left-radius: 4px;
8033  padding: 0 3px 3px 3px;
8034  border-width: 0 1px 1px 1px;
8035  border-style: solid;
8036  background-image: none;
8037  background-color: #deecfd;
8038  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd));
8039  background-image: -webkit-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%);
8040  background-image: -moz-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%);
8041  background-image: -o-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%);
8042  background-image: -ms-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%);
8043  background-image: linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); }
8044
8045/* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
8046.x-nlg .x-tab-default-bottom-mc {
8047  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif');
8048  background-color: #deecfd; }
8049
8050/* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
8051.x-nbr .x-tab-default-bottom {
8052  padding: 0 !important;
8053  border-width: 0 !important;
8054  -moz-border-radius: 0px;
8055  -webkit-border-radius: 0px;
8056  -o-border-radius: 0px;
8057  -ms-border-radius: 0px;
8058  -khtml-border-radius: 0px;
8059  border-radius: 0px;
8060  background-color: transparent;
8061  background-position: 1100000px 1000404px; }
8062/* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
8063.x-nbr .x-tab-default-bottom-tl,
8064.x-nbr .x-tab-default-bottom-bl,
8065.x-nbr .x-tab-default-bottom-tr,
8066.x-nbr .x-tab-default-bottom-br,
8067.x-nbr .x-tab-default-bottom-tc,
8068.x-nbr .x-tab-default-bottom-bc,
8069.x-nbr .x-tab-default-bottom-ml,
8070.x-nbr .x-tab-default-bottom-mr {
8071  zoom: 1;
8072  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-corners.gif'); }
8073/* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
8074.x-nbr .x-tab-default-bottom-ml,
8075.x-nbr .x-tab-default-bottom-mr {
8076  zoom: 1;
8077  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-sides.gif');
8078  background-position: 0 0; }
8079/* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
8080.x-nbr .x-tab-default-bottom-mc {
8081  padding: 0 0px 0px 0px; }
8082
8083/* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
8084.x-strict .x-ie7 .x-tab-default-bottom-tl,
8085.x-strict .x-ie7 .x-tab-default-bottom-bl {
8086  position: relative;
8087  right: 0; }
8088
8089/* line 28, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8090.x-tab {
8091  z-index: 1;
8092  margin: 0 0 0 2px;
8093  display: inline-block;
8094  zoom: 1;
8095  *display: inline;
8096  white-space: nowrap;
8097  height: 20px;
8098  border-color: #8db3e3;
8099  cursor: pointer;
8100  cursor: hand; }
8101  /* line 40, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8102  .x-tab button {
8103    cursor: pointer;
8104    cursor: hand; }
8105  /* line 45, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8106  .x-tab em {
8107    display: block;
8108    padding: 0 6px;
8109    line-height: 1px; }
8110  /* line 51, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8111  .x-tab button {
8112    background: none;
8113    border: 0;
8114    padding: 0;
8115    margin: 0;
8116    -webkit-appearance: none;
8117    font-size: 11px;
8118    font-weight: bold;
8119    font-family: tahoma, arial, verdana, sans-serif;
8120    color: #416da3;
8121    outline: 0 none;
8122    overflow-x: visible; }
8123    /* line 69, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8124    .x-tab button::-moz-focus-inner {
8125      border: 0;
8126      padding: 0; }
8127    /* line 74, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8128    .x-tab button .x-tab-inner {
8129      background-color: transparent;
8130      background-repeat: no-repeat;
8131      background-position: 0 -2px;
8132      display: block;
8133      text-align: center;
8134      white-space: nowrap;
8135      text-overflow: ellipsis;
8136      -o-text-overflow: ellipsis;
8137      overflow: hidden; }
8138  /* line 87, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8139  .x-tab img {
8140    display: none; }
8141
8142/* line 93, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8143.x-border-box .x-tab-default-top {
8144  height: 21px; }
8145/* line 96, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8146.x-border-box .x-tab-default-bottom {
8147  height: 21px; }
8148
8149/* line 103, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8150* html .x-ie .x-tab button {
8151  width: 1px; }
8152
8153/* line 110, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8154.x-strict .x-ie6 .x-tab .x-frame-mc,
8155.x-strict .x-ie7 .x-tab .x-frame-mc {
8156  height: 100%; }
8157
8158/* line 115, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8159.x-ie .x-tab-active button:active {
8160  position: relative;
8161  top: -1px;
8162  left: -1px; }
8163
8164/* line 124, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8165.x-tab-default-top {
8166  -moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
8167  -webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
8168  -o-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
8169  box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
8170  border-bottom: 1px solid #99bce8 !important; }
8171  /* line 134, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8172  .x-tab-default-top em {
8173    padding-bottom: 3px; }
8174  /* line 139, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8175  .x-tab-default-top button,
8176  .x-tab-default-top .x-tab-inner {
8177    height: 13px;
8178    line-height: 13px; }
8179
8180/* line 148, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8181.x-safari4 .x-tab-default-top .x-tab-inner,
8182.x-safari5_0 .x-tab-default-top .x-tab-inner {
8183  line-height: 11px; }
8184
8185/* line 153, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8186.x-nbr .x-tab-default-top {
8187  border-bottom-width: 1px !important; }
8188
8189/* line 157, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8190.x-tab-default-top-active {
8191  border-bottom-color: #deecfd !important; }
8192
8193/* line 163, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8194.x-tab-default-bottom {
8195  -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
8196  -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
8197  -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
8198  box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
8199  border-top: 1px solid #99bce8 !important;
8200  -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
8201  -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
8202  -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
8203  box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; }
8204  /* line 178, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8205  .x-tab-default-bottom em {
8206    padding-top: 3px; }
8207  /* line 183, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8208  .x-tab-default-bottom button,
8209  .x-tab-default-bottom .x-tab-inner {
8210    height: 13px;
8211    line-height: 13px; }
8212
8213/* line 189, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8214.x-nbr .x-tab-default-bottom {
8215  border-top-width: 1px !important; }
8216
8217/* line 193, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8218.x-tab-default-bottom-active {
8219  border-top-color: #deecfd !important; }
8220
8221/* line 197, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8222.x-tab-default-disabled {
8223  cursor: default;
8224  border-color: #bbd2ef;
8225  background-image: none;
8226  background-color: #e1ecfa;
8227  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
8228  background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
8229  background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
8230  background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
8231  background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
8232  background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
8233  /* line 203, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8234  .x-tab-default-disabled button {
8235    color: #c3b3b3 !important; }
8236
8237/* line 209, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8238.x-tab-icon-text-left .x-tab-inner {
8239  padding-left: 20px; }
8240
8241/* line 214, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8242.x-tab button {
8243  position: relative; }
8244
8245/* line 218, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8246.x-tab-icon {
8247  position: absolute;
8248  background-repeat: no-repeat;
8249  background-position: 0 -1px;
8250  top: 0;
8251  left: 0;
8252  right: auto;
8253  bottom: 0;
8254  width: 18px;
8255  height: 18px; }
8256
8257/* line 233, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8258.x-strict .x-ie8 .x-tab button,
8259.x-strict .x-ie9 .x-tab button {
8260  overflow-y: visible; }
8261
8262/* line 238, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8263.x-tab-default-disabled .x-tab-icon {
8264  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
8265  opacity: 0.5; }
8266
8267/* In IE a disabled icon needs to be hidden or the opacity effect covers some of the text */
8268/* line 243, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8269.x-tab-noicon .x-tab-icon {
8270  display: none; }
8271
8272/* line 269, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8273.x-tab-top-over {
8274  background-image: none;
8275  background-color: #e8f2ff;
8276  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
8277  background-image: -webkit-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
8278  background-image: -moz-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
8279  background-image: -o-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
8280  background-image: -ms-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
8281  background-image: linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
8282
8283/* line 272, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8284.x-tab-bottom-over {
8285  background-image: none;
8286  background-color: #e8f2ff;
8287  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
8288  background-image: -webkit-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
8289  background-image: -moz-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
8290  background-image: -o-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
8291  background-image: -ms-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
8292  background-image: linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
8293
8294/* line 277, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8295.x-tab-active {
8296  z-index: 3; }
8297  /* line 283, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8298  .x-tab-active button {
8299    color: #15498b; }
8300
8301/* line 299, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8302.x-tab-top-active {
8303  background-image: none;
8304  background-color: #deecfd;
8305  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
8306  background-image: -webkit-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
8307  background-image: -moz-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
8308  background-image: -o-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
8309  background-image: -ms-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
8310  background-image: linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); }
8311
8312/* line 302, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8313.x-tab-bottom-active {
8314  background-image: none;
8315  background-color: #deecfd;
8316  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
8317  background-image: -webkit-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
8318  background-image: -moz-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
8319  background-image: -o-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
8320  background-image: -ms-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
8321  background-image: linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); }
8322
8323/* line 307, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8324.x-tab-disabled {
8325  border-color: #bbd2ef; }
8326  /* line 312, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8327  .x-tab-disabled button {
8328    color: #c3b3b3; }
8329
8330/* line 328, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8331.x-tab-top-disabled {
8332  background-image: none;
8333  background: transparent;
8334  background-image: none;
8335  background-color: #e1ecfa;
8336  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
8337  background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
8338  background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
8339  background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
8340  background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
8341  background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
8342
8343/* line 333, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8344.x-tab-bottom-disabled {
8345  background-image: none;
8346  background: transparent;
8347  background-image: none;
8348  background-color: #e1ecfa;
8349  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
8350  background-image: -webkit-linear-gradient(bottom, #e1ecfa, #ecf4fe);
8351  background-image: -moz-linear-gradient(bottom, #e1ecfa, #ecf4fe);
8352  background-image: -o-linear-gradient(bottom, #e1ecfa, #ecf4fe);
8353  background-image: -ms-linear-gradient(bottom, #e1ecfa, #ecf4fe);
8354  background-image: linear-gradient(bottom, #e1ecfa, #ecf4fe); }
8355
8356/* line 342, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8357.x-nlg .x-tab-top {
8358  background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif'); }
8359/* line 343, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8360.x-nlg .x-tab-bottom {
8361  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif'); }
8362/* line 347, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8363.x-nlg .x-tab-top-over {
8364  background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-bg.gif'); }
8365/* line 348, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8366.x-nlg .x-tab-bottom-over {
8367  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-bg.gif'); }
8368/* line 352, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8369.x-nlg .x-tab-top-active {
8370  background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-bg.gif'); }
8371/* line 353, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8372.x-nlg .x-tab-bottom-active {
8373  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-bg.gif'); }
8374/* line 357, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8375.x-nlg .x-tab-top-disabled {
8376  background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-bg.gif') !important; }
8377/* line 358, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8378.x-nlg .x-tab-bottom-disabled {
8379  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif') !important; }
8380
8381/* line 363, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8382.x-tab-closable em {
8383  padding-right: 14px; }
8384
8385/* line 367, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8386.x-tab-close-btn {
8387  position: absolute;
8388  top: 2px;
8389  right: 2px;
8390  width: 11px;
8391  height: 11px;
8392  font-size: 0;
8393  line-height: 0;
8394  text-indent: -999px;
8395  background: no-repeat;
8396  background-image: url('../../resources/themes/images/default/tab/tab-default-close.gif');
8397  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
8398  opacity: 0.6; }
8399
8400/* line 381, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8401.x-nbr .x-tab-close-btn {
8402  top: 0px;
8403  right: 0px; }
8404
8405/* Include the element name otherwise Internet Explorer 7 & 8 take a performance hit */
8406/* line 387, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8407a.x-tab-close-btn:hover {
8408  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
8409  opacity: 1; }
8410
8411/* Include the element name to raise the specificity to equal the :hover */
8412/* line 392, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8413.x-tab-default-disabled a.x-tab-close-btn {
8414  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
8415  opacity: 0.3; }
8416
8417/* line 404, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8418.x-nbr .x-tab-top-over .x-frame-tl,
8419.x-nbr .x-tab-top-over .x-frame-bl,
8420.x-nbr .x-tab-top-over .x-frame-tr,
8421.x-nbr .x-tab-top-over .x-frame-br,
8422.x-nbr .x-tab-top-over .x-frame-tc,
8423.x-nbr .x-tab-top-over .x-frame-bc {
8424  background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-corners.gif'); }
8425/* line 408, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8426.x-nbr .x-tab-top-over .x-frame-ml,
8427.x-nbr .x-tab-top-over .x-frame-mr {
8428  background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-sides.gif'); }
8429/* line 412, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8430.x-nbr .x-tab-top-over .x-frame-mc {
8431  background-color: #e8f2ff;
8432  background-repeat: repeat-x;
8433  background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-bg.gif'); }
8434/* line 426, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8435.x-nbr .x-tab-bottom-over .x-frame-tl,
8436.x-nbr .x-tab-bottom-over .x-frame-bl,
8437.x-nbr .x-tab-bottom-over .x-frame-tr,
8438.x-nbr .x-tab-bottom-over .x-frame-br,
8439.x-nbr .x-tab-bottom-over .x-frame-tc,
8440.x-nbr .x-tab-bottom-over .x-frame-bc {
8441  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-corners.gif'); }
8442/* line 430, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8443.x-nbr .x-tab-bottom-over .x-frame-ml,
8444.x-nbr .x-tab-bottom-over .x-frame-mr {
8445  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-sides.gif'); }
8446/* line 434, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8447.x-nbr .x-tab-bottom-over .x-frame-mc {
8448  background-color: #e8f2ff;
8449  background-repeat: repeat-x;
8450  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-bg.gif'); }
8451/* line 448, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8452.x-nbr .x-tab-top-active .x-frame-tl,
8453.x-nbr .x-tab-top-active .x-frame-bl,
8454.x-nbr .x-tab-top-active .x-frame-tr,
8455.x-nbr .x-tab-top-active .x-frame-br,
8456.x-nbr .x-tab-top-active .x-frame-tc,
8457.x-nbr .x-tab-top-active .x-frame-bc {
8458  background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-corners.gif'); }
8459/* line 452, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8460.x-nbr .x-tab-top-active .x-frame-ml,
8461.x-nbr .x-tab-top-active .x-frame-mr {
8462  background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-sides.gif'); }
8463/* line 456, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8464.x-nbr .x-tab-top-active .x-frame-mc {
8465  background-color: #deecfd;
8466  background-repeat: repeat-x;
8467  background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-bg.gif'); }
8468/* line 470, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8469.x-nbr .x-tab-bottom-active .x-frame-tl,
8470.x-nbr .x-tab-bottom-active .x-frame-bl,
8471.x-nbr .x-tab-bottom-active .x-frame-tr,
8472.x-nbr .x-tab-bottom-active .x-frame-br,
8473.x-nbr .x-tab-bottom-active .x-frame-tc,
8474.x-nbr .x-tab-bottom-active .x-frame-bc {
8475  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-corners.gif'); }
8476/* line 474, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8477.x-nbr .x-tab-bottom-active .x-frame-ml,
8478.x-nbr .x-tab-bottom-active .x-frame-mr {
8479  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-sides.gif'); }
8480/* line 478, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8481.x-nbr .x-tab-bottom-active .x-frame-mc {
8482  background-color: #deecfd;
8483  background-repeat: repeat-x;
8484  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-bg.gif'); }
8485/* line 492, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8486.x-nbr .x-tab-top-disabled .x-frame-tl,
8487.x-nbr .x-tab-top-disabled .x-frame-bl,
8488.x-nbr .x-tab-top-disabled .x-frame-tr,
8489.x-nbr .x-tab-top-disabled .x-frame-br,
8490.x-nbr .x-tab-top-disabled .x-frame-tc,
8491.x-nbr .x-tab-top-disabled .x-frame-bc {
8492  background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-corners.gif'); }
8493/* line 496, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8494.x-nbr .x-tab-top-disabled .x-frame-ml,
8495.x-nbr .x-tab-top-disabled .x-frame-mr {
8496  background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-sides.gif'); }
8497/* line 500, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8498.x-nbr .x-tab-top-disabled .x-frame-mc {
8499  background-repeat: repeat-x;
8500  background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-bg.gif'); }
8501/* line 513, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8502.x-nbr .x-tab-bottom-disabled .x-frame-tl,
8503.x-nbr .x-tab-bottom-disabled .x-frame-bl,
8504.x-nbr .x-tab-bottom-disabled .x-frame-tr,
8505.x-nbr .x-tab-bottom-disabled .x-frame-br,
8506.x-nbr .x-tab-bottom-disabled .x-frame-tc,
8507.x-nbr .x-tab-bottom-disabled .x-frame-bc {
8508  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-corners.gif'); }
8509/* line 517, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8510.x-nbr .x-tab-bottom-disabled .x-frame-ml,
8511.x-nbr .x-tab-bottom-disabled .x-frame-mr {
8512  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-sides.gif'); }
8513/* line 521, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
8514.x-nbr .x-tab-bottom-disabled .x-frame-mc {
8515  background-repeat: repeat-x;
8516  background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif'); }
8517
8518/* line 9, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8519.x-autowidth-table table.x-grid-table {
8520  table-layout: auto;
8521  width: auto!important; }
8522
8523/* line 14, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8524.x-tree-no-lines .x-tree-elbow {
8525  background-color: transparent; }
8526
8527/* line 18, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8528.x-tree-no-lines .x-tree-elbow-end {
8529  background-color: transparent; }
8530
8531/* line 22, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8532.x-tree-no-lines .x-tree-elbow-line {
8533  background-color: transparent; }
8534
8535/* line 27, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8536.x-tree-arrows .x-tree-elbow-plus {
8537  background: transparent no-repeat 0 0; }
8538
8539/* line 31, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8540.x-tree-arrows .x-tree-elbow-end-plus {
8541  background: transparent no-repeat 0 0; }
8542
8543/* line 35, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8544.x-tree-arrows .x-tree-elbow-end-minus {
8545  background: transparent no-repeat -16px 0; }
8546
8547/* line 39, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8548.x-tree-arrows .x-tree-elbow-minus {
8549  background: transparent no-repeat -16px 0; }
8550
8551/* line 43, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8552.x-tree-arrows .x-tree-elbow {
8553  background-color: transparent !important; }
8554
8555/* line 47, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8556.x-tree-arrows .x-tree-elbow-end {
8557  background-color: transparent !important; }
8558
8559/* line 51, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8560.x-tree-arrows .x-tree-elbow-line {
8561  background-color: transparent !important; }
8562
8563/* line 57, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8564.x-tree-arrows .x-tree-expander-over .x-tree-elbow-plus,
8565.x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-plus {
8566  background-position: -32px 0; }
8567
8568/* line 62, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8569.x-tree-arrows .x-tree-expander-over .x-tree-elbow-minus,
8570.x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-minus {
8571  background-position: -48px 0; }
8572
8573/* line 67, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8574.x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-plus,
8575.x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
8576  background-position: -16px 0; }
8577
8578/* line 72, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8579.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-plus,
8580.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-end-plus {
8581  background-position: -48px 0; }
8582
8583/* line 79, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8584.x-tree-elbow-plus,
8585.x-tree-elbow-minus,
8586.x-tree-elbow-end-plus,
8587.x-tree-elbow-end-minus {
8588  cursor: pointer; }
8589
8590/* line 85, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8591.x-tree-lines .x-tree-elbow {
8592  background-image: url('../../resources/themes/images/default/tree/elbow.gif'); }
8593/* line 89, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8594.x-tree-lines .x-tree-elbow-end {
8595  background-image: url('../../resources/themes/images/default/tree/elbow-end.gif'); }
8596/* line 93, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8597.x-tree-lines .x-tree-elbow-plus {
8598  background-image: url('../../resources/themes/images/default/tree/elbow-plus.gif'); }
8599/* line 97, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8600.x-tree-lines .x-tree-elbow-end-plus {
8601  background-image: url('../../resources/themes/images/default/tree/elbow-end-plus.gif'); }
8602/* line 101, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8603.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus {
8604  background-image: url('../../resources/themes/images/default/tree/elbow-minus.gif'); }
8605/* line 105, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8606.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
8607  background-image: url('../../resources/themes/images/default/tree/elbow-end-minus.gif'); }
8608/* line 109, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8609.x-tree-lines .x-tree-elbow-line {
8610  background-image: url('../../resources/themes/images/default/tree/elbow-line.gif'); }
8611
8612/* line 116, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8613.x-tree-no-lines .x-tree-elbow-plus,
8614.x-tree-no-lines .x-tree-elbow-end-plus {
8615  background-image: url('../../resources/themes/images/default/tree/elbow-plus-nl.gif'); }
8616/* line 121, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8617.x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-plus,
8618.x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
8619  background-image: url('../../resources/themes/images/default/tree/elbow-end-minus-nl.gif'); }
8620
8621/* line 130, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8622.x-tree-arrows .x-tree-elbow-plus,
8623.x-tree-arrows .x-tree-elbow-minus,
8624.x-tree-arrows .x-tree-elbow-end-plus,
8625.x-tree-arrows .x-tree-elbow-end-minus {
8626  background-image: url('../../resources/themes/images/default/tree/arrows.gif'); }
8627
8628/* line 135, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8629.x-tree-icon {
8630  margin: 2px 3px 0 0; }
8631
8632/* line 139, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8633.x-grid-with-row-lines .x-tree-icon {
8634  margin-top: 1px; }
8635
8636/* line 148, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8637.x-tree-elbow,
8638.x-tree-elbow-end,
8639.x-tree-elbow-plus,
8640.x-tree-elbow-end-plus,
8641.x-tree-elbow-empty,
8642.x-tree-elbow-line {
8643  height: 20px;
8644  width: 16px; }
8645
8646/* line 159, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8647.x-grid-with-row-lines .x-tree-elbow,
8648.x-grid-with-row-lines .x-tree-elbow-end,
8649.x-grid-with-row-lines .x-tree-elbow-plus,
8650.x-grid-with-row-lines .x-tree-elbow-end-plus,
8651.x-grid-with-row-lines .x-tree-elbow-empty,
8652.x-grid-with-row-lines .x-tree-elbow-line {
8653  height: 19px;
8654  background-position: 0 -1px; }
8655
8656/* line 165, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8657.x-tree-icon-leaf {
8658  width: 16px;
8659  background-image: url('../../resources/themes/images/default/tree/leaf.gif'); }
8660
8661/* line 170, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8662.x-tree-icon-parent {
8663  width: 16px;
8664  background-image: url('../../resources/themes/images/default/tree/folder.gif'); }
8665
8666/* line 175, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8667.x-grid-tree-node-expanded .x-tree-icon-parent {
8668  background-image: url('../../resources/themes/images/default/tree/folder-open.gif'); }
8669
8670/* line 179, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8671.x-grid-rowbody {
8672  padding: 0; }
8673
8674/* line 183, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8675.x-grid-cell-treecolumn .x-grid-cell-inner {
8676  padding: 0;
8677  line-height: 19px; }
8678
8679/* line 188, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8680.x-grid-with-row-lines .x-grid-cell-treecolumn .x-grid-cell-inner {
8681  line-height: 17px; }
8682
8683/* line 192, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8684.x-tree-panel .x-grid-cell-inner {
8685  cursor: pointer; }
8686  /* line 194, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8687  .x-tree-panel .x-grid-cell-inner img {
8688    display: inline-block;
8689    vertical-align: top; }
8690
8691/* line 207, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8692.x-ie .x-tree-panel .x-tree-elbow,
8693.x-ie .x-tree-panel .x-tree-elbow-end,
8694.x-ie .x-tree-panel .x-tree-elbow-plus,
8695.x-ie .x-tree-panel .x-tree-elbow-end-plus,
8696.x-ie .x-tree-panel .x-tree-elbow-empty,
8697.x-ie .x-tree-panel .x-tree-elbow-line {
8698  vertical-align: -6px; }
8699
8700/* line 215, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8701.x-grid-editor-on-text-node .x-form-text {
8702  padding-left: 1px;
8703  padding-right: 1px; }
8704
8705/* line 222, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8706.x-ie .x-grid-editor-on-text-node .x-form-text {
8707  padding-left: 2px;
8708  padding-right: 2px; }
8709
8710/* line 228, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8711.x-opera .x-grid-editor-on-text-node .x-form-text {
8712  padding-left: 2px;
8713  padding-right: 2px; }
8714
8715/* line 234, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8716.x-tree-checkbox {
8717  margin: 4px 3px 0 0;
8718  display: inline-block;
8719  vertical-align: top;
8720  width: 13px;
8721  height: 13px;
8722  background: no-repeat;
8723  background-image: url('../../resources/themes/images/default/form/checkbox.gif');
8724  overflow: hidden;
8725  padding: 0;
8726  border: 0; }
8727  /* line 247, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8728  .x-tree-checkbox::-moz-focus-inner {
8729    padding: 0;
8730    border: 0; }
8731
8732/* line 253, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8733.x-grid-with-row-lines .x-tree-checkbox {
8734  margin-top: 3px; }
8735
8736/* line 257, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8737.x-tree-checkbox-checked {
8738  background-position: 0 -13px; }
8739
8740/* line 261, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8741.x-tree-drop-ok-append .x-dd-drop-icon {
8742  background-image: url('../../resources/themes/images/default/tree/drop-append.gif'); }
8743
8744/* line 265, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8745.x-tree-drop-ok-above .x-dd-drop-icon {
8746  background-image: url('../../resources/themes/images/default/tree/drop-above.gif'); }
8747
8748/* line 269, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8749.x-tree-drop-ok-below .x-dd-drop-icon {
8750  background-image: url('../../resources/themes/images/default/tree/drop-below.gif'); }
8751
8752/* line 273, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8753.x-tree-drop-ok-between .x-dd-drop-icon {
8754  background-image: url('../../resources/themes/images/default/tree/drop-between.gif'); }
8755
8756/* line 277, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8757.x-grid-tree-loading .x-tree-icon {
8758  background-image: url('../../resources/themes/images/default/tree/loading.gif'); }
8759
8760/* line 281, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8761.x-tree-ddindicator {
8762  height: 1px;
8763  border-width: 1px 0px 0px;
8764  border-style: dotted;
8765  border-color: green; }
8766
8767/* line 288, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8768.x-grid-tree-loading span {
8769  font-style: italic;
8770  color: #444444; }
8771
8772/* line 293, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
8773.x-tree-animator-wrap {
8774  overflow: hidden; }
8775
8776/* line 6, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
8777.x-surface {
8778  display: -moz-inline-box;
8779  -moz-box-orient: vertical;
8780  display: inline-block;
8781  vertical-align: middle;
8782  *vertical-align: auto;
8783  overflow: hidden; }
8784  /* line 7, ../../../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
8785  .x-surface {
8786    *display: inline; }
8787
8788/* line 11, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
8789.rvml {
8790  behavior: url(#default#VML); }
8791
8792/* line 15, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
8793.x-surface tspan {
8794  user-select: none;
8795  -o-user-select: none;
8796  -ms-user-select: none;
8797  -moz-user-select: -moz-none;
8798  -webkit-user-select: none;
8799  cursor: default; }
8800
8801/* line 19, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
8802.x-vml-sprite {
8803  position: absolute;
8804  left: 0;
8805  top: 0;
8806  width: 1px;
8807  height: 1px; }
8808
8809/* line 27, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
8810.x-vml-group {
8811  position: absolute;
8812  left: 0;
8813  top: 0;
8814  width: 1000px;
8815  height: 1000px; }
8816
8817/* line 35, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
8818.x-vml-measure-span {
8819  position: absolute;
8820  left: -9999em;
8821  top: -9999em;
8822  padding: 0;
8823  margin: 0;
8824  display: inline; }
8825
8826/* line 44, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
8827.x-vml-base {
8828  position: relative;
8829  top: 0;
8830  left: 0;
8831  overflow: hidden;
8832  display: inline-block; }
8833
8834/* line 52, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
8835.x-vml-base {
8836  position: relative;
8837  top: 0;
8838  left: 0;
8839  overflow: hidden;
8840  display: inline-block; }
8841
8842/* line 60, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
8843svg, vml {
8844  overflow: hidden; }
8845
8846/* line 6, ../themes/stylesheets/ext4/default/widgets/_viewport.scss */
8847.x-viewport, .x-viewport body {
8848  margin: 0;
8849  padding: 0;
8850  border: 0 none;
8851  overflow: hidden;
8852  height: 100%;
8853  position: static; }
8854
8855/* line 3, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
8856.x-dd-drag-proxy {
8857  z-index: 1000000!important; }
8858
8859/* line 8, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
8860.x-dd-drag-repair .x-dd-drag-ghost {
8861  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
8862  opacity: 0.6; }
8863/* line 12, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
8864.x-dd-drag-repair .x-dd-drop-icon {
8865  display: none; }
8866
8867/* line 17, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
8868.x-dd-drag-ghost {
8869  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
8870  opacity: 0.85;
8871  padding: 5px;
8872  padding-left: 20px;
8873  white-space: nowrap;
8874  color: #000;
8875  font: normal 11px tahoma, arial, verdana, sans-serif;
8876  border: 1px solid;
8877  border-color: #ddd #bbb #bbb #ddd;
8878  background-color: #fff; }
8879
8880/* line 34, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
8881.x-dd-drop-icon {
8882  position: absolute;
8883  top: 3px;
8884  left: 3px;
8885  display: block;
8886  width: 16px;
8887  height: 16px;
8888  background-color: transparent;
8889  background-position: center;
8890  background-repeat: no-repeat;
8891  z-index: 1; }
8892
8893/* line 51, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
8894.x-view-selector {
8895  position: absolute;
8896  left: 0;
8897  top: 0;
8898  width: 0;
8899  background-color: #c3daf9;
8900  border: 1px dotted #3399bb;
8901  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
8902  opacity: 0.5;
8903  zoom: 1; }
8904
8905/* line 66, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
8906.x-dd-drop-nodrop .x-dd-drop-icon {
8907  background-image: url('../../resources/themes/images/default/dd/drop-no.gif'); }
8908
8909/* line 70, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
8910.x-dd-drop-ok .x-dd-drop-icon {
8911  background-image: url('../../resources/themes/images/default/dd/drop-yes.gif'); }
8912
8913/* line 74, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
8914.x-dd-drop-ok-add .x-dd-drop-icon {
8915  background-image: url('../../resources/themes/images/default/dd/drop-add.gif'); }
8916
8917/* line 2, ../themes/stylesheets/ext4/default/util/_resizable.scss */
8918.x-resizable-handle {
8919  position: absolute;
8920  z-index: 100;
8921  font-size: 1px;
8922  line-height: 6px;
8923  overflow: hidden;
8924  zoom: 1;
8925  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
8926  opacity: 0;
8927  background-color: #fff; }
8928
8929/* line 14, ../themes/stylesheets/ext4/default/util/_resizable.scss */
8930.x-collapsed .x-resizable-handle {
8931  display: none; }
8932
8933/* line 18, ../themes/stylesheets/ext4/default/util/_resizable.scss */
8934.x-resizable-handle-east {
8935  width: 6px;
8936  height: 100%;
8937  right: 0;
8938  top: 0; }
8939
8940/* line 27, ../themes/stylesheets/ext4/default/util/_resizable.scss */
8941.x-resizable-over .x-resizable-handle-east {
8942  cursor: e-resize; }
8943
8944/* line 32, ../themes/stylesheets/ext4/default/util/_resizable.scss */
8945.x-resizable-handle-south {
8946  width: 100%;
8947  height: 6px;
8948  left: 0;
8949  bottom: 0; }
8950
8951/* line 41, ../themes/stylesheets/ext4/default/util/_resizable.scss */
8952.x-resizable-over .x-resizable-handle-south {
8953  cursor: s-resize; }
8954
8955/* line 46, ../themes/stylesheets/ext4/default/util/_resizable.scss */
8956.x-resizable-handle-west {
8957  width: 6px;
8958  height: 100%;
8959  left: 0;
8960  top: 0; }
8961
8962/* line 55, ../themes/stylesheets/ext4/default/util/_resizable.scss */
8963.x-resizable-over .x-resizable-handle-west {
8964  cursor: w-resize; }
8965
8966/* line 60, ../themes/stylesheets/ext4/default/util/_resizable.scss */
8967.x-resizable-handle-north {
8968  width: 100%;
8969  height: 6px;
8970  left: 0;
8971  top: 0; }
8972
8973/* line 69, ../themes/stylesheets/ext4/default/util/_resizable.scss */
8974.x-resizable-over .x-resizable-handle-north {
8975  cursor: n-resize; }
8976
8977/* line 74, ../themes/stylesheets/ext4/default/util/_resizable.scss */
8978.x-resizable-handle-southeast {
8979  width: 6px;
8980  height: 6px;
8981  right: 0;
8982  bottom: 0;
8983  z-index: 101; }
8984
8985/* line 85, ../themes/stylesheets/ext4/default/util/_resizable.scss */
8986.x-resizable-over .x-resizable-handle-southeast {
8987  cursor: se-resize; }
8988
8989/* line 90, ../themes/stylesheets/ext4/default/util/_resizable.scss */
8990.x-resizable-handle-northwest {
8991  width: 6px;
8992  height: 6px;
8993  left: 0;
8994  top: 0;
8995  z-index: 101; }
8996
8997/* line 101, ../themes/stylesheets/ext4/default/util/_resizable.scss */
8998.x-resizable-over .x-resizable-handle-northwest {
8999  cursor: nw-resize; }
9000
9001/* line 106, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9002.x-resizable-handle-northeast {
9003  width: 6px;
9004  height: 6px;
9005  right: 0;
9006  top: 0;
9007  z-index: 101; }
9008
9009/* line 117, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9010.x-resizable-over .x-resizable-handle-northeast {
9011  cursor: ne-resize; }
9012
9013/* line 122, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9014.x-resizable-handle-southwest {
9015  width: 6px;
9016  height: 6px;
9017  left: 0;
9018  bottom: 0;
9019  z-index: 101; }
9020
9021/* line 133, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9022.x-resizable-over .x-resizable-handle-southwest {
9023  cursor: sw-resize; }
9024
9025/*IE rounding error*/
9026/* line 140, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9027.x-ie .x-resizable-handle-east {
9028  margin-right: -1px;
9029  /*IE rounding error*/ }
9030/* line 144, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9031.x-ie .x-resizable-handle-south {
9032  margin-bottom: -1px; }
9033
9034/* line 149, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9035.x-resizable-over .x-resizable-handle, .x-resizable-pinned .x-resizable-handle {
9036  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
9037  opacity: 1; }
9038
9039/* line 153, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9040.x-window .x-window-handle {
9041  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
9042  opacity: 0; }
9043
9044/* line 157, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9045.x-window-collapsed .x-window-handle {
9046  display: none; }
9047
9048/* line 161, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9049.x-resizable-proxy {
9050  border: 1px dashed #3b5a82;
9051  position: absolute;
9052  left: 0;
9053  top: 0;
9054  overflow: hidden;
9055  z-index: 50000; }
9056
9057/* line 170, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9058.x-resizable-overlay {
9059  position: absolute;
9060  left: 0;
9061  top: 0;
9062  width: 100%;
9063  height: 100%;
9064  display: none;
9065  z-index: 200000;
9066  background-color: #fff;
9067  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
9068  opacity: 0; }
9069
9070/* line 190, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9071.x-resizable-over .x-resizable-handle-east,
9072.x-resizable-over .x-resizable-handle-west,
9073.x-resizable-pinned .x-resizable-handle-east,
9074.x-resizable-pinned .x-resizable-handle-west {
9075  background-position: left;
9076  background-image: url('../../resources/themes/images/default/sizer/e-handle.gif'); }
9077/* line 196, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9078.x-resizable-over .x-resizable-handle-south,
9079.x-resizable-over .x-resizable-handle-north,
9080.x-resizable-pinned .x-resizable-handle-south,
9081.x-resizable-pinned .x-resizable-handle-north {
9082  background-position: top;
9083  background-image: url('../../resources/themes/images/default/sizer/s-handle.gif'); }
9084/* line 201, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9085.x-resizable-over .x-resizable-handle-southeast,
9086.x-resizable-pinned .x-resizable-handle-southeast {
9087  background-position: top left;
9088  background-image: url('../../resources/themes/images/default/sizer/se-handle.gif'); }
9089/* line 206, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9090.x-resizable-over .x-resizable-handle-northwest,
9091.x-resizable-pinned .x-resizable-handle-northwest {
9092  background-position: bottom right;
9093  background-image: url('../../resources/themes/images/default/sizer/nw-handle.gif'); }
9094/* line 211, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9095.x-resizable-over .x-resizable-handle-northeast,
9096.x-resizable-pinned .x-resizable-handle-northeast {
9097  background-position: bottom left;
9098  background-image: url('../../resources/themes/images/default/sizer/ne-handle.gif'); }
9099/* line 216, ../themes/stylesheets/ext4/default/util/_resizable.scss */
9100.x-resizable-over .x-resizable-handle-southwest,
9101.x-resizable-pinned .x-resizable-handle-southwest {
9102  background-position: top right;
9103  background-image: url('../../resources/themes/images/default/sizer/sw-handle.gif'); }
9104
9105/* line 3, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9106.x-splitter .x-collapse-el {
9107  position: absolute;
9108  cursor: pointer;
9109  background-color: transparent;
9110  background-repeat: no-repeat !important; }
9111
9112/* line 14, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9113.x-layout-split-left,
9114.x-layout-split-right {
9115  top: 50%;
9116  margin-top: -17px;
9117  width: 5px;
9118  height: 35px; }
9119
9120/* line 24, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9121.x-layout-split-top,
9122.x-layout-split-bottom {
9123  left: 50%;
9124  width: 35px;
9125  height: 5px;
9126  margin-left: -17px; }
9127
9128/* line 33, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9129.x-layout-split-left {
9130  background: no-repeat top right;
9131  background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
9132
9133/* line 38, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9134.x-layout-split-right {
9135  background: no-repeat top left;
9136  background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
9137
9138/* line 43, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9139.x-layout-split-top {
9140  background: no-repeat top left;
9141  background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
9142
9143/* line 48, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9144.x-layout-split-bottom {
9145  background: no-repeat top left;
9146  background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
9147
9148/* line 54, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9149.x-splitter-collapsed .x-layout-split-left {
9150  background: no-repeat top left;
9151  background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
9152/* line 59, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9153.x-splitter-collapsed .x-layout-split-right {
9154  background: no-repeat top right;
9155  background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
9156/* line 64, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9157.x-splitter-collapsed .x-layout-split-top {
9158  background: no-repeat top left;
9159  background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
9160/* line 69, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9161.x-splitter-collapsed .x-layout-split-bottom {
9162  background: no-repeat top left;
9163  background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
9164
9165/* line 75, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9166.x-splitter-horizontal {
9167  cursor: e-resize;
9168  cursor: row-resize;
9169  font-size: 1px; }
9170
9171/* line 81, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9172.x-splitter-vertical {
9173  cursor: e-resize;
9174  cursor: col-resize;
9175  font-size: 1px; }
9176
9177/* line 86, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9178.x-splitter-collapsed, .x-splitter-horizontal-noresize, .x-splitter-vertical-noresize {
9179  cursor: default; }
9180
9181/* line 90, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9182.x-splitter-active {
9183  z-index: 4;
9184  font-size: 1px;
9185  background-color: #b4b4b4;
9186  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
9187  opacity: 0.8; }
9188
9189/* line 97, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9190.x-splitter-active .x-collapse-el {
9191  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
9192  opacity: 0.3; }
9193
9194/* line 102, ../themes/stylesheets/ext4/default/util/_splitter.scss */
9195.x-proxy-el {
9196  position: absolute;
9197  background: #b4b4b4;
9198  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
9199  opacity: 0.8; }
9200
9201/*
9202 * Dock Layouts
9203 * @todo move this somewhere else?
9204 */
9205/* line 6, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9206.x-docked {
9207  position: absolute !important;
9208  z-index: 1; }
9209
9210/* line 11, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9211.x-docked-top {
9212  border-bottom-width: 0 !important; }
9213
9214/* line 15, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9215.x-docked-bottom {
9216  border-top-width: 0 !important; }
9217
9218/* line 19, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9219.x-docked-left {
9220  border-right-width: 0 !important; }
9221
9222/* line 23, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9223.x-docked-right {
9224  border-left-width: 0 !important; }
9225
9226/* line 27, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9227.x-docked-noborder-top {
9228  border-top-width: 0 !important; }
9229
9230/* line 31, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9231.x-docked-noborder-right {
9232  border-right-width: 0 !important; }
9233
9234/* line 35, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9235.x-docked-noborder-bottom {
9236  border-bottom-width: 0 !important; }
9237
9238/* line 39, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9239.x-docked-noborder-left {
9240  border-left-width: 0 !important; }
9241
9242/* line 43, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9243.x-box-inner {
9244  overflow: hidden;
9245  zoom: 1;
9246  position: relative;
9247  left: 0;
9248  top: 0; }
9249
9250/* line 53, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9251.x-box-item {
9252  position: absolute !important;
9253  left: 0;
9254  top: 0; }
9255
9256/* line 59, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9257.x-rtl .x-box-item {
9258  right: 0;
9259  left: auto; }
9260
9261/* line 65, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9262.x-box-layout-ct,
9263.x-border-layout-ct {
9264  overflow: hidden;
9265  zoom: 1; }
9266
9267/* line 70, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9268.x-border-layout-ct {
9269  background-color: #dfe8f6;
9270  position: relative; }
9271
9272/* line 75, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9273.x-overflow-hidden {
9274  overflow: hidden !important; }
9275
9276/* line 79, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9277.x-inline-children > * {
9278  display: inline-block !important; }
9279
9280/* line 83, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9281.x-abs-layout-ct {
9282  position: relative; }
9283
9284/* line 87, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9285.x-abs-layout-item {
9286  position: absolute !important; }
9287
9288/* line 91, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9289.x-fit-item {
9290  position: relative; }
9291
9292/* line 95, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9293.x-border-region-slide-in {
9294  z-index: 5; }
9295
9296/* line 99, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9297.x-region-collapsed-placeholder {
9298  z-index: 4; }
9299
9300/* line 103, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9301.x-accordion-hd .x-panel-header-text {
9302  color: black;
9303  font-weight: normal; }
9304
9305/* line 108, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9306.x-accordion-hd {
9307  background: #d9e7f8 !important;
9308  -moz-box-shadow: inset 0 0 0 0 #d9e7f8;
9309  -webkit-box-shadow: inset 0 0 0 0 #d9e7f8;
9310  -o-box-shadow: inset 0 0 0 0 #d9e7f8;
9311  box-shadow: inset 0 0 0 0 #d9e7f8; }
9312  /* line 112, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9313  .x-accordion-hd .x-tool-collapse-top,
9314  .x-accordion-hd .x-tool-collapse-right,
9315  .x-accordion-hd .x-tool-collapse-bottom,
9316  .x-accordion-hd .x-tool-collapse-left {
9317    background-position: 0 -255px; }
9318  /* line 119, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9319  .x-accordion-hd .x-tool-expand-top,
9320  .x-accordion-hd .x-tool-expand-right,
9321  .x-accordion-hd .x-tool-expand-bottom,
9322  .x-accordion-hd .x-tool-expand-left {
9323    background-position: 0 -240px; }
9324  /* line 127, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9325  .x-accordion-hd .x-tool-over .x-tool-collapse-top,
9326  .x-accordion-hd .x-tool-over .x-tool-collapse-right,
9327  .x-accordion-hd .x-tool-over .x-tool-collapse-bottom,
9328  .x-accordion-hd .x-tool-over .x-tool-collapse-left {
9329    background-position: -15px -255px; }
9330  /* line 136, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9331  .x-accordion-hd .x-tool-over .x-tool-expand-top,
9332  .x-accordion-hd .x-tool-over .x-tool-expand-right,
9333  .x-accordion-hd .x-tool-over .x-tool-expand-bottom,
9334  .x-accordion-hd .x-tool-over .x-tool-expand-left {
9335    background-position: -15px -240px; }
9336
9337/* line 145, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9338.x-accordion-hd {
9339  border-width: 1px 0 1px 0 !important;
9340  padding: 4px 5px 5px 5px;
9341  border-top-color: #f3f7fb !important; }
9342
9343/* line 151, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9344.x-accordion-body {
9345  border-width: 0 !important; }
9346
9347/* line 155, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9348.x-accordion-hd-sibling-expanded {
9349  border-top-color: #99bce8 !important;
9350  -moz-box-shadow: inset 0 1px 0 0 #f3f7fb;
9351  -webkit-box-shadow: inset 0 1px 0 0 #f3f7fb;
9352  -o-box-shadow: inset 0 1px 0 0 #f3f7fb;
9353  box-shadow: inset 0 1px 0 0 #f3f7fb; }
9354
9355/* line 160, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9356.x-accordion-hd-last-collapsed {
9357  border-bottom-color: #d9e7f8 !important; }
9358
9359/* line 169, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9360.x-frame-tl,
9361.x-frame-tr,
9362.x-frame-tc,
9363.x-frame-bl,
9364.x-frame-br,
9365.x-frame-bc {
9366  overflow: hidden;
9367  background-repeat: no-repeat; }
9368
9369/* line 175, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9370.x-frame-tc,
9371.x-frame-bc {
9372  background-repeat: repeat-x; }
9373
9374/* line 179, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9375.x-frame-mc {
9376  position: relative;
9377  background-repeat: repeat-x;
9378  overflow: hidden; }
9379
9380/* line 188, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9381.x-box-scroller-left {
9382  float: left;
9383  height: 100%;
9384  z-index: 5; }
9385  /* line 195, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9386  .x-box-scroller-left .x-toolbar-scroll-left,
9387  .x-box-scroller-left .x-tabbar-scroll-left {
9388    width: 18px;
9389    position: relative;
9390    cursor: pointer;
9391    height: 20px;
9392    background: transparent no-repeat -18px 0;
9393    background-image: url('../../resources/themes/images/default/tab-bar/scroll-left.gif'); }
9394  /* line 203, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9395  .x-box-scroller-left .x-toolbar-scroll-left-hover {
9396    background-position: 0 0; }
9397  /* line 207, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9398  .x-box-scroller-left .x-toolbar-scroll-left-disabled,
9399  .x-box-scroller-left .x-tabbar-scroll-left-disabled {
9400    background-position: -18px 0;
9401    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
9402    opacity: 0.5;
9403    cursor: default; }
9404  /* line 214, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9405  .x-box-scroller-left .x-toolbar-scroll-left {
9406    background-image: url('../../resources/themes/images/default/toolbar/scroll-left.gif');
9407    background-position: -14px 0; }
9408  /* line 218, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9409  .x-box-scroller-left .x-toolbar-scroll-left-hover {
9410    background-position: 0 0; }
9411  /* line 221, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9412  .x-box-scroller-left .x-toolbar-scroll-left-disabled {
9413    background-position: -14px 0; }
9414  /* line 225, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9415  .x-box-scroller-left .x-toolbar-scroll-left {
9416    width: 14px;
9417    height: 22px;
9418    border-bottom: 1px solid #8db2e3; }
9419
9420/* line 233, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9421.x-horizontal-box-overflow-body {
9422  float: left; }
9423
9424/* line 236, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9425.x-box-scroller-right {
9426  float: right;
9427  height: 100%;
9428  z-index: 5; }
9429  /* line 243, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9430  .x-box-scroller-right .x-toolbar-scroll-right,
9431  .x-box-scroller-right .x-tabbar-scroll-right {
9432    width: 18px;
9433    position: relative;
9434    cursor: pointer;
9435    height: 20px;
9436    background: transparent no-repeat 0 0;
9437    background-image: url('../../resources/themes/images/default/tab-bar/scroll-right.gif'); }
9438  /* line 251, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9439  .x-box-scroller-right .x-toolbar-scroll-right-hover {
9440    background-position: -18px 0; }
9441  /* line 255, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9442  .x-box-scroller-right .x-toolbar-scroll-right-disabled,
9443  .x-box-scroller-right .x-tabbar-scroll-right-disabled {
9444    background-position: 0 0;
9445    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
9446    opacity: 0.5;
9447    cursor: default; }
9448  /* line 262, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9449  .x-box-scroller-right .x-toolbar-scroll-right {
9450    background-image: url('../../resources/themes/images/default/toolbar/scroll-right.gif'); }
9451  /* line 265, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9452  .x-box-scroller-right .x-toolbar-scroll-right-hover {
9453    background-position: -14px 0; }
9454  /* line 268, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9455  .x-box-scroller-right .x-toolbar-scroll-right-disabled {
9456    background-position: 0 0; }
9457  /* line 272, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9458  .x-box-scroller-right .x-toolbar-scroll-right {
9459    width: 14px;
9460    height: 22px;
9461    border-bottom: 1px solid #8db2e3; }
9462
9463/* line 282, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9464.x-box-scroller-top .x-box-scroller {
9465  line-height: 0;
9466  font-size: 0; }
9467/* line 286, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9468.x-box-scroller-top .x-menu-scroll-top {
9469  background: transparent no-repeat center center;
9470  background-image: url('../../resources/themes/images/default/layout/mini-top.gif');
9471  height: 8px;
9472  cursor: pointer; }
9473
9474/* line 294, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9475.x-box-scroller-bottom .x-box-scroller {
9476  line-height: 0;
9477  font-size: 0; }
9478/* line 298, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9479.x-box-scroller-bottom .x-menu-scroll-bottom {
9480  background: transparent no-repeat center center;
9481  background-image: url('../../resources/themes/images/default/layout/mini-bottom.gif');
9482  height: 8px;
9483  cursor: pointer; }
9484
9485/* line 306, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9486.x-box-menu-right {
9487  float: right;
9488  padding-right: 2px; }
9489
9490/* line 311, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9491.x-column {
9492  float: left; }
9493
9494/* line 315, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9495.x-ie6 .x-column {
9496  display: inline;
9497  /*prevent IE6 double-margin bug*/ }
9498
9499/* line 319, ../themes/stylesheets/ext4/default/layout/_layout.scss */
9500.x-quirks .x-ie .x-form-layout-table, .x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item {
9501  position: relative; }
9502
9503/* line 2, ../themes/stylesheets/ext4/default/util/_tool.scss */
9504.x-tool {
9505  height: 15px; }
9506  /* line 5, ../themes/stylesheets/ext4/default/util/_tool.scss */
9507  .x-tool img {
9508    overflow: hidden;
9509    width: 15px;
9510    height: 15px;
9511    cursor: pointer;
9512    background-color: transparent;
9513    background-repeat: no-repeat;
9514    background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
9515    margin: 0; }
9516
9517/* line 23, ../themes/stylesheets/ext4/default/util/_tool.scss */
9518.x-panel-header-horizontal .x-tool,
9519.x-window-header-horizontal .x-tool {
9520  margin-left: 2px; }
9521
9522/* line 30, ../themes/stylesheets/ext4/default/util/_tool.scss */
9523.x-panel-header-vertical .x-tool,
9524.x-window-header-vertical .x-tool {
9525  margin-top: 2px; }
9526
9527/* line 39, ../themes/stylesheets/ext4/default/util/_tool.scss */
9528.x-panel-header-vertical .x-tool-top,
9529.x-window-header-vertical .x-tool-top {
9530  margin: 0 0 4px; }
9531
9532/* line 45, ../themes/stylesheets/ext4/default/util/_tool.scss */
9533.x-tool-placeholder {
9534  visibility: hidden; }
9535
9536/* line 49, ../themes/stylesheets/ext4/default/util/_tool.scss */
9537.x-tool-toggle {
9538  background-position: 0 -60px; }
9539
9540/* line 54, ../themes/stylesheets/ext4/default/util/_tool.scss */
9541.x-tool-over .x-tool-toggle {
9542  background-position: -15px -60px; }
9543
9544/* line 61, ../themes/stylesheets/ext4/default/util/_tool.scss */
9545.x-panel-collapsed .x-tool-toggle,
9546.x-fieldset-collapsed .x-tool-toggle {
9547  background-position: 0 -75px; }
9548/* line 66, ../themes/stylesheets/ext4/default/util/_tool.scss */
9549.x-panel-collapsed .x-tool-over .x-tool-toggle,
9550.x-fieldset-collapsed .x-tool-over .x-tool-toggle {
9551  background-position: -15px -75px; }
9552
9553/* line 72, ../themes/stylesheets/ext4/default/util/_tool.scss */
9554.x-tool-close {
9555  background-position: 0 0; }
9556
9557/* line 76, ../themes/stylesheets/ext4/default/util/_tool.scss */
9558.x-tool-minimize {
9559  background-position: 0 -15px; }
9560
9561/* line 80, ../themes/stylesheets/ext4/default/util/_tool.scss */
9562.x-tool-maximize {
9563  background-position: 0 -30px; }
9564
9565/* line 84, ../themes/stylesheets/ext4/default/util/_tool.scss */
9566.x-tool-restore {
9567  background-position: 0 -45px; }
9568
9569/* line 88, ../themes/stylesheets/ext4/default/util/_tool.scss */
9570.x-tool-gear {
9571  background-position: 0 -90px; }
9572
9573/* line 92, ../themes/stylesheets/ext4/default/util/_tool.scss */
9574.x-tool-prev {
9575  background-position: 0 -105px; }
9576
9577/* line 96, ../themes/stylesheets/ext4/default/util/_tool.scss */
9578.x-tool-next {
9579  background-position: 0 -120px; }
9580
9581/* line 100, ../themes/stylesheets/ext4/default/util/_tool.scss */
9582.x-tool-pin {
9583  background-position: 0 -135px; }
9584
9585/* line 104, ../themes/stylesheets/ext4/default/util/_tool.scss */
9586.x-tool-unpin {
9587  background-position: 0 -150px; }
9588
9589/* line 108, ../themes/stylesheets/ext4/default/util/_tool.scss */
9590.x-tool-right {
9591  background-position: 0 -165px; }
9592
9593/* line 112, ../themes/stylesheets/ext4/default/util/_tool.scss */
9594.x-tool-left {
9595  background-position: 0 -180px; }
9596
9597/* line 116, ../themes/stylesheets/ext4/default/util/_tool.scss */
9598.x-tool-help {
9599  background-position: 0 -300px; }
9600
9601/* line 120, ../themes/stylesheets/ext4/default/util/_tool.scss */
9602.x-tool-save {
9603  background-position: 0 -285px; }
9604
9605/* line 124, ../themes/stylesheets/ext4/default/util/_tool.scss */
9606.x-tool-search {
9607  background-position: 0 -270px; }
9608
9609/* line 128, ../themes/stylesheets/ext4/default/util/_tool.scss */
9610.x-tool-minus {
9611  background-position: 0 -255px; }
9612
9613/* line 132, ../themes/stylesheets/ext4/default/util/_tool.scss */
9614.x-tool-plus {
9615  background-position: 0 -240px; }
9616
9617/* line 136, ../themes/stylesheets/ext4/default/util/_tool.scss */
9618.x-tool-refresh {
9619  background-position: 0 -225px; }
9620
9621/* line 140, ../themes/stylesheets/ext4/default/util/_tool.scss */
9622.x-tool-up {
9623  background-position: 0 -210px; }
9624
9625/* line 144, ../themes/stylesheets/ext4/default/util/_tool.scss */
9626.x-tool-down {
9627  background-position: 0 -195px; }
9628
9629/* line 148, ../themes/stylesheets/ext4/default/util/_tool.scss */
9630.x-tool-collapse {
9631  background-position: 0 -345px; }
9632
9633/* line 152, ../themes/stylesheets/ext4/default/util/_tool.scss */
9634.x-tool-expand {
9635  background-position: 0 -330px; }
9636
9637/* line 156, ../themes/stylesheets/ext4/default/util/_tool.scss */
9638.x-tool-print {
9639  background-position: 0 -315px; }
9640
9641/* line 161, ../themes/stylesheets/ext4/default/util/_tool.scss */
9642.x-tool-expand-bottom,
9643.x-tool-collapse-bottom {
9644  background-position: 0 -195px; }
9645
9646/* line 166, ../themes/stylesheets/ext4/default/util/_tool.scss */
9647.x-tool-expand-top,
9648.x-tool-collapse-top {
9649  background-position: 0 -210px; }
9650
9651/* line 171, ../themes/stylesheets/ext4/default/util/_tool.scss */
9652.x-tool-expand-left,
9653.x-tool-collapse-left {
9654  background-position: 0 -180px; }
9655
9656/* line 176, ../themes/stylesheets/ext4/default/util/_tool.scss */
9657.x-tool-expand-right,
9658.x-tool-collapse-right {
9659  background-position: 0 -165px; }
9660
9661/* line 181, ../themes/stylesheets/ext4/default/util/_tool.scss */
9662.x-tool-over .x-tool-close {
9663  background-position: -15px 0; }
9664/* line 185, ../themes/stylesheets/ext4/default/util/_tool.scss */
9665.x-tool-over .x-tool-minimize {
9666  background-position: -15px -15px; }
9667/* line 189, ../themes/stylesheets/ext4/default/util/_tool.scss */
9668.x-tool-over .x-tool-maximize {
9669  background-position: -15px -30px; }
9670/* line 193, ../themes/stylesheets/ext4/default/util/_tool.scss */
9671.x-tool-over .x-tool-restore {
9672  background-position: -15px -45px; }
9673/* line 197, ../themes/stylesheets/ext4/default/util/_tool.scss */
9674.x-tool-over .x-tool-gear {
9675  background-position: -15px -90px; }
9676/* line 201, ../themes/stylesheets/ext4/default/util/_tool.scss */
9677.x-tool-over .x-tool-prev {
9678  background-position: -15px -105px; }
9679/* line 205, ../themes/stylesheets/ext4/default/util/_tool.scss */
9680.x-tool-over .x-tool-next {
9681  background-position: -15px -120px; }
9682/* line 209, ../themes/stylesheets/ext4/default/util/_tool.scss */
9683.x-tool-over .x-tool-pin {
9684  background-position: -15px -135px; }
9685/* line 213, ../themes/stylesheets/ext4/default/util/_tool.scss */
9686.x-tool-over .x-tool-unpin {
9687  background-position: -15px -150px; }
9688/* line 217, ../themes/stylesheets/ext4/default/util/_tool.scss */
9689.x-tool-over .x-tool-right {
9690  background-position: -15px -165px; }
9691/* line 221, ../themes/stylesheets/ext4/default/util/_tool.scss */
9692.x-tool-over .x-tool-left {
9693  background-position: -15px -180px; }
9694/* line 225, ../themes/stylesheets/ext4/default/util/_tool.scss */
9695.x-tool-over .x-tool-down {
9696  background-position: -15px -195px; }
9697/* line 229, ../themes/stylesheets/ext4/default/util/_tool.scss */
9698.x-tool-over .x-tool-up {
9699  background-position: -15px -210px; }
9700/* line 233, ../themes/stylesheets/ext4/default/util/_tool.scss */
9701.x-tool-over .x-tool-refresh {
9702  background-position: -15px -225px; }
9703/* line 237, ../themes/stylesheets/ext4/default/util/_tool.scss */
9704.x-tool-over .x-tool-plus {
9705  background-position: -15px -240px; }
9706/* line 241, ../themes/stylesheets/ext4/default/util/_tool.scss */
9707.x-tool-over .x-tool-minus {
9708  background-position: -15px -255px; }
9709/* line 245, ../themes/stylesheets/ext4/default/util/_tool.scss */
9710.x-tool-over .x-tool-search {
9711  background-position: -15px -270px; }
9712/* line 249, ../themes/stylesheets/ext4/default/util/_tool.scss */
9713.x-tool-over .x-tool-save {
9714  background-position: -15px -285px; }
9715/* line 253, ../themes/stylesheets/ext4/default/util/_tool.scss */
9716.x-tool-over .x-tool-help {
9717  background-position: -15px -300px; }
9718/* line 257, ../themes/stylesheets/ext4/default/util/_tool.scss */
9719.x-tool-over .x-tool-print {
9720  background-position: -15px -315px; }
9721/* line 261, ../themes/stylesheets/ext4/default/util/_tool.scss */
9722.x-tool-over .x-tool-expand {
9723  background-position: -15px -330px; }
9724/* line 265, ../themes/stylesheets/ext4/default/util/_tool.scss */
9725.x-tool-over .x-tool-collapse {
9726  background-position: -15px -345px; }
9727/* line 270, ../themes/stylesheets/ext4/default/util/_tool.scss */
9728.x-tool-over .x-tool-expand-bottom,
9729.x-tool-over .x-tool-collapse-bottom {
9730  background-position: -15px -195px; }
9731/* line 275, ../themes/stylesheets/ext4/default/util/_tool.scss */
9732.x-tool-over .x-tool-expand-top,
9733.x-tool-over .x-tool-collapse-top {
9734  background-position: -15px -210px; }
9735/* line 280, ../themes/stylesheets/ext4/default/util/_tool.scss */
9736.x-tool-over .x-tool-expand-left,
9737.x-tool-over .x-tool-collapse-left {
9738  background-position: -15px -180px; }
9739/* line 285, ../themes/stylesheets/ext4/default/util/_tool.scss */
9740.x-tool-over .x-tool-expand-right,
9741.x-tool-over .x-tool-collapse-right {
9742  background-position: -15px -165px; }
9743
9744/* line 2, ../themes/stylesheets/ext4/default/util/_scroller.scss */
9745.x-horizontal-scroller-present .x-grid-body {
9746  border-bottom-width: 0px; }
9747
9748/* line 6, ../themes/stylesheets/ext4/default/util/_scroller.scss */
9749.x-vertical-scroller-present .x-grid-body {
9750  border-right-width: 0px; }
9751
9752/* line 10, ../themes/stylesheets/ext4/default/util/_scroller.scss */
9753.x-scroller {
9754  overflow: hidden; }
9755
9756/* line 14, ../themes/stylesheets/ext4/default/util/_scroller.scss */
9757.x-scroller-vertical {
9758  border: 1px solid #99bce8;
9759  border-top-color: #c5c5c5; }
9760
9761/* line 19, ../themes/stylesheets/ext4/default/util/_scroller.scss */
9762.x-scroller-horizontal {
9763  border: 1px solid #99bce8; }
9764
9765/* line 23, ../themes/stylesheets/ext4/default/util/_scroller.scss */
9766.x-vertical-scroller-present .x-scroller-horizontal {
9767  border-right-width: 0px; }
9768
9769/* line 27, ../themes/stylesheets/ext4/default/util/_scroller.scss */
9770.x-scroller-ct {
9771  overflow: hidden;
9772  position: absolute;
9773  margin: 0;
9774  padding: 0;
9775  border: none;
9776  left: 0px;
9777  top: 0px;
9778  /*
9779  In IE9 (only), the border-box style causes the scroller-ct to be 0px in the
9780  perpendicular dimension and breaks the scroll as well as offsets it by the left
9781  offset that we use to try and keep some size on this element. This works on all
9782  browsers (including IE9).
9783  */
9784  box-sizing: content-box !important;
9785  -ms-box-sizing: content-box !important;
9786  -moz-box-sizing: content-box !important;
9787  -webkit-box-sizing: content-box !important; }
9788
9789/* line 48, ../themes/stylesheets/ext4/default/util/_scroller.scss */
9790.x-scroller-vertical .x-scroller-ct {
9791  overflow-y: scroll; }
9792
9793/* line 52, ../themes/stylesheets/ext4/default/util/_scroller.scss */
9794.x-scroller-horizontal .x-scroller-ct {
9795  overflow-x: scroll; }
9796
9797/* line 8, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9798.x-html {
9799  /* Begin bidirectionality settings (do not change) */ }
9800  /* line 34, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9801  .x-html html, .x-html address, .x-html blockquote, .x-html body, .x-html dd, .x-html div, .x-html dl, .x-html dt, .x-html fieldset, .x-html form, .x-html frame, .x-html frameset, .x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6, .x-html noframes, .x-html ol, .x-html p, .x-html ul, .x-html center, .x-html dir, .x-html hr, .x-html menu, .x-html pre {
9802    display: block; }
9803  /* line 35, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9804  .x-html li {
9805    display: list-item;
9806    list-style: disc; }
9807  /* line 36, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9808  .x-html head {
9809    display: none; }
9810  /* line 37, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9811  .x-html table {
9812    display: table; }
9813  /* line 38, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9814  .x-html tr {
9815    display: table-row; }
9816  /* line 39, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9817  .x-html thead {
9818    display: table-header-group; }
9819  /* line 40, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9820  .x-html tbody {
9821    display: table-row-group; }
9822  /* line 41, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9823  .x-html tfoot {
9824    display: table-footer-group; }
9825  /* line 42, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9826  .x-html col {
9827    display: table-column; }
9828  /* line 43, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9829  .x-html colgroup {
9830    display: table-column-group; }
9831  /* line 45, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9832  .x-html td, .x-html th {
9833    display: table-cell; }
9834  /* line 46, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9835  .x-html caption {
9836    display: table-caption; }
9837  /* line 47, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9838  .x-html th {
9839    font-weight: bolder;
9840    text-align: center; }
9841  /* line 48, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9842  .x-html caption {
9843    text-align: center; }
9844  /* line 49, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9845  .x-html body {
9846    margin: 8px; }
9847  /* line 50, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9848  .x-html h1 {
9849    font-size: 2em;
9850    margin: .67em 0; }
9851  /* line 51, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9852  .x-html h2 {
9853    font-size: 1.5em;
9854    margin: .75em 0; }
9855  /* line 52, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9856  .x-html h3 {
9857    font-size: 1.17em;
9858    margin: .83em 0; }
9859  /* line 62, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9860  .x-html h4, .x-html p, .x-html blockquote, .x-html ul, .x-html fieldset, .x-html form, .x-html ol, .x-html dl, .x-html dir, .x-html menu {
9861    margin: 1.12em 0; }
9862  /* line 63, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9863  .x-html h5 {
9864    font-size: .83em;
9865    margin: 1.5em 0; }
9866  /* line 64, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9867  .x-html h6 {
9868    font-size: .75em;
9869    margin: 1.67em 0; }
9870  /* line 72, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9871  .x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6, .x-html b, .x-html strong {
9872    font-weight: bolder; }
9873  /* line 73, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9874  .x-html blockquote {
9875    margin-left: 40px;
9876    margin-right: 40px; }
9877  /* line 78, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9878  .x-html i, .x-html cite, .x-html em, .x-html var, .x-html address {
9879    font-style: italic; }
9880  /* line 83, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9881  .x-html pre, .x-html tt, .x-html code, .x-html kbd, .x-html samp {
9882    font-family: monospace; }
9883  /* line 84, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9884  .x-html pre {
9885    white-space: pre; }
9886  /* line 88, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9887  .x-html button, .x-html textarea, .x-html input, .x-html select {
9888    display: inline-block; }
9889  /* line 89, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9890  .x-html big {
9891    font-size: 1.17em; }
9892  /* line 92, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9893  .x-html small, .x-html sub, .x-html sup {
9894    font-size: .83em; }
9895  /* line 93, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9896  .x-html sub {
9897    vertical-align: sub; }
9898  /* line 94, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9899  .x-html sup {
9900    vertical-align: super; }
9901  /* line 95, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9902  .x-html table {
9903    border-spacing: 2px; }
9904  /* line 98, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9905  .x-html thead, .x-html tbody, .x-html tfoot {
9906    vertical-align: middle; }
9907  /* line 100, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9908  .x-html td, .x-html th {
9909    vertical-align: inherit; }
9910  /* line 103, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9911  .x-html s, .x-html strike, .x-html del {
9912    text-decoration: line-through; }
9913  /* line 104, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9914  .x-html hr {
9915    border: 1px inset; }
9916  /* line 109, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9917  .x-html ol, .x-html ul, .x-html dir, .x-html menu, .x-html dd {
9918    margin-left: 40px; }
9919  /* line 110, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9920  .x-html ul, .x-html menu, .x-html dir {
9921    list-style-type: disc; }
9922  /* line 111, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9923  .x-html ol {
9924    list-style-type: decimal; }
9925  /* line 115, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9926  .x-html ol ul, .x-html ul ol, .x-html ul ul, .x-html ol ol {
9927    margin-top: 0;
9928    margin-bottom: 0; }
9929  /* line 117, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9930  .x-html u, .x-html ins {
9931    text-decoration: underline; }
9932  /* line 118, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9933  .x-html br:before {
9934    content: "\A"; }
9935  /* line 119, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9936  .x-html :before, .x-html :after {
9937    white-space: pre-line; }
9938  /* line 120, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9939  .x-html center {
9940    text-align: center; }
9941  /* line 121, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9942  .x-html :link, .x-html :visited {
9943    text-decoration: underline; }
9944  /* line 122, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9945  .x-html :focus {
9946    outline: invert dotted thin; }
9947  /* line 125, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9948  .x-html BDO[DIR="ltr"] {
9949    direction: ltr;
9950    unicode-bidi: bidi-override; }
9951  /* line 126, ../themes/stylesheets/ext4/default/widgets/_html.scss */
9952  .x-html BDO[DIR="rtl"] {
9953    direction: rtl;
9954    unicode-bidi: bidi-override; }
9955